python2-requests git version first PKGBUILD version
This commit is contained in:
commit
053281fe4b
3 changed files with 99 additions and 0 deletions
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
@ -0,0 +1,20 @@
|
|||
pkgbase = python2-requests-git
|
||||
pkgdesc = Python HTTP for Humans.
|
||||
pkgver = 20130206
|
||||
pkgrel = 1
|
||||
url = http://python-requests.org
|
||||
arch = any
|
||||
license = custom: ISC
|
||||
makedepends = git
|
||||
makedepends = python2-distribute
|
||||
depends = python2
|
||||
optdepends = python2-certifi: SSL support
|
||||
optdepends = python2-grequests: asynchronous requests with gevent
|
||||
optdepends = python2-simplejson
|
||||
provides = python2-requests
|
||||
conflicts = python2-requests
|
||||
source = certs.patch
|
||||
sha256sums = 482fc40ba146d2200771a690b3bedf6eddc9c3224d6f7b5ba529124039b07246
|
||||
|
||||
pkgname = python2-requests-git
|
||||
|
62
PKGBUILD
Normal file
62
PKGBUILD
Normal file
|
@ -0,0 +1,62 @@
|
|||
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||
|
||||
pkgname=python2-requests-git
|
||||
pkgver=20130206
|
||||
pkgrel=1
|
||||
_libname=${pkgname/python2-/}
|
||||
pkgdesc="Python HTTP for Humans."
|
||||
url="http://python-requests.org"
|
||||
conflicts=('python2-requests')
|
||||
makedepends=('git' 'python2-distribute')
|
||||
optdepends=('python2-certifi: SSL support'
|
||||
'python2-grequests: asynchronous requests with gevent'
|
||||
'python2-simplejson')
|
||||
depends=('python2')
|
||||
provides=('python2-requests')
|
||||
license=('custom: ISC')
|
||||
arch=('any')
|
||||
|
||||
source=(certs.patch)
|
||||
sha256sums=('482fc40ba146d2200771a690b3bedf6eddc9c3224d6f7b5ba529124039b07246')
|
||||
|
||||
_gitroot=https://github.com/kennethreitz/requests.git
|
||||
_gitname=requests
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
msg "Connecting to GIT server...."
|
||||
|
||||
if [[ -d "$_gitname" ]]; then
|
||||
cd "$_gitname" && git pull origin
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone "$_gitroot" "$_gitname"
|
||||
fi
|
||||
|
||||
msg "GIT checkout done or server timeout"
|
||||
msg "Starting build..."
|
||||
|
||||
rm -rf "$srcdir/$_gitname-build"
|
||||
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
|
||||
cd "$srcdir/$_gitname-build"
|
||||
|
||||
patch -p0 -i "$srcdir/certs.patch"
|
||||
find -type f -exec sed -i '1 s|python$|python2|' {} +
|
||||
sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
|
||||
rm -f requests/cacert.pem
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/$_gitname-build"
|
||||
test -f "$(python2 -m requests.certs)"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_gitname-build"
|
||||
python2 setup.py install --root="$pkgdir"
|
||||
install -m0644 -D "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
17
certs.patch
Normal file
17
certs.patch
Normal file
|
@ -0,0 +1,17 @@
|
|||
--- requests/certs.py 2013-02-06 22:16:59.811389080 +0100
|
||||
+++ requests/certs.py.diff 2013-02-06 22:20:07.051490687 +0100
|
||||
@@ -12,13 +12,11 @@
|
||||
packaged CA bundle.
|
||||
"""
|
||||
|
||||
-import os.path
|
||||
-
|
||||
|
||||
def where():
|
||||
"""Return the preferred certificate bundle."""
|
||||
# vendored bundle inside Requests
|
||||
- return os.path.join(os.path.dirname(__file__), 'cacert.pem')
|
||||
+ return "/etc/ssl/certs/ca-certificates.crt"
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(where())
|
Loading…
Reference in a new issue