[arch-commits] Commit in python-urllib3/repos (3 files)
Felix Yan
fyan at archlinux.org
Sun Sep 20 02:04:28 UTC 2015
Date: Sunday, September 20, 2015 @ 04:04:27
Author: fyan
Revision: 141116
archrelease: copy trunk to community-staging-any
Added:
python-urllib3/repos/community-staging-any/
python-urllib3/repos/community-staging-any/LICENSE
(from rev 141115, python-urllib3/trunk/LICENSE)
python-urllib3/repos/community-staging-any/PKGBUILD
(from rev 141115, python-urllib3/trunk/PKGBUILD)
----------+
LICENSE | 32 ++++++++++++++++++++++++++++++++
PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+)
Copied: python-urllib3/repos/community-staging-any/LICENSE (from rev 141115, python-urllib3/trunk/LICENSE)
===================================================================
--- community-staging-any/LICENSE (rev 0)
+++ community-staging-any/LICENSE 2015-09-20 02:04:27 UTC (rev 141116)
@@ -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.
Copied: python-urllib3/repos/community-staging-any/PKGBUILD (from rev 141115, python-urllib3/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-20 02:04:27 UTC (rev 141116)
@@ -0,0 +1,58 @@
+# $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.12
+_commit=e91c16169e463118ce662345461933bb3a7dedef
+pkgrel=2
+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-coverage' 'python2-coverage'
+ 'python-tornado' 'python2-tornado' 'twine' 'python2-twine' 'python2-pyopenssl')
+source=("git+https://github.com/shazow/urllib3.git#commit=$_commit")
+md5sums=('SKIP')
+
+prepare() {
+ cp -a urllib3{,-py2}
+}
+
+build() {
+ cd urllib3
+ python setup.py build
+
+ cd ../urllib3-py2
+ python2 setup.py build
+}
+
+check() {
+ # Expected failure when asking for external resources
+
+ cd urllib3
+ nosetests3 || warning "Tests failed"
+
+ cd ../urllib3-py2
+ nosetests2 || warning "Tests failed"
+}
+
+package_python-urllib3() {
+ depends=('python')
+
+ cd urllib3
+ python setup.py install --root="${pkgdir}"
+ install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
+
+package_python2-urllib3() {
+ depends=('python2')
+
+ cd urllib3-py2
+ python2 setup.py install --root="${pkgdir}"
+ install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
More information about the arch-commits
mailing list