[arch-commits] Commit in shiboken2/repos/staging-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 15:30:54 Author: arojas Revision: 366403 archrelease: copy trunk to staging-x86_64 Added: shiboken2/repos/staging-x86_64/PKGBUILD (from rev 366402, shiboken2/trunk/PKGBUILD) Deleted: shiboken2/repos/staging-x86_64/PKGBUILD --+ PKGBUILD | 96 ++--- 1 file changed, 48 insertions(+), 48 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 15:30:39 UTC (rev 366402) +++ PKGBUILD2019-11-01 15:30:54 UTC (rev 366403) @@ -1,48 +0,0 @@ -# Maintainer: Antonio Rojas -# Maintainer: Felix Yan - -pkgbase=shiboken2 -pkgname=(shiboken2 python-shiboken2) -_qtver=5.13.1 -_clangver=9.0.0 -pkgver=${_qtver/-/} -pkgrel=3 -arch=(x86_64) -url='https://www.qt.io' -license=(GPL2 LGPL) -pkgdesc='Generates bindings for C++ libraries using CPython source code' -makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx) -_pkgfqn=pyside-setup-everywhere-src-${_qtver} -source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz";) -sha256sums=('c57c71ddece90b29d0934cf5fac1e1634719484637b56dcbe49eb277c1c01536') - -prepare() { - mkdir -p build -} - -build() { - cd build - cmake ../${_pkgfqn}/sources/shiboken2 \ --DCMAKE_INSTALL_PREFIX=/usr \ --DBUILD_TESTS=OFF \ --DUSE_PYTHON_VERSION=3 - make -} - -package_shiboken2() { - depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns) - - cd build - make DESTDIR="$pkgdir" install -# Provided in python-shiboken2 - rm -r "$pkgdir"/usr/lib/{python*,libshiboken*} -} - -package_python-shiboken2() { - depends=(python) - - cd build - make DESTDIR="$pkgdir" install -# Provided in shiboken2 - rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share} -} Copied: shiboken2/repos/staging-x86_64/PKGBUILD (from rev 366402, shiboken2/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 15:30:54 UTC (rev 366403) @@ -0,0 +1,48 @@ +# Maintainer: Antonio Rojas +# Maintainer: Felix Yan + +pkgbase=shiboken2 +pkgname=(shiboken2 python-shiboken2) +_qtver=5.13.2 +_clangver=9.0.0 +pkgver=${_qtver/-/} +pkgrel=2 +arch=(x86_64) +url='https://www.qt.io' +license=(GPL2 LGPL) +pkgdesc='Generates bindings for C++ libraries using CPython source code' +makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx) +_pkgfqn=pyside-setup-opensource-src-${_qtver} +source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz";) +sha256sums=('3e255d64df08880d0281ebe86009d5ea45f24332b308954d967c33995f75e543') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${_pkgfqn}/sources/shiboken2 \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DBUILD_TESTS=OFF \ +-DUSE_PYTHON_VERSION=3 + make +} + +package_shiboken2() { + depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns) + + cd build + make DESTDIR="$pkgdir" install +# Provided in python-shiboken2 + rm -r "$pkgdir"/usr/lib/{python*,libshiboken*} +} + +package_python-shiboken2() { + depends=(python) + + cd build + make DESTDIR="$pkgdir" install +# Provided in shiboken2 + rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share} +}
[arch-commits] Commit in shiboken2/repos (community-staging-x86_64)
Date: Friday, November 1, 2019 @ 15:30:39 Author: arojas Revision: 366402 Wrong repo Deleted: shiboken2/repos/community-staging-x86_64/
[arch-commits] Commit in python-intervals/repos/community-staging-any (3 files)
Date: Friday, November 1, 2019 @ 15:29:16 Author: felixonmars Revision: 522049 archrelease: copy trunk to community-staging-any Added: python-intervals/repos/community-staging-any/PKGBUILD (from rev 522048, python-intervals/trunk/PKGBUILD) python-intervals/repos/community-staging-any/pytest5.patch (from rev 522048, python-intervals/trunk/pytest5.patch) Deleted: python-intervals/repos/community-staging-any/PKGBUILD ---+ PKGBUILD | 70 ++-- pytest5.patch | 21 2 files changed, 59 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 15:28:58 UTC (rev 522048) +++ PKGBUILD2019-11-01 15:29:16 UTC (rev 522049) @@ -1,32 +0,0 @@ -# Maintainer: Jelle van der Waa -# Contributor: Husam Bilal - -_name=intervals -pkgname="python-${_name}" -pkgver=0.8.1 -pkgrel=2 -pkgdesc='Python tools for handling intervals (ranges of comparable objects).' -url='https://github.com/kvesteri/intervals' -depends=('python' 'python-infinity') -checkdepends=('python-pytest') -makedepends=('python' 'python-setuptools') -license=('BSD') -arch=('any') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) -sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65') - -build() { - cd "${srcdir}/${_name}-${pkgver}" - python setup.py build -} - -check() { - cd "${srcdir}/${_name}-${pkgver}" - py.test -} - -package() { - cd "${srcdir}/${_name}-${pkgver}" - python setup.py install --root="${pkgdir}/" --optimize=1 - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: python-intervals/repos/community-staging-any/PKGBUILD (from rev 522048, python-intervals/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 15:29:16 UTC (rev 522049) @@ -0,0 +1,38 @@ +# Maintainer: Jelle van der Waa +# Contributor: Husam Bilal + +_name=intervals +pkgname="python-${_name}" +pkgver=0.8.1 +pkgrel=3 +pkgdesc='Python tools for handling intervals (ranges of comparable objects).' +url='https://github.com/kvesteri/intervals' +depends=('python' 'python-infinity') +checkdepends=('python-pytest') +makedepends=('python' 'python-setuptools') +license=('BSD') +arch=('any') +source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"; +'pytest5.patch') +sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65' + 'af545bec7d8157259197e045396d69ac1791b5e0420056fca69bea444cceacaa208ae568fd80792f614e1c775611ea22c48521bdd47dbdd976a699c150835f96') + +prepare() { + cd "${srcdir}/${_name}-${pkgver}" + patch -Np1 -i ../pytest5.patch +} +build() { + cd "${srcdir}/${_name}-${pkgver}" + python setup.py build +} + +check() { + cd "${srcdir}/${_name}-${pkgver}" + py.test +} + +package() { + cd "${srcdir}/${_name}-${pkgver}" + python setup.py install --root="${pkgdir}/" --optimize=1 + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} Copied: python-intervals/repos/community-staging-any/pytest5.patch (from rev 522048, python-intervals/trunk/pytest5.patch) === --- pytest5.patch (rev 0) +++ pytest5.patch 2019-11-01 15:29:16 UTC (rev 522049) @@ -0,0 +1,21 @@ +diff -upr intervals-0.8.1.orig/tests/interval/test_initialization.py intervals-0.8.1/tests/interval/test_initialization.py +--- intervals-0.8.1.orig/tests/interval/test_initialization.py 2016-07-10 21:14:03.0 +0300 intervals-0.8.1/tests/interval/test_initialization.py 2019-11-01 17:26:19.862962549 +0200 +@@ -23,7 +23,7 @@ class TestIntervalInit(object): + 'First argument should be a list or tuple. If you wish to ' + 'initialize an interval from string, use from_string factory ' + 'method.' +-) in str(e) ++) in str(e.value) + + def test_invalid_argument(self): + with raises(IllegalArgument) as e: +@@ -31,7 +31,7 @@ class TestIntervalInit(object): + assert ( + 'The bounds may be equal only if at least one of the bounds is ' + 'closed.' +-) in str(e) ++) in str(e.value) + + def test_floats(self): + interval = FloatInterval((0.2, 0.5))
[arch-commits] Commit in python-intervals/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:28:58 Author: felixonmars Revision: 522048 Python 3.8 rebuild Modified: python-intervals/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:28:13 UTC (rev 522047) +++ PKGBUILD2019-11-01 15:28:58 UTC (rev 522048) @@ -4,7 +4,7 @@ _name=intervals pkgname="python-${_name}" pkgver=0.8.1 -pkgrel=2 +pkgrel=3 pkgdesc='Python tools for handling intervals (ranges of comparable objects).' url='https://github.com/kvesteri/intervals' depends=('python' 'python-infinity')
[arch-commits] Commit in python-intervals/trunk (PKGBUILD pytest5.patch)
Date: Friday, November 1, 2019 @ 15:28:13 Author: foutrelis Revision: 522047 Fix tests for pytest 5 Added: python-intervals/trunk/pytest5.patch Modified: python-intervals/trunk/PKGBUILD ---+ PKGBUILD | 10 -- pytest5.patch | 21 + 2 files changed, 29 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:20:50 UTC (rev 522046) +++ PKGBUILD2019-11-01 15:28:13 UTC (rev 522047) @@ -12,9 +12,15 @@ makedepends=('python' 'python-setuptools') license=('BSD') arch=('any') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) -sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65') +source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"; +'pytest5.patch') +sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65' + 'af545bec7d8157259197e045396d69ac1791b5e0420056fca69bea444cceacaa208ae568fd80792f614e1c775611ea22c48521bdd47dbdd976a699c150835f96') +prepare() { + cd "${srcdir}/${_name}-${pkgver}" + patch -Np1 -i ../pytest5.patch +} build() { cd "${srcdir}/${_name}-${pkgver}" python setup.py build Added: pytest5.patch === --- pytest5.patch (rev 0) +++ pytest5.patch 2019-11-01 15:28:13 UTC (rev 522047) @@ -0,0 +1,21 @@ +diff -upr intervals-0.8.1.orig/tests/interval/test_initialization.py intervals-0.8.1/tests/interval/test_initialization.py +--- intervals-0.8.1.orig/tests/interval/test_initialization.py 2016-07-10 21:14:03.0 +0300 intervals-0.8.1/tests/interval/test_initialization.py 2019-11-01 17:26:19.862962549 +0200 +@@ -23,7 +23,7 @@ class TestIntervalInit(object): + 'First argument should be a list or tuple. If you wish to ' + 'initialize an interval from string, use from_string factory ' + 'method.' +-) in str(e) ++) in str(e.value) + + def test_invalid_argument(self): + with raises(IllegalArgument) as e: +@@ -31,7 +31,7 @@ class TestIntervalInit(object): + assert ( + 'The bounds may be equal only if at least one of the bounds is ' + 'closed.' +-) in str(e) ++) in str(e.value) + + def test_floats(self): + interval = FloatInterval((0.2, 0.5))
[arch-commits] Commit in shiboken2/repos (2 files)
Date: Friday, November 1, 2019 @ 15:27:46 Author: arojas Revision: 366401 archrelease: copy trunk to community-staging-x86_64 Added: shiboken2/repos/community-staging-x86_64/ shiboken2/repos/community-staging-x86_64/PKGBUILD (from rev 366400, shiboken2/trunk/PKGBUILD) --+ PKGBUILD | 48 1 file changed, 48 insertions(+) Copied: shiboken2/repos/community-staging-x86_64/PKGBUILD (from rev 366400, shiboken2/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2019-11-01 15:27:46 UTC (rev 366401) @@ -0,0 +1,48 @@ +# Maintainer: Antonio Rojas +# Maintainer: Felix Yan + +pkgbase=shiboken2 +pkgname=(shiboken2 python-shiboken2) +_qtver=5.13.2 +_clangver=9.0.0 +pkgver=${_qtver/-/} +pkgrel=2 +arch=(x86_64) +url='https://www.qt.io' +license=(GPL2 LGPL) +pkgdesc='Generates bindings for C++ libraries using CPython source code' +makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx) +_pkgfqn=pyside-setup-opensource-src-${_qtver} +source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz";) +sha256sums=('3e255d64df08880d0281ebe86009d5ea45f24332b308954d967c33995f75e543') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${_pkgfqn}/sources/shiboken2 \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DBUILD_TESTS=OFF \ +-DUSE_PYTHON_VERSION=3 + make +} + +package_shiboken2() { + depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns) + + cd build + make DESTDIR="$pkgdir" install +# Provided in python-shiboken2 + rm -r "$pkgdir"/usr/lib/{python*,libshiboken*} +} + +package_python-shiboken2() { + depends=(python) + + cd build + make DESTDIR="$pkgdir" install +# Provided in shiboken2 + rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share} +}
[arch-commits] Commit in shiboken2/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:27:33 Author: arojas Revision: 366400 python 3.8 rebuild Modified: shiboken2/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:25:22 UTC (rev 366399) +++ PKGBUILD2019-11-01 15:27:33 UTC (rev 366400) @@ -6,7 +6,7 @@ _qtver=5.13.2 _clangver=9.0.0 pkgver=${_qtver/-/} -pkgrel=1 +pkgrel=2 arch=(x86_64) url='https://www.qt.io' license=(GPL2 LGPL)
[arch-commits] Commit in shiboken2/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Date: Friday, November 1, 2019 @ 15:25:22 Author: arojas Revision: 366399 archrelease: copy trunk to testing-x86_64 Added: shiboken2/repos/testing-x86_64/ shiboken2/repos/testing-x86_64/PKGBUILD (from rev 366398, shiboken2/trunk/PKGBUILD) --+ PKGBUILD | 48 1 file changed, 48 insertions(+) Copied: shiboken2/repos/testing-x86_64/PKGBUILD (from rev 366398, shiboken2/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2019-11-01 15:25:22 UTC (rev 366399) @@ -0,0 +1,48 @@ +# Maintainer: Antonio Rojas +# Maintainer: Felix Yan + +pkgbase=shiboken2 +pkgname=(shiboken2 python-shiboken2) +_qtver=5.13.2 +_clangver=9.0.0 +pkgver=${_qtver/-/} +pkgrel=1 +arch=(x86_64) +url='https://www.qt.io' +license=(GPL2 LGPL) +pkgdesc='Generates bindings for C++ libraries using CPython source code' +makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx) +_pkgfqn=pyside-setup-opensource-src-${_qtver} +source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz";) +sha256sums=('3e255d64df08880d0281ebe86009d5ea45f24332b308954d967c33995f75e543') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${_pkgfqn}/sources/shiboken2 \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DBUILD_TESTS=OFF \ +-DUSE_PYTHON_VERSION=3 + make +} + +package_shiboken2() { + depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns) + + cd build + make DESTDIR="$pkgdir" install +# Provided in python-shiboken2 + rm -r "$pkgdir"/usr/lib/{python*,libshiboken*} +} + +package_python-shiboken2() { + depends=(python) + + cd build + make DESTDIR="$pkgdir" install +# Provided in shiboken2 + rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share} +}
[arch-commits] Commit in shiboken2/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:25:03 Author: arojas Revision: 366398 Update to 5.13.2 Modified: shiboken2/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:06:10 UTC (rev 366397) +++ PKGBUILD2019-11-01 15:25:03 UTC (rev 366398) @@ -3,18 +3,18 @@ pkgbase=shiboken2 pkgname=(shiboken2 python-shiboken2) -_qtver=5.13.1 +_qtver=5.13.2 _clangver=9.0.0 pkgver=${_qtver/-/} -pkgrel=3 +pkgrel=1 arch=(x86_64) url='https://www.qt.io' license=(GPL2 LGPL) pkgdesc='Generates bindings for C++ libraries using CPython source code' makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx) -_pkgfqn=pyside-setup-everywhere-src-${_qtver} +_pkgfqn=pyside-setup-opensource-src-${_qtver} source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz";) -sha256sums=('c57c71ddece90b29d0934cf5fac1e1634719484637b56dcbe49eb277c1c01536') +sha256sums=('3e255d64df08880d0281ebe86009d5ea45f24332b308954d967c33995f75e543') prepare() { mkdir -p build
[arch-commits] Commit in cython/repos/community-staging-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 15:20:50 Author: arojas Revision: 522046 archrelease: copy trunk to community-staging-x86_64 Added: cython/repos/community-staging-x86_64/PKGBUILD (from rev 522045, cython/trunk/PKGBUILD) Deleted: cython/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 102 ++--- 1 file changed, 51 insertions(+), 51 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 15:20:33 UTC (rev 522045) +++ PKGBUILD2019-11-01 15:20:50 UTC (rev 522046) @@ -1,51 +0,0 @@ -# Maintainer: Antonio Rojas -# Contributor: Sergej Pupykin -# Contributor: Igor Scabini - -pkgname=(cython cython2) -pkgbase=cython -pkgver=0.29.13 -pkgrel=3 -pkgdesc="C-Extensions for Python" -arch=(x86_64) -url="https://cython.org"; -license=(APACHE) -makedepends=(python-setuptools python2-setuptools) -source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";) -sha256sums=('af71d040fa9fa1af0ea2b7a481193776989ae93ae828eb018416cac771aef07f') - -prepare() { - cp -r cython-$pkgver cython2-$pkgver - find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i -} - -build() { - cd cython-$pkgver - python setup.py build - - cd ../cython2-$pkgver - python2 setup.py build -} - -package_cython() { - depends=(python-setuptools) - - cd cython-$pkgver - python setup.py install --root="$pkgdir" --skip-build - - for f in cygdb cython cythonize; do -mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3 -ln -s ${f}3 "$pkgdir"/usr/bin/$f - done -} - -package_cython2() { - depends=(python2-setuptools) - - cd cython2-$pkgver - python2 setup.py install --root="$pkgdir" --skip-build - - for f in cygdb cython cythonize; do -mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2 - done -} Copied: cython/repos/community-staging-x86_64/PKGBUILD (from rev 522045, cython/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 15:20:50 UTC (rev 522046) @@ -0,0 +1,51 @@ +# Maintainer: Antonio Rojas +# Contributor: Sergej Pupykin +# Contributor: Igor Scabini + +pkgname=(cython cython2) +pkgbase=cython +pkgver=0.29.14 +pkgrel=2 +pkgdesc="C-Extensions for Python" +arch=(x86_64) +url="https://cython.org"; +license=(APACHE) +makedepends=(python-setuptools python2-setuptools) +source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";) +sha256sums=('712cff8ea566441911df834fcc1075280ae962b42d9e96d11babc9be039a97f9') + +prepare() { + cp -r cython-$pkgver cython2-$pkgver + find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i +} + +build() { + cd cython-$pkgver + python setup.py build + + cd ../cython2-$pkgver + python2 setup.py build +} + +package_cython() { + depends=(python-setuptools) + + cd cython-$pkgver + python setup.py install --root="$pkgdir" --skip-build + + for f in cygdb cython cythonize; do +mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3 +ln -s ${f}3 "$pkgdir"/usr/bin/$f + done +} + +package_cython2() { + depends=(python2-setuptools) + + cd cython2-$pkgver + python2 setup.py install --root="$pkgdir" --skip-build + + for f in cygdb cython cythonize; do +mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2 + done +}
[arch-commits] Commit in cython/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:20:33 Author: arojas Revision: 522045 python 3.8 rebuild Modified: cython/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:16:36 UTC (rev 522044) +++ PKGBUILD2019-11-01 15:20:33 UTC (rev 522045) @@ -5,7 +5,7 @@ pkgname=(cython cython2) pkgbase=cython pkgver=0.29.14 -pkgrel=1 +pkgrel=2 pkgdesc="C-Extensions for Python" arch=(x86_64) url="https://cython.org";
[arch-commits] Commit in cython/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 15:16:36 Author: arojas Revision: 522044 archrelease: copy trunk to community-x86_64 Added: cython/repos/community-x86_64/PKGBUILD (from rev 522043, cython/trunk/PKGBUILD) Deleted: cython/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 102 ++--- 1 file changed, 51 insertions(+), 51 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 15:16:18 UTC (rev 522043) +++ PKGBUILD2019-11-01 15:16:36 UTC (rev 522044) @@ -1,51 +0,0 @@ -# Maintainer: Antonio Rojas -# Contributor: Sergej Pupykin -# Contributor: Igor Scabini - -pkgname=(cython cython2) -pkgbase=cython -pkgver=0.29.13 -pkgrel=1 -pkgdesc="C-Extensions for Python" -arch=(x86_64) -url="https://cython.org"; -license=(APACHE) -makedepends=(python-setuptools python2-setuptools) -source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";) -sha256sums=('af71d040fa9fa1af0ea2b7a481193776989ae93ae828eb018416cac771aef07f') - -prepare() { - cp -r cython-$pkgver cython2-$pkgver - find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i -} - -build() { - cd cython-$pkgver - python setup.py build - - cd ../cython2-$pkgver - python2 setup.py build -} - -package_cython() { - depends=(python-setuptools) - - cd cython-$pkgver - python setup.py install --root="$pkgdir" --skip-build - - for f in cygdb cython cythonize; do -mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3 -ln -s ${f}3 "$pkgdir"/usr/bin/$f - done -} - -package_cython2() { - depends=(python2-setuptools) - - cd cython2-$pkgver - python2 setup.py install --root="$pkgdir" --skip-build - - for f in cygdb cython cythonize; do -mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2 - done -} Copied: cython/repos/community-x86_64/PKGBUILD (from rev 522043, cython/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 15:16:36 UTC (rev 522044) @@ -0,0 +1,51 @@ +# Maintainer: Antonio Rojas +# Contributor: Sergej Pupykin +# Contributor: Igor Scabini + +pkgname=(cython cython2) +pkgbase=cython +pkgver=0.29.14 +pkgrel=1 +pkgdesc="C-Extensions for Python" +arch=(x86_64) +url="https://cython.org"; +license=(APACHE) +makedepends=(python-setuptools python2-setuptools) +source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";) +sha256sums=('712cff8ea566441911df834fcc1075280ae962b42d9e96d11babc9be039a97f9') + +prepare() { + cp -r cython-$pkgver cython2-$pkgver + find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i +} + +build() { + cd cython-$pkgver + python setup.py build + + cd ../cython2-$pkgver + python2 setup.py build +} + +package_cython() { + depends=(python-setuptools) + + cd cython-$pkgver + python setup.py install --root="$pkgdir" --skip-build + + for f in cygdb cython cythonize; do +mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3 +ln -s ${f}3 "$pkgdir"/usr/bin/$f + done +} + +package_cython2() { + depends=(python2-setuptools) + + cd cython2-$pkgver + python2 setup.py install --root="$pkgdir" --skip-build + + for f in cygdb cython cythonize; do +mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2 + done +}
[arch-commits] Commit in cython/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:16:18 Author: arojas Revision: 522043 Update to 0.29.14 Modified: cython/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 15:01:26 UTC (rev 522042) +++ PKGBUILD2019-11-01 15:16:18 UTC (rev 522043) @@ -4,8 +4,8 @@ pkgname=(cython cython2) pkgbase=cython -pkgver=0.29.13 -pkgrel=3 +pkgver=0.29.14 +pkgrel=1 pkgdesc="C-Extensions for Python" arch=(x86_64) url="https://cython.org"; @@ -12,7 +12,7 @@ license=(APACHE) makedepends=(python-setuptools python2-setuptools) source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";) -sha256sums=('af71d040fa9fa1af0ea2b7a481193776989ae93ae828eb018416cac771aef07f') +sha256sums=('712cff8ea566441911df834fcc1075280ae962b42d9e96d11babc9be039a97f9') prepare() { cp -r cython-$pkgver cython2-$pkgver
[arch-commits] Commit in django/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:06:10 Author: foutrelis Revision: 366397 Add tblib checkdep to print tracebacks Modified: django/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:58:20 UTC (rev 366396) +++ PKGBUILD2019-11-01 15:06:10 UTC (rev 366397) @@ -10,7 +10,7 @@ arch=('any') license=('BSD') url="http://www.djangoproject.com/"; -checkdepends=('python-pytest') +checkdepends=('python-pytest' 'python-tblib') makedepends=('python' 'python-setuptools') depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse') optdepends=('python-psycopg2: for PostgreSQL backend')
[arch-commits] Commit in python-tblib/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 15:01:26 Author: foutrelis Revision: 522042 archrelease: copy trunk to community-staging-any Added: python-tblib/repos/community-staging-any/PKGBUILD (from rev 522041, python-tblib/trunk/PKGBUILD) Deleted: python-tblib/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 92 ++--- 1 file changed, 46 insertions(+), 46 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 15:01:21 UTC (rev 522041) +++ PKGBUILD2019-11-01 15:01:26 UTC (rev 522042) @@ -1,46 +0,0 @@ -# Maintainer: Levente Polyak - -pkgbase=python-tblib -pkgname=('python-tblib' 'python2-tblib') -_pyname=tblib -pkgver=1.4.0 -pkgrel=3 -pkgdesc='Python traceback fiddling library' -url='https://github.com/ionelmc/python-tblib' -arch=('any') -license=('BSD') -makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 'python2-six') -source=(https://github.com/ionelmc/python-tblib/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz) -sha256sums=('7338abe80d82e319643064848f6d1cbd32d80c0d444c6e8de0088d170ed6cd95') -sha512sums=('955ccbeaade32b36681d66bff59c777a5dc03465b0e93d1de25f8f2156f485c82a0e6d9578b2a00b2e1b2c21ac182d86568b2b61221cf46a2196aa77b0fc3620') - -prepare() { - cp -ra ${pkgbase}-${pkgver}{,-py2} -} - -check() { - (cd ${pkgbase}-${pkgver} -python setup.py test - ) - (cd ${pkgbase}-${pkgver}-py2 -python2 setup.py test - ) -} - -package_python-tblib() { - depends=('python-six') - cd ${pkgbase}-${pkgver} - python setup.py install -O1 --root="${pkgdir}" --prefix=/usr - install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" - install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" -} - -package_python2-tblib() { - depends=('python2-six') - cd ${pkgbase}-${pkgver}-py2 - python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr - install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" - install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" -} - -# vim: ts=2 sw=2 et: Copied: python-tblib/repos/community-staging-any/PKGBUILD (from rev 522041, python-tblib/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 15:01:26 UTC (rev 522042) @@ -0,0 +1,46 @@ +# Maintainer: Levente Polyak + +pkgbase=python-tblib +pkgname=('python-tblib' 'python2-tblib') +_pyname=tblib +pkgver=1.5.0 +pkgrel=1 +pkgdesc='Python traceback fiddling library' +url='https://github.com/ionelmc/python-tblib' +arch=('any') +license=('BSD') +makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 'python2-six') +source=(https://github.com/ionelmc/python-tblib/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz) +sha256sums=('583527ec61e2abb949b702d46dd7059354975c18a2ecc45130e4938905df258c') +sha512sums=('33b6160401d3593e3b836cd9468ddf7246c84f77eb01118788ad4dc3f3af32c1796d09fa9347c956da1fcc4c48245b794247a28c900072f35564eb8abfdc3275') + +prepare() { + cp -ra ${pkgbase}-${pkgver}{,-py2} +} + +check() { + (cd ${pkgbase}-${pkgver} +python setup.py test + ) + (cd ${pkgbase}-${pkgver}-py2 +python2 setup.py test + ) +} + +package_python-tblib() { + depends=('python-six') + cd ${pkgbase}-${pkgver} + python setup.py install -O1 --root="${pkgdir}" --prefix=/usr + install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" +} + +package_python2-tblib() { + depends=('python2-six') + cd ${pkgbase}-${pkgver}-py2 + python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr + install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in python-tblib/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 15:01:21 Author: foutrelis Revision: 522041 upgpkg: python-tblib 1.5.0-1 New upstream release. Modified: python-tblib/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:56:24 UTC (rev 522040) +++ PKGBUILD2019-11-01 15:01:21 UTC (rev 522041) @@ -3,8 +3,8 @@ pkgbase=python-tblib pkgname=('python-tblib' 'python2-tblib') _pyname=tblib -pkgver=1.4.0 -pkgrel=3 +pkgver=1.5.0 +pkgrel=1 pkgdesc='Python traceback fiddling library' url='https://github.com/ionelmc/python-tblib' arch=('any') @@ -11,8 +11,8 @@ license=('BSD') makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 'python2-six') source=(https://github.com/ionelmc/python-tblib/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz) -sha256sums=('7338abe80d82e319643064848f6d1cbd32d80c0d444c6e8de0088d170ed6cd95') -sha512sums=('955ccbeaade32b36681d66bff59c777a5dc03465b0e93d1de25f8f2156f485c82a0e6d9578b2a00b2e1b2c21ac182d86568b2b61221cf46a2196aa77b0fc3620') +sha256sums=('583527ec61e2abb949b702d46dd7059354975c18a2ecc45130e4938905df258c') +sha512sums=('33b6160401d3593e3b836cd9468ddf7246c84f77eb01118788ad4dc3f3af32c1796d09fa9347c956da1fcc4c48245b794247a28c900072f35564eb8abfdc3275') prepare() { cp -ra ${pkgbase}-${pkgver}{,-py2}
[arch-commits] Commit in dkms/repos (15 files)
Date: Friday, November 1, 2019 @ 14:58:20 Author: seblu Revision: 366396 db-move: moved dkms from [testing] to [extra] (any) Added: dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch (from rev 366395, dkms/repos/testing-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch) dkms/repos/extra-any/PKGBUILD (from rev 366395, dkms/repos/testing-any/PKGBUILD) dkms/repos/extra-any/PKGBUILD.26 (from rev 366395, dkms/repos/testing-any/PKGBUILD.26) dkms/repos/extra-any/dkms.install (from rev 366395, dkms/repos/testing-any/dkms.install) dkms/repos/extra-any/hook.install (from rev 366395, dkms/repos/testing-any/hook.install) dkms/repos/extra-any/hook.remove (from rev 366395, dkms/repos/testing-any/hook.remove) dkms/repos/extra-any/hook.sh (from rev 366395, dkms/repos/testing-any/hook.sh) Deleted: dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch dkms/repos/extra-any/PKGBUILD dkms/repos/extra-any/PKGBUILD.26 dkms/repos/extra-any/dkms.install dkms/repos/extra-any/hook.install dkms/repos/extra-any/hook.remove dkms/repos/extra-any/hook.sh dkms/repos/testing-any/ ---+ /0001-Revert-Make-newly-installed-modules-available-immedi.patch | 31 + /PKGBUILD | 65 +++ /PKGBUILD.26 | 69 +++ /dkms.install | 13 /hook.install | 14 /hook.remove | 16 /hook.sh | 194 ++ extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch | 31 - extra-any/PKGBUILD| 65 --- extra-any/PKGBUILD.26 | 69 --- extra-any/dkms.install| 13 extra-any/hook.install| 14 extra-any/hook.remove | 16 extra-any/hook.sh | 194 -- 14 files changed, 402 insertions(+), 402 deletions(-) Deleted: extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch === --- extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch 2019-11-01 14:22:35 UTC (rev 366395) +++ extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch 2019-11-01 14:58:20 UTC (rev 366396) @@ -1,31 +0,0 @@ -From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= -Date: Sat, 8 Jul 2017 15:50:55 +0200 -Subject: [PATCH] Revert "Make newly installed modules available immediately" -To: dkms-de...@dell.com - -This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8. - dkms | 6 -- - 1 file changed, 6 deletions(-) - -diff --git a/dkms b/dkms -index a6cedc8..3ff71d5 100644 a/dkms -+++ b/dkms -@@ -1522,12 +1522,6 @@ install_module() - exit 6 - } - --# Make the newly installed modules available immediately --find /sys/devices -name modalias -print0 | xargs -0 cat | xargs modprobe -a -b -q --if [ -f /lib/systemd/system/systemd-modules-load.service ]; then --systemctl restart systemd-modules-load.service --fi -- - # Do remake_initrd things (save old initrd) - [[ $remake_initrd ]] && ! make_initrd "$kernelver" "$arch" && { - do_uninstall "$kernelver" "$arch" --- -Sébastien "Seblu" Luttringer - Copied: dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch (from rev 366395, dkms/repos/testing-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch) === --- extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch (rev 0) +++ extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch 2019-11-01 14:58:20 UTC (rev 366396) @@ -0,0 +1,31 @@ +From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= +Date: Sat, 8 Jul 2017 15:50:55 +0200 +Subject: [PATCH] Revert "Make newly installed modules available immediately" +To: dkms-de...@dell.com + +This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8. +--- + dkms | 6 -- + 1 file changed, 6 deletions(-) + +diff --git a/dkms b/dkms +index a6cedc8..3ff71d5 100644 +--- a/dkms b/dkms +@@ -1522,12 +1522,6
[arch-commits] Commit in python-bleach/repos/community-staging-any (3 files)
Date: Friday, November 1, 2019 @ 14:56:24 Author: felixonmars Revision: 522040 archrelease: copy trunk to community-staging-any Added: python-bleach/repos/community-staging-any/PKGBUILD (from rev 522039, python-bleach/trunk/PKGBUILD) python-bleach/repos/community-staging-any/pytest5.patch (from rev 522039, python-bleach/trunk/pytest5.patch) Deleted: python-bleach/repos/community-staging-any/PKGBUILD ---+ PKGBUILD | 118 pytest5.patch | 23 ++ 2 files changed, 84 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:56:09 UTC (rev 522039) +++ PKGBUILD2019-11-01 14:56:24 UTC (rev 522040) @@ -1,57 +0,0 @@ -# Maintainer: Johannes Löthberg - -pkgbase=python-bleach -pkgname=(python-bleach python2-bleach) -pkgver=3.1.0 -pkgrel=2 - -pkgdesc="An easy whitelist-based HTML-sanitizing tool" -url="https://pypi.org/project/bleach/"; -arch=('any') -license=('Apache') -makedepends=('python' - 'python-setuptools' - 'python-webencodings' - 'python2' - 'python2-setuptools' - 'python2-webencodings') -checkdepends=('python-pytest' - 'python2-pytest') - -source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz) - -sha256sums=('3fdf7f77adcf649c9911387df51254b813185e32b2c6619f690b593a617e19fa') - -prepare() { - cp -a bleach-$pkgver{,-python2} -} - -build() { - cd "$srcdir"/bleach-$pkgver - python setup.py build - - cd "$srcdir"/bleach-$pkgver-python2 - python2 setup.py build -} - -check() { - cd "$srcdir"/bleach-$pkgver - python -m pytest - - cd "$srcdir"/bleach-$pkgver-python2 - python2 -m pytest -} - -package_python-bleach() { - depends=('python-webencodings') - - cd "$srcdir"/bleach-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 -} - -package_python2-bleach() { - depends=('python2-webencodings') - - cd "$srcdir"/bleach-$pkgver-python2 - python2 setup.py install --root="$pkgdir" --optimize=1 -} Copied: python-bleach/repos/community-staging-any/PKGBUILD (from rev 522039, python-bleach/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:56:24 UTC (rev 522040) @@ -0,0 +1,61 @@ +# Maintainer: Johannes Löthberg + +pkgbase=python-bleach +pkgname=(python-bleach python2-bleach) +pkgver=3.1.0 +pkgrel=3 + +pkgdesc="An easy whitelist-based HTML-sanitizing tool" +url="https://pypi.org/project/bleach/"; +arch=('any') +license=('Apache') +makedepends=('python' + 'python-setuptools' + 'python-webencodings' + 'python2' + 'python2-setuptools' + 'python2-webencodings') +checkdepends=('python-pytest' + 'python2-pytest') + +source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz +pytest5.patch) + +sha256sums=('3fdf7f77adcf649c9911387df51254b813185e32b2c6619f690b593a617e19fa' +'a1d3dea566e7c56540b83bcd006c730f6c71fe531570fa2c5cccf0a917070bc6') + +prepare() { + # https://github.com/mozilla/bleach/pull/483 + patch -Np1 -d bleach-$pkgver +Date: Wed, 16 Oct 2019 17:47:27 +0300 +Subject: [PATCH] Support pytest5 syntax for tests + +diff --git a/tests/test_clean.py b/tests/test_clean.py +index e306cc5..d041ffa 100644 +--- a/tests/test_clean.py b/tests/test_clean.py +@@ -24,11 +24,11 @@ def test_only_text_is_cleaned(): + + with pytest.raises(TypeError) as e: + clean(some_type) +-assert "argument cannot be of 'type' type" in str(e) ++assert "argument cannot be of 'type' type" in str(e.value) + + with pytest.raises(TypeError) as e: + clean(no_type) +-assert "NoneType" in str(e) ++assert "NoneType" in str(e.value) + + + def test_empty():
[arch-commits] Commit in python-bleach/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:56:09 Author: felixonmars Revision: 522039 Python 3.8 rebuild Modified: python-bleach/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:55:02 UTC (rev 522038) +++ PKGBUILD2019-11-01 14:56:09 UTC (rev 522039) @@ -3,7 +3,7 @@ pkgbase=python-bleach pkgname=(python-bleach python2-bleach) pkgver=3.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="An easy whitelist-based HTML-sanitizing tool" url="https://pypi.org/project/bleach/";
[arch-commits] Commit in python-bleach/trunk (PKGBUILD pytest5.patch)
Date: Friday, November 1, 2019 @ 14:55:02 Author: foutrelis Revision: 522038 Adjust tests for pytest 5 Added: python-bleach/trunk/pytest5.patch Modified: python-bleach/trunk/PKGBUILD ---+ PKGBUILD |8 ++-- pytest5.patch | 23 +++ 2 files changed, 29 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:41:56 UTC (rev 522037) +++ PKGBUILD2019-11-01 14:55:02 UTC (rev 522038) @@ -18,11 +18,15 @@ checkdepends=('python-pytest' 'python2-pytest') -source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz) +source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz +pytest5.patch) -sha256sums=('3fdf7f77adcf649c9911387df51254b813185e32b2c6619f690b593a617e19fa') +sha256sums=('3fdf7f77adcf649c9911387df51254b813185e32b2c6619f690b593a617e19fa' +'a1d3dea566e7c56540b83bcd006c730f6c71fe531570fa2c5cccf0a917070bc6') prepare() { + # https://github.com/mozilla/bleach/pull/483 + patch -Np1 -d bleach-$pkgver +Date: Wed, 16 Oct 2019 17:47:27 +0300 +Subject: [PATCH] Support pytest5 syntax for tests + +diff --git a/tests/test_clean.py b/tests/test_clean.py +index e306cc5..d041ffa 100644 +--- a/tests/test_clean.py b/tests/test_clean.py +@@ -24,11 +24,11 @@ def test_only_text_is_cleaned(): + + with pytest.raises(TypeError) as e: + clean(some_type) +-assert "argument cannot be of 'type' type" in str(e) ++assert "argument cannot be of 'type' type" in str(e.value) + + with pytest.raises(TypeError) as e: + clean(no_type) +-assert "NoneType" in str(e) ++assert "NoneType" in str(e.value) + + + def test_empty():
[arch-commits] Commit in python-multidict/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 14:41:56 Author: foutrelis Revision: 522037 archrelease: copy trunk to community-staging-x86_64 Added: python-multidict/repos/community-staging-x86_64/PKGBUILD (from rev 522036, python-multidict/trunk/PKGBUILD) Deleted: python-multidict/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 76 + 1 file changed, 42 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:41:52 UTC (rev 522036) +++ PKGBUILD2019-11-01 14:41:56 UTC (rev 522037) @@ -1,34 +0,0 @@ -# Maintainer: Levente Polyak -# Contributor: renek - -_pkgname=multidict -pkgname=python-${_pkgname} -pkgver=4.5.2 -pkgrel=2 -pkgdesc='Asyncio-based multidict implementation for Python' -url='https://github.com/aio-libs/multidict' -arch=('x86_64') -license=('APACHE') -depends=('python' 'glibc') -makedepends=('cython' 'python-setuptools') -checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz) -sha256sums=('09be72d0c223be82aa5ed4275048c329dba9f4440cd2b9633f78e12b28da') -sha512sums=('ec66cf3c57e3386e07e45641536a6eeb94e9707d8a0d3b485d22b8687f20282c9115d533c7b0e9fb6dba28b923cf68dd8cdda08c75e78ca4eca2f0c3ec23c58f') - -build() { - cd ${_pkgname}-${pkgver} - python setup.py build -} - -check() { - cd ${_pkgname}-${pkgver} - python setup.py test -} - -package() { - cd ${_pkgname}-${pkgver} - python setup.py install --root="${pkgdir}" -O1 --skip-build -} - -# vim: ts=2 sw=2 et: Copied: python-multidict/repos/community-staging-x86_64/PKGBUILD (from rev 522036, python-multidict/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:41:56 UTC (rev 522037) @@ -0,0 +1,42 @@ +# Maintainer: Levente Polyak +# Contributor: renek + +_pkgname=multidict +pkgname=python-${_pkgname} +pkgver=4.5.2 +pkgrel=3 +pkgdesc='Asyncio-based multidict implementation for Python' +url='https://github.com/aio-libs/multidict' +arch=('x86_64') +license=('APACHE') +depends=('python' 'glibc') +makedepends=('cython' 'python-setuptools' 'git') +checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz + multidict-python-3.8.patch::"https://github.com/aio-libs/multidict/commit/49e1613a.patch";) +sha256sums=('09be72d0c223be82aa5ed4275048c329dba9f4440cd2b9633f78e12b28da' +'2ff9957947e77109b002974b9d162f7f483501b15bc3fb768c8feb192f2cf970') +sha512sums=('ec66cf3c57e3386e07e45641536a6eeb94e9707d8a0d3b485d22b8687f20282c9115d533c7b0e9fb6dba28b923cf68dd8cdda08c75e78ca4eca2f0c3ec23c58f' + '471e16d81214045cf06674690234348f1c67c0db99740d2a0bfcbc3c100387b0ace43a84e3f8451e435e7c3a1f17b63f51d44dab12a3851ed686539d13c50689') + +prepare() { + cd $_pkgname-$pkgver + git apply ../multidict-python-3.8.patch # Add test files for python 3.8 +} + +build() { + cd ${_pkgname}-${pkgver} + python setup.py build +} + +check() { + cd ${_pkgname}-${pkgver} + python setup.py test +} + +package() { + cd ${_pkgname}-${pkgver} + python setup.py install --root="${pkgdir}" -O1 --skip-build +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in python-multidict/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:41:52 Author: foutrelis Revision: 522036 Python 3.8 rebuild Modified: python-multidict/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:41:02 UTC (rev 522035) +++ PKGBUILD2019-11-01 14:41:52 UTC (rev 522036) @@ -4,7 +4,7 @@ _pkgname=multidict pkgname=python-${_pkgname} pkgver=4.5.2 -pkgrel=2 +pkgrel=3 pkgdesc='Asyncio-based multidict implementation for Python' url='https://github.com/aio-libs/multidict' arch=('x86_64')
[arch-commits] Commit in python-multidict/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:41:02 Author: arojas Revision: 522035 Add test files for python 3.8 Modified: python-multidict/trunk/PKGBUILD --+ PKGBUILD | 16 1 file changed, 12 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:13:44 UTC (rev 522034) +++ PKGBUILD2019-11-01 14:41:02 UTC (rev 522035) @@ -10,12 +10,20 @@ arch=('x86_64') license=('APACHE') depends=('python' 'glibc') -makedepends=('cython' 'python-setuptools') +makedepends=('cython' 'python-setuptools' 'git') checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz) -sha256sums=('09be72d0c223be82aa5ed4275048c329dba9f4440cd2b9633f78e12b28da') -sha512sums=('ec66cf3c57e3386e07e45641536a6eeb94e9707d8a0d3b485d22b8687f20282c9115d533c7b0e9fb6dba28b923cf68dd8cdda08c75e78ca4eca2f0c3ec23c58f') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz + multidict-python-3.8.patch::"https://github.com/aio-libs/multidict/commit/49e1613a.patch";) +sha256sums=('09be72d0c223be82aa5ed4275048c329dba9f4440cd2b9633f78e12b28da' +'2ff9957947e77109b002974b9d162f7f483501b15bc3fb768c8feb192f2cf970') +sha512sums=('ec66cf3c57e3386e07e45641536a6eeb94e9707d8a0d3b485d22b8687f20282c9115d533c7b0e9fb6dba28b923cf68dd8cdda08c75e78ca4eca2f0c3ec23c58f' + '471e16d81214045cf06674690234348f1c67c0db99740d2a0bfcbc3c100387b0ace43a84e3f8451e435e7c3a1f17b63f51d44dab12a3851ed686539d13c50689') +prepare() { + cd $_pkgname-$pkgver + git apply ../multidict-python-3.8.patch # Add test files for python 3.8 +} + build() { cd ${_pkgname}-${pkgver} python setup.py build
[arch-commits] Commit in geoclue/repos/extra-x86_64 (5 files)
Date: Friday, November 1, 2019 @ 14:22:35 Author: heftig Revision: 366395 archrelease: copy trunk to extra-x86_64 Added: geoclue/repos/extra-x86_64/PKGBUILD (from rev 366394, geoclue/trunk/PKGBUILD) Deleted: geoclue/repos/extra-x86_64/0001-config-Make-the-Mozilla-API-key-configurable.patch geoclue/repos/extra-x86_64/0002-config-Don-t-warn-when-wifi-URL-unset.patch geoclue/repos/extra-x86_64/0003-config-Don-t-crash-when-submission-url-unset.patch geoclue/repos/extra-x86_64/PKGBUILD -+ 0001-config-Make-the-Mozilla-API-key-configurable.patch | 91 -- 0002-config-Don-t-warn-when-wifi-URL-unset.patch| 25 -- 0003-config-Don-t-crash-when-submission-url-unset.patch | 25 -- PKGBUILD| 120 ++ 4 files changed, 52 insertions(+), 209 deletions(-) Deleted: 0001-config-Make-the-Mozilla-API-key-configurable.patch === --- 0001-config-Make-the-Mozilla-API-key-configurable.patch 2019-11-01 14:22:09 UTC (rev 366394) +++ 0001-config-Make-the-Mozilla-API-key-configurable.patch 2019-11-01 14:22:35 UTC (rev 366395) @@ -1,91 +0,0 @@ -From 0b4fa24bb9cc62557de7ec3d14c27316af658f61 Mon Sep 17 00:00:00 2001 -From: "Jan Alexander Steffens (heftig)" -Date: Tue, 1 Oct 2019 13:27:41 + -Subject: [PATCH 1/3] config: Make the Mozilla API key configurable - -And do not expose it in the configuration file. - data/geoclue.conf.in | 18 ++ - meson.build | 1 + - meson_options.txt| 3 +++ - src/gclue-config.c | 4 ++-- - 4 files changed, 16 insertions(+), 10 deletions(-) - -diff --git a/data/geoclue.conf.in b/data/geoclue.conf.in -index fb111de..5b1819e 100644 a/data/geoclue.conf.in -+++ b/data/geoclue.conf.in -@@ -42,13 +42,13 @@ enable=true - # Enable WiFi source - enable=true - --# URL to the wifi geolocation service. The key can currenty be anything, just --# needs to be present but that is likely going to change in future. --url=https://location.services.mozilla.com/v1/geolocate?key=geoclue -+# URL to the wifi geolocation service. If not set, defaults to Mozilla's -+# Location Service with a hardcoded key. To use a custom key, uncomment this URL -+# while changing YOUR_KEY to your MLS API key. -+#url=https://location.services.mozilla.com/v1/geolocate?key=YOUR_KEY - --# To use the Google geolocation service instead of mozilla's, simply uncomment --# this url while changing API_KEY to your Google API key and comment out or --# remove the url above. -+# To use the Google geolocation service instead of Mozilla's, uncomment this URL -+# while changing YOUR_KEY to your Google API key. - # - # WARNING: Please make sure that you are complying with the Google's ToS and - # policies if you uncomment this: -@@ -63,8 +63,10 @@ url=https://location.services.mozilla.com/v1/geolocate?key=geoclue - # - submit-data=false - --# URL to submission API of Mozilla Location Service --submission-url=https://location.services.mozilla.com/v1/submit?key=geoclue -+# URL to submission API of Mozilla Location Service. If not set, defaults to -+# Mozilla's API with a hardcoded key. To use a custom key, uncomment this URL -+# while changing YOUR_KEY to your MLS API key. -+#submission-url=https://location.services.mozilla.com/v1/submit?key=YOUR_KEY - - # A nickname to submit network data with. A nickname must be 2-32 characters long. - submission-nick=geoclue -diff --git a/meson.build b/meson.build -index fde6fa3..7547887 100644 a/meson.build -+++ b/meson.build -@@ -30,6 +30,7 @@ conf.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/geoclue/geo - conf.set_quoted('TEST_SRCDIR', meson.source_root() + '/data/') - conf.set_quoted('LOCALEDIR', localedir) - conf.set_quoted('SYSCONFDIR', sysconfdir) -+conf.set_quoted('MOZILLA_API_KEY', get_option('mozilla-api-key')) - conf.set10('GCLUE_USE_3G_SOURCE', get_option('3g-source')) - conf.set10('GCLUE_USE_CDMA_SOURCE', get_option('cdma-source')) - conf.set10('GCLUE_USE_MODEM_GPS_SOURCE', get_option('modem-gps-source')) -diff --git a/meson_options.txt b/meson_options.txt -index 83bc60e..f5d42e3 100644 a/meson_options.txt -+++ b/meson_options.txt -@@ -34,3 +34,6 @@ option('systemd-system-unit-dir', - option('dbus-srv-user', -type: 'string', value: 'root', -description: 'The user (existing) as which the service will run') -+option('mozilla-api-key', -+ type: 'string', value: 'geoclue', -+ description: 'Your API key for Mozilla Location Service') -diff --git a/src/gclue-config.c b/src/gclue-config.c -index d259c71..df4adcc 100644 a/src/gclue-config.c -+++ b/src/gclue-config.c -@@ -216,8 +216,8 @@ load_enable_source_config (GClueConfig *config, - return enable; - } - --#define DEFAULT_WIFI_URL "https://location.services.mozilla.com/v1/geolocate?key=geoclue"; --#define DEFAULT
[arch-commits] Commit in geoclue/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:22:09 Author: heftig Revision: 366394 Return to the default key Our key has tight limits and MLS admins are unresponsive. Keep using the upstream key as long as it works, as it doesn't seem to have any limits. Modified: geoclue/trunk/PKGBUILD --+ PKGBUILD |9 + 1 file changed, 1 insertion(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:18:56 UTC (rev 366393) +++ PKGBUILD2019-11-01 14:22:09 UTC (rev 366394) @@ -19,12 +19,6 @@ source=("git+https://gitlab.freedesktop.org/geoclue/geoclue.git#commit=$_commit";) sha256sums=('SKIP') -# Mozilla API keys (see https://location.services.mozilla.com/api) -# Note: These are for Arch Linux use ONLY. For your own distribution, please -# get your own set of keys. Feel free to contact hef...@archlinux.org for -# more information. -_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a - pkgver() { cd $pkgname git describe --tags | sed 's/-/+/g' @@ -37,8 +31,7 @@ build() { arch-meson $pkgname build \ -D dbus-srv-user=geoclue \ --D dbus-sys-dir=/usr/share/dbus-1/system.d \ --D mozilla-api-key="$_mozilla_api_key" +-D dbus-sys-dir=/usr/share/dbus-1/system.d ninja -C build }
[arch-commits] Commit in geoclue/trunk (5 files)
Date: Friday, November 1, 2019 @ 14:18:56 Author: heftig Revision: 366393 2.5.5+6+gea52170-1 Modified: geoclue/trunk/PKGBUILD Deleted: geoclue/trunk/0001-config-Make-the-Mozilla-API-key-configurable.patch geoclue/trunk/0002-config-Improve-config-lookup-error-messages.patch geoclue/trunk/0003-config-Clear-error-after-submission-URL-lookup-fails.patch geoclue/trunk/0004-config-Fall-back-to-a-default-submission-nick-if-loo.patch -+ 0001-config-Make-the-Mozilla-API-key-configurable.patch | 91 -- 0002-config-Improve-config-lookup-error-messages.patch | 58 -- 0003-config-Clear-error-after-submission-URL-lookup-fails.patch | 27 -- 0004-config-Fall-back-to-a-default-submission-nick-if-loo.patch | 33 --- PKGBUILD| 19 -- 5 files changed, 5 insertions(+), 223 deletions(-) Deleted: 0001-config-Make-the-Mozilla-API-key-configurable.patch === --- 0001-config-Make-the-Mozilla-API-key-configurable.patch 2019-11-01 14:11:25 UTC (rev 366392) +++ 0001-config-Make-the-Mozilla-API-key-configurable.patch 2019-11-01 14:18:56 UTC (rev 366393) @@ -1,91 +0,0 @@ -From 95c9ad4dc176860c85a07d0db4cb4179929bdb54 Mon Sep 17 00:00:00 2001 -From: "Jan Alexander Steffens (heftig)" -Date: Tue, 1 Oct 2019 13:27:41 + -Subject: [PATCH 1/4] config: Make the Mozilla API key configurable - -And do not expose it in the configuration file. - data/geoclue.conf.in | 18 ++ - meson.build | 1 + - meson_options.txt| 3 +++ - src/gclue-config.c | 4 ++-- - 4 files changed, 16 insertions(+), 10 deletions(-) - -diff --git a/data/geoclue.conf.in b/data/geoclue.conf.in -index fb111de..bebe471 100644 a/data/geoclue.conf.in -+++ b/data/geoclue.conf.in -@@ -42,13 +42,13 @@ enable=true - # Enable WiFi source - enable=true - --# URL to the wifi geolocation service. The key can currenty be anything, just --# needs to be present but that is likely going to change in future. --url=https://location.services.mozilla.com/v1/geolocate?key=geoclue -+# URL to the WiFi geolocation service. If not set, defaults to Mozilla's -+# Location Service with a hardcoded key. To use a custom key, uncomment this URL -+# while changing YOUR_KEY to your MLS API key. -+#url=https://location.services.mozilla.com/v1/geolocate?key=YOUR_KEY - --# To use the Google geolocation service instead of mozilla's, simply uncomment --# this url while changing API_KEY to your Google API key and comment out or --# remove the url above. -+# To use the Google geolocation service instead of Mozilla's, uncomment this URL -+# while changing YOUR_KEY to your Google API key. - # - # WARNING: Please make sure that you are complying with the Google's ToS and - # policies if you uncomment this: -@@ -63,8 +63,10 @@ url=https://location.services.mozilla.com/v1/geolocate?key=geoclue - # - submit-data=false - --# URL to submission API of Mozilla Location Service --submission-url=https://location.services.mozilla.com/v1/submit?key=geoclue -+# URL to submission API of Mozilla Location Service. If not set, defaults to -+# Mozilla's API with a hardcoded key. To use a custom key, uncomment this URL -+# while changing YOUR_KEY to your MLS API key. -+#submission-url=https://location.services.mozilla.com/v1/submit?key=YOUR_KEY - - # A nickname to submit network data with. A nickname must be 2-32 characters long. - submission-nick=geoclue -diff --git a/meson.build b/meson.build -index fde6fa3..7547887 100644 a/meson.build -+++ b/meson.build -@@ -30,6 +30,7 @@ conf.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/geoclue/geo - conf.set_quoted('TEST_SRCDIR', meson.source_root() + '/data/') - conf.set_quoted('LOCALEDIR', localedir) - conf.set_quoted('SYSCONFDIR', sysconfdir) -+conf.set_quoted('MOZILLA_API_KEY', get_option('mozilla-api-key')) - conf.set10('GCLUE_USE_3G_SOURCE', get_option('3g-source')) - conf.set10('GCLUE_USE_CDMA_SOURCE', get_option('cdma-source')) - conf.set10('GCLUE_USE_MODEM_GPS_SOURCE', get_option('modem-gps-source')) -diff --git a/meson_options.txt b/meson_options.txt -index 83bc60e..f5d42e3 100644 a/meson_options.txt -+++ b/meson_options.txt -@@ -34,3 +34,6 @@ option('systemd-system-unit-dir', - option('dbus-srv-user', -type: 'string', value: 'root', -description: 'The user (existing) as which the service will run') -+option('mozilla-api-key', -+ type: 'string', value: 'geoclue', -+ description: 'Your API key for Mozilla Location Service') -diff --git a/src/gclue-config.c b/src/gclue-config.c -index d259c71..df4adcc 100644 a/src/gclue-config.c -+++ b/src/gclue-config.c -@@ -216,8 +216,8 @@ load_enable_source_config (GClueConfig *config, - return enable; - } - --#define DEFAULT_WIFI_URL "https://location.services.mozilla.co
[arch-commits] Commit in python-vistir/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:13:41 Author: foutrelis Revision: 522033 Python 3.8 rebuild Modified: python-vistir/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:09:57 UTC (rev 522032) +++ PKGBUILD2019-11-01 14:13:41 UTC (rev 522033) @@ -2,7 +2,7 @@ pkgname=python-vistir pkgver=0.4.3 -pkgrel=2 +pkgrel=3 pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, projects, subprocesses, and more" url="https://github.com/sarugaku/vistir"; license=('BSD')
[arch-commits] Commit in python-vistir/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:13:44 Author: foutrelis Revision: 522034 archrelease: copy trunk to community-staging-any Added: python-vistir/repos/community-staging-any/PKGBUILD (from rev 522033, python-vistir/trunk/PKGBUILD) Deleted: python-vistir/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:13:41 UTC (rev 522033) +++ PKGBUILD2019-11-01 14:13:44 UTC (rev 522034) @@ -1,32 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=python-vistir -pkgver=0.4.3 -pkgrel=2 -pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, projects, subprocesses, and more" -url="https://github.com/sarugaku/vistir"; -license=('BSD') -arch=('any') -depends=('python-colorama' 'python-requests' 'python-six') -makedepends=('python-setuptools' 'python-wheel') -checkdepends=('python-pytest-runner' 'python-hypothesis-fspaths' 'python-pytest-cov' - 'python-pytest-timeout' 'python-yaspin') -source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/vistir/archive/$pkgver.tar.gz";) -sha512sums=('60da4b1886fc0642530f3d3159844a2ff9401952584d72acdb9fe1a8e3578f05ba5a784f3f77a7379dcb1d93f2aa5aecd48a392b8acea1126b8e5be99d3d2eec') - -build() { - cd vistir-$pkgver - python setup.py build -} - -check() { - cd vistir-$pkgver - python setup.py pytest -} - -package() { - cd vistir-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ -} Copied: python-vistir/repos/community-staging-any/PKGBUILD (from rev 522033, python-vistir/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:13:44 UTC (rev 522034) @@ -0,0 +1,32 @@ +# Maintainer: Felix Yan + +pkgname=python-vistir +pkgver=0.4.3 +pkgrel=3 +pkgdesc="Miscellaneous utilities for dealing with filesystems, paths, projects, subprocesses, and more" +url="https://github.com/sarugaku/vistir"; +license=('BSD') +arch=('any') +depends=('python-colorama' 'python-requests' 'python-six') +makedepends=('python-setuptools' 'python-wheel') +checkdepends=('python-pytest-runner' 'python-hypothesis-fspaths' 'python-pytest-cov' + 'python-pytest-timeout' 'python-yaspin') +source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/vistir/archive/$pkgver.tar.gz";) +sha512sums=('60da4b1886fc0642530f3d3159844a2ff9401952584d72acdb9fe1a8e3578f05ba5a784f3f77a7379dcb1d93f2aa5aecd48a392b8acea1126b8e5be99d3d2eec') + +build() { + cd vistir-$pkgver + python setup.py build +} + +check() { + cd vistir-$pkgver + python setup.py pytest +} + +package() { + cd vistir-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + + install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ +}
[arch-commits] Commit in python-lxml/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:11:20 Author: foutrelis Revision: 366391 Python 3.8 rebuild Modified: python-lxml/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:10:03 UTC (rev 366390) +++ PKGBUILD2019-11-01 14:11:20 UTC (rev 366391) @@ -4,7 +4,7 @@ pkgbase=python-lxml pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs') pkgver=4.4.1 -pkgrel=2 +pkgrel=3 arch=('x86_64') license=('BSD' 'custom') url="https://lxml.de/";
[arch-commits] Commit in python-lxml/repos/staging-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:11:25 Author: foutrelis Revision: 366392 archrelease: copy trunk to staging-x86_64 Added: python-lxml/repos/staging-x86_64/PKGBUILD (from rev 366391, python-lxml/trunk/PKGBUILD) Deleted: python-lxml/repos/staging-x86_64/PKGBUILD --+ PKGBUILD | 194 ++--- 1 file changed, 97 insertions(+), 97 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:11:20 UTC (rev 366391) +++ PKGBUILD2019-11-01 14:11:25 UTC (rev 366392) @@ -1,97 +0,0 @@ -# Maintainer: Angel Velasquez -# Maintainer: Felix Yan - -pkgbase=python-lxml -pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs') -pkgver=4.4.1 -pkgrel=2 -arch=('x86_64') -license=('BSD' 'custom') -url="https://lxml.de/"; -makedepends=('libxslt' 'python-setuptools' 'python2-setuptools' 'epydoc' 'python2-pygments' - 'python2-docutils' 'cython' 'cython2') -checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 'python2-html5lib' - 'python-beautifulsoup4' 'python2-beautifulsoup4') -source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz";) -sha512sums=('08857f5e15d6b4badb8bea96fc7aaf3a02a504f9b87171e01c6ace25250d254691c64661dca8e723824cabac4753c59ffa667ac0b6042506b05e4357389e658c') - -prepare() { - mv lxml-lxml-$pkgver lxml-$pkgver - cp -a lxml-$pkgver{,-py2} - - # Setting LC_CTYPE to workaround encoding issue - export LC_CTYPE=en_US.UTF-8 -} - -build() { - cd "$srcdir"/lxml-$pkgver - python setup.py build - - cd "$srcdir"/lxml-$pkgver-py2 - python2 setup.py build - make PYTHON=python2 html -} - -check() { - # TODO: Find a sane way to skip inplace build - - cd "$srcdir"/lxml-$pkgver - make PYTHON=python test - - cd "$srcdir"/lxml-$pkgver-py2 - make PYTHON=python2 test -} - -package_python-lxml() { - pkgdesc="Python3 binding for the libxml2 and libxslt libraries" - depends=('python' 'libxslt') - optdepends=('python-beautifulsoup4: support for beautifulsoup parser to parse not well formed HTML' - 'python-cssselect: support for cssselect' - 'python-html5lib: support for html5lib parser' - 'python-lxml-docs: offline docs') - - cd lxml-$pkgver - python setup.py install --root="$pkgdir" --skip-build --optimize=1 - - install -Dm644 LICENSES.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 doc/licenses/BSD.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt - install -Dm644 doc/licenses/elementtree.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt -} - -package_python2-lxml() { - pkgdesc="Python2 binding for the libxml2 and libxslt libraries" - depends=('python2' 'libxslt') - optdepends=('python2-beautifulsoup4: support for beautifulsoup parser to parse not well formed HTML' - 'python2-cssselect: support for cssselect' - 'python2-html5lib: support for html5lib parser' - 'python-lxml-docs: offline docs') - - cd lxml-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --skip-build --optimize=1 - - install -Dm644 LICENSES.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 doc/licenses/BSD.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt - install -Dm644 doc/licenses/elementtree.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt -} - -package_python-lxml-docs() { - pkgdesc="Python binding for the libxml2 and libxslt libraries (docs)" - options=('docs') - - cd lxml-$pkgver-py2 - install -d "$pkgdir"/usr/share/doc/$pkgbase - cp -r doc/html "$pkgdir"/usr/share/doc/$pkgbase - - install -Dm644 LICENSES.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 doc/licenses/BSD.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt - install -Dm644 doc/licenses/elementtree.txt \ -"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt -} Copied: python-lxml/repos/staging-x86_64/PKGBUILD (from rev 366391, python-lxml/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:11:25 UTC (rev 366392) @@ -0,0 +1,97 @@ +# Maintainer: Angel Velasquez +# Maintainer: Felix Yan + +pkgbase=python-lxml +pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs') +pkgver=4.4.1 +pkgrel=3 +arch=('x86_64') +license=('BSD' 'custom') +url="https://lxml.de/"; +makedepends=('libxslt' 'python-setuptools' 'python2-setuptools' 'epydoc' 'python2-pygments' + 'python2-docutils' 'cython' 'cython2') +checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 'python2-html5lib' + 'python-beautifulsoup4' 'python2-beautifulsoup4') +source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz";) +sha512sums=('08857f5e15d6b4badb8bea96fc7aaf3a02a504f9b87171e01c6ace25250d254691c64661dca8e723824cabac4753c5
[arch-commits] Commit in bind/repos/staging-x86_64 (18 files)
Date: Friday, November 1, 2019 @ 14:10:03 Author: felixonmars Revision: 366390 archrelease: copy trunk to staging-x86_64 Added: bind/repos/staging-x86_64/127.0.0.zone (from rev 366389, bind/trunk/127.0.0.zone) bind/repos/staging-x86_64/PKGBUILD (from rev 366389, bind/trunk/PKGBUILD) bind/repos/staging-x86_64/empty.zone (from rev 366389, bind/trunk/empty.zone) bind/repos/staging-x86_64/localhost.ip6.zone (from rev 366389, bind/trunk/localhost.ip6.zone) bind/repos/staging-x86_64/localhost.zone (from rev 366389, bind/trunk/localhost.zone) bind/repos/staging-x86_64/named.conf (from rev 366389, bind/trunk/named.conf) bind/repos/staging-x86_64/named.service (from rev 366389, bind/trunk/named.service) bind/repos/staging-x86_64/sysusers.conf (from rev 366389, bind/trunk/sysusers.conf) bind/repos/staging-x86_64/tmpfiles.conf (from rev 366389, bind/trunk/tmpfiles.conf) Deleted: bind/repos/staging-x86_64/127.0.0.zone bind/repos/staging-x86_64/PKGBUILD bind/repos/staging-x86_64/empty.zone bind/repos/staging-x86_64/localhost.ip6.zone bind/repos/staging-x86_64/localhost.zone bind/repos/staging-x86_64/named.conf bind/repos/staging-x86_64/named.service bind/repos/staging-x86_64/sysusers.conf bind/repos/staging-x86_64/tmpfiles.conf + 127.0.0.zone | 20 +-- PKGBUILD | 258 +-- empty.zone | 16 +-- localhost.ip6.zone | 20 +-- localhost.zone | 22 ++-- named.conf | 144 ++-- named.service | 20 +-- sysusers.conf |2 tmpfiles.conf |2 9 files changed, 252 insertions(+), 252 deletions(-) Deleted: 127.0.0.zone === --- 127.0.0.zone2019-11-01 14:09:29 UTC (rev 366389) +++ 127.0.0.zone2019-11-01 14:10:03 UTC (rev 366390) @@ -1,10 +0,0 @@ -@ 1D IN SOA localhost. root.localhost. ( -42; serial (mmdd##) -3H; refresh -15M ; retry -1W; expiry -1D ) ; minimum ttl - -1D IN NS localhost. - -1.0.0.127.in-addr.arpa. 1D IN PTR localhost. Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 366389, bind/trunk/127.0.0.zone) === --- 127.0.0.zone(rev 0) +++ 127.0.0.zone2019-11-01 14:10:03 UTC (rev 366390) @@ -0,0 +1,10 @@ +@ 1D IN SOA localhost. root.localhost. ( +42; serial (mmdd##) +3H; refresh +15M ; retry +1W; expiry +1D ) ; minimum ttl + +1D IN NS localhost. + +1.0.0.127.in-addr.arpa. 1D IN PTR localhost. Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:09:29 UTC (rev 366389) +++ PKGBUILD2019-11-01 14:10:03 UTC (rev 366390) @@ -1,129 +0,0 @@ -# Maintainer: Sébastien Luttringer -# Contributor: Gaetan Bisson -# Contributor: judd -# Contributor: Mario Vazquez - -pkgbase=bind -pkgname=(bind bind-tools) -_pkgver=9.14.7 -pkgver=${_pkgver//-/.} -pkgrel=2 -url='https://www.isc.org/software/bind/' -license=('MPL2') -arch=('x86_64') -options=('!emptydirs') -makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline' - 'libidn2' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' - 'zlib' 'icu' 'xz') -validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing Key 2019 – 2020 (codes...@isc.org) -source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc} -'tmpfiles.conf' -'sysusers.conf' -'named.conf' -'named.service' -'localhost.zone' -'localhost.ip6.zone' -'127.0.0.zone' -'empty.zone') -sha1sums=('ab0b14f4fe6a818fb15673ea9cef3eead8f6a94b' - 'SKIP' - 'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11' - '9537f4835a1f736788d0733c7996a10db2d4eee4' - 'c017aae379c32c7cb1aa1ad84776b83e3a5c139f' - '62b06487323dd0d515a4dc659b8ecd193c29107b' - '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f' - '52da8f1c0247a11b16daa4e03d920e8f09315cbe' - '9c33726088342207ad06d33b2c13408290a0c8ad' - '4f4457b310cbbeadca2272eced062a9c2b2b42fe') - -prepare() { - msg2 'Getting a fresh version of root DNS' - # no more using source array, lack of versioning. - curl -o root.hint https://www.internic.net/zones/named.root - [
[arch-commits] Commit in python-click-log/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:09:57 Author: felixonmars Revision: 522032 archrelease: copy trunk to community-staging-any Added: python-click-log/repos/community-staging-any/PKGBUILD (from rev 522031, python-click-log/trunk/PKGBUILD) Deleted: python-click-log/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:09:42 UTC (rev 522031) +++ PKGBUILD2019-11-01 14:09:57 UTC (rev 522032) @@ -1,40 +0,0 @@ -# Maintainer: David Runge -# Contributor: eolianoe - -_name=click-log -pkgname=python-click-log -pkgver=0.3.2 -pkgrel=3 -pkgdesc="Logging integration for Click" -arch=("any") -url="https://pypi.python.org/pypi/click-log"; -license=("MIT") -depends=("python-click") -makedepends=("python-setuptools") -checkdepends=("python-pytest" "python-click") -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) -sha512sums=('8ae5c43d739127367bbcdcf32bfd4b34b2ea1c377948df3b8588e4bfe2b0f5e7a61d1ccc6cb32c77045b15251222866daffa5a7bfb7a907487548784ba345351') - -build() { - cd "${_name}-${pkgver}" - python setup.py build -} - -check() { - cd "${_name}-${pkgver}" - # Needed for the tests, especially when building in clean chroot - [[ "${LANG}" = C ]] && export LANG=en_US.UTF8 - export PYTHONPATH=build/lib:$PYTHONPATH - py.test - -} - -package() { - cd "${_name}-${pkgver}" - python setup.py install --skip-build \ ---optimize=1 \ ---prefix=/usr \ ---root="${pkgdir}" - install -vDm 644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/" - install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}/" -} Copied: python-click-log/repos/community-staging-any/PKGBUILD (from rev 522031, python-click-log/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:09:57 UTC (rev 522032) @@ -0,0 +1,40 @@ +# Maintainer: David Runge +# Contributor: eolianoe + +_name=click-log +pkgname=python-click-log +pkgver=0.3.2 +pkgrel=4 +pkgdesc="Logging integration for Click" +arch=("any") +url="https://pypi.python.org/pypi/click-log"; +license=("MIT") +depends=("python-click") +makedepends=("python-setuptools") +checkdepends=("python-pytest" "python-click") +source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) +sha512sums=('8ae5c43d739127367bbcdcf32bfd4b34b2ea1c377948df3b8588e4bfe2b0f5e7a61d1ccc6cb32c77045b15251222866daffa5a7bfb7a907487548784ba345351') + +build() { + cd "${_name}-${pkgver}" + python setup.py build +} + +check() { + cd "${_name}-${pkgver}" + # Needed for the tests, especially when building in clean chroot + [[ "${LANG}" = C ]] && export LANG=en_US.UTF8 + export PYTHONPATH=build/lib:$PYTHONPATH + py.test + +} + +package() { + cd "${_name}-${pkgver}" + python setup.py install --skip-build \ +--optimize=1 \ +--prefix=/usr \ +--root="${pkgdir}" + install -vDm 644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/" + install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}/" +}
[arch-commits] Commit in python-jaraco/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:09:13 Author: felixonmars Revision: 522029 Python 3.8 rebuild Modified: python-jaraco/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:09:04 UTC (rev 522028) +++ PKGBUILD2019-11-01 14:09:13 UTC (rev 522029) @@ -3,7 +3,7 @@ pkgbase=python-jaraco pkgname=('python-jaraco' 'python2-jaraco') pkgver=2019.10.22 -pkgrel=2 +pkgrel=3 pkgdesc='A gaggle of idiosyncratic and questionable wrappers for the stdlib.' arch=('any') url='https://github.com/jaraco?page=1&tab=repositories&utf8=%E2%9C%93&q=jaraco'
[arch-commits] Commit in bind/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:09:29 Author: felixonmars Revision: 366389 Python 3.8 rebuild Modified: bind/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:05:48 UTC (rev 366388) +++ PKGBUILD2019-11-01 14:09:29 UTC (rev 366389) @@ -7,7 +7,7 @@ pkgname=(bind bind-tools) _pkgver=9.14.7 pkgver=${_pkgver//-/.} -pkgrel=2 +pkgrel=3 url='https://www.isc.org/software/bind/' license=('MPL2') arch=('x86_64')
[arch-commits] Commit in python-jaraco/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:09:26 Author: felixonmars Revision: 522030 archrelease: copy trunk to community-staging-any Added: python-jaraco/repos/community-staging-any/PKGBUILD (from rev 522029, python-jaraco/trunk/PKGBUILD) Deleted: python-jaraco/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 214 ++--- 1 file changed, 107 insertions(+), 107 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:09:13 UTC (rev 522029) +++ PKGBUILD2019-11-01 14:09:26 UTC (rev 522030) @@ -1,107 +0,0 @@ -# Maintainer: Kyle Keen - -pkgbase=python-jaraco -pkgname=('python-jaraco' 'python2-jaraco') -pkgver=2019.10.22 -pkgrel=2 -pkgdesc='A gaggle of idiosyncratic and questionable wrappers for the stdlib.' -arch=('any') -url='https://github.com/jaraco?page=1&tab=repositories&utf8=%E2%9C%93&q=jaraco' -license=('MIT') -depends=('python-six' 'python-pytz' 'python-more-itertools') -makedepends=('python-setuptools-scm' 'python2-setuptools-scm' -'python2-backports.functools_lru_cache' 'python2-more-itertools' 'python2-pytz') - -# These should not exist and do not deserve 16 packages. -# Furthermore, try to make a replacement for python-irc so we can nuke it all. -# And now cherrypy depends on this too :-( -_text=3.1 -_functools=2.0 -_collections=2.1 -_classes=2.0 -_stream=2.0 -_logging=2.0 -_itertools=4.4.2 -_pyhost="https://files.pythonhosted.org/packages/source"; - -source=("$_pyhost/j/jaraco.text/jaraco.text-$_text.tar.gz" -"$_pyhost/j/jaraco.functools/jaraco.functools-$_functools.tar.gz" -"$_pyhost/j/jaraco.collections/jaraco.collections-$_collections.tar.gz" -"$_pyhost/j/jaraco.classes/jaraco.classes-$_classes.tar.gz" -"$_pyhost/j/jaraco.stream/jaraco.stream-$_stream.tar.gz" -"$_pyhost/j/jaraco.logging/jaraco.logging-$_logging.tar.gz" -"$_pyhost/j/jaraco.itertools/jaraco.itertools-$_itertools.tar.gz") -sha512sums=('9edd50e3b67d40a1a5dfe8796dd55f80aac52cef9ba2f1ad565cf597c1ff8824d2c61900cedd104210b60dcc6dced8c01321af67e2e1a755be89e1c15945da1e' - 'dce30c08f0e9f3c7b682c78fc3a46a26d9972706f4c8449a12ba11aa5ed130c6d9ca405213fd93b6b4110ef9cea549e5fa925c96bfaf18681cd6957d8ba0889f' - '64fd3f4155dfc64152dcfb7970c26c7e3e098b0a8282556d17be2aeb80dcac6092b6dca11bf42cda268e0ddda67f2117704c81218c4b6511236e57b1f602da47' - '83c9a570f951ef6c3708243dce6397cfbfe963db5920550ac807878a69860b34831af5f277f956fd0b327d85462676fd6386a22d6d97c7616e01ca81d7ace694' - 'd379d07772d739abb275cfc8ed7809583c728af695294b9d12ae1276add360b9559de64104cd20d05d82a3250237ae1f6eb23420970a95e9fdf6346ef9312331' - '9262575c3071f78ded2284ebef3a1a80c8ffd60addecf9b215db04471672bd892f6c6bd06a84f9a82e872adf31d45d4eb3faa2884815fcce608840821f49954e' - '74db7a3c7595c7deaf2a0c9ba68e9b02d02ccbc6c65142de34a5339aac679c2d71f05b27e27632d265de4f78997e11d7dc43178bd0d64f3010e1568a5085812c') - -prepare() { - # remove inflect dep - cd "$srcdir/jaraco.itertools-$_itertools" - sed -i "s/'inflect',//" setup.py - sed -i "s/inflect//"jaraco.itertools.egg-info/requires.txt - sed -i "s/inflect//"setup.cfg - sed -i 's/import inflect//' jaraco/itertools.py - sed -i 's/ord = .*$/ord = str(self.sliceArgs[2])+"th"/' jaraco/itertools.py - - cd "$srcdir" - cp -R "jaraco.text-$_text" "py2-jaraco.text-$_text" - cp -R "jaraco.functools-$_functools" "py2-jaraco.functools-$_functools" - cp -R "jaraco.collections-$_collections" "py2-jaraco.collections-$_collections" - cp -R "jaraco.classes-$_classes" "py2-jaraco.classes-$_classes" - cp -R "jaraco.stream-$_stream" "py2-jaraco.stream-$_stream" - cp -R "jaraco.logging-$_logging" "py2-jaraco.logging-$_logging" - cp -R "jaraco.itertools-$_itertools" "py2-jaraco.itertools-$_itertools" -} - -package_python-jaraco() { - cd "$srcdir/jaraco.text-$_text" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.functools-$_functools" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.collections-$_collections" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.classes-$_classes" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.stream-$_stream" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.logging-$_logging" - python3 setup.py install --root="$pkgdir/" --optimize=0 - cd "$srcdir/jaraco.itertools-$_itertools" - python3 setup.py install --root="$pkgdir/" --optimize=0 - - #rm "$pkgdir/usr/bin/calc-prorate" - #rmdir "$pkgdir/usr/bin" - # None of these packages have a license file? Fix later. - #install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-jaraco() { - depends=('python2-six' 'python2-pytz' 'python2-more-itertools'
[arch-commits] Commit in python-click-log/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:09:42 Author: felixonmars Revision: 522031 Python 3.8 rebuild Modified: python-click-log/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:09:26 UTC (rev 522030) +++ PKGBUILD2019-11-01 14:09:42 UTC (rev 522031) @@ -4,7 +4,7 @@ _name=click-log pkgname=python-click-log pkgver=0.3.2 -pkgrel=3 +pkgrel=4 pkgdesc="Logging integration for Click" arch=("any") url="https://pypi.python.org/pypi/click-log";
[arch-commits] Commit in python-networkx/repos/community-staging-any (4 files)
Date: Friday, November 1, 2019 @ 14:09:04 Author: felixonmars Revision: 522028 archrelease: copy trunk to community-staging-any Added: python-networkx/repos/community-staging-any/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch (from rev 522027, python-networkx/trunk/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch) python-networkx/repos/community-staging-any/PKGBUILD (from rev 522027, python-networkx/trunk/PKGBUILD) Deleted: python-networkx/repos/community-staging-any/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch python-networkx/repos/community-staging-any/PKGBUILD -+ 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch | 248 +- PKGBUILD| 72 +- 2 files changed, 160 insertions(+), 160 deletions(-) Deleted: 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch === --- 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch 2019-11-01 14:08:47 UTC (rev 522027) +++ 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch 2019-11-01 14:09:04 UTC (rev 522028) @@ -1,124 +0,0 @@ -From 933d3241eb23d6857716810bedfaf56123111a6a Mon Sep 17 00:00:00 2001 -From: Dan Schult -Date: Sat, 7 Jul 2018 14:07:58 -0400 -Subject: [PATCH] Fix StopIteration handling which breaks in python 3.7 - -See #3046 - -rebase against stable release - - .../algorithms/connectivity/edge_augmentation.py | 12 +--- - networkx/algorithms/connectivity/edge_kcomponents.py | 2 +- - networkx/algorithms/traversal/edgedfs.py | 2 +- - networkx/generators/classic.py | 2 ++ - networkx/readwrite/sparse6.py| 10 -- - 5 files changed, 21 insertions(+), 7 deletions(-) - -diff --git a/networkx/algorithms/connectivity/edge_augmentation.py b/networkx/algorithms/connectivity/edge_augmentation.py -index cd8c748f..21512d7c 100644 a/networkx/algorithms/connectivity/edge_augmentation.py -+++ b/networkx/algorithms/connectivity/edge_augmentation.py -@@ -813,7 +813,10 @@ def unconstrained_bridge_augmentation(G): - A2 = [tuple(leafs)] - else: - # Choose an arbitrary non-leaf root --root = next(n for n, d in T.degree() if d > 1) -+try: -+root = next(n for n, d in T.degree() if d > 1) -+except StopIteration: # no nodes found with degree > 1 -+return - # order the leaves of C by (induced directed) preorder - v2 = [n for n in nx.dfs_preorder_nodes(T, root) if T.degree(n) == 1] - # connecting first half of the leafs in pre-order to the second -@@ -954,7 +957,10 @@ def weighted_bridge_augmentation(G, avail, weight=None): - # nx.least_common_ancestor on the reversed Tree. - - # Pick an arbitrary leaf from C as the root --root = next(n for n in C.nodes() if C.degree(n) == 1) -+try: -+root = next(n for n, d in C.degree() if d == 1) -+except StopIteration: # no nodes found with degree == 1 -+return - # Root C into a tree TR by directing all edges away from the root - # Note in their paper T directs edges towards the root - TR = nx.dfs_tree(C, root) -@@ -1230,7 +1236,7 @@ def greedy_k_edge_augmentation(G, k, avail=None, weight=None, seed=None): - - done = is_k_edge_connected(G, k) - if done: --raise StopIteration() -+return - if avail is None: - # all edges are available - avail_uv = list(complement_edges(G)) -diff --git a/networkx/algorithms/connectivity/edge_kcomponents.py b/networkx/algorithms/connectivity/edge_kcomponents.py -index 37bf61dc..f9b4364c 100644 a/networkx/algorithms/connectivity/edge_kcomponents.py -+++ b/networkx/algorithms/connectivity/edge_kcomponents.py -@@ -573,7 +573,7 @@ def general_k_edge_subgraphs(G, k): - if G.number_of_nodes() < k: - for node in G.nodes(): - yield G.subgraph([node]).copy() --raise StopIteration() -+return - - # Intermediate results - R0 = {G.subgraph(cc).copy() for cc in find_ccs(G)} -diff --git a/networkx/algorithms/traversal/edgedfs.py b/networkx/algorithms/traversal/edgedfs.py -index 5434057d..b9d442b6 100644 a/networkx/algorithms/traversal/edgedfs.py -+++ b/networkx/algorithms/traversal/edgedfs.py -@@ -152,7 +152,7 @@ def edge_dfs(G, source=None, orientation='original'): - """ - nodes = list(G.nbunch_iter(source)) - if not nodes: --raise StopIteration -+return - - kwds = {'data': False} - if G.is_multigraph(): -diff --git a/networkx/generators/classic.py b/networkx/generators/classic.py -index 22741a37..10710db4 100644 a/networkx/generators/classic.py -+++ b/networkx/generators/classic.py -@@ -54,6 +54,8 @@ __all__ = ['balanced_tree', - #
[arch-commits] Commit in python-networkx/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:08:47 Author: felixonmars Revision: 522027 Python 3.8 rebuild Modified: python-networkx/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:06:03 UTC (rev 522026) +++ PKGBUILD2019-11-01 14:08:47 UTC (rev 522027) @@ -3,7 +3,7 @@ pkgname=python-networkx pkgver=2.4 -pkgrel=2 +pkgrel=3 pkgdesc='Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.' arch=('any') license=('BSD')
[arch-commits] Commit in python-slugify/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:06:03 Author: foutrelis Revision: 522026 archrelease: copy trunk to community-staging-any Added: python-slugify/repos/community-staging-any/PKGBUILD (from rev 522025, python-slugify/trunk/PKGBUILD) Deleted: python-slugify/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:05:58 UTC (rev 522025) +++ PKGBUILD2019-11-01 14:06:03 UTC (rev 522026) @@ -1,40 +0,0 @@ -# Maintainer: Maxime Gauduin -# Contributor: Thomas Jost -# Contributor: Andrey Mikhaylenko - -pkgname=python-slugify -pkgver=4.0.0 -pkgrel=2 -pkgdesc='A Python slugify application that handles unicode' -arch=(any) -url=https://github.com/un33k/python-slugify -license=(MIT) -depends=(python-text-unidecode) -makedepends=( - git - python-setuptools -) -optdepends=('python-unidecode: Unidecode support') -source=(git+https://github.com/un33k/python-slugify.git#tag=76f327216bc52adc6115eb6d1483405958810c5c) -sha256sums=(SKIP) - -pkgver() { - cd python-slugify - - git describe --tags -} - -build() { - cd python-slugify - - python setup.py build -} - -package() { - cd python-slugify - - python setup.py install --root="${pkgdir}" --optimize=1 --skip-build - install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-slugify/ -} - -# vim: ts=2 sw=2 et: Copied: python-slugify/repos/community-staging-any/PKGBUILD (from rev 522025, python-slugify/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:06:03 UTC (rev 522026) @@ -0,0 +1,40 @@ +# Maintainer: Maxime Gauduin +# Contributor: Thomas Jost +# Contributor: Andrey Mikhaylenko + +pkgname=python-slugify +pkgver=4.0.0 +pkgrel=3 +pkgdesc='A Python slugify application that handles unicode' +arch=(any) +url=https://github.com/un33k/python-slugify +license=(MIT) +depends=(python-text-unidecode) +makedepends=( + git + python-setuptools +) +optdepends=('python-unidecode: Unidecode support') +source=(git+https://github.com/un33k/python-slugify.git#tag=76f327216bc52adc6115eb6d1483405958810c5c) +sha256sums=(SKIP) + +pkgver() { + cd python-slugify + + git describe --tags +} + +build() { + cd python-slugify + + python setup.py build +} + +package() { + cd python-slugify + + python setup.py install --root="${pkgdir}" --optimize=1 --skip-build + install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-slugify/ +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in tdb/repos/staging-x86_64 (4 files)
Date: Friday, November 1, 2019 @ 14:05:48 Author: felixonmars Revision: 366388 archrelease: copy trunk to staging-x86_64 Added: tdb/repos/staging-x86_64/PKGBUILD (from rev 366387, tdb/trunk/PKGBUILD) tdb/repos/staging-x86_64/wafsamba-use-native-waf-timer.patch (from rev 366387, tdb/trunk/wafsamba-use-native-waf-timer.patch) Deleted: tdb/repos/staging-x86_64/PKGBUILD tdb/repos/staging-x86_64/wafsamba-use-native-waf-timer.patch -+ PKGBUILD| 90 ++--- wafsamba-use-native-waf-timer.patch | 228 +- 2 files changed, 159 insertions(+), 159 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:05:33 UTC (rev 366387) +++ PKGBUILD2019-11-01 14:05:48 UTC (rev 366388) @@ -1,45 +0,0 @@ -# Maintainer: Tobias Powalowski -# Contributor: eric -# Contributor: Tom Newsom - -pkgname=tdb -pkgver=1.3.18 -pkgrel=3 -pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits" -arch=(x86_64) -license=('GPL3') -url="https://tdb.samba.org/"; -makedepends=('python' 'libxslt' 'docbook-xsl') -optdepends=('python: for python bindings') -source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz -https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc - samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch -wafsamba-use-native-waf-timer.patch) -validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library Distribution Key - -prepare() { - cd ${srcdir}/${pkgname}-${pkgver} - - # https://bugzilla.samba.org/show_bug.cgi?id=13998 - patch -Np1 -i ../wafsamba-use-native-waf-timer.patch - - # https://bugzilla.samba.org/show_bug.cgi?id=13960 - patch -Np1 -i ../samba-update-waf-for-py38.patch -} - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ - --localstatedir=/var \ - --sysconfdir=/etc/samba - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=$pkgdir/ install -} -md5sums=('fdb34ed48478a084e9e0c310cc178e87' - 'SKIP' - '74e627915f28a848e046d37055d86f3b' - '66185b90c2dcb6bc346ef8ba5200717f') Copied: tdb/repos/staging-x86_64/PKGBUILD (from rev 366387, tdb/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:05:48 UTC (rev 366388) @@ -0,0 +1,45 @@ +# Maintainer: Tobias Powalowski +# Contributor: eric +# Contributor: Tom Newsom + +pkgname=tdb +pkgver=1.3.18 +pkgrel=4 +pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits" +arch=(x86_64) +license=('GPL3') +url="https://tdb.samba.org/"; +makedepends=('python' 'libxslt' 'docbook-xsl') +optdepends=('python: for python bindings') +source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz +https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc + samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch +wafsamba-use-native-waf-timer.patch) +validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library Distribution Key + +prepare() { + cd ${srcdir}/${pkgname}-${pkgver} + + # https://bugzilla.samba.org/show_bug.cgi?id=13998 + patch -Np1 -i ../wafsamba-use-native-waf-timer.patch + + # https://bugzilla.samba.org/show_bug.cgi?id=13960 + patch -Np1 -i ../samba-update-waf-for-py38.patch +} + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --localstatedir=/var \ + --sysconfdir=/etc/samba + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=$pkgdir/ install +} +md5sums=('fdb34ed48478a084e9e0c310cc178e87' + 'SKIP' + '74e627915f28a848e046d37055d86f3b' + '66185b90c2dcb6bc346ef8ba5200717f') Deleted: wafsamba-use-native-waf-timer.patch === --- wafsamba-use-native-waf-timer.patch 2019-11-01 14:05:33 UTC (rev 366387) +++ wafsamba-use-native-waf-timer.patch 2019-11-01 14:05:48 UTC (rev 366388) @@ -1,114 +0,0 @@ -From dc27ff44de578b0b429a24b0e42e243d8bf481a8 Mon Sep 17 00:00:00 2001 -From: Lukas Slebodnik -Date: Wed, 12 Jun 2019 12:27:04 +0200 -Subject: [PATCH] wafsamba: Use native waf timer - - __main__:1: DeprecationWarning: time.clock has been deprecated in Python 3.3 - and will be removed from Python 3.8: use time.perf_counter - or time.process_time instead - -BUG: https://bugzilla.samba.org/show_bug.cgi?id=13998 - -Signed-off-by: Lukas Slebodnik -Reviewed-by: Andreas Schneider -Reviewed-by: Alexander Bokovoy - buildtools/wafsamba/samba_deps.py | 25 - - 1 file changed, 12 insertions(+), 13 deletions(-) - -diff --git a/buildtools/wafsam
[arch-commits] Commit in python-slugify/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:05:58 Author: foutrelis Revision: 522025 Python 3.8 rebuild Modified: python-slugify/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:05:29 UTC (rev 522024) +++ PKGBUILD2019-11-01 14:05:58 UTC (rev 522025) @@ -4,7 +4,7 @@ pkgname=python-slugify pkgver=4.0.0 -pkgrel=2 +pkgrel=3 pkgdesc='A Python slugify application that handles unicode' arch=(any) url=https://github.com/un33k/python-slugify
[arch-commits] Commit in python-hidapi/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:05:25 Author: foutrelis Revision: 522023 Python 3.8 rebuild Modified: python-hidapi/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:04:42 UTC (rev 522022) +++ PKGBUILD2019-11-01 14:05:25 UTC (rev 522023) @@ -7,7 +7,7 @@ _pipname=hidapi pkgver=0.7.99.21 _pkgver=${pkgver%.*}.post${pkgver##*.} -pkgrel=3 +pkgrel=4 pkgdesc="A Cython interface to the hidapi from signal11/hidapi" arch=('x86_64') makedepends=('cython2' 'python2-setuptools' 'cython' 'python-setuptools' 'libusb' 'udev')
[arch-commits] Commit in tdb/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:05:33 Author: felixonmars Revision: 366387 Python 3.8 rebuild Modified: tdb/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:04:09 UTC (rev 366386) +++ PKGBUILD2019-11-01 14:05:33 UTC (rev 366387) @@ -4,7 +4,7 @@ pkgname=tdb pkgver=1.3.18 -pkgrel=3 +pkgrel=4 pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits" arch=(x86_64) license=('GPL3')
[arch-commits] Commit in python-hidapi/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 14:05:29 Author: foutrelis Revision: 522024 archrelease: copy trunk to community-staging-x86_64 Added: python-hidapi/repos/community-staging-x86_64/PKGBUILD (from rev 522023, python-hidapi/trunk/PKGBUILD) Deleted: python-hidapi/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 98 ++--- 1 file changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:05:25 UTC (rev 522023) +++ PKGBUILD2019-11-01 14:05:29 UTC (rev 522024) @@ -1,49 +0,0 @@ -# Maintainer: Timothy Redaelli -# Contributor: Andy Weidenbaum -# Contributor: Kevin Azzam - -pkgbase=python-hidapi -pkgname=('python-hidapi' 'python2-hidapi') -_pipname=hidapi -pkgver=0.7.99.21 -_pkgver=${pkgver%.*}.post${pkgver##*.} -pkgrel=3 -pkgdesc="A Cython interface to the hidapi from signal11/hidapi" -arch=('x86_64') -makedepends=('cython2' 'python2-setuptools' 'cython' 'python-setuptools' 'libusb' 'udev') -url="https://github.com/trezor/cython-hidapi"; -license=('custom') -source=(https://pypi.org/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$_pkgver.tar.gz) -sha256sums=('e0be1aa6566979266a8fc845ab0e18613f4918cf2c977fe67050f5dc7e2a9a97') - - -prepare() { - cp -R $_pipname-$_pkgver python2-$_pipname-$_pkgver -} - -build() { - cd "$_pipname-$_pkgver" - python setup.py build - - cd "../python2-$_pipname-$_pkgver" - python2 setup.py build -} - - -package_python-hidapi() { - depends=('libusb' 'python') - cd $_pipname-$_pkgver - python setup.py install --root="$pkgdir/" --optimize=1 - - install -dm 755 "$pkgdir/usr/share/licenses/$pkgname" - echo "You are free to use cython-hidapi code for any purpose." > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-hidapi() { - depends=('libusb' 'python2') - cd "python2-$_pipname-$_pkgver" - python2 setup.py install --root="$pkgdir" --optimize=1 - - install -dm 755 "$pkgdir/usr/share/licenses/$pkgname" - echo "You are free to use cython-hidapi code for any purpose." > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} Copied: python-hidapi/repos/community-staging-x86_64/PKGBUILD (from rev 522023, python-hidapi/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:05:29 UTC (rev 522024) @@ -0,0 +1,49 @@ +# Maintainer: Timothy Redaelli +# Contributor: Andy Weidenbaum +# Contributor: Kevin Azzam + +pkgbase=python-hidapi +pkgname=('python-hidapi' 'python2-hidapi') +_pipname=hidapi +pkgver=0.7.99.21 +_pkgver=${pkgver%.*}.post${pkgver##*.} +pkgrel=4 +pkgdesc="A Cython interface to the hidapi from signal11/hidapi" +arch=('x86_64') +makedepends=('cython2' 'python2-setuptools' 'cython' 'python-setuptools' 'libusb' 'udev') +url="https://github.com/trezor/cython-hidapi"; +license=('custom') +source=(https://pypi.org/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$_pkgver.tar.gz) +sha256sums=('e0be1aa6566979266a8fc845ab0e18613f4918cf2c977fe67050f5dc7e2a9a97') + + +prepare() { + cp -R $_pipname-$_pkgver python2-$_pipname-$_pkgver +} + +build() { + cd "$_pipname-$_pkgver" + python setup.py build + + cd "../python2-$_pipname-$_pkgver" + python2 setup.py build +} + + +package_python-hidapi() { + depends=('libusb' 'python') + cd $_pipname-$_pkgver + python setup.py install --root="$pkgdir/" --optimize=1 + + install -dm 755 "$pkgdir/usr/share/licenses/$pkgname" + echo "You are free to use cython-hidapi code for any purpose." > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-hidapi() { + depends=('libusb' 'python2') + cd "python2-$_pipname-$_pkgver" + python2 setup.py install --root="$pkgdir" --optimize=1 + + install -dm 755 "$pkgdir/usr/share/licenses/$pkgname" + echo "You are free to use cython-hidapi code for any purpose." > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}
[arch-commits] Commit in python-ratelim/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:04:42 Author: foutrelis Revision: 522022 archrelease: copy trunk to community-staging-any Added: python-ratelim/repos/community-staging-any/PKGBUILD (from rev 522021, python-ratelim/trunk/PKGBUILD) Deleted: python-ratelim/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:04:38 UTC (rev 522021) +++ PKGBUILD2019-11-01 14:04:42 UTC (rev 522022) @@ -1,26 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=python-ratelim -pkgver=0.1.6 -pkgrel=2 -pkgdesc="Makes it easy to respect rate limits" -url="https://github.com/themiurgo/ratelim"; -license=('MIT') -arch=('any') -depends=('python-decorator') -makedepends=('python-setuptools') -source=("https://pypi.io/packages/source/r/ratelim/ratelim-$pkgver.tar.gz"; - ratelim-LICENSE::https://raw.githubusercontent.com/themiurgo/ratelim/master/LICENSE) -sha512sums=('4d074d47278c591182d56d398c827da86c06428a1f994bd443f04903cca2bfe6affdfdd0daaca6115066903607e0216ac0a5f29240fdfe1c1faf5873a55122b0' - 'ffe65c1aa0d76ed652c0536ea72a518ad449c15270eb654c01d037f3cf263b154293aca66edcb535f499ebb71891833836a90095c913e35498e24888bea2cb2b') - -build() { - cd ratelim-$pkgver - python setup.py build -} - -package() { - cd ratelim-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 ../ratelim-LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-ratelim/repos/community-staging-any/PKGBUILD (from rev 522021, python-ratelim/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:04:42 UTC (rev 522022) @@ -0,0 +1,26 @@ +# Maintainer: Felix Yan + +pkgname=python-ratelim +pkgver=0.1.6 +pkgrel=3 +pkgdesc="Makes it easy to respect rate limits" +url="https://github.com/themiurgo/ratelim"; +license=('MIT') +arch=('any') +depends=('python-decorator') +makedepends=('python-setuptools') +source=("https://pypi.io/packages/source/r/ratelim/ratelim-$pkgver.tar.gz"; + ratelim-LICENSE::https://raw.githubusercontent.com/themiurgo/ratelim/master/LICENSE) +sha512sums=('4d074d47278c591182d56d398c827da86c06428a1f994bd443f04903cca2bfe6affdfdd0daaca6115066903607e0216ac0a5f29240fdfe1c1faf5873a55122b0' + 'ffe65c1aa0d76ed652c0536ea72a518ad449c15270eb654c01d037f3cf263b154293aca66edcb535f499ebb71891833836a90095c913e35498e24888bea2cb2b') + +build() { + cd ratelim-$pkgver + python setup.py build +} + +package() { + cd ratelim-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 ../ratelim-LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in python-zope-proxy/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:04:07 Author: felixonmars Revision: 522019 Python 3.8 rebuild Modified: python-zope-proxy/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:03:45 UTC (rev 522018) +++ PKGBUILD2019-11-01 14:04:07 UTC (rev 522019) @@ -3,7 +3,7 @@ pkgbase=python-zope-proxy pkgname=('python-zope-proxy' 'python2-zope-proxy') pkgver=4.3.2 -pkgrel=2 +pkgrel=3 pkgdesc="Generic Transparent Proxies" arch=('x86_64') url="https://github.com/zopefoundation/zope.proxy";
[arch-commits] Commit in python-hyperlink/repos/staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:04:09 Author: foutrelis Revision: 366386 archrelease: copy trunk to staging-any Added: python-hyperlink/repos/staging-any/PKGBUILD (from rev 366385, python-hyperlink/trunk/PKGBUILD) Deleted: python-hyperlink/repos/staging-any/PKGBUILD --+ PKGBUILD | 104 ++--- 1 file changed, 52 insertions(+), 52 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:04:04 UTC (rev 366385) +++ PKGBUILD2019-11-01 14:04:09 UTC (rev 366386) @@ -1,52 +0,0 @@ -# Maintainer: Felix Yan - -pkgbase=python-hyperlink -pkgname=('python-hyperlink' 'python2-hyperlink') -pkgver=19.0.0 -pkgrel=2 -pkgdesc='A featureful, correct URL for Python' -arch=('any') -license=('BSD') -url='https://github.com/python-hyper/hyperlink' -makedepends=('python-idna' 'python2-idna' 'python-setuptools' 'python2-setuptools') -checkdepends=('python-pytest-runner' 'python2-pytest-runner') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";) -sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee') - -prepare() { - cp -a hyperlink-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/hyperlink-$pkgver - python setup.py build - - cd "$srcdir"/hyperlink-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/hyperlink-$pkgver - python setup.py pytest - - cd "$srcdir"/hyperlink-$pkgver-py2 - python2 setup.py pytest -} - -package_python-hyperlink() { - depends=('python-idna') - - cd hyperlink-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} - -package_python2-hyperlink() { - depends=('python2-idna') - - cd hyperlink-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 - install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} - -# vim:set ts=2 sw=2 et: Copied: python-hyperlink/repos/staging-any/PKGBUILD (from rev 366385, python-hyperlink/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:04:09 UTC (rev 366386) @@ -0,0 +1,52 @@ +# Maintainer: Felix Yan + +pkgbase=python-hyperlink +pkgname=('python-hyperlink' 'python2-hyperlink') +pkgver=19.0.0 +pkgrel=3 +pkgdesc='A featureful, correct URL for Python' +arch=('any') +license=('BSD') +url='https://github.com/python-hyper/hyperlink' +makedepends=('python-idna' 'python2-idna' 'python-setuptools' 'python2-setuptools') +checkdepends=('python-pytest-runner' 'python2-pytest-runner') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";) +sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee') + +prepare() { + cp -a hyperlink-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/hyperlink-$pkgver + python setup.py build + + cd "$srcdir"/hyperlink-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/hyperlink-$pkgver + python setup.py pytest + + cd "$srcdir"/hyperlink-$pkgver-py2 + python2 setup.py pytest +} + +package_python-hyperlink() { + depends=('python-idna') + + cd hyperlink-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-hyperlink() { + depends=('python2-idna') + + cd hyperlink-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-zope-proxy/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 14:04:19 Author: felixonmars Revision: 522020 archrelease: copy trunk to community-staging-x86_64 Added: python-zope-proxy/repos/community-staging-x86_64/PKGBUILD (from rev 522019, python-zope-proxy/trunk/PKGBUILD) Deleted: python-zope-proxy/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 102 ++--- 1 file changed, 51 insertions(+), 51 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:04:07 UTC (rev 522019) +++ PKGBUILD2019-11-01 14:04:19 UTC (rev 522020) @@ -1,51 +0,0 @@ -# Maintainer: Felix Yan - -pkgbase=python-zope-proxy -pkgname=('python-zope-proxy' 'python2-zope-proxy') -pkgver=4.3.2 -pkgrel=2 -pkgdesc="Generic Transparent Proxies" -arch=('x86_64') -url="https://github.com/zopefoundation/zope.proxy"; -license=('ZPL') -makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface' - 'python2-zope-interface') -checkdepends=('python-zope-security' 'python2-zope-security') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.proxy/archive/$pkgver.tar.gz";) -sha512sums=('4a42a4989775f01f1b663d71058aae9852690d713269b5d58c6e10784ed2ca6ca056be5261bb009f230e198818b92d4e1014961f1144dcfacb47202064a8a666') - -prepare() { - cp -a zope.proxy-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/zope.proxy-$pkgver - python setup.py build - - cd "$srcdir"/zope.proxy-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/zope.proxy-$pkgver - python setup.py test || : - - cd "$srcdir"/zope.proxy-$pkgver-py2 - python2 setup.py test -} - -package_python-zope-proxy() { - depends=('python-setuptools' 'python-zope-interface') - - cd zope.proxy-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 -} - -package_python2-zope-proxy() { - depends=('python2-setuptools' 'python2-zope-interface') - - cd zope.proxy-$pkgver - python2 setup.py install --root="$pkgdir" --optimize=1 -} - -# vim:set ts=2 sw=2 et: Copied: python-zope-proxy/repos/community-staging-x86_64/PKGBUILD (from rev 522019, python-zope-proxy/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:04:19 UTC (rev 522020) @@ -0,0 +1,51 @@ +# Maintainer: Felix Yan + +pkgbase=python-zope-proxy +pkgname=('python-zope-proxy' 'python2-zope-proxy') +pkgver=4.3.2 +pkgrel=3 +pkgdesc="Generic Transparent Proxies" +arch=('x86_64') +url="https://github.com/zopefoundation/zope.proxy"; +license=('ZPL') +makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface' + 'python2-zope-interface') +checkdepends=('python-zope-security' 'python2-zope-security') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.proxy/archive/$pkgver.tar.gz";) +sha512sums=('4a42a4989775f01f1b663d71058aae9852690d713269b5d58c6e10784ed2ca6ca056be5261bb009f230e198818b92d4e1014961f1144dcfacb47202064a8a666') + +prepare() { + cp -a zope.proxy-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/zope.proxy-$pkgver + python setup.py build + + cd "$srcdir"/zope.proxy-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/zope.proxy-$pkgver + python setup.py test || : + + cd "$srcdir"/zope.proxy-$pkgver-py2 + python2 setup.py test +} + +package_python-zope-proxy() { + depends=('python-setuptools' 'python-zope-interface') + + cd zope.proxy-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-zope-proxy() { + depends=('python2-setuptools' 'python2-zope-interface') + + cd zope.proxy-$pkgver + python2 setup.py install --root="$pkgdir" --optimize=1 +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-hyperlink/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:04:04 Author: foutrelis Revision: 366385 Python 3.8 rebuild Modified: python-hyperlink/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:01:22 UTC (rev 366384) +++ PKGBUILD2019-11-01 14:04:04 UTC (rev 366385) @@ -3,7 +3,7 @@ pkgbase=python-hyperlink pkgname=('python-hyperlink' 'python2-hyperlink') pkgver=19.0.0 -pkgrel=2 +pkgrel=3 pkgdesc='A featureful, correct URL for Python' arch=('any') license=('BSD')
[arch-commits] Commit in python-ratelim/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:04:38 Author: foutrelis Revision: 522021 Python 3.8 rebuild Modified: python-ratelim/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:04:19 UTC (rev 522020) +++ PKGBUILD2019-11-01 14:04:38 UTC (rev 522021) @@ -2,7 +2,7 @@ pkgname=python-ratelim pkgver=0.1.6 -pkgrel=2 +pkgrel=3 pkgdesc="Makes it easy to respect rate limits" url="https://github.com/themiurgo/ratelim"; license=('MIT')
[arch-commits] Commit in python-sqlalchemy-migrate/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:03:31 Author: felixonmars Revision: 522017 Python 3.8 rebuild Modified: python-sqlalchemy-migrate/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:03:12 UTC (rev 522016) +++ PKGBUILD2019-11-01 14:03:31 UTC (rev 522017) @@ -3,7 +3,7 @@ pkgbase=python-sqlalchemy-migrate pkgname=(python-sqlalchemy-migrate python2-sqlalchemy-migrate) pkgver=0.13.0 -pkgrel=2 +pkgrel=3 pkgdesc="Database schema migration for SQLAlchemy" arch=('any') url="https://pypi.python.org/pypi/sqlalchemy-migrate/$pkgver";
[arch-commits] Commit in python-pbkdf2/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:03:00 Author: felixonmars Revision: 522015 Python 3.8 rebuild Modified: python-pbkdf2/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:02:49 UTC (rev 522014) +++ PKGBUILD2019-11-01 14:03:00 UTC (rev 522015) @@ -4,7 +4,7 @@ pkgname=python-pbkdf2 pkgver=1.3 -pkgrel=5 +pkgrel=6 pkgdesc='Password-based key derivation function PBKDF2' url='https://www.dlitz.net/software/python-pbkdf2/' arch=('any')
[arch-commits] Commit in python-sqlalchemy-migrate/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:03:45 Author: felixonmars Revision: 522018 archrelease: copy trunk to community-staging-any Added: python-sqlalchemy-migrate/repos/community-staging-any/PKGBUILD (from rev 522017, python-sqlalchemy-migrate/trunk/PKGBUILD) Deleted: python-sqlalchemy-migrate/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 116 ++--- 1 file changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:03:31 UTC (rev 522017) +++ PKGBUILD2019-11-01 14:03:45 UTC (rev 522018) @@ -1,58 +0,0 @@ -# Maintainer: Felix Yan - -pkgbase=python-sqlalchemy-migrate -pkgname=(python-sqlalchemy-migrate python2-sqlalchemy-migrate) -pkgver=0.13.0 -pkgrel=2 -pkgdesc="Database schema migration for SQLAlchemy" -arch=('any') -url="https://pypi.python.org/pypi/sqlalchemy-migrate/$pkgver"; -license=('Apache') -makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'python-sqlalchemy' - 'python2-sqlalchemy' 'python-decorator' 'python2-decorator' 'python-sqlparse' - 'python2-sqlparse' 'python-tempita' 'python2-tempita') -checkdepends=('python-mock' 'python-testrepository' 'python-scripttest' 'python-ibm-db-sa') -options=('!emptydirs') -source=("$pkgbase-$pkgver.tar.gz::https://opendev.org/x/sqlalchemy-migrate/archive/$pkgver.tar.gz";) -sha512sums=('3ae1140cb17ea24db7423a8cb62d667620333c8ed559f6bfd6eecfb35f829c9f9c4918f41f8f723d89bcb3c51d6b803e5cbdc30cb485c8cdfc140caaf1d981f0') - -prepare() { - cp -a sqlalchemy-migrate{,-py2} - - export PBR_VERSION=$pkgver -} - -build() { - cd "$srcdir"/sqlalchemy-migrate - python setup.py build - - cd "$srcdir"/sqlalchemy-migrate-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/sqlalchemy-migrate - python setup.py install --root="$PWD/tmp_install" --optimize=1 - PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages" PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py testr || warning "Tests failed" -} - -package_python-sqlalchemy-migrate() { - depends=('python-six' 'python-pbr' 'python-sqlalchemy' 'python-decorator' 'python-sqlparse' - 'python-tempita') - - cd "$srcdir"/sqlalchemy-migrate - python setup.py install --root="$pkgdir" --optimize=1 -} - -package_python2-sqlalchemy-migrate() { - depends=('python2-six' 'python2-pbr' 'python2-sqlalchemy' 'python2-decorator' 'python2-sqlparse' - 'python2-tempita') - - cd "$srcdir"/sqlalchemy-migrate-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 - - mv "$pkgdir"/usr/bin/migrate{,2} - mv "$pkgdir"/usr/bin/migrate-repository{,2} -} - -# vim:set ts=2 sw=2 et: Copied: python-sqlalchemy-migrate/repos/community-staging-any/PKGBUILD (from rev 522017, python-sqlalchemy-migrate/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:03:45 UTC (rev 522018) @@ -0,0 +1,58 @@ +# Maintainer: Felix Yan + +pkgbase=python-sqlalchemy-migrate +pkgname=(python-sqlalchemy-migrate python2-sqlalchemy-migrate) +pkgver=0.13.0 +pkgrel=3 +pkgdesc="Database schema migration for SQLAlchemy" +arch=('any') +url="https://pypi.python.org/pypi/sqlalchemy-migrate/$pkgver"; +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'python-sqlalchemy' + 'python2-sqlalchemy' 'python-decorator' 'python2-decorator' 'python-sqlparse' + 'python2-sqlparse' 'python-tempita' 'python2-tempita') +checkdepends=('python-mock' 'python-testrepository' 'python-scripttest' 'python-ibm-db-sa') +options=('!emptydirs') +source=("$pkgbase-$pkgver.tar.gz::https://opendev.org/x/sqlalchemy-migrate/archive/$pkgver.tar.gz";) +sha512sums=('3ae1140cb17ea24db7423a8cb62d667620333c8ed559f6bfd6eecfb35f829c9f9c4918f41f8f723d89bcb3c51d6b803e5cbdc30cb485c8cdfc140caaf1d981f0') + +prepare() { + cp -a sqlalchemy-migrate{,-py2} + + export PBR_VERSION=$pkgver +} + +build() { + cd "$srcdir"/sqlalchemy-migrate + python setup.py build + + cd "$srcdir"/sqlalchemy-migrate-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/sqlalchemy-migrate + python setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages" PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py testr || warning "Tests failed" +} + +package_python-sqlalchemy-migrate() { + depends=('python-six' 'python-pbr' 'python-sqlalchemy' 'python-decorator' 'python-sqlparse' + 'python-tempita') + + cd "$srcdir"/sqlalchemy-migrate + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-sqlalchemy-migrate() { + depends=('python2-six' 'python2-pbr' 'python2-sqlalchemy' 'python2-decorator' 'python2-sqlparse' + 'python2-tempita') + + cd "$srcdir"/sqlalchemy-mi
[arch-commits] Commit in python-pbkdf2/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:03:12 Author: felixonmars Revision: 522016 archrelease: copy trunk to community-staging-any Added: python-pbkdf2/repos/community-staging-any/PKGBUILD (from rev 522015, python-pbkdf2/trunk/PKGBUILD) Deleted: python-pbkdf2/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 82 ++--- 1 file changed, 41 insertions(+), 41 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:03:00 UTC (rev 522015) +++ PKGBUILD2019-11-01 14:03:12 UTC (rev 522016) @@ -1,41 +0,0 @@ -# Maintainer: Levente Polyak -# Contributor: Timothy Redaelli -# Contributor: Hilton Medeiros - -pkgname=python-pbkdf2 -pkgver=1.3 -pkgrel=5 -pkgdesc='Password-based key derivation function PBKDF2' -url='https://www.dlitz.net/software/python-pbkdf2/' -arch=('any') -license=('MIT') -makedepends=('python' 'python-setuptools' 'python-crypto') -depends=('python') -checkdepends=('python-pytest') -optdepends=('python-crypto: to make use of PyCrypto`s HMAC and SHA') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlitz/python-pbkdf2/archive/v${pkgver}.tar.gz) -sha256sums=('f35d36855c082c9cc258da555ea513c800b125c6b5f2fbf9cc4a45655579de5c') -sha512sums=('642372615a2ffc9cf352805789f836c42763c49cbf113d64524a55c6ff8a09f0fda36c92713387f27c2f6a2950ce89ae04dc9f92495cba904400685b148f947e') - -build() { - msg2 "Building python..." - (cd ${pkgbase}-${pkgver} -python setup.py build - ) -} - -check() { - msg2 "Checking python..." - (cd ${pkgbase}-${pkgver} -py.test - ) -} - -package() { - cd ${pkgbase}-${pkgver} - python setup.py install --prefix=/usr --root="${pkgdir}" -O1 --skip-build - install -Dm 644 README.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}" -} - -# vim: ts=2 sw=2 et: Copied: python-pbkdf2/repos/community-staging-any/PKGBUILD (from rev 522015, python-pbkdf2/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:03:12 UTC (rev 522016) @@ -0,0 +1,41 @@ +# Maintainer: Levente Polyak +# Contributor: Timothy Redaelli +# Contributor: Hilton Medeiros + +pkgname=python-pbkdf2 +pkgver=1.3 +pkgrel=6 +pkgdesc='Password-based key derivation function PBKDF2' +url='https://www.dlitz.net/software/python-pbkdf2/' +arch=('any') +license=('MIT') +makedepends=('python' 'python-setuptools' 'python-crypto') +depends=('python') +checkdepends=('python-pytest') +optdepends=('python-crypto: to make use of PyCrypto`s HMAC and SHA') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlitz/python-pbkdf2/archive/v${pkgver}.tar.gz) +sha256sums=('f35d36855c082c9cc258da555ea513c800b125c6b5f2fbf9cc4a45655579de5c') +sha512sums=('642372615a2ffc9cf352805789f836c42763c49cbf113d64524a55c6ff8a09f0fda36c92713387f27c2f6a2950ce89ae04dc9f92495cba904400685b148f947e') + +build() { + msg2 "Building python..." + (cd ${pkgbase}-${pkgver} +python setup.py build + ) +} + +check() { + msg2 "Checking python..." + (cd ${pkgbase}-${pkgver} +py.test + ) +} + +package() { + cd ${pkgbase}-${pkgver} + python setup.py install --prefix=/usr --root="${pkgdir}" -O1 --skip-build + install -Dm 644 README.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}" +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in python-ldap3/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:02:45 Author: foutrelis Revision: 522013 Python 3.8 rebuild Modified: python-ldap3/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:02:03 UTC (rev 522012) +++ PKGBUILD2019-11-01 14:02:45 UTC (rev 522013) @@ -5,7 +5,7 @@ pkgbase=python-ldap3 pkgname=(python-ldap3 python2-ldap3) pkgver=2.6.1 -pkgrel=2 +pkgrel=3 pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library" url="https://github.com/cannatag/ldap3"; license=('LGPL')
[arch-commits] Commit in python-ldap3/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:02:49 Author: foutrelis Revision: 522014 archrelease: copy trunk to community-staging-any Added: python-ldap3/repos/community-staging-any/PKGBUILD (from rev 522013, python-ldap3/trunk/PKGBUILD) Deleted: python-ldap3/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 100 ++--- 1 file changed, 50 insertions(+), 50 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:02:45 UTC (rev 522013) +++ PKGBUILD2019-11-01 14:02:49 UTC (rev 522014) @@ -1,50 +0,0 @@ -# Maintainer: Felix Yan -# Contributor: Simon Sapin -# Contributor: Kyle Keen - -pkgbase=python-ldap3 -pkgname=(python-ldap3 python2-ldap3) -pkgver=2.6.1 -pkgrel=2 -pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library" -url="https://github.com/cannatag/ldap3"; -license=('LGPL') -arch=('any') -makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 'python2-setuptools') -checkdepends=('python-nose' 'python2-nose') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/v$pkgver.tar.gz";) -sha512sums=('ea33bc43c125d503160d6bf158adb7035d9c3916dbd77a3703a5870bb8628bc0f9d0850a6e32011a6b73beea3e129a18488ffe9e610a750812c0f1637fd36a31') - -prepare() { - cp -a ldap3-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/ldap3-$pkgver - python setup.py build - - cd "$srcdir"/ldap3-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/ldap3-$pkgver - nosetests3 -s test || warning "Tests require a running LDAP server" - - cd "$srcdir"/ldap3-$pkgver-py2 - nosetests2 -s test || warning "Tests require a running LDAP server" -} - -package_python-ldap3() { - depends=('python-pyasn1') - - cd ldap3-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 -} - -package_python2-ldap3() { - depends=('python2-pyasn1') - - cd ldap3-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 -} Copied: python-ldap3/repos/community-staging-any/PKGBUILD (from rev 522013, python-ldap3/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:02:49 UTC (rev 522014) @@ -0,0 +1,50 @@ +# Maintainer: Felix Yan +# Contributor: Simon Sapin +# Contributor: Kyle Keen + +pkgbase=python-ldap3 +pkgname=(python-ldap3 python2-ldap3) +pkgver=2.6.1 +pkgrel=3 +pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library" +url="https://github.com/cannatag/ldap3"; +license=('LGPL') +arch=('any') +makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 'python2-setuptools') +checkdepends=('python-nose' 'python2-nose') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/v$pkgver.tar.gz";) +sha512sums=('ea33bc43c125d503160d6bf158adb7035d9c3916dbd77a3703a5870bb8628bc0f9d0850a6e32011a6b73beea3e129a18488ffe9e610a750812c0f1637fd36a31') + +prepare() { + cp -a ldap3-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/ldap3-$pkgver + python setup.py build + + cd "$srcdir"/ldap3-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/ldap3-$pkgver + nosetests3 -s test || warning "Tests require a running LDAP server" + + cd "$srcdir"/ldap3-$pkgver-py2 + nosetests2 -s test || warning "Tests require a running LDAP server" +} + +package_python-ldap3() { + depends=('python-pyasn1') + + cd ldap3-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-ldap3() { + depends=('python2-pyasn1') + + cd ldap3-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 +}
[arch-commits] Commit in python-ethtool/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 14:01:58 Author: foutrelis Revision: 522011 archrelease: copy trunk to community-staging-x86_64 Added: python-ethtool/repos/community-staging-x86_64/PKGBUILD (from rev 522010, python-ethtool/trunk/PKGBUILD) Deleted: python-ethtool/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 90 ++--- 1 file changed, 45 insertions(+), 45 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:01:54 UTC (rev 522010) +++ PKGBUILD2019-11-01 14:01:58 UTC (rev 522011) @@ -1,45 +0,0 @@ -# Maintainer: David Runge -# Contributor: Konstantin Shalygin - -_name=ethtool -pkgname=python-ethtool -pkgver=0.14 -pkgrel=3 -pkgdesc='Python bindings for the ethtool kernel interface.' -arch=('x86_64') -url="https://github.com/fedora-python/python-ethtool"; -license=('GPL') -depends=('python' 'libnl') -makedepends=('asciidoc' 'libnl' 'python-setuptools') -checkdepends=('net-tools' 'python-pytest') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) -sha512sums=('1b211527cab50d012312476171897beed0885d5a37e5713e5ac2e9a57fcbf67b8e0983160d0f13da8804b04738f60095bef21ab127651cb87b4f0629bb89ccf7') - -build() { - cd "${_name}-${pkgver}" - python setup.py build - a2x -d manpage -f manpage "man/pethtool.8.asciidoc" - a2x -d manpage -f manpage "man/pifconfig.8.asciidoc" -} - -# do not run flaky tests: -# https://github.com/fedora-python/python-ethtool/issues/40 -check() { - cd "${_name}-${pkgver}" - local _py3_ver=$(python --version | cut -d " " -f2) - export PYTHONPATH="build/lib.linux-$CARCH-${_py3_ver%"."*}:${PYTHONPATH}" - py.test -k 'not test_etherinfo_objects \ - and not test_get_interface_info_active \ - and not test_get_interface_info_all' -} - -package() { - cd "${_name}-${pkgver}" - python setup.py install --skip-build \ ---optimize=1 \ ---prefix=/usr \ ---root="${pkgdir}" - - install -t "${pkgdir}/usr/share/man/man8" \ --vDm 644 man/{pethtool,pifconfig}.8 -} Copied: python-ethtool/repos/community-staging-x86_64/PKGBUILD (from rev 522010, python-ethtool/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:01:58 UTC (rev 522011) @@ -0,0 +1,45 @@ +# Maintainer: David Runge +# Contributor: Konstantin Shalygin + +_name=ethtool +pkgname=python-ethtool +pkgver=0.14 +pkgrel=4 +pkgdesc='Python bindings for the ethtool kernel interface.' +arch=('x86_64') +url="https://github.com/fedora-python/python-ethtool"; +license=('GPL') +depends=('python' 'libnl') +makedepends=('asciidoc' 'libnl' 'python-setuptools') +checkdepends=('net-tools' 'python-pytest') +source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) +sha512sums=('1b211527cab50d012312476171897beed0885d5a37e5713e5ac2e9a57fcbf67b8e0983160d0f13da8804b04738f60095bef21ab127651cb87b4f0629bb89ccf7') + +build() { + cd "${_name}-${pkgver}" + python setup.py build + a2x -d manpage -f manpage "man/pethtool.8.asciidoc" + a2x -d manpage -f manpage "man/pifconfig.8.asciidoc" +} + +# do not run flaky tests: +# https://github.com/fedora-python/python-ethtool/issues/40 +check() { + cd "${_name}-${pkgver}" + local _py3_ver=$(python --version | cut -d " " -f2) + export PYTHONPATH="build/lib.linux-$CARCH-${_py3_ver%"."*}:${PYTHONPATH}" + py.test -k 'not test_etherinfo_objects \ + and not test_get_interface_info_active \ + and not test_get_interface_info_all' +} + +package() { + cd "${_name}-${pkgver}" + python setup.py install --skip-build \ +--optimize=1 \ +--prefix=/usr \ +--root="${pkgdir}" + + install -t "${pkgdir}/usr/share/man/man8" \ +-vDm 644 man/{pethtool,pifconfig}.8 +}
[arch-commits] Commit in python-dulwich/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 14:02:03 Author: felixonmars Revision: 522012 archrelease: copy trunk to community-staging-x86_64 Added: python-dulwich/repos/community-staging-x86_64/PKGBUILD (from rev 522011, python-dulwich/trunk/PKGBUILD) Deleted: python-dulwich/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:01:58 UTC (rev 522011) +++ PKGBUILD2019-11-01 14:02:03 UTC (rev 522012) @@ -1,32 +0,0 @@ -# Maintainer: Daniel M. Capella -# Contributor: Timothée Ravier - -_name=dulwich -pkgname=python-dulwich -pkgver=0.19.13 -pkgrel=2 -pkgdesc='Pure-Python implementation of the Git file formats and protocols' -arch=('x86_64') -url=https://www.dulwich.io -license=('GPL') -depends=('python-certifi' 'python-urllib3') -checkdepends=('python-mock') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz";) -sha256sums=('aa628449c5f594a9a282f4d9e5993fef65481ef5e3b9b6c52ff31200f8f5dc95') - -build() { - cd $_name-$pkgver - python setup.py build -} - -check() { - cd $_name-$pkgver - python -m unittest dulwich.tests.test_suite -} - -package() { - cd $_name-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 --skip-build -} - -# vim:set ts=2 sw=2 et: Copied: python-dulwich/repos/community-staging-x86_64/PKGBUILD (from rev 522011, python-dulwich/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:02:03 UTC (rev 522012) @@ -0,0 +1,32 @@ +# Maintainer: Daniel M. Capella +# Contributor: Timothée Ravier + +_name=dulwich +pkgname=python-dulwich +pkgver=0.19.13 +pkgrel=3 +pkgdesc='Pure-Python implementation of the Git file formats and protocols' +arch=('x86_64') +url=https://www.dulwich.io +license=('GPL') +depends=('python-certifi' 'python-urllib3') +checkdepends=('python-mock') +source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz";) +sha256sums=('aa628449c5f594a9a282f4d9e5993fef65481ef5e3b9b6c52ff31200f8f5dc95') + +build() { + cd $_name-$pkgver + python setup.py build +} + +check() { + cd $_name-$pkgver + python -m unittest dulwich.tests.test_suite +} + +package() { + cd $_name-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 --skip-build +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-dulwich/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:50 Author: felixonmars Revision: 522009 Python 3.8 rebuild Modified: python-dulwich/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:01:32 UTC (rev 522008) +++ PKGBUILD2019-11-01 14:01:50 UTC (rev 522009) @@ -4,7 +4,7 @@ _name=dulwich pkgname=python-dulwich pkgver=0.19.13 -pkgrel=2 +pkgrel=3 pkgdesc='Pure-Python implementation of the Git file formats and protocols' arch=('x86_64') url=https://www.dulwich.io
[arch-commits] Commit in python-ethtool/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:54 Author: foutrelis Revision: 522010 Python 3.8 rebuild Modified: python-ethtool/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:01:50 UTC (rev 522009) +++ PKGBUILD2019-11-01 14:01:54 UTC (rev 522010) @@ -4,7 +4,7 @@ _name=ethtool pkgname=python-ethtool pkgver=0.14 -pkgrel=3 +pkgrel=4 pkgdesc='Python bindings for the ethtool kernel interface.' arch=('x86_64') url="https://github.com/fedora-python/python-ethtool";
[arch-commits] Commit in xcb-proto/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:18 Author: foutrelis Revision: 366383 Python 3.8 rebuild Modified: xcb-proto/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:59:53 UTC (rev 366382) +++ PKGBUILD2019-11-01 14:01:18 UTC (rev 366383) @@ -3,7 +3,7 @@ pkgname=xcb-proto pkgver=1.13 -pkgrel=3 +pkgrel=4 pkgdesc="XML-XCB protocol descriptions" arch=(any) url="https://xcb.freedesktop.org/";
[arch-commits] Commit in python-dephell-archive/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:01:32 Author: foutrelis Revision: 522008 archrelease: copy trunk to community-staging-any Added: python-dephell-archive/repos/community-staging-any/PKGBUILD (from rev 522007, python-dephell-archive/trunk/PKGBUILD) Deleted: python-dephell-archive/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 84 ++--- 1 file changed, 42 insertions(+), 42 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:01:28 UTC (rev 522007) +++ PKGBUILD2019-11-01 14:01:32 UTC (rev 522008) @@ -1,42 +0,0 @@ -# Maintainer: Eli Schwartz - -_pkgname=dephell-archive -pkgname=python-dephell-archive -pkgver=0.1.5 -pkgrel=2 -pkgdesc="Pathlib for archives" -arch=('any') -url="https://github.com/dephell/${_pkgname}"; -license=('MIT') -depends=('python-attrs') -makedepends=('python-setuptools') -checkdepends=('python-pytest') -source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) -sha256sums=('d1cff5a962cb7b5862aaddfef4d1ec77684ee69652ba3d75612c7e4bb9c7bb39') -b2sums=('211bf6acfaedaab8a8c72ad29bb63dc8db93fc10730f6f2543303e2a7b96edd03b71ed43a3e9612d52eec8cf706adf0ac5d51542f8c39d0aa8638b7097763b96') - -prepare() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -# pycache slipped into release tarballs -find . -name \*.pyc -delete -} - -build(){ -cd "${srcdir}"/${_pkgname}-${pkgver} - -python setup.py build -} - -check() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -python -m pytest -} - -package() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -python setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} Copied: python-dephell-archive/repos/community-staging-any/PKGBUILD (from rev 522007, python-dephell-archive/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:01:32 UTC (rev 522008) @@ -0,0 +1,42 @@ +# Maintainer: Eli Schwartz + +_pkgname=dephell-archive +pkgname=python-dephell-archive +pkgver=0.1.5 +pkgrel=3 +pkgdesc="Pathlib for archives" +arch=('any') +url="https://github.com/dephell/${_pkgname}"; +license=('MIT') +depends=('python-attrs') +makedepends=('python-setuptools') +checkdepends=('python-pytest') +source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) +sha256sums=('d1cff5a962cb7b5862aaddfef4d1ec77684ee69652ba3d75612c7e4bb9c7bb39') +b2sums=('211bf6acfaedaab8a8c72ad29bb63dc8db93fc10730f6f2543303e2a7b96edd03b71ed43a3e9612d52eec8cf706adf0ac5d51542f8c39d0aa8638b7097763b96') + +prepare() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +# pycache slipped into release tarballs +find . -name \*.pyc -delete +} + +build(){ +cd "${srcdir}"/${_pkgname}-${pkgver} + +python setup.py build +} + +check() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +python -m pytest +} + +package() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in python-pydocstyle/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:04 Author: felixonmars Revision: 522005 Python 3.8 rebuild Modified: python-pydocstyle/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:00:30 UTC (rev 522004) +++ PKGBUILD2019-11-01 14:01:04 UTC (rev 522005) @@ -2,7 +2,7 @@ pkgname=python-pydocstyle pkgver=4.0.1 -pkgrel=2 +pkgrel=3 pkgdesc="Docstring style checker" arch=("any") url="http://www.pydocstyle.org/";
[arch-commits] Commit in python-dephell-archive/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:28 Author: foutrelis Revision: 522007 Python 3.8 rebuild Modified: python-dephell-archive/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:01:17 UTC (rev 522006) +++ PKGBUILD2019-11-01 14:01:28 UTC (rev 522007) @@ -3,7 +3,7 @@ _pkgname=dephell-archive pkgname=python-dephell-archive pkgver=0.1.5 -pkgrel=2 +pkgrel=3 pkgdesc="Pathlib for archives" arch=('any') url="https://github.com/dephell/${_pkgname}";
[arch-commits] Commit in xcb-proto/repos/staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:01:22 Author: foutrelis Revision: 366384 archrelease: copy trunk to staging-any Added: xcb-proto/repos/staging-any/PKGBUILD (from rev 366383, xcb-proto/trunk/PKGBUILD) Deleted: xcb-proto/repos/staging-any/PKGBUILD --+ PKGBUILD | 66 ++--- 1 file changed, 33 insertions(+), 33 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:01:18 UTC (rev 366383) +++ PKGBUILD2019-11-01 14:01:22 UTC (rev 366384) @@ -1,33 +0,0 @@ -# Maintainer: Andreas Radke -# Contributor: Jan de Groot - -pkgname=xcb-proto -pkgver=1.13 -pkgrel=3 -pkgdesc="XML-XCB protocol descriptions" -arch=(any) -url="https://xcb.freedesktop.org/"; -license=('custom') -makedepends=('python' 'libxml2') -source=($url/dist/$pkgname-$pkgver.tar.bz2{,.sig}) -sha512sums=('002aa2aa0ad503977e03419c6f136f1e3aa8c787916830ce6d6be8f81ca99edc1d8fc5f71ce8c592b490cc767bf6567695f0bafe55fe3f743076bcddbaac07f7' -'SKIP') -validpgpkeys=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone " - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr - make -} - -check() { - cd $pkgname-$pkgver - make -k check || /bin/true -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" - install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" -} Copied: xcb-proto/repos/staging-any/PKGBUILD (from rev 366383, xcb-proto/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:01:22 UTC (rev 366384) @@ -0,0 +1,33 @@ +# Maintainer: Andreas Radke +# Contributor: Jan de Groot + +pkgname=xcb-proto +pkgver=1.13 +pkgrel=4 +pkgdesc="XML-XCB protocol descriptions" +arch=(any) +url="https://xcb.freedesktop.org/"; +license=('custom') +makedepends=('python' 'libxml2') +source=($url/dist/$pkgname-$pkgver.tar.bz2{,.sig}) +sha512sums=('002aa2aa0ad503977e03419c6f136f1e3aa8c787916830ce6d6be8f81ca99edc1d8fc5f71ce8c592b490cc767bf6567695f0bafe55fe3f743076bcddbaac07f7' +'SKIP') +validpgpkeys=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone " + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + make -k check || /bin/true +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" + install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" +}
[arch-commits] Commit in python-pydocstyle/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:01:17 Author: felixonmars Revision: 522006 archrelease: copy trunk to community-staging-any Added: python-pydocstyle/repos/community-staging-any/PKGBUILD (from rev 522005, python-pydocstyle/trunk/PKGBUILD) Deleted: python-pydocstyle/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:01:04 UTC (rev 522005) +++ PKGBUILD2019-11-01 14:01:17 UTC (rev 522006) @@ -1,30 +0,0 @@ -# Maintainer: Morten Linderud - -pkgname=python-pydocstyle -pkgver=4.0.1 -pkgrel=2 -pkgdesc="Docstring style checker" -arch=("any") -url="http://www.pydocstyle.org/"; -license=("MIT") -depends=("python-snowballstemmer") -makedepends=("python-setuptools") -checkdepends=("python-pytest" "python-pytest-runner" "python-mock" "python-pip" "python-snowballstemmer") -source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pydocstyle/archive/${pkgver}.tar.gz";) -sha256sums=('15cda50d4ede4a90e8ceb53c42234408d7e6b5e73914c5ccbb6e7b28e914') - -build() { -cd "${srcdir}/pydocstyle-${pkgver}" -python setup.py build -} - -check() { -cd "${srcdir}/pydocstyle-${pkgver}" -python setup.py pytest --addopts "-k 'not test_integration'" -} - -package() { -cd "pydocstyle-${pkgver}" -python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build -install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} Copied: python-pydocstyle/repos/community-staging-any/PKGBUILD (from rev 522005, python-pydocstyle/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:01:17 UTC (rev 522006) @@ -0,0 +1,30 @@ +# Maintainer: Morten Linderud + +pkgname=python-pydocstyle +pkgver=4.0.1 +pkgrel=3 +pkgdesc="Docstring style checker" +arch=("any") +url="http://www.pydocstyle.org/"; +license=("MIT") +depends=("python-snowballstemmer") +makedepends=("python-setuptools") +checkdepends=("python-pytest" "python-pytest-runner" "python-mock" "python-pip" "python-snowballstemmer") +source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pydocstyle/archive/${pkgver}.tar.gz";) +sha256sums=('15cda50d4ede4a90e8ceb53c42234408d7e6b5e73914c5ccbb6e7b28e914') + +build() { +cd "${srcdir}/pydocstyle-${pkgver}" +python setup.py build +} + +check() { +cd "${srcdir}/pydocstyle-${pkgver}" +python setup.py pytest --addopts "-k 'not test_integration'" +} + +package() { +cd "pydocstyle-${pkgver}" +python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build +install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}
[arch-commits] Commit in python-lz4/repos/community-staging-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:17 Author: felixonmars Revision: 521999 archrelease: copy trunk to community-staging-x86_64 Added: python-lz4/repos/community-staging-x86_64/PKGBUILD (from rev 521996, python-lz4/trunk/PKGBUILD) Deleted: python-lz4/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 110 ++--- 1 file changed, 55 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:00:16 UTC (rev 521998) +++ PKGBUILD2019-11-01 14:00:17 UTC (rev 521999) @@ -1,55 +0,0 @@ -# Maintainer: Giancarlo Razzolini -# Contributor: Nissar Chababy -# Contributor: Thrasibule -# Contributor: David Manouchehri -# Contributor: Vladimir Tsanev -# Contributor: Andrew Reed -# Contributor: "Score_Under" - -pkgbase=python-lz4 -_pkgname=lz4 -pkgname=('python-lz4' 'python2-lz4') -pkgver=2.2.1 -pkgrel=2 -pkgdesc="LZ4 bindings for Python" -arch=('x86_64') -license=('BSD') -url="https://github.com/python-lz4/python-lz4"; -makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-pkgconfig' 'python2-pkgconfig' 'python2-future') -checkdepends=('python-pytest' 'python-psutil' 'python2-pytest' 'python2-psutil') -source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-${pkgver}.tar.gz";) -sha512sums=('3f6400c0ac02182306fcb0e76fc78fdcec604bd89baa288c71261cce05350de244eb0d4263e4c1c1d647a529426beac409b3ff20c170c3ea19c7dd82cfae834b') - -prepare() { - cp -a $_pkgname-${pkgver}{,-python2} -} - -build() { - cd "$srcdir"/$_pkgname-$pkgver - python setup.py build - - cd "$srcdir"/$_pkgname-$pkgver-python2 - python2 setup.py build -} - -check() { - cd "$srcdir"/$_pkgname-$pkgver - python -m pytest - - cd "$srcdir"/$_pkgname-$pkgver-python2 - python2 -m pytest -} - -package_python-lz4() { - depends=('python') - - cd $_pkgname-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 --skip-build -} - -package_python2-lz4() { - depends=('python2' 'python2-future') - - cd $_pkgname-$pkgver-python2 - python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build -} Copied: python-lz4/repos/community-staging-x86_64/PKGBUILD (from rev 521996, python-lz4/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:00:17 UTC (rev 521999) @@ -0,0 +1,55 @@ +# Maintainer: Giancarlo Razzolini +# Contributor: Nissar Chababy +# Contributor: Thrasibule +# Contributor: David Manouchehri +# Contributor: Vladimir Tsanev +# Contributor: Andrew Reed +# Contributor: "Score_Under" + +pkgbase=python-lz4 +_pkgname=lz4 +pkgname=('python-lz4' 'python2-lz4') +pkgver=2.2.1 +pkgrel=3 +pkgdesc="LZ4 bindings for Python" +arch=('x86_64') +license=('BSD') +url="https://github.com/python-lz4/python-lz4"; +makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-pkgconfig' 'python2-pkgconfig' 'python2-future') +checkdepends=('python-pytest' 'python-psutil' 'python2-pytest' 'python2-psutil') +source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-${pkgver}.tar.gz";) +sha512sums=('3f6400c0ac02182306fcb0e76fc78fdcec604bd89baa288c71261cce05350de244eb0d4263e4c1c1d647a529426beac409b3ff20c170c3ea19c7dd82cfae834b') + +prepare() { + cp -a $_pkgname-${pkgver}{,-python2} +} + +build() { + cd "$srcdir"/$_pkgname-$pkgver + python setup.py build + + cd "$srcdir"/$_pkgname-$pkgver-python2 + python2 setup.py build +} + +check() { + cd "$srcdir"/$_pkgname-$pkgver + python -m pytest + + cd "$srcdir"/$_pkgname-$pkgver-python2 + python2 -m pytest +} + +package_python-lz4() { + depends=('python') + + cd $_pkgname-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 --skip-build +} + +package_python2-lz4() { + depends=('python2' 'python2-future') + + cd $_pkgname-$pkgver-python2 + python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build +}
[arch-commits] Commit in python-prawcore/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:00:29 Author: felixonmars Revision: 522002 archrelease: copy trunk to community-staging-any Added: python-prawcore/repos/community-staging-any/PKGBUILD (from rev 522000, python-prawcore/trunk/PKGBUILD) Deleted: python-prawcore/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:00:26 UTC (rev 522001) +++ PKGBUILD2019-11-01 14:00:29 UTC (rev 522002) @@ -1,26 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=python-prawcore -pkgver=1.0.1 -pkgrel=3 -pkgdesc="Low-level communication layer for PRAW 4+." -arch=('any') -license=('BSD') -url="https://github.com/praw-dev/prawcore"; -depends=('python-requests') -makedepends=('python-setuptools') -checkdepends=('python-mock' 'python-betamax-matchers' 'python-betamax-serializers' - 'python-testfixtures') -source=("$pkgname-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz";) -sha512sums=('6efe8faa685aa92a04309c4c24963a2a540335ad0bed31b990d840732ddf726789688171f4ead4daf831e89da5c95c17861a079dfc9ae3de254d2690bcff1c8b') - -check() { - cd prawcore-$pkgver - python setup.py test -} - -package() { - cd prawcore-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt -} Copied: python-prawcore/repos/community-staging-any/PKGBUILD (from rev 522000, python-prawcore/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:00:29 UTC (rev 522002) @@ -0,0 +1,26 @@ +# Maintainer: Felix Yan + +pkgname=python-prawcore +pkgver=1.0.1 +pkgrel=4 +pkgdesc="Low-level communication layer for PRAW 4+." +arch=('any') +license=('BSD') +url="https://github.com/praw-dev/prawcore"; +depends=('python-requests') +makedepends=('python-setuptools') +checkdepends=('python-mock' 'python-betamax-matchers' 'python-betamax-serializers' + 'python-testfixtures') +source=("$pkgname-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz";) +sha512sums=('6efe8faa685aa92a04309c4c24963a2a540335ad0bed31b990d840732ddf726789688171f4ead4daf831e89da5c95c17861a079dfc9ae3de254d2690bcff1c8b') + +check() { + cd prawcore-$pkgver + python setup.py test +} + +package() { + cd prawcore-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt +}
[arch-commits] Commit in python-colour/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:14 Author: felixonmars Revision: 521997 archrelease: copy trunk to community-staging-any Added: python-colour/repos/community-staging-any/PKGBUILD (from rev 521996, python-colour/trunk/PKGBUILD) Deleted: python-colour/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:00:04 UTC (rev 521996) +++ PKGBUILD2019-11-01 14:00:14 UTC (rev 521997) @@ -1,32 +0,0 @@ -# Contributor: Hugo Osvaldo Barrera -# Contributor: farwayer - -pkgname=python-colour -_pyname=colour -pkgver=0.1.5 -pkgrel=5 -pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)" -arch=('any') -url="https://github.com/vaab/colour"; -license=('BSD') -depends=('python') -makedepends=('python-setuptools' 'python-d2to1') -checkdepends=('python-nose') -source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz";) -sha256sums=('af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee') - -build() { - cd $_pyname-$pkgver - python setup.py build -} - -check() { - cd $_pyname-$pkgver - nosetests -} - -package() { - cd $_pyname-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} Copied: python-colour/repos/community-staging-any/PKGBUILD (from rev 521996, python-colour/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:00:14 UTC (rev 521997) @@ -0,0 +1,32 @@ +# Contributor: Hugo Osvaldo Barrera +# Contributor: farwayer + +pkgname=python-colour +_pyname=colour +pkgver=0.1.5 +pkgrel=6 +pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)" +arch=('any') +url="https://github.com/vaab/colour"; +license=('BSD') +depends=('python') +makedepends=('python-setuptools' 'python-d2to1') +checkdepends=('python-nose') +source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz";) +sha256sums=('af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee') + +build() { + cd $_pyname-$pkgver + python setup.py build +} + +check() { + cd $_pyname-$pkgver + nosetests +} + +package() { + cd $_pyname-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}
[arch-commits] Commit in python-parsedatetime/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:26 Author: foutrelis Revision: 522001 Python 3.8 rebuild Modified: python-parsedatetime/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:00:18 UTC (rev 522000) +++ PKGBUILD2019-11-01 14:00:26 UTC (rev 522001) @@ -7,7 +7,7 @@ pkgname=python-parsedatetime pkgver=2.4 -pkgrel=4 +pkgrel=5 pkgdesc="Parse human-readable date/time strings." arch=('any') license=('Apache')
[arch-commits] Commit in python-dephell-pythons/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:00:30 Author: foutrelis Revision: 522003 archrelease: copy trunk to community-staging-any Added: python-dephell-pythons/repos/community-staging-any/PKGBUILD (from rev 522001, python-dephell-pythons/trunk/PKGBUILD) Deleted: python-dephell-pythons/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 84 ++--- 1 file changed, 42 insertions(+), 42 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:00:29 UTC (rev 522002) +++ PKGBUILD2019-11-01 14:00:30 UTC (rev 522003) @@ -1,42 +0,0 @@ -# Maintainer: Eli Schwartz - -_pkgname=dephell_pythons -pkgname=python-dephell-pythons -pkgver=0.1.12 -pkgrel=2 -pkgdesc="Work with python versions" -arch=('any') -url="https://github.com/dephell/${_pkgname}"; -license=('MIT') -depends=('python-attrs' 'python-dephell-specifier' 'python-packaging') -makedepends=('python-setuptools') -checkdepends=('python-pytest') -source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) -sha256sums=('6831c41204d6487dc2a1042ea2dc4ae57dbf36cf58d24b247eb2bf31b310d8a5') -b2sums=('4bf5f8fa9cf0201be9e09ae56fa196c2920959733f976e9cad5e02cb8f3b2638509caa9efdfea285424ee6e45243ff6c5dbdf85cea7d0f8d2eb94980feb33853') - -prepare() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -# pycache slipped into release tarballs -find . -name \*.pyc -delete -} - -build(){ -cd "${srcdir}"/${_pkgname}-${pkgver} - -python setup.py build -} - -check() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -python -m pytest -} - -package() { -cd "${srcdir}"/${_pkgname}-${pkgver} - -python setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} Copied: python-dephell-pythons/repos/community-staging-any/PKGBUILD (from rev 522001, python-dephell-pythons/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:00:30 UTC (rev 522003) @@ -0,0 +1,42 @@ +# Maintainer: Eli Schwartz + +_pkgname=dephell_pythons +pkgname=python-dephell-pythons +pkgver=0.1.12 +pkgrel=3 +pkgdesc="Work with python versions" +arch=('any') +url="https://github.com/dephell/${_pkgname}"; +license=('MIT') +depends=('python-attrs' 'python-dephell-specifier' 'python-packaging') +makedepends=('python-setuptools') +checkdepends=('python-pytest') +source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) +sha256sums=('6831c41204d6487dc2a1042ea2dc4ae57dbf36cf58d24b247eb2bf31b310d8a5') +b2sums=('4bf5f8fa9cf0201be9e09ae56fa196c2920959733f976e9cad5e02cb8f3b2638509caa9efdfea285424ee6e45243ff6c5dbdf85cea7d0f8d2eb94980feb33853') + +prepare() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +# pycache slipped into release tarballs +find . -name \*.pyc -delete +} + +build(){ +cd "${srcdir}"/${_pkgname}-${pkgver} + +python setup.py build +} + +check() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +python -m pytest +} + +package() { +cd "${srcdir}"/${_pkgname}-${pkgver} + +python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in python-parsedatetime/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 14:00:30 Author: foutrelis Revision: 522004 archrelease: copy trunk to community-staging-any Added: python-parsedatetime/repos/community-staging-any/PKGBUILD (from rev 522002, python-parsedatetime/trunk/PKGBUILD) Deleted: python-parsedatetime/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 68 ++--- 1 file changed, 34 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 14:00:30 UTC (rev 522003) +++ PKGBUILD2019-11-01 14:00:30 UTC (rev 522004) @@ -1,34 +0,0 @@ -# Maintainer: Felix Yan -# Contributor: Hugo Osvaldo Barrera -# Contributor: Daniel M. Capella -# Contributor: Hugo Osvaldo Barrera -# Contributor: Limao Luo -# Contributor: Jeremy Sands - -pkgname=python-parsedatetime -pkgver=2.4 -pkgrel=4 -pkgdesc="Parse human-readable date/time strings." -arch=('any') -license=('Apache') -url='https://github.com/bear/parsedatetime' -depends=('python-future') -makedepends=('python-setuptools') -checkdepends=('python-pytest-runner') -source=("$pkgname-$pkgver.tar.gz::https://github.com/bear/parsedatetime/archive/v$pkgver.tar.gz";) -sha512sums=('0fd8bfa3411476a20d8874b44036bc162735fb7865d39ca98b0a608daec39daac47100314279dbf66229ec333821492744f7505315d955f58216fdaa75cbf046') - -build() { - cd parsedatetime-$pkgver - python setup.py build -} - -check() { - cd parsedatetime-$pkgver - python setup.py pytest -} - -package() { - cd parsedatetime-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 -} Copied: python-parsedatetime/repos/community-staging-any/PKGBUILD (from rev 522002, python-parsedatetime/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 14:00:30 UTC (rev 522004) @@ -0,0 +1,34 @@ +# Maintainer: Felix Yan +# Contributor: Hugo Osvaldo Barrera +# Contributor: Daniel M. Capella +# Contributor: Hugo Osvaldo Barrera +# Contributor: Limao Luo +# Contributor: Jeremy Sands + +pkgname=python-parsedatetime +pkgver=2.4 +pkgrel=5 +pkgdesc="Parse human-readable date/time strings." +arch=('any') +license=('Apache') +url='https://github.com/bear/parsedatetime' +depends=('python-future') +makedepends=('python-setuptools') +checkdepends=('python-pytest-runner') +source=("$pkgname-$pkgver.tar.gz::https://github.com/bear/parsedatetime/archive/v$pkgver.tar.gz";) +sha512sums=('0fd8bfa3411476a20d8874b44036bc162735fb7865d39ca98b0a608daec39daac47100314279dbf66229ec333821492744f7505315d955f58216fdaa75cbf046') + +build() { + cd parsedatetime-$pkgver + python setup.py build +} + +check() { + cd parsedatetime-$pkgver + python setup.py pytest +} + +package() { + cd parsedatetime-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +}
[arch-commits] Commit in python-dephell-pythons/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:18 Author: foutrelis Revision: 522000 Python 3.8 rebuild Modified: python-dephell-pythons/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:00:17 UTC (rev 521999) +++ PKGBUILD2019-11-01 14:00:18 UTC (rev 522000) @@ -3,7 +3,7 @@ _pkgname=dephell_pythons pkgname=python-dephell-pythons pkgver=0.1.12 -pkgrel=2 +pkgrel=3 pkgdesc="Work with python versions" arch=('any') url="https://github.com/dephell/${_pkgname}";
[arch-commits] Commit in python-colour/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:02 Author: felixonmars Revision: 521995 Python 3.8 rebuild Modified: python-colour/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:59:58 UTC (rev 521994) +++ PKGBUILD2019-11-01 14:00:02 UTC (rev 521995) @@ -4,7 +4,7 @@ pkgname=python-colour _pyname=colour pkgver=0.1.5 -pkgrel=5 +pkgrel=6 pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)" arch=('any') url="https://github.com/vaab/colour";
[arch-commits] Commit in python-fasteners/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:59:42 Author: felixonmars Revision: 521992 archrelease: copy trunk to community-staging-any Added: python-fasteners/repos/community-staging-any/PKGBUILD (from rev 521991, python-fasteners/trunk/PKGBUILD) Deleted: python-fasteners/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:30 UTC (rev 521991) +++ PKGBUILD2019-11-01 13:59:42 UTC (rev 521992) @@ -1,32 +0,0 @@ -# Maintainer: Lukas Fleischer -# Contributor: Tomislav Ivek - -pkgname=('python-fasteners' 'python2-fasteners') -pkgver=0.15 -pkgrel=1 -pkgdesc="A python package that provides useful locks." -arch=('any') -url="https://github.com/harlowja/fasteners"; -license=('Apache') -makedepends=('python-setuptools' 'python2-setuptools') -source=("https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz";) -sha512sums=('0c77c7061c8b76d0d018b07a3d33fc71701842f5b686456ebf31069694baa27a6cc47196267f24bc296078e7503ab0709fa28c9f0088c3cf777ea0e133bb5832') - -build() { - cd "$srcdir/fasteners-$pkgver" - python setup.py build -} - -package_python-fasteners() { - depends=('python-six' 'python-monotonic') - - cd "$srcdir/fasteners-$pkgver" - python setup.py install --optimize=1 --root=${pkgdir} -} - -package_python2-fasteners() { - depends=('python2-six' 'python2-monotonic') - - cd "$srcdir/fasteners-$pkgver" - python2 setup.py install --optimize=1 --root=${pkgdir} -} Copied: python-fasteners/repos/community-staging-any/PKGBUILD (from rev 521991, python-fasteners/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:42 UTC (rev 521992) @@ -0,0 +1,32 @@ +# Maintainer: Lukas Fleischer +# Contributor: Tomislav Ivek + +pkgname=('python-fasteners' 'python2-fasteners') +pkgver=0.15 +pkgrel=2 +pkgdesc="A python package that provides useful locks." +arch=('any') +url="https://github.com/harlowja/fasteners"; +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools') +source=("https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz";) +sha512sums=('0c77c7061c8b76d0d018b07a3d33fc71701842f5b686456ebf31069694baa27a6cc47196267f24bc296078e7503ab0709fa28c9f0088c3cf777ea0e133bb5832') + +build() { + cd "$srcdir/fasteners-$pkgver" + python setup.py build +} + +package_python-fasteners() { + depends=('python-six' 'python-monotonic') + + cd "$srcdir/fasteners-$pkgver" + python setup.py install --optimize=1 --root=${pkgdir} +} + +package_python2-fasteners() { + depends=('python2-six' 'python2-monotonic') + + cd "$srcdir/fasteners-$pkgver" + python2 setup.py install --optimize=1 --root=${pkgdir} +}
[arch-commits] Commit in python-typogrify/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:59:58 Author: felixonmars Revision: 521994 archrelease: copy trunk to community-staging-any Added: python-typogrify/repos/community-staging-any/PKGBUILD (from rev 521993, python-typogrify/trunk/PKGBUILD) Deleted: python-typogrify/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:47 UTC (rev 521993) +++ PKGBUILD2019-11-01 13:59:58 UTC (rev 521994) @@ -1,22 +0,0 @@ -# Maintainer: Jiachen Yang -# AUR Maintainer: Chris Warrick - -pkgname=python-typogrify -_pyname=typogrify -pkgver=2.0.7 -pkgrel=7 -pkgdesc='filters to make caring about typography on the web a bit easier' -arch=('any') -url='https://github.com/mintchaos/typogrify' -license=('BSD') -depends=('python' 'python-smartypants') -makedepends=('python-setuptools') -source=("https://pypi.python.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz";) -md5sums=('63f38f80531996f187d2894cc497ba08') - -package() { - cd "${srcdir}/${_pyname}-${pkgver}" - python3 setup.py install --root="${pkgdir}/" --optimize=1 - install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE" -} -# vim:set ts=2 sw=2 et: Copied: python-typogrify/repos/community-staging-any/PKGBUILD (from rev 521993, python-typogrify/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:58 UTC (rev 521994) @@ -0,0 +1,22 @@ +# Maintainer: Jiachen Yang +# AUR Maintainer: Chris Warrick + +pkgname=python-typogrify +_pyname=typogrify +pkgver=2.0.7 +pkgrel=8 +pkgdesc='filters to make caring about typography on the web a bit easier' +arch=('any') +url='https://github.com/mintchaos/typogrify' +license=('BSD') +depends=('python' 'python-smartypants') +makedepends=('python-setuptools') +source=("https://pypi.python.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz";) +md5sums=('63f38f80531996f187d2894cc497ba08') + +package() { + cd "${srcdir}/${_pyname}-${pkgver}" + python3 setup.py install --root="${pkgdir}/" --optimize=1 + install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE" +} +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-prawcore/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:16 Author: felixonmars Revision: 521998 Python 3.8 rebuild Modified: python-prawcore/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:00:14 UTC (rev 521997) +++ PKGBUILD2019-11-01 14:00:16 UTC (rev 521998) @@ -2,7 +2,7 @@ pkgname=python-prawcore pkgver=1.0.1 -pkgrel=3 +pkgrel=4 pkgdesc="Low-level communication layer for PRAW 4+." arch=('any') license=('BSD')
[arch-commits] Commit in python-pyasn1-modules/repos/staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:53 Author: foutrelis Revision: 366382 archrelease: copy trunk to staging-any Added: python-pyasn1-modules/repos/staging-any/PKGBUILD (from rev 366381, python-pyasn1-modules/trunk/PKGBUILD) Deleted: python-pyasn1-modules/repos/staging-any/PKGBUILD --+ PKGBUILD | 98 ++--- 1 file changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:49 UTC (rev 366381) +++ PKGBUILD2019-11-01 13:59:53 UTC (rev 366382) @@ -1,49 +0,0 @@ -# Maintainer: Felix Yan - -pkgbase=python-pyasn1-modules -pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules') -pkgver=0.2.6 -pkgrel=2 -pkgdesc="A collection of ASN.1-based protocols modules" -arch=('any') -license=('BSD') -url="https://pypi.python.org/pypi/pyasn1-modules"; -makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 'python2-setuptools') -source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz";) -sha512sums=('6bf576146f59043bd708abcfdf6614c5a441e6e38c7bac2458491c5dddc42fe25210f0387ee12882391f6265a0e716ccbda547555ca38fbf3e2adf1587c95462') - -prepare() { - cp -a pyasn1-modules-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/pyasn1-modules-$pkgver - python setup.py build - - cd "$srcdir"/pyasn1-modules-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/pyasn1-modules-$pkgver - PYTHONPATH=. python tests/__main__.py - - cd "$srcdir"/pyasn1-modules-$pkgver-py2 - PYTHONPATH=. python2 tests/__main__.py -} - -package_python-pyasn1-modules() { - depends=('python-pyasn1') - - cd pyasn1-modules-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 --skip-build - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt -} - -package_python2-pyasn1-modules() { - depends=('python2-pyasn1') - - cd pyasn1-modules-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt -} Copied: python-pyasn1-modules/repos/staging-any/PKGBUILD (from rev 366381, python-pyasn1-modules/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:53 UTC (rev 366382) @@ -0,0 +1,49 @@ +# Maintainer: Felix Yan + +pkgbase=python-pyasn1-modules +pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules') +pkgver=0.2.6 +pkgrel=3 +pkgdesc="A collection of ASN.1-based protocols modules" +arch=('any') +license=('BSD') +url="https://pypi.python.org/pypi/pyasn1-modules"; +makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 'python2-setuptools') +source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz";) +sha512sums=('6bf576146f59043bd708abcfdf6614c5a441e6e38c7bac2458491c5dddc42fe25210f0387ee12882391f6265a0e716ccbda547555ca38fbf3e2adf1587c95462') + +prepare() { + cp -a pyasn1-modules-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/pyasn1-modules-$pkgver + python setup.py build + + cd "$srcdir"/pyasn1-modules-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/pyasn1-modules-$pkgver + PYTHONPATH=. python tests/__main__.py + + cd "$srcdir"/pyasn1-modules-$pkgver-py2 + PYTHONPATH=. python2 tests/__main__.py +} + +package_python-pyasn1-modules() { + depends=('python-pyasn1') + + cd pyasn1-modules-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt +} + +package_python2-pyasn1-modules() { + depends=('python2-pyasn1') + + cd pyasn1-modules-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt +}
[arch-commits] Commit in python-typogrify/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:47 Author: felixonmars Revision: 521993 Python 3.8 rebuild Modified: python-typogrify/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:59:42 UTC (rev 521992) +++ PKGBUILD2019-11-01 13:59:47 UTC (rev 521993) @@ -4,7 +4,7 @@ pkgname=python-typogrify _pyname=typogrify pkgver=2.0.7 -pkgrel=7 +pkgrel=8 pkgdesc='filters to make caring about typography on the web a bit easier' arch=('any') url='https://github.com/mintchaos/typogrify'
[arch-commits] Commit in python-pyasn1-modules/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:49 Author: foutrelis Revision: 366381 Python 3.8 rebuild Modified: python-pyasn1-modules/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:58:05 UTC (rev 366380) +++ PKGBUILD2019-11-01 13:59:49 UTC (rev 366381) @@ -3,7 +3,7 @@ pkgbase=python-pyasn1-modules pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules') pkgver=0.2.6 -pkgrel=2 +pkgrel=3 pkgdesc="A collection of ASN.1-based protocols modules" arch=('any') license=('BSD')
[arch-commits] Commit in python-lz4/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 14:00:04 Author: felixonmars Revision: 521996 Python 3.8 rebuild Modified: python-lz4/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 14:00:02 UTC (rev 521995) +++ PKGBUILD2019-11-01 14:00:04 UTC (rev 521996) @@ -10,7 +10,7 @@ _pkgname=lz4 pkgname=('python-lz4' 'python2-lz4') pkgver=2.2.1 -pkgrel=2 +pkgrel=3 pkgdesc="LZ4 bindings for Python" arch=('x86_64') license=('BSD')
[arch-commits] Commit in python-html5lib/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:06 Author: foutrelis Revision: 521988 Python 3.8 rebuild Modified: python-html5lib/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:59:05 UTC (rev 521987) +++ PKGBUILD2019-11-01 13:59:06 UTC (rev 521988) @@ -6,7 +6,7 @@ pkgbase=python-html5lib pkgname=('python2-html5lib' 'python-html5lib') pkgver=1.0.1 -pkgrel=5 +pkgrel=6 arch=('any') url="https://github.com/html5lib"; license=('MIT')
[arch-commits] Commit in python-doit/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:17 Author: felixonmars Revision: 521990 archrelease: copy trunk to community-staging-any Added: python-doit/repos/community-staging-any/PKGBUILD (from rev 521989, python-doit/trunk/PKGBUILD) Deleted: python-doit/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 96 ++--- 1 file changed, 48 insertions(+), 48 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:10 UTC (rev 521989) +++ PKGBUILD2019-11-01 13:59:17 UTC (rev 521990) @@ -1,48 +0,0 @@ -# Maintainer: David Runge -_name=doit -pkgname=python-doit -pkgver=0.31.1 -pkgrel=3 -pkgdesc="A task management and automation tool" -arch=('any') -url="https://pydoit.org/"; -license=('MIT') -depends=('python-cloudpickle' 'python-pyinotify' 'python-setuptools') -#checkdepends=('flake8' 'python-coverage' 'python-pytest') -optdepends=('bash-completion: autocomplete for bash' -'zsh-completions: autocomplete for ZSH') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) -sha512sums=('31235cb46a73adc2d3e726dce24dd9632f5b1ef00d313bf1c42ff895a03eff41be0ec7ae14a004e742d50003c2da17f29bd3392a49d80e73cfb59c12bd152d9d') - -prepare() { - mv -v "$_name-$pkgver" "$pkgname-$pkgver" - cd "$pkgname-$pkgver" -} - -build() { - cd "$pkgname-$pkgver" - python setup.py build -} - -# tests are broken: -# https://github.com/pydoit/doit/issues/269 -#check() { -# cd "$pkgname-$pkgver" -# export PYTHONPATH=build/lib:${PYTHONPATH} -# py.test -#} - -package() { - cd "$pkgname-$pkgver" - python setup.py install --skip-build \ ---optimize=1 \ ---prefix=/usr \ ---root="${pkgdir}" - install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" - install -vDm 644 {AUTHORS,CHANGES,CONTRIBUTING.md,README.rst} \ --t "${pkgdir}/usr/share/doc/${pkgname}" - install -vDm 644 "bash_completion_${_name}" \ -"${pkgdir}/usr/share/bash-completion/completions/${_name}" - install -vDm 644 "zsh_completion_${_name}" \ -"${pkgdir}/usr/share/zsh/site-functions/_${_name}" -} Copied: python-doit/repos/community-staging-any/PKGBUILD (from rev 521989, python-doit/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:17 UTC (rev 521990) @@ -0,0 +1,48 @@ +# Maintainer: David Runge +_name=doit +pkgname=python-doit +pkgver=0.31.1 +pkgrel=4 +pkgdesc="A task management and automation tool" +arch=('any') +url="https://pydoit.org/"; +license=('MIT') +depends=('python-cloudpickle' 'python-pyinotify' 'python-setuptools') +#checkdepends=('flake8' 'python-coverage' 'python-pytest') +optdepends=('bash-completion: autocomplete for bash' +'zsh-completions: autocomplete for ZSH') +source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz";) +sha512sums=('31235cb46a73adc2d3e726dce24dd9632f5b1ef00d313bf1c42ff895a03eff41be0ec7ae14a004e742d50003c2da17f29bd3392a49d80e73cfb59c12bd152d9d') + +prepare() { + mv -v "$_name-$pkgver" "$pkgname-$pkgver" + cd "$pkgname-$pkgver" +} + +build() { + cd "$pkgname-$pkgver" + python setup.py build +} + +# tests are broken: +# https://github.com/pydoit/doit/issues/269 +#check() { +# cd "$pkgname-$pkgver" +# export PYTHONPATH=build/lib:${PYTHONPATH} +# py.test +#} + +package() { + cd "$pkgname-$pkgver" + python setup.py install --skip-build \ +--optimize=1 \ +--prefix=/usr \ +--root="${pkgdir}" + install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" + install -vDm 644 {AUTHORS,CHANGES,CONTRIBUTING.md,README.rst} \ +-t "${pkgdir}/usr/share/doc/${pkgname}" + install -vDm 644 "bash_completion_${_name}" \ +"${pkgdir}/usr/share/bash-completion/completions/${_name}" + install -vDm 644 "zsh_completion_${_name}" \ +"${pkgdir}/usr/share/zsh/site-functions/_${_name}" +}
[arch-commits] Commit in python-fasteners/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:30 Author: felixonmars Revision: 521991 Python 3.8 rebuild Modified: python-fasteners/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:59:17 UTC (rev 521990) +++ PKGBUILD2019-11-01 13:59:30 UTC (rev 521991) @@ -3,7 +3,7 @@ pkgname=('python-fasteners' 'python2-fasteners') pkgver=0.15 -pkgrel=1 +pkgrel=2 pkgdesc="A python package that provides useful locks." arch=('any') url="https://github.com/harlowja/fasteners";
[arch-commits] Commit in python-markdown-math/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:58:46 Author: felixonmars Revision: 521984 archrelease: copy trunk to community-staging-any Added: python-markdown-math/repos/community-staging-any/PKGBUILD (from rev 521982, python-markdown-math/trunk/PKGBUILD) Deleted: python-markdown-math/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 108 ++--- 1 file changed, 54 insertions(+), 54 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:58:41 UTC (rev 521983) +++ PKGBUILD2019-11-01 13:58:46 UTC (rev 521984) @@ -1,54 +0,0 @@ -# Maintainer: Jiachen YANG -# AUR Maintainer: Marcus Scheunemann - -pkgbase=python-markdown-math -pkgname=('python-markdown-math' 'python2-markdown-math') -pkgver=0.6 -pkgrel=4 -pkgdesc="Math extension for Python-Markdown" -arch=('any') -url="https://github.com/mitya57/python-markdown-math"; -license=('BSD') -makedepends=('python-setuptools' 'python2-setuptools') -checkdepends=('python-markdown' 'python2-markdown') -source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc} - "fix-markdown-3.x.patch::https://github.com/mitya57/python-markdown-math/commit/7c2a82327dc6aabca25cd42bf9cce4f0c237fd80.patch";) -sha256sums=('c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022' -'SKIP' -'06ba6b40175a410534d14fe5482d773c1d49d684c0ac74c4795f187c10890c5f') -validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev - -prepare() { -cd "python-markdown-math-${pkgver}" -patch -Np1 -i ../fix-markdown-3.x.patch -} - -build() { -cd "python-markdown-math-${pkgver}" - -python setup.py build -python2 setup.py build -} - -check() { -cd "python-markdown-math-${pkgver}" - -python setup.py test -python2 setup.py test -} - -package_python-markdown-math() { -depends=('python-markdown') - -cd "python-markdown-math-${pkgver}" -python setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} - -package_python2-markdown-math() { -depends=('python2-markdown') - -cd "python-markdown-math-${pkgver}" -python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} Copied: python-markdown-math/repos/community-staging-any/PKGBUILD (from rev 521982, python-markdown-math/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:58:46 UTC (rev 521984) @@ -0,0 +1,54 @@ +# Maintainer: Jiachen YANG +# AUR Maintainer: Marcus Scheunemann + +pkgbase=python-markdown-math +pkgname=('python-markdown-math' 'python2-markdown-math') +pkgver=0.6 +pkgrel=5 +pkgdesc="Math extension for Python-Markdown" +arch=('any') +url="https://github.com/mitya57/python-markdown-math"; +license=('BSD') +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-markdown' 'python2-markdown') +source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc} + "fix-markdown-3.x.patch::https://github.com/mitya57/python-markdown-math/commit/7c2a82327dc6aabca25cd42bf9cce4f0c237fd80.patch";) +sha256sums=('c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022' +'SKIP' +'06ba6b40175a410534d14fe5482d773c1d49d684c0ac74c4795f187c10890c5f') +validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev + +prepare() { +cd "python-markdown-math-${pkgver}" +patch -Np1 -i ../fix-markdown-3.x.patch +} + +build() { +cd "python-markdown-math-${pkgver}" + +python setup.py build +python2 setup.py build +} + +check() { +cd "python-markdown-math-${pkgver}" + +python setup.py test +python2 setup.py test +} + +package_python-markdown-math() { +depends=('python-markdown') + +cd "python-markdown-math-${pkgver}" +python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} + +package_python2-markdown-math() { +depends=('python2-markdown') + +cd "python-markdown-math-${pkgver}" +python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build +install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in ktoblzcheck/repos/community-staging-x86_64 (2 files)
Date: Friday, November 1, 2019 @ 13:59:05 Author: felixonmars Revision: 521987 archrelease: copy trunk to community-staging-x86_64 Added: ktoblzcheck/repos/community-staging-x86_64/PKGBUILD (from rev 521985, ktoblzcheck/trunk/PKGBUILD) Deleted: ktoblzcheck/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 74 ++--- 1 file changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:05 UTC (rev 521986) +++ PKGBUILD2019-11-01 13:59:05 UTC (rev 521987) @@ -1,37 +0,0 @@ -# Maintainer: Jaroslav Lichtblau -# Contributor: Sergej Pupykin -# Contributor: Philipp Sandhaus - -pkgname=ktoblzcheck -pkgver=1.50 -pkgrel=2 -pkgdesc="A library to check account numbers and bank codes of German banks" -arch=('x86_64') -url="http://ktoblzcheck.sourceforge.net"; -license=('LGPL') -depends=('python') -makedepends=('cmake') -source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -sha256sums=('5cebeb144cd9f3e089325f91915802aa0ad03aac13b273d797c6933a989f') - -prepare() { - cd "${srcdir}" - - [[ ! -d build ]] && mkdir build -} - -build() { - cd "${srcdir}"/build - - cmake \ -../$pkgname-$pkgver \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd "${srcdir}"/build - - make DESTDIR="${pkgdir}" install -} Copied: ktoblzcheck/repos/community-staging-x86_64/PKGBUILD (from rev 521985, ktoblzcheck/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:05 UTC (rev 521987) @@ -0,0 +1,37 @@ +# Maintainer: Jaroslav Lichtblau +# Contributor: Sergej Pupykin +# Contributor: Philipp Sandhaus + +pkgname=ktoblzcheck +pkgver=1.50 +pkgrel=3 +pkgdesc="A library to check account numbers and bank codes of German banks" +arch=('x86_64') +url="http://ktoblzcheck.sourceforge.net"; +license=('LGPL') +depends=('python') +makedepends=('cmake') +source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) +sha256sums=('5cebeb144cd9f3e089325f91915802aa0ad03aac13b273d797c6933a989f') + +prepare() { + cd "${srcdir}" + + [[ ! -d build ]] && mkdir build +} + +build() { + cd "${srcdir}"/build + + cmake \ +../$pkgname-$pkgver \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in python-html5lib/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:59:10 Author: foutrelis Revision: 521989 archrelease: copy trunk to community-staging-any Added: python-html5lib/repos/community-staging-any/PKGBUILD (from rev 521988, python-html5lib/trunk/PKGBUILD) Deleted: python-html5lib/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 128 ++--- 1 file changed, 64 insertions(+), 64 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:59:06 UTC (rev 521988) +++ PKGBUILD2019-11-01 13:59:10 UTC (rev 521989) @@ -1,64 +0,0 @@ -# Maintainer: Eli Schwartz -# Maintainer: Jelle van der Waa -# Contributor: Daniel J Griffiths -# Contributor: Erol V. Aktay - -pkgbase=python-html5lib -pkgname=('python2-html5lib' 'python-html5lib') -pkgver=1.0.1 -pkgrel=5 -arch=('any') -url="https://github.com/html5lib"; -license=('MIT') -_deps=('six' 'webencodings') -makedepends=('python-setuptools' 'python2-setuptools' "${_deps[@]/#/python-}" "${_deps[@]/#/python2-}") -_checkdeps=('pytest32' 'pytest-expect' 'lxml' 'mock') -checkdepends=("${_checkdeps[@]/#/python-}" "${_checkdeps[@]/#/python2-}") -_test_commit=c305da74fae50fb018870de7a042da36c1a93b65 -source=("$pkgbase-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz"; - "https://github.com/html5lib/html5lib-tests/archive/${_test_commit}.tar.gz";) -sha256sums=('fabbebd6a55d07842087f13849076eeed350aa8bb6c9ec840f6a6aba9388db06' -'cb261423c644b3469ac66926e290060b481371d0952995d270492fc761d0209a') - -prepare() { -cd "${srcdir}"/html5lib-python-${pkgver} - -rmdir html5lib/tests/testdata -ln -sfT ../../../html5lib-tests-${_test_commit} html5lib/tests/testdata -} - -build() { -cd "${srcdir}"/html5lib-python-${pkgver} - -python setup.py build -python2 setup.py build -} - -check() { -cd "${srcdir}"/html5lib-python-${pkgver} - -py.test -py.test2 -} - -package_python-html5lib() { -pkgdesc="A Python HTML parser/tokenizer based on the WHATWG HTML5 spec" -depends=("${_deps[@]/#/python-}") -optdepends=('python-lxml: lxml treebuilder' -'python-genshi: genshi treewalker') -cd "${srcdir}"/html5lib-python-${pkgver} - -python setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} - -package_python2-html5lib() { -pkgdesc="A Python2 HTML parser/tokenizer based on the WHATWG HTML5 spec" -depends=("${_deps[@]/#/python2-}") -optdepends=('python2-lxml: lxml treebuilder' -'python2-genshi: genshi treewalker') -cd "${srcdir}"/html5lib-python-${pkgver} - -python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build -install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} Copied: python-html5lib/repos/community-staging-any/PKGBUILD (from rev 521988, python-html5lib/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:59:10 UTC (rev 521989) @@ -0,0 +1,64 @@ +# Maintainer: Eli Schwartz +# Maintainer: Jelle van der Waa +# Contributor: Daniel J Griffiths +# Contributor: Erol V. Aktay + +pkgbase=python-html5lib +pkgname=('python2-html5lib' 'python-html5lib') +pkgver=1.0.1 +pkgrel=6 +arch=('any') +url="https://github.com/html5lib"; +license=('MIT') +_deps=('six' 'webencodings') +makedepends=('python-setuptools' 'python2-setuptools' "${_deps[@]/#/python-}" "${_deps[@]/#/python2-}") +_checkdeps=('pytest32' 'pytest-expect' 'lxml' 'mock') +checkdepends=("${_checkdeps[@]/#/python-}" "${_checkdeps[@]/#/python2-}") +_test_commit=c305da74fae50fb018870de7a042da36c1a93b65 +source=("$pkgbase-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz"; + "https://github.com/html5lib/html5lib-tests/archive/${_test_commit}.tar.gz";) +sha256sums=('fabbebd6a55d07842087f13849076eeed350aa8bb6c9ec840f6a6aba9388db06' +'cb261423c644b3469ac66926e290060b481371d0952995d270492fc761d0209a') + +prepare() { +cd "${srcdir}"/html5lib-python-${pkgver} + +rmdir html5lib/tests/testdata +ln -sfT ../../../html5lib-tests-${_test_commit} html5lib/tests/testdata +} + +build() { +cd "${srcdir}"/html5lib-python-${pkgver} + +python setup.py build +python2 setup.py build +} + +check() { +cd "${srcdir}"/html5lib-python-${pkgver} + +py.test +py.test2 +} + +package_python-html5lib() { +pkgdesc="A Python HTML parser/tokenizer based on the WHATWG HTML5 spec" +depends=("${_deps[@]/#/python-}") +optdepends=('python-lxml: lxml treebuilder' +'python-genshi: genshi treewalker') +cd "${srcdir}"/html5lib-python-${pkgver} + +python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +install -Dm644 LICENSE "${p
[arch-commits] Commit in python-doit/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:59:05 Author: felixonmars Revision: 521986 Python 3.8 rebuild Modified: python-doit/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:58:52 UTC (rev 521985) +++ PKGBUILD2019-11-01 13:59:05 UTC (rev 521986) @@ -2,7 +2,7 @@ _name=doit pkgname=python-doit pkgver=0.31.1 -pkgrel=3 +pkgrel=4 pkgdesc="A task management and automation tool" arch=('any') url="https://pydoit.org/";
[arch-commits] Commit in ktoblzcheck/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:58:52 Author: felixonmars Revision: 521985 Python 3.8 rebuild Modified: ktoblzcheck/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:58:46 UTC (rev 521984) +++ PKGBUILD2019-11-01 13:58:52 UTC (rev 521985) @@ -4,7 +4,7 @@ pkgname=ktoblzcheck pkgver=1.50 -pkgrel=2 +pkgrel=3 pkgdesc="A library to check account numbers and bank codes of German banks" arch=('x86_64') url="http://ktoblzcheck.sourceforge.net";
[arch-commits] Commit in python-deprecated/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:58:15 Author: felixonmars Revision: 521980 archrelease: copy trunk to community-staging-any Added: python-deprecated/repos/community-staging-any/PKGBUILD (from rev 521979, python-deprecated/trunk/PKGBUILD) Deleted: python-deprecated/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 100 ++--- 1 file changed, 50 insertions(+), 50 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:58:03 UTC (rev 521979) +++ PKGBUILD2019-11-01 13:58:15 UTC (rev 521980) @@ -1,50 +0,0 @@ -# Maintainer: Felix Yan - -pkgbase=python-deprecated -pkgname=(python-deprecated python2-deprecated) -pkgver=1.2.6 -pkgrel=2 -pkgdesc="Python @deprecated decorator to deprecate old python classes, functions or methods" -url="https://github.com/tantale/deprecated"; -license=('MIT') -arch=('any') -makedepends=('python-setuptools' 'python2-setuptools' 'python-wrapt' 'python2-wrapt') -checkdepends=('python-pytest-runner' 'python2-pytest-runner') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/tantale/deprecated/archive/v$pkgver.tar.gz";) -sha512sums=('fcef322c6d9c317081dae365d469d4b26b0d23d8290e7aa0ca18592fb098ae7f535cb5e898cc81e5c734e7e211c847cdd9d5430c1999a4b9612f30934243ee9e') - -prepare() { - cp -a deprecated-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/deprecated-$pkgver - python setup.py build - - cd "$srcdir"/deprecated-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/deprecated-$pkgver - python setup.py pytest - - cd "$srcdir"/deprecated-$pkgver-py2 - python2 setup.py pytest -} - -package_python-deprecated() { - depends=('python-wrapt') - - cd deprecated-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst -} - -package_python2-deprecated() { - depends=('python2-wrapt') - - cd deprecated-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst -} Copied: python-deprecated/repos/community-staging-any/PKGBUILD (from rev 521979, python-deprecated/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:58:15 UTC (rev 521980) @@ -0,0 +1,50 @@ +# Maintainer: Felix Yan + +pkgbase=python-deprecated +pkgname=(python-deprecated python2-deprecated) +pkgver=1.2.6 +pkgrel=3 +pkgdesc="Python @deprecated decorator to deprecate old python classes, functions or methods" +url="https://github.com/tantale/deprecated"; +license=('MIT') +arch=('any') +makedepends=('python-setuptools' 'python2-setuptools' 'python-wrapt' 'python2-wrapt') +checkdepends=('python-pytest-runner' 'python2-pytest-runner') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/tantale/deprecated/archive/v$pkgver.tar.gz";) +sha512sums=('fcef322c6d9c317081dae365d469d4b26b0d23d8290e7aa0ca18592fb098ae7f535cb5e898cc81e5c734e7e211c847cdd9d5430c1999a4b9612f30934243ee9e') + +prepare() { + cp -a deprecated-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/deprecated-$pkgver + python setup.py build + + cd "$srcdir"/deprecated-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/deprecated-$pkgver + python setup.py pytest + + cd "$srcdir"/deprecated-$pkgver-py2 + python2 setup.py pytest +} + +package_python-deprecated() { + depends=('python-wrapt') + + cd deprecated-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst +} + +package_python2-deprecated() { + depends=('python2-wrapt') + + cd deprecated-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst +}
[arch-commits] Commit in python-markdown-math/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:58:32 Author: felixonmars Revision: 521981 Python 3.8 rebuild Modified: python-markdown-math/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:58:15 UTC (rev 521980) +++ PKGBUILD2019-11-01 13:58:32 UTC (rev 521981) @@ -4,7 +4,7 @@ pkgbase=python-markdown-math pkgname=('python-markdown-math' 'python2-markdown-math') pkgver=0.6 -pkgrel=4 +pkgrel=5 pkgdesc="Math extension for Python-Markdown" arch=('any') url="https://github.com/mitya57/python-markdown-math";
[arch-commits] Commit in python-pyrfc3339/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:58:37 Author: foutrelis Revision: 521982 Python 3.8 rebuild Modified: python-pyrfc3339/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:58:32 UTC (rev 521981) +++ PKGBUILD2019-11-01 13:58:37 UTC (rev 521982) @@ -3,7 +3,7 @@ pkgname=(python-pyrfc3339 python2-pyrfc3339) pkgver=1.1 -pkgrel=3 +pkgrel=4 pkgdesc="Parses and generates RFC 3339-compliant timestamps using Python datetime.datetime objects." arch=('any') license=('MIT')
[arch-commits] Commit in talloc/repos/staging-x86_64 (4 files)
Date: Friday, November 1, 2019 @ 13:58:05 Author: felixonmars Revision: 366380 archrelease: copy trunk to staging-x86_64 Added: talloc/repos/staging-x86_64/PKGBUILD (from rev 366379, talloc/trunk/PKGBUILD) talloc/repos/staging-x86_64/wafsamba-use-native-waf-timer.patch (from rev 366379, talloc/trunk/wafsamba-use-native-waf-timer.patch) Deleted: talloc/repos/staging-x86_64/PKGBUILD talloc/repos/staging-x86_64/wafsamba-use-native-waf-timer.patch -+ PKGBUILD| 104 +++ wafsamba-use-native-waf-timer.patch | 228 +- 2 files changed, 166 insertions(+), 166 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:57:49 UTC (rev 366379) +++ PKGBUILD2019-11-01 13:58:05 UTC (rev 366380) @@ -1,52 +0,0 @@ -# Maintainer: -# Contributor: Tobias Powalowski - -pkgname=talloc -pkgver=2.2.0 -pkgrel=2 -pkgdesc="Hierarchical pool based memory allocator with destructors" -arch=('x86_64') -license=('GPL3') -url="https://talloc.samba.org/"; -depends=('glibc') -makedepends=('python' 'docbook-xsl') -optdepends=('python: for python bindings') -source=(https://www.samba.org/ftp/talloc/talloc-$pkgver.tar.{gz,asc} - samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch -wafsamba-use-native-waf-timer.patch) -sha1sums=('d806e2e4e9b973e8ab6521d1dd20a03abae32c99' - 'SKIP' - 'ab8f8bd63c722e2e3b709e89fa3c1e222daac988' - '2e688ce37d2f5027ba6e4eb52503353d9707fdae') -validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-b...@samba.org - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # https://bugzilla.samba.org/show_bug.cgi?id=13960 - patch -Np1 -i ../samba-update-waf-for-py38.patch - - # https://bugzilla.samba.org/show_bug.cgi?id=13998 - patch -Np1 -i ../wafsamba-use-native-waf-timer.patch -} - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ - --sysconfdir=/etc/samba \ - --localstatedir=/var \ - --bundled-libraries=NONE \ - --builtin-libraries=replace \ - --enable-talloc-compat1 - make -} - -check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make check -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} Copied: talloc/repos/staging-x86_64/PKGBUILD (from rev 366379, talloc/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:58:05 UTC (rev 366380) @@ -0,0 +1,52 @@ +# Maintainer: +# Contributor: Tobias Powalowski + +pkgname=talloc +pkgver=2.2.0 +pkgrel=3 +pkgdesc="Hierarchical pool based memory allocator with destructors" +arch=('x86_64') +license=('GPL3') +url="https://talloc.samba.org/"; +depends=('glibc') +makedepends=('python' 'docbook-xsl') +optdepends=('python: for python bindings') +source=(https://www.samba.org/ftp/talloc/talloc-$pkgver.tar.{gz,asc} + samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch +wafsamba-use-native-waf-timer.patch) +sha1sums=('d806e2e4e9b973e8ab6521d1dd20a03abae32c99' + 'SKIP' + 'ab8f8bd63c722e2e3b709e89fa3c1e222daac988' + '2e688ce37d2f5027ba6e4eb52503353d9707fdae') +validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-b...@samba.org + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # https://bugzilla.samba.org/show_bug.cgi?id=13960 + patch -Np1 -i ../samba-update-waf-for-py38.patch + + # https://bugzilla.samba.org/show_bug.cgi?id=13998 + patch -Np1 -i ../wafsamba-use-native-waf-timer.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --sysconfdir=/etc/samba \ + --localstatedir=/var \ + --bundled-libraries=NONE \ + --builtin-libraries=replace \ + --enable-talloc-compat1 + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Deleted: wafsamba-use-native-waf-timer.patch === --- wafsamba-use-native-waf-timer.patch 2019-11-01 13:57:49 UTC (rev 366379) +++ wafsamba-use-native-waf-timer.patch 2019-11-01 13:58:05 UTC (rev 366380) @@ -1,114 +0,0 @@ -From dc27ff44de578b0b429a24b0e42e243d8bf481a8 Mon Sep 17 00:00:00 2001 -From: Lukas Slebodnik -Date: Wed, 12 Jun 2019 12:27:04 +0200 -Subject: [PATCH] wafsamba: Use native waf timer - - __main__:1: DeprecationWarning: time.clock has been deprecated in Python 3.3 - and will be removed from Python 3.8: use time.perf_counter - or time.process_time instead - -BUG: https://bugzilla.samba.org/show_bug.cgi?id=13998 - -Signed-off-by: Lukas Slebodnik -Reviewed-by: Andreas Schneider -Reviewed-b
[arch-commits] Commit in python-deprecated/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:58:03 Author: felixonmars Revision: 521979 Python 3.8 rebuild Modified: python-deprecated/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:57:56 UTC (rev 521978) +++ PKGBUILD2019-11-01 13:58:03 UTC (rev 521979) @@ -3,7 +3,7 @@ pkgbase=python-deprecated pkgname=(python-deprecated python2-deprecated) pkgver=1.2.6 -pkgrel=2 +pkgrel=3 pkgdesc="Python @deprecated decorator to deprecate old python classes, functions or methods" url="https://github.com/tantale/deprecated"; license=('MIT')
[arch-commits] Commit in python-pyrfc3339/repos/community-staging-any (4 files)
Date: Friday, November 1, 2019 @ 13:58:41 Author: foutrelis Revision: 521983 archrelease: copy trunk to community-staging-any Added: python-pyrfc3339/repos/community-staging-any/LICENSE.txt (from rev 521982, python-pyrfc3339/trunk/LICENSE.txt) python-pyrfc3339/repos/community-staging-any/PKGBUILD (from rev 521982, python-pyrfc3339/trunk/PKGBUILD) Deleted: python-pyrfc3339/repos/community-staging-any/LICENSE.txt python-pyrfc3339/repos/community-staging-any/PKGBUILD -+ LICENSE.txt | 38 ++--- PKGBUILD| 104 +- 2 files changed, 71 insertions(+), 71 deletions(-) Deleted: LICENSE.txt === --- LICENSE.txt 2019-11-01 13:58:37 UTC (rev 521982) +++ LICENSE.txt 2019-11-01 13:58:41 UTC (rev 521983) @@ -1,19 +0,0 @@ -Copyright (c) 2010 Kurt Raschke - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. Copied: python-pyrfc3339/repos/community-staging-any/LICENSE.txt (from rev 521982, python-pyrfc3339/trunk/LICENSE.txt) === --- LICENSE.txt (rev 0) +++ LICENSE.txt 2019-11-01 13:58:41 UTC (rev 521983) @@ -0,0 +1,19 @@ +Copyright (c) 2010 Kurt Raschke + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:58:37 UTC (rev 521982) +++ PKGBUILD2019-11-01 13:58:41 UTC (rev 521983) @@ -1,52 +0,0 @@ -# Maintainer: Felix Yan -# Contributor: Gordian Edenhofer - -pkgname=(python-pyrfc3339 python2-pyrfc3339) -pkgver=1.1 -pkgrel=3 -pkgdesc="Parses and generates RFC 3339-compliant timestamps using Python datetime.datetime objects." -arch=('any') -license=('MIT') -url="https://pypi.python.org/pypi/pyRFC3339"; -makedepends=('python-setuptools' 'python2-setuptools' 'python-pytz' 'python2-pytz') -checkdepends=('python-nose' 'python2-nose') -source=("https://pypi.python.org/packages/source/p/pyRFC3339/pyRFC3339-${pkgver}.tar.gz"; -LICENSE.txt) -sha512sums=('958b7761fab590aa42bb57a955c5d834441f717796a452b60df21663099dcf2fc046afe60f8157fd0f1edfd95c5e9c9c5349ab10ca4078d210fc63d848496a2f' - '73c58b87e14593ee283cc323a93820c18a00e9af4e5027687fc8f6cd5735c98f341c6ac1aa90c040d0899766cabb976a85201b171874b4b81934ff02a9728f2d') - -prepare() { - cp -a pyRFC3339-$pkgver{,-py2} -} - -build() { - cd "$srcdir/pyRFC3339-$pkgver" - python setup.py build - - cd "$srcdir/pyRFC3339-$pkgver-py2" - python2 setup.py build -} - -check() { - cd "$srcdir/pyRFC3339-$pkgver" - python setup.py test - - cd "$srcdir/pyRFC3339-$pkgver-py2" - python2 setup.py test -} - -package_python-pyrfc3339() { - depends=('python-pytz') - - cd "$srcdir/pyRFC3339-$pkgver" - python setup.py install --root="$pkgdir/" --optimize=1 - install -D -m644 ../LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" -} - -package_py
[arch-commits] Commit in python-setuptools-markdown/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:57:52 Author: foutrelis Revision: 521977 Python 3.8 rebuild Modified: python-setuptools-markdown/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:57:36 UTC (rev 521976) +++ PKGBUILD2019-11-01 13:57:52 UTC (rev 521977) @@ -3,7 +3,7 @@ pkgname=python-setuptools-markdown pkgver=0.4.1 _commit=34ed6276e0c8bcefcd967bd8db138546a270bdf4 -pkgrel=2 +pkgrel=3 pkgdesc="Use Markdown for your project description" arch=('any') url="https://github.com/msabramo/setuptools-markdown";
[arch-commits] Commit in python-setuptools-markdown/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:57:56 Author: foutrelis Revision: 521978 archrelease: copy trunk to community-staging-any Added: python-setuptools-markdown/repos/community-staging-any/PKGBUILD (from rev 521977, python-setuptools-markdown/trunk/PKGBUILD) Deleted: python-setuptools-markdown/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 54 +++--- 1 file changed, 27 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:57:52 UTC (rev 521977) +++ PKGBUILD2019-11-01 13:57:56 UTC (rev 521978) @@ -1,27 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=python-setuptools-markdown -pkgver=0.4.1 -_commit=34ed6276e0c8bcefcd967bd8db138546a270bdf4 -pkgrel=2 -pkgdesc="Use Markdown for your project description" -arch=('any') -url="https://github.com/msabramo/setuptools-markdown"; -license=('MIT') -depends=('python-setuptools' 'python-pypandoc') -source=("$pkgname-$_commit.tar.gz::https://github.com/msabramo/setuptools-markdown/archive/$_commit.tar.gz";) -sha512sums=('394bf37e53bcdb702f44749eb5bfa156aa11df310e603a034af38d8ca47d8f5231b76eacec6049cf3c7615031eca7b4238670555fcf9835723beb6f3b7f9496c') - -prepare() { - mv setuptools-markdown-{$_commit,$pkgver} -} - -build() { - cd setuptools-markdown-$pkgver - python setup.py build -} - -package() { - cd setuptools-markdown-$pkgver - python setup.py install --root "$pkgdir" -} Copied: python-setuptools-markdown/repos/community-staging-any/PKGBUILD (from rev 521977, python-setuptools-markdown/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:57:56 UTC (rev 521978) @@ -0,0 +1,27 @@ +# Maintainer: Felix Yan + +pkgname=python-setuptools-markdown +pkgver=0.4.1 +_commit=34ed6276e0c8bcefcd967bd8db138546a270bdf4 +pkgrel=3 +pkgdesc="Use Markdown for your project description" +arch=('any') +url="https://github.com/msabramo/setuptools-markdown"; +license=('MIT') +depends=('python-setuptools' 'python-pypandoc') +source=("$pkgname-$_commit.tar.gz::https://github.com/msabramo/setuptools-markdown/archive/$_commit.tar.gz";) +sha512sums=('394bf37e53bcdb702f44749eb5bfa156aa11df310e603a034af38d8ca47d8f5231b76eacec6049cf3c7615031eca7b4238670555fcf9835723beb6f3b7f9496c') + +prepare() { + mv setuptools-markdown-{$_commit,$pkgver} +} + +build() { + cd setuptools-markdown-$pkgver + python setup.py build +} + +package() { + cd setuptools-markdown-$pkgver + python setup.py install --root "$pkgdir" +}
[arch-commits] Commit in python-stevedore/trunk (PKGBUILD)
Date: Friday, November 1, 2019 @ 13:57:01 Author: foutrelis Revision: 521973 Python 3.8 rebuild Modified: python-stevedore/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-01 13:56:54 UTC (rev 521972) +++ PKGBUILD2019-11-01 13:57:01 UTC (rev 521973) @@ -2,7 +2,7 @@ pkgname=('python-stevedore' 'python2-stevedore') pkgver=1.31.0 -pkgrel=2 +pkgrel=3 pkgdesc="Manage dynamic plugins for Python applications" arch=('any') url="https://github.com/openstack/stevedore";
[arch-commits] Commit in python-stevedore/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:57:05 Author: foutrelis Revision: 521974 archrelease: copy trunk to community-staging-any Added: python-stevedore/repos/community-staging-any/PKGBUILD (from rev 521973, python-stevedore/trunk/PKGBUILD) Deleted: python-stevedore/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 72 ++--- 1 file changed, 36 insertions(+), 36 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:57:01 UTC (rev 521973) +++ PKGBUILD2019-11-01 13:57:05 UTC (rev 521974) @@ -1,36 +0,0 @@ -# Maintainer: Evangelos Foutras https://github.com/openstack/stevedore"; -license=('Apache') -makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'git') -options=('!emptydirs') -source=(https://pypi.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz) -sha256sums=('e0739f9739a681c7a1fda76a102b65295e96a144ccdb552f2ae03c5f0abe8a14') - -prepare() { - cd "$srcdir/stevedore-$pkgver" - - # Remove dependency on pbr; it's not a runtime dependency - sed -i '/pbr/d' requirements.txt -} - -package_python-stevedore() { - depends=('python-setuptools' 'python-six') - - cd "$srcdir/stevedore-$pkgver" - python3 setup.py install --root="$pkgdir" -O1 -} - -package_python2-stevedore() { - depends=('python2-setuptools' 'python2-six') - - cd "$srcdir/stevedore-$pkgver" - python2 setup.py install --root="$pkgdir" -O1 -} - -# vim:set ts=2 sw=2 et: Copied: python-stevedore/repos/community-staging-any/PKGBUILD (from rev 521973, python-stevedore/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:57:05 UTC (rev 521974) @@ -0,0 +1,36 @@ +# Maintainer: Evangelos Foutras https://github.com/openstack/stevedore"; +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'git') +options=('!emptydirs') +source=(https://pypi.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz) +sha256sums=('e0739f9739a681c7a1fda76a102b65295e96a144ccdb552f2ae03c5f0abe8a14') + +prepare() { + cd "$srcdir/stevedore-$pkgver" + + # Remove dependency on pbr; it's not a runtime dependency + sed -i '/pbr/d' requirements.txt +} + +package_python-stevedore() { + depends=('python-setuptools' 'python-six') + + cd "$srcdir/stevedore-$pkgver" + python3 setup.py install --root="$pkgdir" -O1 +} + +package_python2-stevedore() { + depends=('python2-setuptools' 'python2-six') + + cd "$srcdir/stevedore-$pkgver" + python2 setup.py install --root="$pkgdir" -O1 +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-graphql-core/repos/community-staging-any (2 files)
Date: Friday, November 1, 2019 @ 13:57:36 Author: felixonmars Revision: 521976 archrelease: copy trunk to community-staging-any Added: python-graphql-core/repos/community-staging-any/PKGBUILD (from rev 521975, python-graphql-core/trunk/PKGBUILD) Deleted: python-graphql-core/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 70 ++--- 1 file changed, 35 insertions(+), 35 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-11-01 13:57:23 UTC (rev 521975) +++ PKGBUILD2019-11-01 13:57:36 UTC (rev 521976) @@ -1,35 +0,0 @@ -# Maintainer: Maxime Gauduin - -pkgname=python-graphql-core -pkgver=2.2.1 -pkgrel=2 -pkgdesc='GraphQL base implementation for Python' -url=https://github.com/graphql-python/graphql-core -arch=(any) -license=(MIT) -depends=( - python-six - python-promise - python-rx -) -makedepends=( - git - python-setuptools -) -source=(git+https://github.com/graphql-python/graphql-core.git#tag=v${pkgver}) -sha256sums=('SKIP') - -build() { - cd graphql-core - - python setup.py build -} - -package() { - cd graphql-core - - python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 - install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-graphql-core/ -} - -# vim: ts=2 sw=2 et: Copied: python-graphql-core/repos/community-staging-any/PKGBUILD (from rev 521975, python-graphql-core/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-11-01 13:57:36 UTC (rev 521976) @@ -0,0 +1,35 @@ +# Maintainer: Maxime Gauduin + +pkgname=python-graphql-core +pkgver=2.2.1 +pkgrel=3 +pkgdesc='GraphQL base implementation for Python' +url=https://github.com/graphql-python/graphql-core +arch=(any) +license=(MIT) +depends=( + python-six + python-promise + python-rx +) +makedepends=( + git + python-setuptools +) +source=(git+https://github.com/graphql-python/graphql-core.git#tag=v${pkgver}) +sha256sums=('SKIP') + +build() { + cd graphql-core + + python setup.py build +} + +package() { + cd graphql-core + + python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 + install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-graphql-core/ +} + +# vim: ts=2 sw=2 et: