[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-09-04 Thread Thore Bödecker via arch-commits
Date: Tuesday, September 4, 2018 @ 12:39:41
  Author: foxxx0
Revision: 376623

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 376622, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  120 -
 1 file changed, 48 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-04 12:39:34 UTC (rev 376622)
+++ PKGBUILD2018-09-04 12:39:41 UTC (rev 376623)
@@ -1,72 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase#python-}"
-pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
-pkgver=17.3.0
-pkgrel=1
-pkgdesc='A pythonic, object-oriented web development framework'
-arch=('any')
-url='https://cherrypy.org'
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
-  'python2-cheroot' 'python-portend' 'python2-portend')
-checkdepends=('python-tox' 'python2-tox')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('779cf604c88104db89a9b3ff51f88fd9e307773c6bca2454ad4909ca9e366f0a895afb037450a87193622ea4a8e2812de924d8472dcf94488a4fe30912e73c09')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # fix python interpreter for python2 stuff
-  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
--exec sed -i 's|^#!/usr/bin/python$|#!/usr/bin/env python2|1' {} +
-}
-
-build() {
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 376622, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-04 12:39:41 UTC (rev 376623)
@@ -0,0 +1,48 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgname='python-cherrypy'
+_pkgname="${pkgname#python-}"
+pkgver=18.0.0
+pkgrel=1
+pkgdesc='A pythonic, object-oriented web development framework'
+arch=('any')
+url='https://cherrypy.org'
+license=('BSD')
+depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco'
+  'python-more-itertools' 'python-zc.lockfile')
+makedepends=('python-setuptools' 'python-setuptools-scm' 'python-six'
+  'python-cheroot' 'python-portend' 'python-more-itertools' 
'python-zc.lockfile')
+checkdepends=('python-tox')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/v$pkgver.tar.gz;)
+sha512sums=('4c1ace8107a436214372b029ba89417b74c82438d281be648abae9f4aa07cae5d9187c0d2ce212125a16ca8acc09b2b26812cd3319386b4be3aa27548cdfa06b')
+
+prepare() {
+  :
+}
+
+build() {
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  python ./setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  tox
+}
+
+package() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-08-20 Thread Thore Bödecker via arch-commits
Date: Monday, August 20, 2018 @ 07:40:01
  Author: foxxx0
Revision: 372840

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 372839, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-20 07:39:53 UTC (rev 372839)
+++ PKGBUILD2018-08-20 07:40:01 UTC (rev 372840)
@@ -1,72 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase#python-}"
-pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
-pkgver=17.0.0
-pkgrel=2
-pkgdesc='A pythonic, object-oriented web development framework'
-arch=('any')
-url='https://cherrypy.org'
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
-  'python2-cheroot' 'python-portend' 'python2-portend')
-checkdepends=('python-tox' 'python2-tox')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('a80cbca34a1fe66a0dd83dce1d241f9b4b0c949fa05c9f982f8785c164debf969f4f222ec9e05a8e37fa272ea459e13bb06c50850dcfb87c0a281a67dd0673e6')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # fix python interpreter for python2 stuff
-  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
--exec sed -i 's|^#!/usr/bin/python$|#!/usr/bin/env python2|1' {} +
-}
-
-build() {
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 372839, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-20 07:40:01 UTC (rev 372840)
@@ -0,0 +1,72 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase#python-}"
+pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
+pkgver=17.3.0
+pkgrel=1
+pkgdesc='A pythonic, object-oriented web development framework'
+arch=('any')
+url='https://cherrypy.org'
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
+  'python2-cheroot' 'python-portend' 'python2-portend')
+checkdepends=('python-tox' 'python2-tox')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('779cf604c88104db89a9b3ff51f88fd9e307773c6bca2454ad4909ca9e366f0a895afb037450a87193622ea4a8e2812de924d8472dcf94488a4fe30912e73c09')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # fix python interpreter for python2 stuff
+  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
+-exec sed -i 's|^#!/usr/bin/python$|#!/usr/bin/env python2|1' {} +
+}
+
+build() {
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py build
+
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  tox
+
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  tox2
+}
+
+package_python-cherrypy() 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-07-24 Thread Thore Bödecker via arch-commits
Date: Tuesday, July 24, 2018 @ 14:15:06
  Author: foxxx0
