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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 19:50:44
  Author: foutrelis
Revision: 753647

upgpkg: python-raet 0.6.8-6: Python 3.9 rebuild

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 19:50:18 UTC (rev 753646)
+++ PKGBUILD2020-11-12 19:50:44 UTC (rev 753647)
@@ -3,7 +3,7 @@
 
 pkgname=python-raet
 pkgver=0.6.8
-pkgrel=5
+pkgrel=6
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='https://github.com/saltstack/raet'


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

2020-10-06 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 6, 2020 @ 15:38:04
  Author: freswa
Revision: 719352

fix FS#65170

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-06 15:36:13 UTC (rev 719351)
+++ PKGBUILD2020-10-06 15:38:04 UTC (rev 719352)
@@ -3,10 +3,10 @@
 
 pkgname=python-raet
 pkgver=0.6.8
-pkgrel=4
+pkgrel=5
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
-url='http://raet.docs.saltstack.com/'
+url='https://github.com/saltstack/raet'
 license=('Apache')
 depends=('python-libnacl' 'python-ioflo' 'python-six')
 makedepends=('python-setuptools-git')


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

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 05:22:20
  Author: felixonmars
Revision: 523187

Python 3.8 rebuild

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 05:21:29 UTC (rev 523186)
+++ PKGBUILD2019-11-04 05:22:20 UTC (rev 523187)
@@ -3,7 +3,7 @@
 
 pkgname=python-raet
 pkgver=0.6.8
-pkgrel=3
+pkgrel=4
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'


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

2018-07-08 Thread Felix Yan via arch-commits
Date: Sunday, July 8, 2018 @ 07:19:52
  Author: felixonmars
Revision: 354597

Python 3.7 rebuild

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-08 07:19:25 UTC (rev 354596)
+++ PKGBUILD2018-07-08 07:19:52 UTC (rev 354597)
@@ -4,7 +4,7 @@
 
 pkgname=python-raet
 pkgver=0.6.8
-pkgrel=2
+pkgrel=3
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'


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

2017-12-23 Thread Felix Yan via arch-commits
Date: Sunday, December 24, 2017 @ 07:19:11
  Author: felixonmars
Revision: 275681

upgpkg: python-raet 0.6.8-2

disable python2

Modified:
  python-raet/trunk/PKGBUILD

--+
 PKGBUILD |   33 +
 1 file changed, 17 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-24 07:19:07 UTC (rev 275680)
+++ PKGBUILD2017-12-24 07:19:11 UTC (rev 275681)
@@ -2,31 +2,32 @@
 # Maintainer: Daniel Wallace 
 # Contributor: Thomas S Hatch 
 
-pkgname=('python-raet' 'python2-raet')
+pkgname=python-raet
 pkgver=0.6.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'
