pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
'Add py-sparqlwrapper: SPARQL endpoint interface to Python'
Module Name: pkgsrc-wip
Committed By: Jason Bacon <bacon@centosdev.local>
Pushed By: outpaddling
Date: Thu Mar 30 11:54:10 2017 -0500
Changeset: a18033bc70153b1a7e5328903402a31459840bfa
Modified Files:
Makefile
Added Files:
py-sparqlwrapper/DESCR
py-sparqlwrapper/Makefile
py-sparqlwrapper/PLIST
py-sparqlwrapper/TODO
py-sparqlwrapper/buildlink3.mk
py-sparqlwrapper/distinfo
Log Message:
'Add py-sparqlwrapper: SPARQL endpoint interface to Python'
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=a18033bc70153b1a7e5328903402a31459840bfa
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 +
py-sparqlwrapper/DESCR | 4 ++++
py-sparqlwrapper/Makefile | 28 ++++++++++++++++++++++++++++
py-sparqlwrapper/PLIST | 27 +++++++++++++++++++++++++++
py-sparqlwrapper/TODO | 1 +
py-sparqlwrapper/buildlink3.mk | 12 ++++++++++++
py-sparqlwrapper/distinfo | 6 ++++++
7 files changed, 79 insertions(+)
diffs:
diff --git a/Makefile b/Makefile
index 6ddefd0543..0857921757 100644
--- a/Makefile
+++ b/Makefile
@@ -3516,6 +3516,7 @@ SUBDIR+= py-spambayes
SUBDIR+= py-spams
SUBDIR+= py-sparce
SUBDIR+= py-spark
+SUBDIR+= py-sparqlwrapper
SUBDIR+= py-spatialdata
SUBDIR+= py-spatious
SUBDIR+= py-spectral
diff --git a/py-sparqlwrapper/DESCR b/py-sparqlwrapper/DESCR
new file mode 100644
index 0000000000..2001dcc2fe
--- /dev/null
+++ b/py-sparqlwrapper/DESCR
@@ -0,0 +1,4 @@
+This is a wrapper around a SPARQL service. It helps in creating the query URI
+and, possibly, convert the result into a more manageable format.
+
+WWW: http://rdflib.github.io/sparqlwrapper/
diff --git a/py-sparqlwrapper/Makefile b/py-sparqlwrapper/Makefile
new file mode 100644
index 0000000000..457bdfb402
--- /dev/null
+++ b/py-sparqlwrapper/Makefile
@@ -0,0 +1,28 @@
+# $NetBSD$
+
+###########################################################
+# Generated by fbsd2pkg #
+###########################################################
+
+DISTNAME= SPARQLWrapper-${PORTVERSION}
+PKGNAME= ${PYPKGPREFIX}-sparqlwrapper-${PORTVERSION}
+CATEGORIES= textproc
+MASTER_SITES= ${CHEESESHOP}
+
+MAINTAINER= bacon4000%gmail.com@localhost
+
+COMMENT= SPARQL endpoint interface to Python
+#LICENSE=
+
+# Pessimistic assumption. Test and change if possible.
+MAKE_JOBS_SAFE= no
+
+# Just assuming C and C++: Adjust this!
+# USE_LANGUAGES= c c++
+PYDISTUTILSPKG= yes
+
+PORTVERSION= 1.6.2
+CHEESESHOP= http://pypi.python.org/packages/source/S/SPARQLWrapper/
+
+.include "../../lang/python/distutils.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-sparqlwrapper/PLIST b/py-sparqlwrapper/PLIST
new file mode 100644
index 0000000000..2fef5edb5f
--- /dev/null
+++ b/py-sparqlwrapper/PLIST
@@ -0,0 +1,27 @@
+@comment $NetBSD$
+${PYSITELIB}/SPARQLWrapper-${PKGVERSION}-py2.7.egg-info/PKG-INFO
+${PYSITELIB}/SPARQLWrapper-${PKGVERSION}-py2.7.egg-info/SOURCES.txt
+${PYSITELIB}/SPARQLWrapper-${PKGVERSION}-py2.7.egg-info/dependency_links.txt
+${PYSITELIB}/SPARQLWrapper-${PKGVERSION}-py2.7.egg-info/requires.txt
+${PYSITELIB}/SPARQLWrapper-${PKGVERSION}-py2.7.egg-info/top_level.txt
+${PYSITELIB}/SPARQLWrapper/KeyCaseInsensitiveDict.py
+${PYSITELIB}/SPARQLWrapper/KeyCaseInsensitiveDict.pyc
+${PYSITELIB}/SPARQLWrapper/KeyCaseInsensitiveDict.pyo
+${PYSITELIB}/SPARQLWrapper/SPARQLExceptions.py
+${PYSITELIB}/SPARQLWrapper/SPARQLExceptions.pyc
+${PYSITELIB}/SPARQLWrapper/SPARQLExceptions.pyo
+${PYSITELIB}/SPARQLWrapper/SPARQLUtils.py
+${PYSITELIB}/SPARQLWrapper/SPARQLUtils.pyc
+${PYSITELIB}/SPARQLWrapper/SPARQLUtils.pyo
+${PYSITELIB}/SPARQLWrapper/SmartWrapper.py
+${PYSITELIB}/SPARQLWrapper/SmartWrapper.pyc
+${PYSITELIB}/SPARQLWrapper/SmartWrapper.pyo
+${PYSITELIB}/SPARQLWrapper/Wrapper.py
+${PYSITELIB}/SPARQLWrapper/Wrapper.pyc
+${PYSITELIB}/SPARQLWrapper/Wrapper.pyo
+${PYSITELIB}/SPARQLWrapper/__init__.py
+${PYSITELIB}/SPARQLWrapper/__init__.pyc
+${PYSITELIB}/SPARQLWrapper/__init__.pyo
+${PYSITELIB}/SPARQLWrapper/jsonlayer.py
+${PYSITELIB}/SPARQLWrapper/jsonlayer.pyc
+${PYSITELIB}/SPARQLWrapper/jsonlayer.pyo
diff --git a/py-sparqlwrapper/TODO b/py-sparqlwrapper/TODO
new file mode 100644
index 0000000000..b687356e6b
--- /dev/null
+++ b/py-sparqlwrapper/TODO
@@ -0,0 +1 @@
+Clean up and test
diff --git a/py-sparqlwrapper/buildlink3.mk b/py-sparqlwrapper/buildlink3.mk
new file mode 100644
index 0000000000..29a1e14748
--- /dev/null
+++ b/py-sparqlwrapper/buildlink3.mk
@@ -0,0 +1,12 @@
+# $NetBSD$
+
+BUILDLINK_TREE+= py27-sparqlwrapper
+
+.if !defined(PY27_SPARQLWRAPPER_BUILDLINK3_MK)
+PY27_SPARQLWRAPPER_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.py27-sparqlwrapper+= py27-sparqlwrapper>=1.6.2
+BUILDLINK_PKGSRCDIR.py27-sparqlwrapper?= ../../wip/py-sparqlwrapper
+.endif # PY27_SPARQLWRAPPER_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -py27-sparqlwrapper
diff --git a/py-sparqlwrapper/distinfo b/py-sparqlwrapper/distinfo
new file mode 100644
index 0000000000..1c7da5342a
--- /dev/null
+++ b/py-sparqlwrapper/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (SPARQLWrapper-1.6.2.tar.gz) = 69074904b57f2c1eb4acd59afa3fb1308597cbe9
+RMD160 (SPARQLWrapper-1.6.2.tar.gz) = dbe14b814cda004706b8d18e42cb8705f53bddb3
+SHA512 (SPARQLWrapper-1.6.2.tar.gz) = a75cb881b34fd8963c35b9fb7bb3fb1662257c9a36a03d22227968fc8f23c7813b73d29d3bdc26f362023a871960ce6326d70f8fdfb911ceec88212ed3737831
+Size (SPARQLWrapper-1.6.2.tar.gz) = 25939 bytes
Home |
Main Index |
Thread Index |
Old Index