Revision: 363294

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 363293, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  147 +
 1 file changed, 72 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-24 14:15:01 UTC (rev 363293)
+++ PKGBUILD2018-07-24 14:15:06 UTC (rev 363294)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=16.0.3
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="https://cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
-  'python2-cheroot' 'python-portend' 'python2-portend')
-checkdepends=('python-tox' 'python2-tox')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('897c7ae982f02dbae4226ecff37d2b2c8b39e63929fde8bbf34b7c5996f89fe5a89ab5f399001ede8bd0352442fba223ca4518523ed0a88240887fe099ddaf2a')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 363293, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-24 14:15:06 UTC (rev 363294)
@@ -0,0 +1,72 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase#python-}"
+pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
+pkgver=17.0.0
+pkgrel=1
+pkgdesc='A pythonic, object-oriented web development framework'
+arch=('any')
+url='https://cherrypy.org'
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
+  'python2-cheroot' 'python-portend' 'python2-portend')
+checkdepends=('python-tox' 'python2-tox')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('a80cbca34a1fe66a0dd83dce1d241f9b4b0c949fa05c9f982f8785c164debf969f4f222ec9e05a8e37fa272ea459e13bb06c50850dcfb87c0a281a67dd0673e6')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # fix python interpreter for python2 stuff
+  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
+-exec sed -i 's|^#!/usr/bin/python$|#!/usr/bin/env python2|1' {} +
+}
+
+build() {
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py build
+
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  python2 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-07-11 Thread Thore Bödecker via arch-commits
Date: Wednesday, July 11, 2018 @ 08:19:32
  Author: foxxx0
Revision: 356981

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 356979, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-11 08:19:31 UTC (rev 356980)
+++ PKGBUILD2018-07-11 08:19:32 UTC (rev 356981)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=16.0.2
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('00c89a99250e44f2578a1ff5d77f402062fc829c9de86aac029963d6b0570a862e48a84781c3fa6dd74e60e09a02e4e7bfc8f3e485a37b31f9b2870bc3ff2066')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 356979, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-11 08:19:32 UTC (rev 356981)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=16.0.3
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="https://cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-six' 'python2-six' 'python-cheroot'
+  'python2-cheroot' 'python-portend' 'python2-portend')
+checkdepends=('python-tox' 'python2-tox')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('897c7ae982f02dbae4226ecff37d2b2c8b39e63929fde8bbf34b7c5996f89fe5a89ab5f399001ede8bd0352442fba223ca4518523ed0a88240887fe099ddaf2a')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py build
+
+  cd 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-06-21 Thread Thore Bödecker via arch-commits
Date: Thursday, June 21, 2018 @ 07:02:24
  Author: foxxx0
Revision: 344246

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 344245, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-21 07:02:19 UTC (rev 344245)
+++ PKGBUILD2018-06-21 07:02:24 UTC (rev 344246)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=16.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('23c4b709360398615212cada945b85e59b8f664373705f8b70de16785905862b8fff44b27e3dff2c2d446a579c478fc4786910d8dee7d7f14a468dfafaf9bd76')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 344245, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-21 07:02:24 UTC (rev 344246)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=16.0.2
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('00c89a99250e44f2578a1ff5d77f402062fc829c9de86aac029963d6b0570a862e48a84781c3fa6dd74e60e09a02e4e7bfc8f3e485a37b31f9b2870bc3ff2066')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py build
+
+  cd 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-06-17 Thread Thore Bödecker via arch-commits
Date: Sunday, June 17, 2018 @ 09:33:06
  Author: foxxx0
