Date: Friday, October 25, 2019 @ 19:52:36
  Author: felixonmars
Revision: 519604

archrelease: copy trunk to community-staging-x86_64

Added:
  python-lz4/repos/community-staging-x86_64/
  python-lz4/repos/community-staging-x86_64/PKGBUILD
    (from rev 519602, python-lz4/trunk/PKGBUILD)

----------+
 PKGBUILD |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

Copied: python-lz4/repos/community-staging-x86_64/PKGBUILD (from rev 519602, 
python-lz4/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-25 19:52:36 UTC (rev 519604)
@@ -0,0 +1,55 @@
+# Maintainer: Giancarlo Razzolini <[email protected]>
+# Contributor: Nissar Chababy <funilrys at outlook dot com>
+# Contributor: Thrasibule <guillaume dot horel at gmail dot com>
+# Contributor: David Manouchehri <[email protected]>
+# Contributor: Vladimir Tsanev <[email protected]>
+# Contributor: Andrew Reed <[email protected]>
+# Contributor: "Score_Under" <[email protected]>
+
+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
+}

Reply via email to