mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 11:52:25 +01:00
py3-google-api-python-client should not depend upon python2, python3 is sufficient. Lines 30 and 40 add the python2 dependency to py2-google-api-python-client so specifying python2 on line 10 is not required. Fixes issue #9156
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
|
pkgname=py-google-api-python-client
|
|
_pkgname=google-api-python-client
|
|
pkgver=1.7.4
|
|
pkgrel=2
|
|
pkgdesc="Google API Client Library for Python"
|
|
url="https://github.com/google/google-api-python-client"
|
|
arch="noarch"
|
|
license="Apache"
|
|
depends="py-httplib2 py-oauth2client py-uritemplate py-six"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
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"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_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"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${depends//py-/py2-}"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
sha512sums="d4844572b25398707e6dbcbc5add3e2bd8742b55e23c26ece8b7653f7f822ac37323aef5dfb67a4e6fc046f9160c5291f3d231ee65ec9d9481eeb41637295c31 google-api-python-client-1.7.4.tar.gz"
|