[arch-commits] Commit in twisted/repos (4 files)

2017-09-24 Thread Felix Yan
Date: Sunday, September 24, 2017 @ 09:26:21
  Author: felixonmars
Revision: 306177

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 306176, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 306176, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   99 ++
 testing-x86_64/PKGBUILD |   99 ++
 2 files changed, 198 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 306176, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-24 09:26:21 UTC (rev 306177)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=17.9.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 
'python-setuptools'
+ 'python2-setuptools' 'python-service-identity' 
'python2-service-identity'
+ 'python-incremental' 'python2-incremental' 'python-constantly' 
'python2-constantly'
+ 'python-automat' 'python2-automat' 'python-hyperlink' 
'python2-hyperlink')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh' 'gtk3'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-priority' 'python2-priority' 'python-crypto' 
'python2-crypto'
+  'python-cryptography' 'python2-cryptography' 'python-idna' 
'python2-idna'
+  'python-pyserial' 'python2-pyserial')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/twisted/twisted/archive/twisted-$pkgver.tar.gz;)
+sha512sums=('3fb269dd928d2446e50cb5e4aa43d208d3aa7ed3902a0a7c39b8dabe9792344ad924fc500d507d34118ba2acdfd433a31aa812dd5309b01fdcb45de49e7b84ae')
+
+prepare() {
+  cp -a twisted-twisted-$pkgver{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-twisted-$pkgver-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-twisted-$pkgver-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted-twisted-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/twisted-twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted-twisted-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted
+
+  cd "$srcdir"/twisted-twisted-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly' 
'python-automat'
+   'python-hyperlink')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-pyasn1: for using conch'
+  'python-appdirs: for using conch'
+  'python-h2: for http2 support'
+  'python-priority: for http2 support'
+  'python-pyserial: for serial support'
+  'tk: for using tkconch')
+
+  cd twisted-twisted-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen cftp conch pyhtmlizer tkconch; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly' 
'python2-automat'
+   'python2-hyperlink')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-pyasn1: for using conch'
+  'python2-appdirs: for using conch'
+  

[arch-commits] Commit in twisted/repos (4 files)

2017-06-11 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 13:52:28
  Author: felixonmars
Revision: 298611

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 298610, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 298610, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   99 ++
 testing-x86_64/PKGBUILD |   99 ++
 2 files changed, 198 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 298610, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-06-11 13:52:28 UTC (rev 298611)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=17.5.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 
'python-setuptools'
+ 'python2-setuptools' 'python-service-identity' 
'python2-service-identity'
+ 'python-incremental' 'python2-incremental' 'python-constantly' 
'python2-constantly'
+ 'python-automat' 'python2-automat' 'python-hyperlink' 
'python2-hyperlink')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh' 'gtk3'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-priority' 'python2-priority' 'python-crypto' 
'python2-crypto'
+  'python-cryptography' 'python2-cryptography' 'python-idna' 
'python2-idna'
+  'python-pyserial' 'python2-pyserial')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/twisted/twisted/archive/twisted-$pkgver.tar.gz;)
+sha512sums=('ecff04601623925ab3e1dde270fe0bfdf44ee2716c200cf573315d57c5c07378e61fe4b27d23b69923fccb8389ae3f2194bf9523be6f4acb67ada6e2837370d5')
+
+prepare() {
+  cp -a twisted-twisted-$pkgver{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-twisted-$pkgver-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-twisted-$pkgver-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted-twisted-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/twisted-twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted-twisted-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted
+
+  cd "$srcdir"/twisted-twisted-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly' 
'python-automat'
+   'python-hyperlink')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-pyasn1: for using conch'
+  'python-appdirs: for using conch'
+  'python-h2: for http2 support'
+  'python-priority: for http2 support'
+  'python-pyserial: for serial support'
+  'tk: for using tkconch')
+
+  cd twisted-twisted-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen cftp conch pyhtmlizer tkconch; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly' 
'python2-automat'
+   'python2-hyperlink')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-pyasn1: for using conch'
+  'python2-appdirs: for using conch'
+  

[arch-commits] Commit in twisted/repos (4 files)

