42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Template file for 'python-keyring'
|
|
pkgname=python-keyring
|
|
version=15.1.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="keyring-${version}"
|
|
build_style=python-module
|
|
pycompile_module="keyring"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-SecretStorage python-entrypoints"
|
|
short_desc="Python2 interface to the system keyring service"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="MIT"
|
|
homepage="https://github.com/jaraco/keyring"
|
|
changelog="https://raw.githubusercontent.com/jaraco/keyring/master/CHANGES.rst"
|
|
distfiles="https://github.com/jaraco/keyring/archive/${version}.tar.gz"
|
|
checksum=576a7e9f5aa7806f000d6723f9435000b959fc3ff9772c0297bc8d17e55de889
|
|
alternatives="keyring:keyring:/usr/bin/keyring2"
|
|
|
|
pre_build() {
|
|
sed -e '/setuptools_scm/d' \
|
|
-e "s/use_scm_version=True,/version=\"${version}\",/" \
|
|
-i setup.py
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-keyring_package() {
|
|
noarch=yes
|
|
pycompile_module="keyring"
|
|
depends="python3-setuptools python3-SecretStorage python3-entrypoints"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="keyring:keyring:/usr/bin/keyring3"
|
|
pkg_install() {
|
|
vmove usr/bin/keyring3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|