-license=('APACHE')
-makedepends=(python-setuptools python2-setuptools)
+license=('Apache')
+depends=('python-libnacl' 'python-ioflo' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-bitvector')
 source=("https://pypi.io/packages/source/r/raet/raet-$pkgver.tar.gz;)
 
sha512sums=('01279e7414ec3edc9f2bc0641cb9e0606ebf5700b5ce37a05fd5919f3274b3b43aad64110baf4c4b1fda3843cb1a87b6be4ab592a8f62e82b3a716a86ae61b20')
 
-prepare() {
-  cd $srcdir
-  cp -r raet-$pkgver python2-raet-$pkgver
+build() {
+  cd raet-$pkgver
+  python setup.py build
 }
 
-package_python-raet() {
-  depends=('python-libnacl' 'python-ioflo' 'python-six')
-  cd "$srcdir/raet-$pkgver"
-  python3 setup.py install --root="$pkgdir" -O1
+check() {
+  cd raet-$pkgver
+  # Disabled: very broken
+  # sed -e '/import data/d' -e 's/data.createData/createData/' -i 
systest/lib/data.py
+  # python setup.py pytest
 }
 
-package_python2-raet() {
-  depends=('python2-libnacl' 'python2-ioflo' 'python2-six' 'python2-enum34')
-  cd "$srcdir/python2-raet-$pkgver"
-  python2 setup.py install --root="$pkgdir" -O1
-  mv "$pkgdir/usr/bin/raetflo"{,2}
+package() {
+  cd raet-$pkgver
+  python setup.py install --root="$pkgdir" -O1
 }


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

2017-07-21 Thread Felix Yan
Date: Friday, July 21, 2017 @ 07:53:07
  Author: felixonmars
Revision: 245897

upgpkg: python-raet 0.6.8-1

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-21 07:47:10 UTC (rev 245896)
+++ PKGBUILD2017-07-21 07:53:07 UTC (rev 245897)
@@ -3,7 +3,7 @@
 # Contributor: Thomas S Hatch 
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.6.7
+pkgver=0.6.8
 pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=("https://pypi.io/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('2c7a765f9fbb67790f264603f02251cc')
+sha512sums=('01279e7414ec3edc9f2bc0641cb9e0606ebf5700b5ce37a05fd5919f3274b3b43aad64110baf4c4b1fda3843cb1a87b6be4ab592a8f62e82b3a716a86ae61b20')
 
 prepare() {
   cd $srcdir


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

2017-03-13 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 03:57:43
  Author: felixonmars
Revision: 216156

upgpkg: python-raet 0.6.7-1

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 03:56:15 UTC (rev 216155)
+++ PKGBUILD2017-03-14 03:57:43 UTC (rev 216156)
@@ -3,7 +3,7 @@
 # Contributor: Thomas S Hatch 
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.6.6
+pkgver=0.6.7
 pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=("https://pypi.io/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('4d15bf813120fe28bc36e498f4ed4f4f')
+md5sums=('2c7a765f9fbb67790f264603f02251cc')
 
 prepare() {
   cd $srcdir
@@ -30,4 +30,3 @@
   python2 setup.py install --root="$pkgdir" -O1
   mv "$pkgdir/usr/bin/raetflo"{,2}
 }
-


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

2016-12-28 Thread Felix Yan
Date: Thursday, December 29, 2016 @ 06:26:28
  Author: felixonmars
Revision: 203228

upgpkg: python-raet 0.6.6-1

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-29 01:03:22 UTC (rev 203227)
+++ PKGBUILD2016-12-29 06:26:28 UTC (rev 203228)
@@ -3,15 +3,15 @@
 # Contributor: Thomas S Hatch 
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.6.5
-pkgrel=2
+pkgver=0.6.6
+pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
-source=("https://pypi.python.org/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('f316a588e19472e43e62a5535f28deea')
+source=("https://pypi.io/packages/source/r/raet/raet-$pkgver.tar.gz;)
+md5sums=('4d15bf813120fe28bc36e498f4ed4f4f')
 
 prepare() {
   cd $srcdir


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

2016-12-26 Thread Evangelos Foutras
Date: Monday, December 26, 2016 @ 09:59:38
  Author: foutrelis
Revision: 202672

Python 3.6 rebuild

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-26 09:58:59 UTC (rev 202671)
+++ PKGBUILD2016-12-26 09:59:38 UTC (rev 202672)
@@ -4,7 +4,7 @@
 
 pkgname=('python-raet' 'python2-raet')
 pkgver=0.6.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'


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

2015-12-17 Thread Felix Yan
Date: Thursday, December 17, 2015 @ 13:57:51
  Author: fyan
Revision: 153583

upgpkg: python-raet 0.6.5-1

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-17 12:57:35 UTC (rev 153582)
+++ PKGBUILD2015-12-17 12:57:51 UTC (rev 153583)
@@ -3,8 +3,8 @@
 # Contributor: Thomas S Hatch 
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.6.3
-pkgrel=2
+pkgver=0.6.5
+pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=("https://pypi.python.org/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('33bd888d71781fe97310656f473bc544')
+md5sums=('f316a588e19472e43e62a5535f28deea')
 
 prepare() {
   cd $srcdir


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

2015-09-19 Thread Felix Yan
Date: Sunday, September 20, 2015 @ 05:05:27
  Author: fyan
Revision: 141133

upgpkg: python-raet 0.6.3-2

rebuild for python 3.5

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-20 03:05:13 UTC (rev 141132)
+++ PKGBUILD2015-09-20 03:05:27 UTC (rev 141133)
@@ -4,7 +4,7 @@
 
 pkgname=('python-raet' 'python2-raet')
 pkgver=0.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
 url='http://raet.docs.saltstack.com/'


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

2015-03-19 Thread Daniel Wallace
Date: Friday, March 20, 2015 @ 02:30:59
  Author: dwallace
Revision: 129600

upgpkg: python-raet 0.6.3-1

upgpkg: raet 0.6.3

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-20 01:30:37 UTC (rev 129599)
+++ PKGBUILD2015-03-20 01:30:59 UTC (rev 129600)
@@ -3,7 +3,7 @@
 # Contributor: Thomas S Hatch thatc...@gmail.com
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.6.2
+pkgver=0.6.3
 pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=(https://pypi.python.org/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('47cf8642c1d5656af8db7a7ab6027ebd')
+md5sums=('33bd888d71781fe97310656f473bc544')
 
 prepare() {
   cd $srcdir
@@ -25,7 +25,7 @@
 }
 
 package_python2-raet() {
-  depends=('python2-libnacl' 'python2-ioflo' 'python2-six')
+  depends=('python2-libnacl' 'python2-ioflo' 'python2-six' 'python2-enum34')
   cd $srcdir/python2-raet-$pkgver
   python2 setup.py install --root=$pkgdir -O1
   mv $pkgdir/usr/bin/raetflo{,2}


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

2015-03-09 Thread Daniel Wallace
Date: Monday, March 9, 2015 @ 18:22:57
  Author: dwallace
Revision: 128985

upgpkg: python-raet 0.6.2-1

upgpkg: raet 0.6.2

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-09 16:49:01 UTC (rev 128984)
+++ PKGBUILD2015-03-09 17:22:57 UTC (rev 128985)
@@ -3,7 +3,7 @@
 # Contributor: Thomas S Hatch thatc...@gmail.com
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.4.4
+pkgver=0.6.2
 pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=(https://pypi.python.org/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('685f29d16e288ff697de869ff49bd9a3')
+md5sums=('47cf8642c1d5656af8db7a7ab6027ebd')
 
 prepare() {
   cd $srcdir
@@ -19,14 +19,15 @@
 }
 
 package_python-raet() {
-  depends=('python-libnacl' 'python-ioflo')
+  depends=('python-libnacl' 'python-ioflo' 'python-six')
   cd $srcdir/raet-$pkgver
   python3 setup.py install --root=$pkgdir -O1
 }
 
 package_python2-raet() {
-  depends=('python2-libnacl' 'python2-ioflo')
+  depends=('python2-libnacl' 'python2-ioflo' 'python2-six')
   cd $srcdir/python2-raet-$pkgver
   python2 setup.py install --root=$pkgdir -O1
+  mv $pkgdir/usr/bin/raetflo{,2}
 }
 


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

2015-01-22 Thread Daniel Wallace
Date: Thursday, January 22, 2015 @ 16:17:54
  Author: dwallace
Revision: 126411

upgpkg: python-raet 0.4.4-1

upgpkg: python-raet 0.4.4

Modified:
  python-raet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-22 15:16:47 UTC (rev 126410)
+++ PKGBUILD2015-01-22 15:17:54 UTC (rev 126411)
@@ -3,7 +3,7 @@
 # Contributor: Thomas S Hatch thatc...@gmail.com
 
 pkgname=('python-raet' 'python2-raet')
-pkgver=0.3.3
+pkgver=0.4.4
 pkgrel=1
 pkgdesc='Asynchronous encrypted transaction based protocol using Ioflo'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('APACHE')
 makedepends=(python-setuptools python2-setuptools)
 source=(https://pypi.python.org/packages/source/r/raet/raet-$pkgver.tar.gz;)
-md5sums=('ed8e90dadd23431412adb4ac1cef727f')
+md5sums=('685f29d16e288ff697de869ff49bd9a3')
 
 prepare() {
   cd $srcdir