[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2020-11-12 Thread Felix Yan via arch-commits
Date: Thursday, November 12, 2020 @ 18:41:49
  Author: felixonmars
Revision: 753155

upgpkg: python-plyvel 1.2.0-3: Python 3.9 rebuild

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:41:33 UTC (rev 753154)
+++ PKGBUILD2020-11-12 18:41:49 UTC (rev 753155)
@@ -3,7 +3,7 @@
 
 pkgname=python-plyvel
 pkgver=1.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Sunday, February 16, 2020 @ 18:42:01
  Author: felixonmars
Revision: 572759

upgpkg: python-plyvel 1.2.0-2: remove python2 sibling

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |   39 ++-
 1 file changed, 10 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-16 18:37:26 UTC (rev 572758)
+++ PKGBUILD2020-02-16 18:42:01 UTC (rev 572759)
@@ -1,57 +1,38 @@
 # Maintainer: Felix Yan 
 # Contributor: Andy Weidenbaum 
 
-pkgname=(python-plyvel python2-plyvel)
+pkgname=python-plyvel
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')
 url="https://github.com/wbolster/plyvel;
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+depends=('leveldb' 'python')
+makedepends=('cython' 'python-setuptools')
+checkdepends=('python-pytest-runner')
 source=("https://pypi.io/packages/source/p/plyvel/plyvel-$pkgver.tar.gz;)
 
sha512sums=('00b3424e248d1ed17f6443c9862c9f35c94ad76707df5adfe625d7a387620252ff71b3e1f7e903dda1c5cfcd53cb23883c1049e31df541dfe566b8e849c0a96d')
 
 prepare() {
   # Shipped egg-info has wrong permission etc
-  (cd plyvel-$pkgver; make clean)
-
-  cp -a plyvel-$pkgver{,-py2}
-
-  sed -i 's/cython/cython2/' plyvel-$pkgver-py2/Makefile
+  cd plyvel-$pkgver
+  make clean
 }
 
 build() {
-  cd "$srcdir"/plyvel-$pkgver
+  cd plyvel-$pkgver
   make cython
   python setup.py build
-
-  cd "$srcdir"/plyvel-$pkgver-py2
-  make cython2
-  python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/plyvel-$pkgver
+  cd plyvel-$pkgver
   python setup.py pytest
-
-  cd "$srcdir"/plyvel-$pkgver-py2
-  python2 setup.py pytest
 }
 
-package_python-plyvel() {
-  depends=('leveldb' 'python')
-
+package() {
   cd plyvel-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
 }
-
-package_python2-plyvel() {
-  depends=('leveldb' 'python2')
-
-  cd plyvel-$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-plyvel/trunk (PKGBUILD)

2020-02-12 Thread Felix Yan via arch-commits
Date: Wednesday, February 12, 2020 @ 08:18:58
  Author: felixonmars
Revision: 569115

upgpkg: python-plyvel 1.2.0-1

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-12 08:16:46 UTC (rev 569114)
+++ PKGBUILD2020-02-12 08:18:58 UTC (rev 569115)
@@ -2,8 +2,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=(python-plyvel python2-plyvel)
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.2.0
+pkgrel=1
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')
@@ -11,7 +11,7 @@
 makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 source=("https://pypi.io/packages/source/p/plyvel/plyvel-$pkgver.tar.gz;)
-sha512sums=('4d9b20f7e047d75af14d530519b4360194a18aa423a57ac4596441e47528bbc9f8e3ff763dd91da4c115cb1e4a6f34f01bbd47f4be49be110b2f6e3c7b8bdb3a')
+sha512sums=('00b3424e248d1ed17f6443c9862c9f35c94ad76707df5adfe625d7a387620252ff71b3e1f7e903dda1c5cfcd53cb23883c1049e31df541dfe566b8e849c0a96d')
 
 prepare() {
   # Shipped egg-info has wrong permission etc


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 06:27:18
  Author: felixonmars
Revision: 523399

Python 3.8 rebuild

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 06:27:10 UTC (rev 523398)
+++ PKGBUILD2019-11-04 06:27:18 UTC (rev 523399)
@@ -3,7 +3,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2019-05-23 Thread Felix Yan via arch-commits
Date: Friday, May 24, 2019 @ 04:27:15
  Author: felixonmars
Revision: 469496

upgpkg: python-plyvel 1.1.0-1

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-24 04:26:29 UTC (rev 469495)
+++ PKGBUILD2019-05-24 04:27:15 UTC (rev 469496)
@@ -2,7 +2,7 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=(python-plyvel python2-plyvel)
-pkgver=1.0.5
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 source=("https://pypi.io/packages/source/p/plyvel/plyvel-$pkgver.tar.gz;)
-sha512sums=('d2a7fe9d49b377135ece03292f366423e9550d3440689a99246d8c5ddc38e474c2b05c709655c6bf74a1d04f742a23dfb8841b51698c2adb062418577b28c4b4')
+sha512sums=('4d9b20f7e047d75af14d530519b4360194a18aa423a57ac4596441e47528bbc9f8e3ff763dd91da4c115cb1e4a6f34f01bbd47f4be49be110b2f6e3c7b8bdb3a')
 
 prepare() {
   # Shipped egg-info has wrong permission etc


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2018-08-23 Thread Felix Yan via arch-commits
Date: Thursday, August 23, 2018 @ 07:43:17
  Author: felixonmars
Revision: 373349

upgpkg: python-plyvel 1.0.5-1

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-23 07:42:24 UTC (rev 373348)
+++ PKGBUILD2018-08-23 07:43:17 UTC (rev 373349)
@@ -3,8 +3,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=(python-plyvel python2-plyvel)
-pkgver=1.0.4
-pkgrel=2
+pkgver=1.0.5
+pkgrel=1
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')
@@ -12,7 +12,7 @@
 makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 source=("https://pypi.io/packages/source/p/plyvel/plyvel-$pkgver.tar.gz;)
-sha512sums=('ee397d4f7e2dac4e7b382841559895184dc0356b84da4ff4ccdad43c32aebcb1dcc5020230a5564c875ed5d4401cc8b009438ca3b2e0b50e6467e384f0366171')
+sha512sums=('d2a7fe9d49b377135ece03292f366423e9550d3440689a99246d8c5ddc38e474c2b05c709655c6bf74a1d04f742a23dfb8841b51698c2adb062418577b28c4b4')
 
 prepare() {
   # Shipped egg-info has wrong permission etc


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 16:19:14
  Author: felixonmars
Revision: 348418

Python 3.7 rebuild

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 16:19:04 UTC (rev 348417)
+++ PKGBUILD2018-06-30 16:19:14 UTC (rev 348418)
@@ -4,7 +4,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=1.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2018-02-03 Thread Felix Yan via arch-commits
Date: Saturday, February 3, 2018 @ 18:28:32
  Author: felixonmars
Revision: 288829

upgpkg: python-plyvel 1.0.4-1

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-03 18:28:19 UTC (rev 288828)
+++ PKGBUILD2018-02-03 18:28:32 UTC (rev 288829)
@@ -3,8 +3,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=(python-plyvel python2-plyvel)
-pkgver=0.9
-pkgrel=4
+pkgver=1.0.4
+pkgrel=1
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('x86_64')
 license=('BSD')
@@ -11,8 +11,8 @@
 url="https://github.com/wbolster/plyvel;
 makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=(https://pypi.python.org/packages/source/p/plyvel/plyvel-$pkgver.tar.gz)
-sha256sums=('587d93681ae44936ae086b4b45486eb302e3853ba5af149aac3be9e9713998e9')
+source=("https://pypi.io/packages/source/p/plyvel/plyvel-$pkgver.tar.gz;)
+sha512sums=('ee397d4f7e2dac4e7b382841559895184dc0356b84da4ff4ccdad43c32aebcb1dcc5020230a5564c875ed5d4401cc8b009438ca3b2e0b50e6467e384f0366171')
 
 prepare() {
   # Shipped egg-info has wrong permission etc
@@ -24,20 +24,20 @@
 }
 
 build() {
-  cd "$srcdir/plyvel-$pkgver"
+  cd "$srcdir"/plyvel-$pkgver
   make cython
   python setup.py build
 
-  cd "$srcdir/plyvel-$pkgver-py2"
+  cd "$srcdir"/plyvel-$pkgver-py2
   make cython2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/plyvel-$pkgver"
+  cd "$srcdir"/plyvel-$pkgver
   python setup.py pytest
 
-  cd "$srcdir/plyvel-$pkgver-py2"
+  cd "$srcdir"/plyvel-$pkgver-py2
   python2 setup.py pytest
 }
 
@@ -44,15 +44,15 @@
 package_python-plyvel() {
   depends=('leveldb' 'python')
 
-  cd "$srcdir/plyvel-$pkgver"
+  cd plyvel-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+  install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
 }
 
 package_python2-plyvel() {
   depends=('leveldb' 'python2')
 
-  cd "$srcdir/plyvel-$pkgver-py2"
+  cd plyvel-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+  install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
 }


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2017-10-04 Thread Felix Yan
Date: Wednesday, October 4, 2017 @ 15:48:17
  Author: felixonmars
Revision: 261508

use prefered subcommand for pytest-runner

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-04 15:47:56 UTC (rev 261507)
+++ PKGBUILD2017-10-04 15:48:17 UTC (rev 261508)
@@ -35,10 +35,10 @@
 
 check() {
   cd "$srcdir/plyvel-$pkgver"
-  python setup.py ptr
+  python setup.py pytest
 
   cd "$srcdir/plyvel-$pkgver-py2"
-  python2 setup.py ptr
+  python2 setup.py pytest
 }
 
 package_python-plyvel() {


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2016-12-25 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 16:46:12
  Author: bpiotrowski
Revision: 201954

Python 3.6 rebuild

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 16:46:11 UTC (rev 201953)
+++ PKGBUILD2016-12-25 16:46:12 UTC (rev 201954)
@@ -4,7 +4,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=0.9
-pkgrel=3
+pkgrel=4
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('i686' 'x86_64')
 license=('BSD')


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2015-12-05 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 04:06:34
  Author: bpiotrowski
Revision: 148771

C++11 ABI rebuild

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 03:05:26 UTC (rev 148770)
+++ PKGBUILD2015-12-06 03:06:34 UTC (rev 148771)
@@ -4,7 +4,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=0.9
-pkgrel=2
+pkgrel=3
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('i686' 'x86_64')
 license=('BSD')


[arch-commits] Commit in python-plyvel/trunk (PKGBUILD)

2015-12-02 Thread Felix Yan
Date: Wednesday, December 2, 2015 @ 15:39:47
  Author: fyan
Revision: 148109

upgpkg: python-plyvel 0.9-2

Modified:
  python-plyvel/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 06:31:20 UTC (rev 148108)
+++ PKGBUILD2015-12-02 14:39:47 UTC (rev 148109)
@@ -4,7 +4,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('i686' 'x86_64')
 license=('BSD')