Revision: 343448

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 343447, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-17 09:32:56 UTC (rev 343447)
+++ PKGBUILD2018-06-17 09:33:06 UTC (rev 343448)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=15.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('8b976dd0b80fdc3dd0c98460e26bbca999e3646780ff88d1bb1407820846793f70e43cdcebd9cd4a5bc548e991a00d6c72793727d9b5bd8c2dcd381f7b7609a7')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 343447, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-17 09:33:06 UTC (rev 343448)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=16.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('23c4b709360398615212cada945b85e59b8f664373705f8b70de16785905862b8fff44b27e3dff2c2d446a579c478fc4786910d8dee7d7f14a468dfafaf9bd76')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py build
+
+  cd 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-05-13 Thread Thore Bödecker via arch-commits
Date: Sunday, May 13, 2018 @ 14:28:03
  Author: foxxx0
Revision: 321607

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 321606, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-13 14:27:51 UTC (rev 321606)
+++ PKGBUILD2018-05-13 14:28:03 UTC (rev 321607)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=14.2.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('a9b6fc466af4b8df31aae10094ad0414cdac4e59159b0d9a0634660f161669648e2b21b929f08bc965747f389b0a1da3aa15d86ab8540a6caf34a0ef0cb1')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 321606, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-13 14:28:03 UTC (rev 321607)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=15.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('8b976dd0b80fdc3dd0c98460e26bbca999e3646780ff88d1bb1407820846793f70e43cdcebd9cd4a5bc548e991a00d6c72793727d9b5bd8c2dcd381f7b7609a7')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-04-23 Thread Thore Bödecker via arch-commits
Date: Monday, April 23, 2018 @ 10:00:22
  Author: foxxx0
Revision: 317364

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 317363, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-23 10:00:00 UTC (rev 317363)
+++ PKGBUILD2018-04-23 10:00:22 UTC (rev 317364)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=14.0.1
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('02b2da6ecf53dce606198e8e3e50a3ab587d3c53efc88e9032f385f1ac96b865fdaeb6e74bbca13eb4f75704ac5bb84068b39180f8f22a836400662c7583bd1e')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 317363, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-23 10:00:22 UTC (rev 317364)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=14.2.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('a9b6fc466af4b8df31aae10094ad0414cdac4e59159b0d9a0634660f161669648e2b21b929f08bc965747f389b0a1da3aa15d86ab8540a6caf34a0ef0cb1')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-03-26 Thread Thore Bödecker via arch-commits
Date: Monday, March 26, 2018 @ 09:12:25
  Author: foxxx0
Revision: 312663

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 312662, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-26 09:12:04 UTC (rev 312662)
+++ PKGBUILD2018-03-26 09:12:25 UTC (rev 312663)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=14.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('d88d37fd78bbe7931cfb234642016693925f5e45e9d8b6825755afb15e2ff367021cf0e27cff627cb7dc86189f1ede63af66ef0a8c86519b07c0877d24c9f74c')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 312662, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-26 09:12:25 UTC (rev 312663)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=14.0.1
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('02b2da6ecf53dce606198e8e3e50a3ab587d3c53efc88e9032f385f1ac96b865fdaeb6e74bbca13eb4f75704ac5bb84068b39180f8f22a836400662c7583bd1e')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2018-02-13 Thread Thore Bödecker via arch-commits
Date: Tuesday, February 13, 2018 @ 13:32:09
  Author: foxxx0
Revision: 293849

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 293848, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-13 13:31:50 UTC (rev 293848)
+++ PKGBUILD2018-02-13 13:32:09 UTC (rev 293849)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=13.1.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('361fe79d3f2aecae8d7a5986142e5054e24ea2c12e83182f771c6e262a54be1dfe22fd67de0f63d74ddb746dafd5d4320d8988ae01e85452edf62b6a9289cabd')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 293848, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-13 13:32:09 UTC (rev 293849)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=14.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('d88d37fd78bbe7931cfb234642016693925f5e45e9d8b6825755afb15e2ff367021cf0e27cff627cb7dc86189f1ede63af66ef0a8c86519b07c0877d24c9f74c')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-12-18 Thread Thore Bödecker via arch-commits
Date: Monday, December 18, 2017 @ 15:40:27
  Author: foxxx0
