43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Template file for 'python-keyring'
|
|
pkgname=python-keyring
|
|
version=10.4.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="keyring-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-SecretStorage"
|
|
pycompile_module="keyring"
|
|
short_desc="Python2 interface to the system keyring service"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="MIT"
|
|
homepage="https://github.com/jaraco/keyring"
|
|
distfiles="${PYPI_SITE}/k/keyring/keyring-${version}.tar.gz"
|
|
checksum=901a3f4ed0dfba473060281b58fd3b649ce70f59cb34a9cf6cb5551218283b26
|
|
alternatives="keyring:keyring:/usr/bin/keyring2"
|
|
|
|
pre_build() {
|
|
sed -e '/setuptools_scm/d' \
|
|
-e "s/use_scm_version=True,/version=\"${version}\",/" \
|
|
-i setup.py
|
|
}
|
|
|
|
python3-keyring_package() {
|
|
noarch=yes
|
|
pycompile_module="keyring"
|
|
depends="python3-setuptools python3-SecretStorage"
|
|
replaces="python3.4-keyring>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="keyring:keyring:/usr/bin/keyring3"
|
|
pkg_install() {
|
|
vmove usr/bin/keyring3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|
|
python3.4-keyring_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-keyring>=${version}_${revision}"
|
|
}
|