Merge branch 'master' of github.com:voidlinux/xbps-packages
This commit is contained in:
commit
c1b8220fbd
|
@ -0,0 +1,34 @@
|
|||
# Template file for 'python-SPARQLWrapper'
|
||||
pkgname=python-SPARQLWrapper
|
||||
version=1.6.0
|
||||
revision=1
|
||||
noarch=yes
|
||||
wrksrc="${pkgname#*-}-${version}"
|
||||
build_style=python-module
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
makedepends="${hostmakedepends}"
|
||||
depends="python"
|
||||
pycompile_module="SPARQLWrapper"
|
||||
short_desc="SPARQL Endpoint interface to Python (Python2)"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="https://rdflib.github.io/sparqlwrapper/"
|
||||
license="W3C"
|
||||
distfiles="https://pypi.python.org/packages/source/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
|
||||
checksum=dadcbf190dd090d90325ca4126e96f262d620c45c4693ee9f168cf39af2fa373
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE.txt LICENSE
|
||||
}
|
||||
|
||||
python3.4-SPARQLWrapper_package() {
|
||||
noarch=yes
|
||||
depends="python3.4"
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="SPARQLWrapper"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3.4
|
||||
vlicense ${wrksrc}/LICENSE.txt LICENSE
|
||||
}
|
||||
}
|
|
@ -1,17 +1,67 @@
|
|||
# Template file for 'python-rdflib'
|
||||
pkgname=python-rdflib
|
||||
version=3.2.2
|
||||
revision=2
|
||||
wrksrc="rdflib-${version}"
|
||||
version=4.1.2
|
||||
revision=1
|
||||
noarch=yes
|
||||
wrksrc="${pkgname#*-}-${version}"
|
||||
build_style=python-module
|
||||
hostmakedepends="python-setuptools"
|
||||
makedepends="python-devel python-isodate"
|
||||
noarch="yes"
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
makedepends="python-isodate python3.4-isodate python-parsing python3.4-parsing
|
||||
python-SPARQLWrapper python3.4-SPARQLWrapper"
|
||||
depends="python python-isodate python-parsing python-SPARQLWrapper"
|
||||
pycompile_module="rdflib"
|
||||
depends="python>=2.7<3.0 python-isodate"
|
||||
short_desc="Python library for working with RDF"
|
||||
short_desc="Python2 library for working with RDF"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="https://github.com/RDFLib/rdflib"
|
||||
license="BSD"
|
||||
homepage="http://rdflib.net/"
|
||||
distfiles="https://github.com/downloads/RDFLib/rdflib/rdflib-${version}.tar.gz"
|
||||
checksum=996b5c10b3303b10f155665066174c0b4cb1a6b756f8124eb92eb63dfc9a6a05
|
||||
distfiles="https://pypi.python.org/packages/source/r/rdflib/rdflib-${version}.tar.gz"
|
||||
checksum=3cf94bda0867f21468b248ce9f671581efb92ae9edd28ff321716126c6706a4f
|
||||
|
||||
post_extract() {
|
||||
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 -e 's,csv2rdf =,csv2rdf3 =,' \
|
||||
-e 's,rdf2dot =,rdf2dot3 =,' \
|
||||
-e 's,rdfgraphisomorphism =,rdfgraphisomorphism3 =,' \
|
||||
-e 's,rdfpipe =,rdfpipe3 =,' \
|
||||
-e 's,rdfs2dot =,rdfs2dot3 =,' setup.py
|
||||
find . -name '*.py' -exec sed -i -e 's,#!/usr/bin/env python,&3.4,' {} +
|
||||
}
|
||||
|
||||
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-rdflib_package() {
|
||||
noarch=yes
|
||||
depends="python3.4 python3.4-isodate python3.4-parsing python3.4-SPARQLWrapper"
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="rdflib"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
pkg_install() {
|
||||
vmove usr/bin/csv2rdf3
|
||||
vmove usr/bin/rdf2dot3
|
||||
vmove usr/bin/rdfgraphisomorphism3
|
||||
vmove usr/bin/rdfpipe3
|
||||
vmove usr/bin/rdfs2dot3
|
||||
vmove usr/lib/python3.4
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-SPARQLWrapper
|
|
@ -0,0 +1 @@
|
|||
python-rdflib
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'xbps-git'
|
||||
pkgname=xbps-git
|
||||
version=20140713
|
||||
revision=1
|
||||
revision=2
|
||||
short_desc="The XBPS package system (development branch)"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://www.voidlinux.eu/xbps"
|
||||
|
|
Loading…
Reference in New Issue