Revision: 274775

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 274774, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 15:40:14 UTC (rev 274774)
+++ PKGBUILD2017-12-18 15:40:27 UTC (rev 274775)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=13.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('1118219499d6656c128ec74c8e1bb2c71911443bdf20cfcfbdd794ad94205dcc59eb0fdfdcd920cd314dbd447880d8662c6051108aaa68310f3701a125c51ad5')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 274774, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 15:40:27 UTC (rev 274775)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=13.1.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('361fe79d3f2aecae8d7a5986142e5054e24ea2c12e83182f771c6e262a54be1dfe22fd67de0f63d74ddb746dafd5d4320d8988ae01e85452edf62b6a9289cabd')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-12-05 Thread Thore Bödecker via arch-commits
Date: Tuesday, December 5, 2017 @ 12:30:46
  Author: foxxx0
Revision: 272238

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 272237, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-05 12:30:36 UTC (rev 272237)
+++ PKGBUILD2017-12-05 12:30:46 UTC (rev 272238)
@@ -1,75 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=12.0.2
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('49bcd642ef5d3d9a5aa60125a12df5b1a288e4133a0ed16839e6a9bce49184e7526d2508afd5959f77e09fddca4ff1a8846b833f63190e4451fe7553dda87e55')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  # fix incorrect shebang
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' 
cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 272237, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-05 12:30:46 UTC (rev 272238)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=13.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('1118219499d6656c128ec74c8e1bb2c71911443bdf20cfcfbdd794ad94205dcc59eb0fdfdcd920cd314dbd447880d8662c6051108aaa68310f3701a125c51ad5')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-12-04 Thread Thore Bödecker via arch-commits
Date: Monday, December 4, 2017 @ 15:37:47
  Author: foxxx0
Revision: 272121

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 272120, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  148 ++---
 1 file changed, 75 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-04 15:37:33 UTC (rev 272120)
+++ PKGBUILD2017-12-04 15:37:47 UTC (rev 272121)
@@ -1,73 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=12.0.1
-pkgrel=2
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('74f3ea0f919169b0502105444dc4539a46dd033e21c9874c9d5a25fdd3c1835556224e31c8fbd1f33c4f8124a75cb049f5057a8fb4ff3d661e65c7f4982341d7')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend' 
'python2-jaraco')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 272120, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-04 15:37:47 UTC (rev 272121)
@@ -0,0 +1,75 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=12.0.2
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('49bcd642ef5d3d9a5aa60125a12df5b1a288e4133a0ed16839e6a9bce49184e7526d2508afd5959f77e09fddca4ff1a8846b833f63190e4451fe7553dda87e55')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-11-24 Thread Thore Bödecker
Date: Friday, November 24, 2017 @ 09:54:46
  Author: foxxx0
Revision: 268287

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 268286, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 09:54:36 UTC (rev 268286)
+++ PKGBUILD2017-11-24 09:54:46 UTC (rev 268287)
@@ -1,73 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=12.0.1
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('74f3ea0f919169b0502105444dc4539a46dd033e21c9874c9d5a25fdd3c1835556224e31c8fbd1f33c4f8124a75cb049f5057a8fb4ff3d661e65c7f4982341d7')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 268286, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 09:54:46 UTC (rev 268287)
@@ -0,0 +1,73 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=12.0.1
+pkgrel=2
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('74f3ea0f919169b0502105444dc4539a46dd033e21c9874c9d5a25fdd3c1835556224e31c8fbd1f33c4f8124a75cb049f5057a8fb4ff3d661e65c7f4982341d7')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-11-23 Thread Thore Bödecker
Date: Thursday, November 23, 2017 @ 09:25:45
  Author: foxxx0