2017-03-21 Thread Felix Yan
Date: Tuesday, March 21, 2017 @ 07:49:31
  Author: felixonmars
Revision: 291143

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 291142, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 291142, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   90 ++
 testing-x86_64/PKGBUILD |   90 ++
 2 files changed, 180 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 291142, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-21 07:49:31 UTC (rev 291143)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=17.1.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 'python-service-identity'
+ 'python2-service-identity' 'python-incremental' 
'python2-incremental'
+ 'python-constantly' 'python2-constantly' 'python-automat' 
'python2-automat')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-crypto' 'python2-crypto')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted || warning "Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly' 
'python-automat')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-h2: for http2 support'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen cftp conch pyhtmlizer tkconch; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly' 
'python2-automat')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-h2: for http2 support'
+  'python2-soappy: for twisted.web.soap'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 291142, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-21 07:49:31 UTC (rev 291143)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 

[arch-commits] Commit in twisted/repos (4 files)

2016-12-24 Thread Evangelos Foutras
Date: Saturday, December 24, 2016 @ 19:10:06
  Author: foutrelis
Revision: 284694

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  twisted/repos/staging-i686/
  twisted/repos/staging-i686/PKGBUILD
(from rev 284693, twisted/trunk/PKGBUILD)
  twisted/repos/staging-x86_64/
  twisted/repos/staging-x86_64/PKGBUILD
(from rev 284693, twisted/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   90 ++
 staging-x86_64/PKGBUILD |   90 ++
 2 files changed, 180 insertions(+)

Copied: twisted/repos/staging-i686/PKGBUILD (from rev 284693, 
twisted/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 19:10:06 UTC (rev 284694)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.6.0
+pkgrel=2
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 'python-service-identity'
+ 'python2-service-identity' 'python-incremental' 
'python2-incremental'
+ 'python-constantly' 'python2-constantly')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-service-identity' 'python2-service-identity' 
'python-crypto' 'python2-crypto')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted || warning "Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-h2: for http2 support'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-h2: for http2 support'
+  'python2-soappy: for twisted.web.soap'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/staging-x86_64/PKGBUILD (from rev 284693, 
twisted/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 19:10:06 UTC (rev 284694)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 

[arch-commits] Commit in twisted/repos (4 files)

2016-11-27 Thread Felix Yan
Date: Monday, November 28, 2016 @ 06:03:22
  Author: felixonmars
Revision: 282150

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 282149, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 282149, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   90 ++
 testing-x86_64/PKGBUILD |   90 ++
 2 files changed, 180 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 282149, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-28 06:03:22 UTC (rev 282150)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.6.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 'python-service-identity'
+ 'python2-service-identity' 'python-incremental' 
'python2-incremental'
+ 'python-constantly' 'python2-constantly')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-service-identity' 'python2-service-identity' 
'python-crypto' 'python2-crypto')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted || warning "Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-h2: for http2 support'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-h2: for http2 support'
+  'python2-soappy: for twisted.web.soap'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 282149, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-28 06:03:22 UTC (rev 282150)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 

[arch-commits] Commit in twisted/repos (4 files)

2016-11-17 Thread Felix Yan
Date: Friday, November 18, 2016 @ 07:58:53
  Author: felixonmars
Revision: 281044

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 281043, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 281043, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   90 ++
 testing-x86_64/PKGBUILD |   90 ++
 2 files changed, 180 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 281043, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-18 07:58:53 UTC (rev 281044)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.5.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 'python-service-identity'
+ 'python2-service-identity' 'python-incremental' 
'python2-incremental'
+ 'python-constantly' 'python2-constantly')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-service-identity' 'python2-service-identity' 
'python-crypto' 'python2-crypto')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted || warning "Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-h2: for http2 support'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-h2: for http2 support'
+  'python2-soappy: for twisted.web.soap'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 281043, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-18 07:58:53 UTC (rev 281044)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 

[arch-commits] Commit in twisted/repos (4 files)

2016-09-16 Thread Felix Yan
Date: Friday, September 16, 2016 @ 09:14:57
  Author: felixonmars
