mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
main/py-twitter: upgrade to 3.1 and add py2/py3 subpackages
This commit is contained in:
parent
97063f62c2
commit
a445e9de5d
@ -1,40 +1,49 @@
|
||||
# Maintainer: Peter Bui <pnutzh4x0r@gmail.com>
|
||||
pkgname=py-twitter
|
||||
_pkgname=python-twitter
|
||||
pkgver=2.2
|
||||
pkgver=3.1
|
||||
pkgrel=0
|
||||
pkgdesc="Python wrapper around the Twitter API'"
|
||||
pkgdesc="Python wrapper around the Twitter API"
|
||||
url="https://pypi.python.org/pypi/python-twitter"
|
||||
arch="noarch"
|
||||
license="Apache"
|
||||
depends="python2 py-httplib2 py-simplejson py-oauth2 py-requests-oauthlib"
|
||||
depends_dev="python2-dev py-setuptools"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages=""
|
||||
license="ASL 2.0"
|
||||
depends="py-future py-requests py-requests-oauthlib"
|
||||
makedepends="python2-dev py-setuptools python3-dev"
|
||||
subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2"
|
||||
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
builddir="$srcdir/$_pkgname-$pkgver"
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
cd "$builddir"
|
||||
python2 setup.py build || return 1
|
||||
python3 setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
md5sums="eab697b3a9bc6bf3432d09a489f4ed8b python-twitter-2.2.tar.gz"
|
||||
sha256sums="b70648c6026ef3772a1c911382d9fd8651fe0b673c15aad7d38d6f685c7c4dc2 python-twitter-2.2.tar.gz"
|
||||
sha512sums="5c9cf15fd540f8a157d1f8c292651e6f1191850d571da3b22c8fb732c3ae4fd7fdd29f9286532698fc50a43b9540cef36fc05a8858db49a9d92246629a697ca1 python-twitter-2.2.tar.gz"
|
||||
_py2() {
|
||||
replaces="$pkgname"
|
||||
depends="${depends//py-/py2-}"
|
||||
_py python2
|
||||
}
|
||||
|
||||
_py3() {
|
||||
depends="${depends//py-/py3-}"
|
||||
_py python3
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
pkgdesc="$pkgdesc (for $python)"
|
||||
depends="$depends $python"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
||||
}
|
||||
|
||||
md5sums="2e00d057a22db298709f768a96cc88ef python-twitter-3.1.tar.gz"
|
||||
sha256sums="74cfdd6a7bbe00fdd08ce582c9a2ee5d6c080e6c228ffced009a356092fbb923 python-twitter-3.1.tar.gz"
|
||||
sha512sums="4ebc6aa8ed75bb5ccb4958948f15714868260c2159793bf10016d02ce460f08bfaa2117fc263c1254e002a665aa919a287785205bcffc3694c6bc66ec52016ac python-twitter-3.1.tar.gz"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user