Revision: 268181

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 268180, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-23 09:25:30 UTC (rev 268180)
+++ PKGBUILD2017-11-23 09:25:45 UTC (rev 268181)
@@ -1,73 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=12.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('5659e077054d597758326534b7e09cdace320a123752666355ef1917cce4ae1491eaf988dc1fd3c05c1ffe0f2f36b2c10af96446871612c085b9011ff39641c8')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 268180, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-23 09:25:45 UTC (rev 268181)
@@ -0,0 +1,73 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=12.0.1
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('74f3ea0f919169b0502105444dc4539a46dd033e21c9874c9d5a25fdd3c1835556224e31c8fbd1f33c4f8124a75cb049f5057a8fb4ff3d661e65c7f4982341d7')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-11-20 Thread Thore Bödecker
Date: Monday, November 20, 2017 @ 09:50:31
  Author: foxxx0
Revision: 267531

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 267530, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-20 09:50:20 UTC (rev 267530)
+++ PKGBUILD2017-11-20 09:50:31 UTC (rev 267531)
@@ -1,73 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgbase='python-cherrypy'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=11.0.0
-pkgrel=5
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
-  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
-  'python2-portend')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
-sha512sums=('955a1d5390390149d9648d7ce20a579dbd1db05e352c2282e29044b49dc22ab4929dcefece15f8f78ed4c8c8ceb9611d87033d60f1aa38964a515bbdf0381c66')
-
-prepare() {
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # disable broken tests
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
-  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
-}
-
-build() {
-
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py build
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  tox
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  tox2
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six' 'python-cheroot' 'python-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2' 'python2-six' 'python2-cheroot' 'python2-portend')
-
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 267530, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-20 09:50:31 UTC (rev 267531)
@@ -0,0 +1,73 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgbase='python-cherrypy'
+_pkgbase="${pkgbase//python-/}"
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=12.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+  'python2-setuptools-scm' 'python-tox' 'python2-tox' 'python-six'
+  'python2-six' 'python-cheroot' 'python2-cheroot' 'python-portend'
+  'python2-portend')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/${_pkgbase}/${_pkgbase}/archive/v$pkgver.tar.gz;)
+sha512sums=('5659e077054d597758326534b7e09cdace320a123752666355ef1917cce4ae1491eaf988dc1fd3c05c1ffe0f2f36b2c10af96446871612c085b9011ff39641c8')
+
+prepare() {
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # disable broken tests
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}/${_pkgbase}/test"/test_{objectmapping.py,request_obj.py}
+  rm 
"${srcdir}/${_pkgbase}-${pkgver}-py2/${_pkgbase}/test"/test_{encoding.py,objectmapping.py,request_obj.py}
+}
+
+build() {
+
+  # setuptools wont 

[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-01-18 Thread Jelle van der Waa
Date: Wednesday, January 18, 2017 @ 21:39:11
  Author: jelle
Revision: 207929

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 207928, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-18 21:39:02 UTC (rev 207928)
+++ PKGBUILD2017-01-18 21:39:11 UTC (rev 207929)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.8.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=("https://pypi.python.org/packages/1c/db/af94992bb0fb74f5968248e9e3ec5f405703c97cd97578874c9fb08a3bfa/CherryPy-8.8.0.tar.gz;)
-md5sums=('71bb74990ff2016826a4fe762d0c07a2')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
-}
-
-check() {
-  # backports.unittest_mock is not packaged..
-  cd CherryPy-${pkgver}-py2/cherrypy
-  #LANG="en_US.UTF-8" pytest2 test/
-
-  cd $srcdir/CherryPy-${pkgver}/cherrypy
-  LANG="en_US.UTF-8" pytest test/
-
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 207928, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-18 21:39:11 UTC (rev 207929)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.9.1
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock' 'python-nose')
+source=("https://pypi.python.org/packages/56/aa/91005730bdc5c0da8291a2f411aacbc5c3729166c382e2193e33f28044a3/CherryPy-8.9.1.tar.gz;)
+md5sums=('7abe5198e48f14cfee57a07d23875a4b')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  # backports.unittest_mock is not packaged..
+  cd CherryPy-${pkgver}-py2/cherrypy
+  #LANG="en_US.UTF-8" pytest2 test/
+
+  cd $srcdir/CherryPy-${pkgver}/cherrypy
+  LANG="en_US.UTF-8" nosetests test/
+
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-01-12 Thread Jelle van der Waa
Date: Thursday, January 12, 2017 @ 19:33:47
  Author: jelle
Revision: 207073

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 207072, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  117 +++--
 1 file changed, 60 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-12 19:33:39 UTC (rev 207072)
+++ PKGBUILD2017-01-12 19:33:47 UTC (rev 207073)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.7.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/7e/22/05ad0115a8bf4be740f650d1a220bbb11e8217a160a4c2e93bb62191879c/CherryPy-8.7.0.tar.gz;)
-md5sums=('4cd92f109933e737c8e372ab51e865a8')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 207072, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-12 19:33:47 UTC (rev 207073)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.8.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("https://pypi.python.org/packages/1c/db/af94992bb0fb74f5968248e9e3ec5f405703c97cd97578874c9fb08a3bfa/CherryPy-8.8.0.tar.gz;)
+md5sums=('71bb74990ff2016826a4fe762d0c07a2')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  # backports.unittest_mock is not packaged..
+  cd CherryPy-${pkgver}-py2/cherrypy
+  #LANG="en_US.UTF-8" pytest2 test/
+
+  cd $srcdir/CherryPy-${pkgver}/cherrypy
+  LANG="en_US.UTF-8" pytest test/
+
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2017-01-06 Thread Jelle van der Waa
Date: Friday, January 6, 2017 @ 16:17:34
  Author: jelle
Revision: 205817

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 205816, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-06 16:17:26 UTC (rev 205816)
+++ PKGBUILD2017-01-06 16:17:34 UTC (rev 205817)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.5.0
-pkgrel=4
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
-md5sums=('a43755ddd675ed5a11134f77ef033ad1')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 205816, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-06 16:17:34 UTC (rev 205817)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.7.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/7e/22/05ad0115a8bf4be740f650d1a220bbb11e8217a160a4c2e93bb62191879c/CherryPy-8.7.0.tar.gz;)
+md5sums=('4cd92f109933e737c8e372ab51e865a8')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-12-27 Thread Jelle van der Waa
Date: Tuesday, December 27, 2016 @ 15:23:31
  Author: jelle
Revision: 203099

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 203098, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-27 15:23:17 UTC (rev 203098)
+++ PKGBUILD2016-12-27 15:23:31 UTC (rev 203099)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.5.0
-pkgrel=2
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
-md5sums=('a43755ddd675ed5a11134f77ef033ad1')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 203098, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-27 15:23:31 UTC (rev 203099)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.5.0
+pkgrel=3
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
+md5sums=('a43755ddd675ed5a11134f77ef033ad1')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-12-27 Thread Jelle van der Waa
Date: Tuesday, December 27, 2016 @ 15:10:10
  Author: jelle
Revision: 203097

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 203096, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-27 15:09:57 UTC (rev 203096)
+++ PKGBUILD2016-12-27 15:10:10 UTC (rev 203097)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.5.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
-md5sums=('a43755ddd675ed5a11134f77ef033ad1')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 203096, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-27 15:10:10 UTC (rev 203097)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.5.0
+pkgrel=2
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
+md5sums=('a43755ddd675ed5a11134f77ef033ad1')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-12-27 Thread Jelle van der Waa
Date: Tuesday, December 27, 2016 @ 14:44:35
  Author: jelle
Revision: 203091

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 203090, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-27 14:44:24 UTC (rev 203090)
+++ PKGBUILD2016-12-27 14:44:35 UTC (rev 203091)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.1.2
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/d9/ec/a9cd68e57af9fead92158028d32cc79f1908fd81f486d8a3826e9847ada6/CherryPy-8.1.2.tar.gz;)
-md5sums=('553f054152c2adbe60738682ed5390c5')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 203090, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-27 14:44:35 UTC (rev 203091)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.5.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
+md5sums=('a43755ddd675ed5a11134f77ef033ad1')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-10-28 Thread Jelle van der Waa
Date: Friday, October 28, 2016 @ 20:34:31
  Author: jelle
Revision: 193955

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 193954, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-28 20:34:23 UTC (rev 193954)
+++ PKGBUILD2016-10-28 20:34:31 UTC (rev 193955)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.1.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/f8/74/4a17240440813c94d22d70837002dc1fce8d40a0daa762af4cf016265fce/CherryPy-8.1.0.tar.gz;)
-md5sums=('d981ad6bd9685a3ba16ea5b7a54fb01f')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 193954, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-28 20:34:31 UTC (rev 193955)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.1.2
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/d9/ec/a9cd68e57af9fead92158028d32cc79f1908fd81f486d8a3826e9847ada6/CherryPy-8.1.2.tar.gz;)
+md5sums=('553f054152c2adbe60738682ed5390c5')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-09-25 Thread Jelle van der Waa
Date: Sunday, September 25, 2016 @ 18:44:39
  Author: jelle
