Date: Monday, May 1, 2023 @ 17:20:43
Author: dvzrv
Revision: 476148
archrelease: copy trunk to testing-x86_64
Added:
python-urwid/repos/testing-x86_64/PKGBUILD
(from rev 476147, python-urwid/trunk/PKGBUILD)
Deleted:
python-urwid/repos/testing-x86_64/PKGBUILD
----------+
PKGBUILD | 109 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 57 insertions(+), 52 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-01 17:20:24 UTC (rev 476147)
+++ PKGBUILD 2023-05-01 17:20:43 UTC (rev 476148)
@@ -1,52 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Daniel Isenmann <[email protected]>
-# Contributor: Sergej Pupykin <[email protected]>
-# Contributor: Douglas Soares de Andrade <[email protected]>
-
-_name=urwid
-pkgname=python-urwid
-pkgver=2.1.2.r41.g0c0ea37
-# somewhere past 2.1.2 as there has not been a release in years ;_;
-# https://github.com/urwid/urwid/issues/511
-_commit=0c0ea377ab9b418cbb5233fa6e178dd05f1f4e5a
-pkgrel=1
-pkgdesc='Curses-based user interface library'
-url='https://urwid.org/'
-arch=('x86_64')
-license=('LGPL')
-depends=('python' 'glibc')
-makedepends=(
- 'git'
- 'python-build'
- 'python-installer'
- 'python-setuptools'
- 'python-wheel'
-)
-source=(
- git+https://github.com/$_name/$_name.git#commit=$_commit
-)
-sha256sums=('SKIP')
-sha512sums=('SKIP')
-
-pkgver() {
- cd $_name
- git describe --long --abbrev=7 | sed
's/^release-//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
- cd $_name
- python -m build --wheel --no-isolation
-}
-
-check() {
- cd $_name
- python -m unittest discover -vs $_name/tests
-}
-
-package() {
- cd $_name
- python -m installer --destdir="$pkgdir" dist/*.whl
- rm -rv "${pkgdir}"/usr/lib/python*/site-packages/urwid/tests
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-urwid/repos/testing-x86_64/PKGBUILD (from rev 476147,
python-urwid/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-01 17:20:43 UTC (rev 476148)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Daniel Isenmann <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: Douglas Soares de Andrade <[email protected]>
+
+_name=urwid
+pkgname=python-urwid
+pkgver=2.1.2.r55.gbac20db
+# somewhere past 2.1.2 as there has not been a release in years ;_;
+# https://github.com/urwid/urwid/issues/511
+# https://github.com/urwid/urwid/issues/548
+_commit=bac20db87eaeb0b7a0026807d7e6dbe391b08580
+pkgrel=1
+pkgdesc='Curses-based user interface library'
+url='https://urwid.org/'
+arch=('x86_64')
+license=('LGPL')
+depends=(
+ 'glibc'
+ 'python'
+ 'python-typing-extensions'
+)
+makedepends=(
+ 'git'
+ 'python-build'
+ 'python-installer'
+ 'python-setuptools'
+ 'python-wheel'
+)
+source=(
+ git+https://github.com/$_name/$_name.git#commit=$_commit
+)
+sha256sums=('SKIP')
+sha512sums=('SKIP')
+
+pkgver() {
+ cd $_name
+ git describe --long --abbrev=7 | sed
's/^release-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+ cd $_name
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd $_name
+ python -m unittest discover -vs $_name/tests
+}
+
+package() {
+ cd $_name
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ rm -rv "${pkgdir}"/usr/lib/python*/site-packages/urwid/tests
+}
+
+# vim: ts=2 sw=2 et: