mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-08 21:13:04 +02:00
33 lines
1,003 B
Bash
33 lines
1,003 B
Bash
# Template file for 'python-fasteners'
|
|
pkgname=python-fasteners
|
|
version=0.14.1
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="fasteners-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-monotonic python-six"
|
|
pycompile_module="fasteners"
|
|
short_desc="Python package that provides useful locks"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
homepage="https://pypi.python.org/pypi/fasteners"
|
|
license="Apache-2.0"
|
|
distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
|
|
checksum=427c76773fe036ddfa41e57d89086ea03111bbac57c55fc55f3006d027107e18
|
|
|
|
python3-fasteners_package() {
|
|
noarch=yes
|
|
depends="python3-six"
|
|
pycompile_module="fasteners"
|
|
replaces="python3.4-fasteners>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|
|
python3.4-fasteners_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-fasteners>=${version}_${revision}"
|
|
}
|