Revision: 276531

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 276530, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 276530, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   83 ++
 testing-x86_64/PKGBUILD |   83 ++
 2 files changed, 166 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 276530, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-16 09:14:57 UTC (rev 276531)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.4.1
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  cd twisted-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/twisted
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 276530, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-16 09:14:57 UTC (rev 276531)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.4.1
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 

[arch-commits] Commit in twisted/repos (4 files)

2016-08-19 Thread Felix Yan
Date: Friday, August 19, 2016 @ 09:30:17
  Author: felixonmars
Revision: 273935

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 273934, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 273934, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  166 
 extra-i686/PKGBUILD   |   83 
 extra-x86_64/PKGBUILD |   83 
 3 files changed, 166 insertions(+), 166 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-19 09:29:52 UTC (rev 273934)
+++ extra-i686/PKGBUILD 2016-08-19 09:30:17 UTC (rev 273935)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=16.3.1
-pkgrel=1
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a twisted{,-py2}
-
-  cd twisted-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir"/twisted
-  python setup.py build
-
-  cd "$srcdir"/twisted-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/twisted
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests
-
-  cd "$srcdir"/twisted-py2
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd twisted
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # twisted in python 3 supports only few command line tools for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  for name in trial twistd; do
-mv "$pkgdir"/usr/bin/${name}{,3}
-  done
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd twisted-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 273934, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-19 09:30:17 UTC (rev 273935)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.3.2
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 

[arch-commits] Commit in twisted/repos (4 files)

2016-08-17 Thread Felix Yan
Date: Wednesday, August 17, 2016 @ 14:56:29
  Author: felixonmars
Revision: 273873

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 273872, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 273872, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  166 
 extra-i686/PKGBUILD   |   83 
 extra-x86_64/PKGBUILD |   83 
 3 files changed, 166 insertions(+), 166 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-17 14:55:51 UTC (rev 273872)
+++ extra-i686/PKGBUILD 2016-08-17 14:56:29 UTC (rev 273873)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=16.3.0
-pkgrel=1
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a twisted{,-py2}
-
-  cd twisted-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir"/twisted
-  python setup.py build
-
-  cd "$srcdir"/twisted-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/twisted
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests
-
-  cd "$srcdir"/twisted-py2
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd twisted
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # twisted in python 3 supports only few command line tools for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  for name in trial twistd; do
-mv "$pkgdir"/usr/bin/${name}{,3}
-  done
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd twisted-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 273872, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-17 14:56:29 UTC (rev 273873)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.3.1
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 

[arch-commits] Commit in twisted/repos (4 files)

2016-07-06 Thread Felix Yan
Date: Wednesday, July 6, 2016 @ 13:29:50
  Author: felixonmars
Revision: 271088

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 271087, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 271087, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   83 ++
 testing-x86_64/PKGBUILD |   83 ++
 2 files changed, 166 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 271087, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-06 13:29:50 UTC (rev 271088)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.3.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  cd twisted-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/twisted
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests
+
+  cd "$srcdir"/twisted-py2
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 271087, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-06 13:29:50 UTC (rev 271088)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.3.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  

[arch-commits] Commit in twisted/repos (4 files)

2016-05-18 Thread Felix Yan
Date: Wednesday, May 18, 2016 @ 16:50:55
  Author: fyan
Revision: 268301

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 268300, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 268300, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  166 
 extra-i686/PKGBUILD   |   83 
 extra-x86_64/PKGBUILD |   83 
 3 files changed, 166 insertions(+), 166 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-18 14:50:23 UTC (rev 268300)
+++ extra-i686/PKGBUILD 2016-05-18 14:50:55 UTC (rev 268301)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=16.1.1
-pkgrel=1
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a twisted{,-py2}
-
-  cd twisted-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir"/twisted
-  python setup.py build
-
-  cd "$srcdir"/twisted-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/twisted
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
-
-  cd "$srcdir"/twisted-py2
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd twisted
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # twisted in python 3 supports only few command line tools for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  for name in trial twistd; do
-mv "$pkgdir"/usr/bin/${name}{,3}
-  done
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd twisted-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 268300, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-18 14:50:55 UTC (rev 268301)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.2.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  

