mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2024-11-21 11:01:29 -08:00
add python2-requests-futures-0.9.9-1
This commit is contained in:
parent
43b6853d8e
commit
4ea5c07be3
16
python2-requests-futures/.SRCINFO
Normal file
16
python2-requests-futures/.SRCINFO
Normal file
@ -0,0 +1,16 @@
|
||||
pkgbase = python2-requests-futures
|
||||
pkgdesc = Asynchronous Python HTTP for Humans.
|
||||
pkgver = 0.9.9
|
||||
pkgrel = 1
|
||||
url = https://github.com/ross/requests-futures
|
||||
arch = any
|
||||
license = Apache
|
||||
makedepends = python2-setuptools
|
||||
makedepends = python2-futures
|
||||
depends = python2-requests
|
||||
depends = python2-futures
|
||||
source = https://files.pythonhosted.org/packages/source/r/requests-futures/requests-futures-0.9.9.tar.gz
|
||||
sha256sums = 200729e932ec1f6d6e58101a8d2b144d48c9695f0585bc1dcf37139190f699a1
|
||||
|
||||
pkgname = python2-requests-futures
|
||||
|
31
python2-requests-futures/PKGBUILD
Normal file
31
python2-requests-futures/PKGBUILD
Normal file
@ -0,0 +1,31 @@
|
||||
# Maintainer: trent palmer trenttdually at gmail
|
||||
# 'inspired' by https://aur.archlinux.org/packages/python-requests-futures
|
||||
# Contributor: Chih-Hsuan Yen <yan12125@gmail.com>
|
||||
# Contributor: Alexander 'z33ky' Hirsch <1zeeky@gmail.com>
|
||||
|
||||
pkgname=python2-requests-futures
|
||||
pkgver=0.9.9
|
||||
pkgrel=1
|
||||
pkgdesc='Asynchronous Python HTTP for Humans.'
|
||||
license=('Apache')
|
||||
arch=('any')
|
||||
url='https://github.com/ross/requests-futures'
|
||||
depends=('python2-requests' 'python2-futures')
|
||||
makedepends=('python2-setuptools' 'python2-futures')
|
||||
source=("https://files.pythonhosted.org/packages/source/r/requests-futures/requests-futures-${pkgver}.tar.gz")
|
||||
sha256sums=('200729e932ec1f6d6e58101a8d2b144d48c9695f0585bc1dcf37139190f699a1')
|
||||
|
||||
build() {
|
||||
cd requests-futures-$pkgver
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd requests-futures-$pkgver
|
||||
python2 test_requests_futures.py
|
||||
}
|
||||
|
||||
package() {
|
||||
cd requests-futures-$pkgver
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
|
||||
}
|
Loading…
Reference in New Issue
Block a user