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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 14:37:37
  Author: foutrelis
Revision: 751952

upgpkg: python-dockerpty 0.4.1-8: Python 3.9 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 14:30:57 UTC (rev 751951)
+++ PKGBUILD2020-11-12 14:37:37 UTC (rev 751952)
@@ -5,7 +5,7 @@
 
 pkgname=python-dockerpty
 pkgver=0.4.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 04:04:56
  Author: foutrelis
Revision: 748451

upgpkg: python-dockerpty 0.4.1-7: Python 3.9 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 04:04:53 UTC (rev 748450)
+++ PKGBUILD2020-11-10 04:04:56 UTC (rev 748451)
@@ -5,7 +5,7 @@
 
 pkgname=python-dockerpty
 pkgver=0.4.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2019-11-03 Thread Felix Yan via arch-commits
Date: Sunday, November 3, 2019 @ 21:16:33
  Author: felixonmars
Revision: 522666

Python 3.8 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-03 21:16:05 UTC (rev 522665)
+++ PKGBUILD2019-11-03 21:16:33 UTC (rev 522666)
@@ -5,7 +5,7 @@
 
 pkgname=python-dockerpty
 pkgver=0.4.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 26, 2019 @ 06:39:43
  Author: foutrelis
Revision: 520292

Python 3.8 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-26 06:39:35 UTC (rev 520291)
+++ PKGBUILD2019-10-26 06:39:43 UTC (rev 520292)
@@ -5,7 +5,7 @@
 
 pkgname=python-dockerpty
 pkgver=0.4.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2019-04-01 Thread Andrew Crerar via arch-commits
Date: Monday, April 1, 2019 @ 16:23:43
  Author: andrewsc
Revision: 446946

upgpkg: python-dockerpty 0.4.1-4

python-dockerpty: Remove python2 split

Modified:
  python-dockerpty/trunk/PKGBUILD

--+
 PKGBUILD |   36 +---
 1 file changed, 9 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-01 16:06:49 UTC (rev 446945)
+++ PKGBUILD2019-04-01 16:23:43 UTC (rev 446946)
@@ -1,50 +1,32 @@
-# Maintainer: Felix Yan 
+# Maintainer: Andrew Crerar 
+# Contributor: Felix Yan 
 # Contributor: Hideaki Takahashi 
 # Contributor: Vincent Demeester 
 
-pkgname=(python-dockerpty python2-dockerpty)
+pkgname=python-dockerpty
 pkgver=0.4.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')
 url="https://github.com/d11wtq/dockerpty";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-docker-py' 
'python2-docker-py'
- 'python-six' 'python2-six' 'git')
-checkdepends=('python-pytest' 'python2-pytest' 'python-expects' 
'python2-expects')
+depends=('python-docker-py' 'python-six')
+makedepends=('python-setuptools' 'python-docker-py' 'python-six' 'git')
+checkdepends=('python-pytest' 'python-expects')
 source=("git+https://github.com/d11wtq/dockerpty.git#tag=v$pkgver";)
-md5sums=('SKIP')
+sha512sums=('SKIP')
 
-prepare() {
-  cp -a dockerpty{,-py2}
-}
-
 build() {
   cd "$srcdir/dockerpty"
   python setup.py build
-
-  cd "$srcdir/dockerpty-py2"
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir/dockerpty"
   py.test
-
-  cd "$srcdir/dockerpty-py2"
-  py.test2
 }
 
-package_python-dockerpty() {
-  depends=('python-six' 'python-docker-py')
-
+package() {
   cd dockerpty
   python setup.py install --root="${pkgdir}" --optimize=1
 }
-
-package_python2-dockerpty() {
-  depends=('python2-six' 'python2-docker-py')
-
-  cd dockerpty-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}


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

2018-07-19 Thread Evangelos Foutras via arch-commits
Date: Thursday, July 19, 2018 @ 07:29:53
  Author: foutrelis
Revision: 362371

Python 3.7 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-19 07:28:33 UTC (rev 362370)
+++ PKGBUILD2018-07-19 07:29:53 UTC (rev 362371)
@@ -5,7 +5,7 @@
 
 pkgname=(python-dockerpty python2-dockerpty)
 pkgver=0.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2016-12-26 Thread Felix Yan
Date: Tuesday, December 27, 2016 @ 06:37:42
  Author: felixonmars
Revision: 202949

Python 3.6 rebuild

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-27 06:36:57 UTC (rev 202948)
+++ PKGBUILD2016-12-27 06:37:42 UTC (rev 202949)
@@ -5,7 +5,7 @@
 
 pkgname=(python-dockerpty python2-dockerpty)
 pkgver=0.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')
 license=('Apache')


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

2016-02-04 Thread Felix Yan
Date: Friday, February 5, 2016 @ 03:39:03
  Author: fyan
Revision: 160358

upgpkg: python-dockerpty 0.4.1-1

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 02:22:58 UTC (rev 160357)
+++ PKGBUILD2016-02-05 02:39:03 UTC (rev 160358)
@@ -4,7 +4,7 @@
 # Contributor: Vincent Demeester 
 
 pkgname=(python-dockerpty python2-dockerpty)
-pkgver=0.3.4
+pkgver=0.4.1
 pkgrel=1
 pkgdesc="Python library to use the pseudo-tty of a docker container"
 arch=('any')


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

2015-10-29 Thread Felix Yan
Date: Thursday, October 29, 2015 @ 10:45:54
  Author: fyan
Revision: 145243

upgpkg: python-dockerpty 0.3.4-1

Modified:
  python-dockerpty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-29 09:44:44 UTC (rev 145242)
+++ PKGBUILD2015-10-29 09:45:54 UTC (rev 145243)
@@ -1,6 +1,7 @@
 # $Id$
-# Maintainer: Hideaki Takahashi 
-# Maintainer: Vincent Demeester 
+# Maintainer: Felix Yan 
+# Contributor: Hideaki Takahashi 
+# Contributor: Vincent Demeester 
 
 pkgname=(python-dockerpty python2-dockerpty)
 pkgver=0.3.4