[arch-commits] Commit in python-urllib3/repos/community-any (4 files)

Felix Yan fyan at archlinux.org
Thu Feb 26 02:52:30 UTC 2015


    Date: Thursday, February 26, 2015 @ 03:52:30
  Author: fyan
Revision: 128243

archrelease: copy trunk to community-any

Added:
  python-urllib3/repos/community-any/LICENSE
    (from rev 128242, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/community-any/PKGBUILD
    (from rev 128242, python-urllib3/trunk/PKGBUILD)
Deleted:
  python-urllib3/repos/community-any/LICENSE
  python-urllib3/repos/community-any/PKGBUILD

----------+
 LICENSE  |   64 +++++++++++++++----------------
 PKGBUILD |  124 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2015-02-26 02:51:33 UTC (rev 128242)
+++ LICENSE	2015-02-26 02:52:30 UTC (rev 128243)
@@ -1,32 +0,0 @@
-Note from the ArchLinux Packager:
-The urllib3 source doesn't come with a license file.  Its homepage
-does provide a link to the text of the MIT license, so I copied
-the following text to a file when building the package.
-
-------CUT------
-Open Source Initiative OSI - The MIT License:Licensing
-
-
-[OSI Approved License]
-
-The MIT License
-
-Copyright (c) <year> <copyright holders>
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: python-urllib3/repos/community-any/LICENSE (from rev 128242, python-urllib3/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2015-02-26 02:52:30 UTC (rev 128243)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+------CUT------
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c) <year> <copyright holders>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2015-02-26 02:51:33 UTC (rev 128242)
+++ PKGBUILD	2015-02-26 02:52:30 UTC (rev 128243)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Patrice Peterson <runiq at archlinux dot us>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: BorgHunter <borghunter at gmail dot com>
-
-pkgbase=python-urllib3
-pkgname=(python-urllib3 python2-urllib3)
-pkgver=1.10.1
-pkgrel=1
-pkgdesc="HTTP library with thread-safe connection pooling and file post support"
-arch=("any")
-url="https://github.com/shazow/urllib3"
-license=("MIT")
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-pyopenssl' 'python2-pyopenssl'
-              'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 'python-coverage' 'python2-coverage')
-source=("https://github.com/shazow/urllib3/archive/$pkgver.tar.gz" 
-        LICENSE)
-md5sums=('47443bfddc94334f272b8a3706428db6'
-         '350846ab4dd11ce105b570c15c1b0764')
-
-prepare() {
-  # Hack version requirements for test requirements to run tests - Disabled due to tests not runable
-  #sed -e "s/==.*//" -i $_pkgname/test-requirements.txt
-
-  cp -a urllib3-$pkgver{,-py2}
-}
-
-build() {
-  cd urllib3-$pkgver
-  python setup.py build
-
-  cd ../urllib3-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Tests stuck
-
-  cd urllib3-$pkgver
-#  nosetests3 -e "pyopenssl"  # No ndg-httpsclient module to test with
-
-  cd ../urllib3-$pkgver-py2
-#  nosetests2
-}
-
-package_python-urllib3() {
-  depends=('python')
-
-  cd urllib3-$pkgver
-  python setup.py install --root="${pkgdir}"
-  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-urllib3() {
-  depends=('python2')
-
-  cd urllib3-$pkgver-py2
-  python2 setup.py install --root="${pkgdir}"
-  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-urllib3/repos/community-any/PKGBUILD (from rev 128242, python-urllib3/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2015-02-26 02:52:30 UTC (rev 128243)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Patrice Peterson <runiq at archlinux dot us>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: BorgHunter <borghunter at gmail dot com>
+
+pkgbase=python-urllib3
+pkgname=(python-urllib3 python2-urllib3)
+pkgver=1.10.2
+pkgrel=1
+pkgdesc="HTTP library with thread-safe connection pooling and file post support"
+arch=("any")
+url="https://github.com/shazow/urllib3"
+license=("MIT")
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-pyopenssl' 'python2-pyopenssl'
+              'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 'python-coverage' 'python2-coverage')
+source=("https://github.com/shazow/urllib3/archive/$pkgver.tar.gz" 
+        LICENSE)
+md5sums=('bd1c856b66829220f02aff4f309a77fe'
+         '350846ab4dd11ce105b570c15c1b0764')
+
+prepare() {
+  # Hack version requirements for test requirements to run tests - Disabled due to tests not runable
+  #sed -e "s/==.*//" -i $_pkgname/test-requirements.txt
+
+  cp -a urllib3-$pkgver{,-py2}
+}
+
+build() {
+  cd urllib3-$pkgver
+  python setup.py build
+
+  cd ../urllib3-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Tests stuck
+
+  cd urllib3-$pkgver
+  # nosetests3 -e "pyopenssl"  # No ndg-httpsclient module to test with
+
+  cd ../urllib3-$pkgver-py2
+  # nosetests2
+}
+
+package_python-urllib3() {
+  depends=('python')
+
+  cd urllib3-$pkgver
+  python setup.py install --root="${pkgdir}"
+  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-urllib3() {
+  depends=('python2')
+
+  cd urllib3-$pkgver-py2
+  python2 setup.py install --root="${pkgdir}"
+  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list