mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-13 18:43:51 +02:00
python-pyscss: update to 1.3.2; add python3.4 subpkg
This commit is contained in:
parent
b9ea5d61ce
commit
766d69327f
2 changed files with 47 additions and 11 deletions
|
@ -1,20 +1,55 @@
|
||||||
# Template file for 'python-pyscss'
|
# Template file for 'python-pyscss'
|
||||||
pkgname=python-pyscss
|
pkgname=python-pyscss
|
||||||
version=1.2.0
|
version=1.3.2
|
||||||
revision=2
|
revision=1
|
||||||
wrksrc="pyScss-${version}"
|
wrksrc="pyScss-${version}"
|
||||||
build_style="python-module"
|
python_versions="2.7 3.4"
|
||||||
hostmakedepends="python-setuptools"
|
hostmakedepends="python-setuptools python3.4-setuptools pcre-devel"
|
||||||
makedepends="pcre-devel python-devel python-six"
|
makedepends="pcre-devel python-devel python3.4-devel"
|
||||||
depends="python python-six"
|
depends="python-six python-enum34 python-pathlib"
|
||||||
pycompile_module="scss"
|
pycompile_module="scss"
|
||||||
short_desc="A Scss compiler for Python"
|
short_desc="Scss compiler for Python2"
|
||||||
maintainer="Steven R <dev@styez.com>"
|
maintainer="Steven R <dev@styez.com>"
|
||||||
homepage="http://github.com/Kronuz/pyScss"
|
homepage="http://github.com/Kronuz/pyScss"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
distfiles="https://github.com/Kronuz/pyScss/archive/v${version}.tar.gz"
|
distfiles="${PYPI_SITE}/p/pyScss/pyScss-${version}.tar.gz"
|
||||||
checksum=54f529f0dbecc82c4ce81531f6d8c3b804d0ffaf50574420cbd9ff19f69653a2
|
checksum=196289e4e6e44505a097e1e7270e9c1bb918717256d5f4cf104f906ec789dfc7
|
||||||
|
|
||||||
post_install() {
|
post_extract() {
|
||||||
vlicense LICENSE
|
sed -i '/^#!\//,1d' scss/tool.py
|
||||||
|
cp -a ${wrksrc} /tmp/python2.7-build
|
||||||
|
cp -a ${wrksrc} /tmp/python3.4-build
|
||||||
|
mv /tmp/python{2.7,3.4}-build ${wrksrc}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre_build() {
|
||||||
|
cd ${wrksrc}/python3.4-build
|
||||||
|
sed -i 's,pyscss =,pyscss3 =,' setup.py
|
||||||
|
}
|
||||||
|
|
||||||
|
do_build() {
|
||||||
|
cd ${wrksrc}/python2.7-build
|
||||||
|
python setup.py build
|
||||||
|
|
||||||
|
cd ${wrksrc}/python3.4-build
|
||||||
|
python3.4 setup.py build
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
cd ${wrksrc}/python2.7-build
|
||||||
|
python setup.py install --root=${DESTDIR}
|
||||||
|
|
||||||
|
cd ${wrksrc}/python3.4-build
|
||||||
|
python3.4 setup.py install --root=${DESTDIR}
|
||||||
|
}
|
||||||
|
|
||||||
|
python3.4-pyscss_package() {
|
||||||
|
depends="python3.4-six"
|
||||||
|
pycompile_version="3.4"
|
||||||
|
pycompile_module="scss"
|
||||||
|
short_desc="${short_desc/Python2/Python3.4}"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/bin/pyscss3
|
||||||
|
vmove usr/lib/python3.4
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
1
srcpkgs/python3.4-pyscss
Symbolic link
1
srcpkgs/python3.4-pyscss
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
python-pyscss
|
Loading…
Add table
Reference in a new issue