Date: Sunday, November 29, 2020 @ 13:02:53
  Author: felixonmars
Revision: 402396

archrelease: copy trunk to testing-any

Added:
  python-packaging/repos/testing-any/PKGBUILD
    (from rev 402395, python-packaging/trunk/PKGBUILD)
Deleted:
  python-packaging/repos/testing-any/PKGBUILD

----------+
 PKGBUILD |   92 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 51 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2020-11-29 13:02:39 UTC (rev 402395)
+++ PKGBUILD    2020-11-29 13:02:53 UTC (rev 402396)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan <felixonm...@archlinux.org>
-
-pkgbase=python-packaging
-pkgname=(python-packaging python2-packaging)
-pkgver=20.4
-pkgrel=4
-pkgdesc="Core utilities for Python packages"
-arch=('any')
-url="https://github.com/pypa/packaging";
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 
'python2-pyparsing')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pretend' 
'python2-pretend'
-              'python-coverage' 'python2-coverage')
-source=("https://pypi.io/packages/source/p/packaging/packaging-$pkgver.tar.gz";)
-sha512sums=('d53912041a9950efb5d221fc968adc328c2ef1e54ec9806d2158fd6db1b170e37afb05213f5750b10c59927504083ca3781c958caa0c802b1c7c0fe1ac1682a4')
-
-build() {
-  cd packaging-$pkgver
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd packaging-$pkgver
-  python setup.py pytest
-  python2 setup.py pytest
-}
-
-package_python-packaging() {
-  depends=('python-pyparsing' 'python-six')
-
-  cd packaging-$pkgver
-  python setup.py install --root "$pkgdir"
-}
-
-package_python2-packaging() {
-  depends=('python2-pyparsing' 'python2-six')
-
-  cd packaging-$pkgver
-  python2 setup.py install --root "$pkgdir"
-}

Copied: python-packaging/repos/testing-any/PKGBUILD (from rev 402395, 
python-packaging/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2020-11-29 13:02:53 UTC (rev 402396)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan <felixonm...@archlinux.org>
+
+pkgbase=python-packaging
+pkgname=(python-packaging python2-packaging)
+pkgver=20.5
+pkgrel=1
+pkgdesc="Core utilities for Python packages"
+arch=('any')
+url="https://github.com/pypa/packaging";
+license=('Apache')
+makedepends=('python-dephell' 'python-setuptools' 'python2-setuptools' 
'python-pyparsing'
+             'python2-pyparsing')
+checkdepends=('python-pytest' 'python2-pytest' 'python-pretend' 
'python2-pretend'
+              'python-coverage' 'python2-coverage')
+source=("https://github.com/pypa/packaging/archive/$pkgver/$pkgbase-$pkgver.tar.gz";)
+sha512sums=('ef3c4853c30d9635b9372d6861cc0df8f7fc5a1d784e5f3effe3f315da0f24662ac939e70f55c6e9bb8864da95b9f75bc0df093f12c0f5c2af654b5354a5f081')
+
+prepare() {
+  cd packaging-$pkgver
+
+  # poetry-generated setup.py is badly broken in several ways, including
+  # distribution of tests in the built package as well as using distutils for
+  # bad metadata. See https://github.com/sdispater/poetry/issues/866
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd packaging-$pkgver
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd packaging-$pkgver
+  python -m pytest
+  python2 -m pytest
+}
+
+package_python-packaging() {
+  depends=('python-pyparsing' 'python-six')
+
+  cd packaging-$pkgver
+  python setup.py install --root "$pkgdir"
+}
+
+package_python2-packaging() {
+  depends=('python2-pyparsing' 'python2-six')
+
+  cd packaging-$pkgver
+  python2 setup.py install --root "$pkgdir"
+}

Reply via email to