void-packages/srcpkgs/python-atomicwrites/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

31 lines
840 B
Bash

# Template file for 'python-atomicwrites'
pkgname=python-atomicwrites
version=1.1.5
revision=3
noarch=yes
wrksrc="atomicwrites-${version}"
build_style="python-module"
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
pycompile_module="atomicwrites"
short_desc="Simple Python2 API for atomic file writes"
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
license="MIT"
homepage="https://github.com/untitaker/python-atomicwrites"
distfiles="${PYPI_SITE}/a/atomicwrites/atomicwrites-${version}.tar.gz"
checksum=240831ea22da9ab882b551b31d4225591e5e447a68c5e188db5b89ca1d487585
post_install() {
vlicense LICENSE
}
python3-atomicwrites_package() {
noarch=yes
pycompile_module="atomicwrites"
depends="python3"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}