[arch-commits] Commit in twisted/repos (4 files)

2016-04-10 Thread Felix Yan
Date: Monday, April 11, 2016 @ 06:33:43
  Author: fyan
Revision: 264630

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/PKGBUILD
(from rev 264629, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 264629, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/testing-i686/PKGBUILD
  twisted/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  166 ++
 testing-i686/PKGBUILD   |   83 ---
 testing-x86_64/PKGBUILD |   83 ---
 3 files changed, 166 insertions(+), 166 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-04-11 04:33:07 UTC (rev 264629)
+++ testing-i686/PKGBUILD   2016-04-11 04:33:43 UTC (rev 264630)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=16.1.0
-pkgrel=1
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a twisted{,-py2}
-
-  cd twisted-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir"/twisted
-  python setup.py build
-
-  cd "$srcdir"/twisted-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/twisted
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
-
-  cd "$srcdir"/twisted-py2
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd twisted
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # twisted in python 3 supports only few command line tools for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  for name in trial twistd; do
-mv "$pkgdir"/usr/bin/${name}{,3}
-  done
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd twisted-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 264629, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-11 04:33:43 UTC (rev 264630)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.1.1
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 

[arch-commits] Commit in twisted/repos (4 files)

2016-04-04 Thread Felix Yan
Date: Monday, April 4, 2016 @ 15:12:32
  Author: fyan
Revision: 263860

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 263859, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 263859, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   83 ++
 testing-x86_64/PKGBUILD |   83 ++
 2 files changed, 166 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 263859, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-04 13:12:32 UTC (rev 263860)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.1.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  cd twisted-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/twisted
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 263859, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-04-04 13:12:32 UTC (rev 263860)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.1.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 

[arch-commits] Commit in twisted/repos (4 files)

2016-03-16 Thread Felix Yan
Date: Wednesday, March 16, 2016 @ 10:10:32
  Author: fyan
Revision: 261846

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 261845, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 261845, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   87 ++
 testing-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 261845, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-16 09:10:32 UTC (rev 261846)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.0.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy' 'python-subunit' 
'python2-subunit')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a "twisted"{,-py2}
+
+  cd "twisted-py2"
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir/twisted"
+  python3 setup.py build
+
+  cd "$srcdir/twisted-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/twisted"
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
+
+  cd "$srcdir/twisted-py2"
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd "twisted"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # Wrong path, wrong!
+  cp -a "$pkgdir"/usr/twisted/* 
"$pkgdir"/usr/lib/python3.5/site-packages/twisted/
+  rm -r "$pkgdir"/usr/twisted
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd; do
+mv "$pkgdir/usr/bin/$name"{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd "twisted-py2"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 261845, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-16 09:10:32 UTC (rev 261846)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.0.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')

[arch-commits] Commit in twisted/repos (4 files)

2015-11-29 Thread Felix Yan
Date: Sunday, November 29, 2015 @ 11:22:24
  Author: fyan
Revision: 252043

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 252042, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 252042, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  170 
 extra-i686/PKGBUILD   |   85 
 extra-x86_64/PKGBUILD |   85 
 3 files changed, 170 insertions(+), 170 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-29 10:21:48 UTC (rev 252042)
+++ extra-i686/PKGBUILD 2015-11-29 10:22:24 UTC (rev 252043)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=15.4.0
-pkgrel=2
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a "twisted"{,-py2}
-
-  cd "twisted-py2"
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir/twisted"
-  python3 setup.py build
-
-  cd "$srcdir/twisted-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/twisted"
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
-
-  cd "$srcdir/twisted-py2"
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd "twisted"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # Wrong path, wrong!
-  cp -a "$pkgdir"/usr/twisted/* 
"$pkgdir"/usr/lib/python3.5/site-packages/twisted/
-  rm -r "$pkgdir"/usr/twisted
-
-  # twisted in python 3 supports only one command line tool for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  mv "$pkgdir/usr/bin/trial"{,3}
-
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd "twisted-py2"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 252042, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-29 10:22:24 UTC (rev 252043)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.5.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  

[arch-commits] Commit in twisted/repos (4 files)

2015-11-29 Thread Felix Yan
Date: Sunday, November 29, 2015 @ 11:51:03
  Author: fyan
Revision: 252045

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 252044, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 252044, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  174 
 extra-i686/PKGBUILD   |   85 ---
 extra-x86_64/PKGBUILD |   85 ---
 3 files changed, 174 insertions(+), 170 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-29 10:50:25 UTC (rev 252044)
+++ extra-i686/PKGBUILD 2015-11-29 10:51:03 UTC (rev 252045)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Juergen Hoetzel 
-# Contributor:  Douglas Soares de Andrade 
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=15.5.0
-pkgrel=1
-pkgdesc="Asynchronous networking framework written in Python"
-arch=('i686' 'x86_64')
-url="http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
-  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
-  'python2-gmpy2' 'python2-soappy')
-source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a "twisted"{,-py2}
-
-  cd "twisted-py2"
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd "$srcdir/twisted"
-  python3 setup.py build
-
-  cd "$srcdir/twisted-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/twisted"
-  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
-
-  cd "$srcdir/twisted-py2"
-  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd "twisted"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  # Wrong path, wrong!
-  cp -a "$pkgdir"/usr/twisted/* 
"$pkgdir"/usr/lib/python3.5/site-packages/twisted/
-  rm -r "$pkgdir"/usr/twisted
-
-  # twisted in python 3 supports only one command line tool for now.
-  # Let's rename the tools the other way round after the python 3 version 
supports all.
-  mv "$pkgdir/usr/bin/trial"{,3}
-
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=("twisted=$pkgver")
-  conflicts=('twisted<14.0.0')
-  replaces=('twisted<14.0.0')
-
-  cd "twisted-py2"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 252044, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-29 10:51:03 UTC (rev 252045)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.5.0
+pkgrel=2
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  

[arch-commits] Commit in twisted/repos (4 files)

2015-09-22 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 16:47:04
  Author: fyan
Revision: 247071

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  twisted/repos/staging-i686/
  twisted/repos/staging-i686/PKGBUILD
(from rev 247070, twisted/trunk/PKGBUILD)
  twisted/repos/staging-x86_64/
  twisted/repos/staging-x86_64/PKGBUILD
(from rev 247070, twisted/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   85 ++
 staging-x86_64/PKGBUILD |   85 ++
 2 files changed, 170 insertions(+)

Copied: twisted/repos/staging-i686/PKGBUILD (from rev 247070, 
twisted/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 14:47:04 UTC (rev 247071)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.4.0
+pkgrel=2
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a "twisted"{,-py2}
+
+  cd "twisted-py2"
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir/twisted"
+  python3 setup.py build
+
+  cd "$srcdir/twisted-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/twisted"
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests || warning 
"Tests failed"
+
+  cd "$srcdir/twisted-py2"
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd "twisted"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # Wrong path, wrong!
+  cp -a "$pkgdir"/usr/twisted/* 
"$pkgdir"/usr/lib/python3.5/site-packages/twisted/
+  rm -r "$pkgdir"/usr/twisted
+
+  # twisted in python 3 supports only one command line tool for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  mv "$pkgdir/usr/bin/trial"{,3}
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd "twisted-py2"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: twisted/repos/staging-x86_64/PKGBUILD (from rev 247070, 
twisted/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 14:47:04 UTC (rev 247071)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.4.0
+pkgrel=2
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 

[arch-commits] Commit in twisted/repos (4 files)

2015-09-15 Thread Felix Yan
Date: Wednesday, September 16, 2015 @ 05:45:57
  Author: fyan
Revision: 246377

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 246376, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 246376, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   85 ++
 testing-x86_64/PKGBUILD |   85 ++
 2 files changed, 170 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 246376, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-16 03:45:57 UTC (rev 246377)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.4.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-gmpy2' 'python2-soappy')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a "twisted"{,-py2}
+
+  cd "twisted-py2"
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir/twisted"
+  python3 setup.py build
+
+  cd "$srcdir/twisted-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/twisted"
+  LC_CTYPE=en_US.utf8 xvfb-run python admin/run-python3-tests
+
+  cd "$srcdir/twisted-py2"
+  LC_CTYPE=en_US.utf8 xvfb-run python2 bin/trial twisted || warning "Tests 
failed"
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd "twisted"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # Wrong path, wrong!
+  cp -a "$pkgdir"/usr/twisted/* 
"$pkgdir"/usr/lib/python3.4/site-packages/twisted/
+  rm -r "$pkgdir"/usr/twisted
+
+  # twisted in python 3 supports only one command line tool for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  mv "$pkgdir/usr/bin/trial"{,3}
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd "twisted-py2"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 246376, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-16 03:45:57 UTC (rev 246377)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.4.0
+pkgrel=1
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  

[arch-commits] Commit in twisted/repos (4 files)

2015-08-09 Thread Felix Yan
Date: Monday, August 10, 2015 @ 05:50:17
  Author: fyan
Revision: 243135

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  twisted/repos/testing-i686/
  twisted/repos/testing-i686/PKGBUILD
(from rev 243134, twisted/trunk/PKGBUILD)
  twisted/repos/testing-x86_64/
  twisted/repos/testing-x86_64/PKGBUILD
(from rev 243134, twisted/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   78 ++
 testing-x86_64/PKGBUILD |   78 ++
 2 files changed, 156 insertions(+)

Copied: twisted/repos/testing-i686/PKGBUILD (from rev 243134, 
twisted/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-08-10 03:50:17 UTC (rev 243135)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.3.0
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('1932cc62ac038cce1624f3aa1c893bd83afe0f32')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # LC_CTYPE=en_US.utf8 python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  LC_CTYPE=en_US.utf8 python2 bin/trial twisted || warning Tests failed
+}
+
+package_python-twisted() {
+  depends=('python-crypto' 'python-zope-interface')
+  optdepends=('python-pyopenssl'
+  'python-service-identity: for TLS client hostname verification'
+  'python-pyasn1: for using conch'
+  'tk: for using tkconch')
+
+  cd Twisted-$pkgver
+  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  # Wrong path, wrong!
+  cp -a $pkgdir/usr/twisted/* 
$pkgdir/usr/lib/python3.4/site-packages/twisted/
+  rm -r $pkgdir/usr/twisted
+
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-crypto' 'python2-zope-interface')
+  optdepends=('python2-pyopenssl'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-soappy: for twisted.web.soap'
+  'python2-pyasn1: for using conch'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=(twisted=$pkgver)
+  conflicts=('twisted14.0.0')
+  replaces=('twisted14.0.0')
+
+  cd Twisted-$pkgver-py2
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/testing-x86_64/PKGBUILD (from rev 243134, 
twisted/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-08-10 03:50:17 UTC (rev 243135)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.3.0
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('1932cc62ac038cce1624f3aa1c893bd83afe0f32')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  

[arch-commits] Commit in twisted/repos (4 files)

2015-05-24 Thread Felix Yan
Date: Sunday, May 24, 2015 @ 19:59:59
  Author: fyan
Revision: 239728

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 239727, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 239727, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  146 
 extra-i686/PKGBUILD   |   73 
 extra-x86_64/PKGBUILD |   73 
 3 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-24 17:59:37 UTC (rev 239727)
+++ extra-i686/PKGBUILD 2015-05-24 17:59:59 UTC (rev 239728)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=15.2.0
-pkgrel=1
-pkgdesc=Asynchronous networking framework written in Python
-arch=('i686' 'x86_64')
-url=http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
-sha1sums=('396d2dea0caef8fc470833b9cb98ecb225db3e93')
-
-prepare() {
-  cp -a Twisted-$pkgver{,-py2}
-
-  cd Twisted-$pkgver-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd $srcdir/Twisted-$pkgver
-  python3 setup.py build
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/Twisted-$pkgver
-  # python bin/trial twisted
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 bin/trial twisted || warning Tests failed
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd Twisted-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=(twisted=$pkgver)
-  conflicts=('twisted14.0.0')
-  replaces=('twisted14.0.0')
-
-  cd Twisted-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 239727, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-24 17:59:59 UTC (rev 239728)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.2.1
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('c24b07daa5ff505ee499ec760cf4e1213112bd8f')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 bin/trial twisted || warning Tests failed
+}
+

[arch-commits] Commit in twisted/repos (4 files)

2015-05-19 Thread Felix Yan
Date: Tuesday, May 19, 2015 @ 08:26:07
  Author: fyan
Revision: 239550

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 239549, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 239549, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  146 
 extra-i686/PKGBUILD   |   73 
 extra-x86_64/PKGBUILD |   73 
 3 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-19 06:18:55 UTC (rev 239549)
+++ extra-i686/PKGBUILD 2015-05-19 06:26:07 UTC (rev 239550)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=15.1.0
-pkgrel=1
-pkgdesc=Asynchronous networking framework written in Python
-arch=('i686' 'x86_64')
-url=http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
-sha1sums=('d41d60ff078c8cb9b063f1846a815cec98dc7693')
-
-prepare() {
-  cp -a Twisted-$pkgver{,-py2}
-
-  cd Twisted-$pkgver-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd $srcdir/Twisted-$pkgver
-  python3 setup.py build
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/Twisted-$pkgver
-  # python bin/trial twisted
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 bin/trial twisted || warning Tests failed
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd Twisted-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=(twisted=$pkgver)
-  conflicts=('twisted14.0.0')
-  replaces=('twisted14.0.0')
-
-  cd Twisted-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 239549, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-19 06:26:07 UTC (rev 239550)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.2.0
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('396d2dea0caef8fc470833b9cb98ecb225db3e93')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 bin/trial twisted || warning Tests failed
+}
+

[arch-commits] Commit in twisted/repos (4 files)

2015-04-13 Thread Felix Yan
Date: Monday, April 13, 2015 @ 13:55:33
  Author: fyan
Revision: 236356

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 236355, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 236355, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  146 
 extra-i686/PKGBUILD   |   73 
 extra-x86_64/PKGBUILD |   73 
 3 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-13 11:02:31 UTC (rev 236355)
+++ extra-i686/PKGBUILD 2015-04-13 11:55:33 UTC (rev 236356)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=15.0.0
-pkgrel=1
-pkgdesc=Asynchronous networking framework written in Python
-arch=('i686' 'x86_64')
-url=http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
-sha1sums=('c72bd9a932d944e2e1c4901f7e1cc79b1214472a')
-
-prepare() {
-  cp -a Twisted-$pkgver{,-py2}
-
-  cd Twisted-$pkgver-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd $srcdir/Twisted-$pkgver
-  python3 setup.py build
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/Twisted-$pkgver
-  # python bin/trial twisted
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 bin/trial twisted || warning Tests failed
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd Twisted-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=(twisted=$pkgver)
-  conflicts=('twisted14.0.0')
-  replaces=('twisted14.0.0')
-
-  cd Twisted-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 236355, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-13 11:55:33 UTC (rev 236356)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.1.0
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('d41d60ff078c8cb9b063f1846a815cec98dc7693')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 bin/trial twisted || warning Tests failed
+}
+

[arch-commits] Commit in twisted/repos (4 files)

2015-01-31 Thread Felix Yan
Date: Saturday, January 31, 2015 @ 12:59:33
  Author: fyan
Revision: 230319

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 230318, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 230318, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  146 
 extra-i686/PKGBUILD   |   73 
 extra-x86_64/PKGBUILD |   73 
 3 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-31 11:59:12 UTC (rev 230318)
+++ extra-i686/PKGBUILD 2015-01-31 11:59:33 UTC (rev 230319)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=14.0.2
-pkgrel=1
-pkgdesc=Asynchronous networking framework written in Python
-arch=('i686' 'x86_64')
-url=http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
-sha1sums=('b908dc0d117a782d2becc83fbb906ba4311f3351')
-
-prepare() {
-  cp -a Twisted-$pkgver{,-py2}
-
-  cd Twisted-$pkgver-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd $srcdir/Twisted-$pkgver
-  python3 setup.py build
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/Twisted-$pkgver
-  # python bin/trial twisted
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 bin/trial twisted || warning Tests failed
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd Twisted-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=(twisted=$pkgver)
-  conflicts=('twisted14.0.0')
-  replaces=('twisted14.0.0')
-
-  cd Twisted-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 230318, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-31 11:59:33 UTC (rev 230319)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=15.0.0
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('c72bd9a932d944e2e1c4901f7e1cc79b1214472a')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 bin/trial twisted || warning Tests failed
+}
+

[arch-commits] Commit in twisted/repos (4 files)

2014-09-18 Thread Felix Yan
Date: Friday, September 19, 2014 @ 05:44:36
  Author: fyan
Revision: 222082

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  twisted/repos/extra-i686/PKGBUILD
(from rev 222081, twisted/trunk/PKGBUILD)
  twisted/repos/extra-x86_64/PKGBUILD
(from rev 222081, twisted/trunk/PKGBUILD)
Deleted:
  twisted/repos/extra-i686/PKGBUILD
  twisted/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  146 
 extra-i686/PKGBUILD   |   73 
 extra-x86_64/PKGBUILD |   73 
 3 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-19 03:44:01 UTC (rev 222081)
+++ extra-i686/PKGBUILD 2014-09-19 03:44:36 UTC (rev 222082)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=twisted
-pkgname=(python-twisted python2-twisted)
-pkgver=14.0.1
-pkgrel=1
-pkgdesc=Asynchronous networking framework written in Python
-arch=('i686' 'x86_64')
-url=http://twistedmatrix.com/;
-license=('MIT')
-makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
- 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
-source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
-sha1sums=('4d3c0188f073136212ac55071bce12c65787da70')
-
-prepare() {
-  cp -a Twisted-$pkgver{,-py2}
-
-  cd Twisted-$pkgver-py2
-  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
-twisted/python/test/pullpipe.py \
-twisted/mail/test/pop3testserver.py \
-twisted/trial/test/scripttest.py
-}
-
-build() {
-  cd $srcdir/Twisted-$pkgver
-  python3 setup.py build
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/Twisted-$pkgver
-  # python bin/trial twisted
-
-  cd $srcdir/Twisted-$pkgver-py2
-  python2 bin/trial twisted || warning Tests failed
-}
-
-package_python-twisted() {
-  depends=('python-crypto' 'python-zope-interface')
-  optdepends=('python-pyopenssl'
-  'python-service-identity: for TLS client hostname verification'
-  'python-pyasn1: for using conch'
-  'tk: for using tkconch')
-
-  cd Twisted-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-twisted() {
-  depends=('python2-crypto' 'python2-zope-interface')
-  optdepends=('python2-pyopenssl'
-  'python2-service-identity: for TLS client hostname verification'
-  'python2-soappy: for twisted.web.soap'
-  'python2-pyasn1: for using conch'
-  'pygtk: for using manhole'
-  'tk: for using tkconch')
-  provides=(twisted=$pkgver)
-  conflicts=('twisted14.0.0')
-  replaces=('twisted14.0.0')
-
-  cd Twisted-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: twisted/repos/extra-i686/PKGBUILD (from rev 222081, 
twisted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-19 03:44:36 UTC (rev 222082)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor:  Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=14.0.2
+pkgrel=1
+pkgdesc=Asynchronous networking framework written in Python
+arch=('i686' 'x86_64')
+url=http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-crypto' 'python2-crypto' 'python-zope-interface' 
'python2-zope-interface'
+ 'python-setuptools' 'python2-setuptools' 
'python-service-identity' 'python2-service-identity')
+source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2;)
+sha1sums=('b908dc0d117a782d2becc83fbb906ba4311f3351')
+
+prepare() {
+  cp -a Twisted-$pkgver{,-py2}
+
+  cd Twisted-$pkgver-py2
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted/python/test/pullpipe.py \
+twisted/mail/test/pop3testserver.py \
+twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd $srcdir/Twisted-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/Twisted-$pkgver
+  # python bin/trial twisted
+
+  cd $srcdir/Twisted-$pkgver-py2
+  python2 bin/trial twisted || warning Tests failed
+}
+