Revision: 190569

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 190568, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-25 18:44:31 UTC (rev 190568)
+++ PKGBUILD2016-09-25 18:44:39 UTC (rev 190569)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=6.2.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
-md5sums=('81b06f52466e6cf94353a93d483e234b')
-
-build() {
-  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
-
-  cd cherrypy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/cherrypy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd cherrypy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd cherrypy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd cherrypy-${pkgver}
-  python2 ./setup.py test
-
-  cd ../cherrypy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 190568, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-25 18:44:39 UTC (rev 190569)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.1.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/f8/74/4a17240440813c94d22d70837002dc1fce8d40a0daa762af4cf016265fce/CherryPy-8.1.0.tar.gz;)
+md5sums=('d981ad6bd9685a3ba16ea5b7a54fb01f')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-08-05 Thread Jelle van der Waa
Date: Friday, August 5, 2016 @ 19:11:17
  Author: jelle
Revision: 185376

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 185375, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-05 19:11:10 UTC (rev 185375)
+++ PKGBUILD2016-08-05 19:11:17 UTC (rev 185376)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=6.0.2
-pkgrel=2
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
-md5sums=('0d3ed6a4dc7385b6621267f07534b57c')
-
-build() {
-  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
-
-  cd cherrypy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/cherrypy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd cherrypy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd cherrypy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd cherrypy-${pkgver}
-  python2 ./setup.py test
-
-  cd ../cherrypy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 185375, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-05 19:11:17 UTC (rev 185376)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=6.2.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
+md5sums=('81b06f52466e6cf94353a93d483e234b')
+
+build() {
+  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
+
+  cd cherrypy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/cherrypy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd cherrypy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd cherrypy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd cherrypy-${pkgver}
+  python2 ./setup.py test
+
+  cd ../cherrypy-${pkgver}
+  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-07-05 Thread Jelle van der Waa
Date: Tuesday, July 5, 2016 @ 16:03:59
  Author: jelle
Revision: 182342

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 182341, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-05 16:03:51 UTC (rev 182341)
+++ PKGBUILD2016-07-05 16:03:59 UTC (rev 182342)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=6.0.2
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
-md5sums=('0d3ed6a4dc7385b6621267f07534b57c')
-
-build() {
-  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
-
-  cd cherrypy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/cherrypy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd cherrypy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd cherrypy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd cherrypy-${pkgver}
-  python2 ./setup.py test
-
-  cd ../cherrypy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 182341, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-05 16:03:59 UTC (rev 182342)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=6.0.2
+pkgrel=2
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
+md5sums=('0d3ed6a4dc7385b6621267f07534b57c')
+
+build() {
+  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
+
+  cd cherrypy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/cherrypy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd cherrypy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd cherrypy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd cherrypy-${pkgver}
+  python2 ./setup.py test
+
+  cd ../cherrypy-${pkgver}
+  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-06-24 Thread Jelle van der Waa
Date: Friday, June 24, 2016 @ 20:46:20
  Author: jelle
Revision: 181039

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 181038, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  121 -
 1 file changed, 57 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-24 20:45:47 UTC (rev 181038)
+++ PKGBUILD2016-06-24 20:46:20 UTC (rev 181039)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=5.4.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/a3/b8/b010a1803d4239caf320c364ba3d4e3bb64f7cf1cc350182f64048dfde69/CherryPy-5.4.0.tar.gz;)
-md5sums=('7801c069cf4affdd4ff43faa1a63b481')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 181038, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-24 20:46:20 UTC (rev 181039)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=6.0.2
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=(https://github.com/cherrypy/cherrypy/archive/v$pkgver.tar.gz)
+md5sums=('0d3ed6a4dc7385b6621267f07534b57c')
+
+build() {
+  cp -r cherrypy-${pkgver} cherrypy-${pkgver}-py2
+
+  cd cherrypy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/cherrypy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd cherrypy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd cherrypy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd cherrypy-${pkgver}
+  python2 ./setup.py test
+
+  cd ../cherrypy-${pkgver}
+  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-05-14 Thread Jelle van der Waa
Date: Saturday, May 14, 2016 @ 21:10:38
  Author: jelle
Revision: 175398

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 175397, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-14 19:10:30 UTC (rev 175397)
+++ PKGBUILD2016-05-14 19:10:38 UTC (rev 175398)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=5.1.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
-md5sums=('15e2ea13792fa2c165f18bf89396d64c')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 175397, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-14 19:10:38 UTC (rev 175398)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=5.4.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/a3/b8/b010a1803d4239caf320c364ba3d4e3bb64f7cf1cc350182f64048dfde69/CherryPy-5.4.0.tar.gz;)
+md5sums=('7801c069cf4affdd4ff43faa1a63b481')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-04-30 Thread Jelle van der Waa
Date: Saturday, April 30, 2016 @ 16:36:24
  Author: jelle
Revision: 173177

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 173176, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-30 14:36:14 UTC (rev 173176)
+++ PKGBUILD2016-04-30 14:36:24 UTC (rev 173177)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=4.0.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
-md5sums=('4b765329b0b4b65ec25811e3febb6c93')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 173176, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-30 14:36:24 UTC (rev 173177)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=5.1.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
+md5sums=('15e2ea13792fa2c165f18bf89396d64c')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2016-01-21 Thread Jelle van der Waa
Date: Thursday, January 21, 2016 @ 21:56:14
  Author: jelle
Revision: 158447

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 158446, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-21 20:56:06 UTC (rev 158446)
+++ PKGBUILD2016-01-21 20:56:14 UTC (rev 158447)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=3.8.1
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
-md5sums=('919301731c9835cf7941f8bdc1aee9aa')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 158446, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-21 20:56:14 UTC (rev 158447)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
+md5sums=('4b765329b0b4b65ec25811e3febb6c93')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2015-12-21 Thread Jelle van der Waa
Date: Monday, December 21, 2015 @ 12:24:40
  Author: jelle
Revision: 153828

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 153827, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-21 11:24:31 UTC (rev 153827)
+++ PKGBUILD2015-12-21 11:24:40 UTC (rev 153828)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
-md5sums=('542b96b2cd825e8120e8cd822bc18f4b')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 153827, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-21 11:24:40 UTC (rev 153828)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
+md5sums=('919301731c9835cf7941f8bdc1aee9aa')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+  python3 ./setup.py check
+}


[arch-commits] Commit in python-cherrypy/repos/community-any (PKGBUILD PKGBUILD)

2015-10-10 Thread Jelle van der Waa
Date: Saturday, October 10, 2015 @ 13:57:38
  Author: jelle
Revision: 143593

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 143592, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-10 11:56:42 UTC (rev 143592)
+++ PKGBUILD2015-10-10 11:57:38 UTC (rev 143593)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=3.6.0
-pkgrel=2
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org;
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
-md5sums=('9772dbee426d656f01a13881e2b139d8')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-  python2 ./setup.py check
-
-  cd ../CherryPy-${pkgver}
-  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 143592, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-10 11:57:38 UTC (rev 143593)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=3.8.0
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org;
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz;)
+md5sums=('542b96b2cd825e8120e8cd822bc18f4b')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+  python3 ./setup.py check
+}