diff --git a/python-rdflib-SPARQLWrapper-optional.patch b/python-rdflib-SPARQLWrapper-optional.patch new file mode 100644 index 0000000..96c2aa2 --- /dev/null +++ b/python-rdflib-SPARQLWrapper-optional.patch @@ -0,0 +1,40 @@ +From 7b69cb5f2fe46d46814712cdc43123807c681dc3 Mon Sep 17 00:00:00 2001 +From: Dan Scott +Date: Sun, 2 Mar 2014 19:55:08 -0500 +Subject: [PATCH] Make SPARQLWrapper an extra_requires for now + +Per discussion in https://github.com/RDFLib/rdflib/pull/359 + +Signed-off-by: Dan Scott +--- + setup.py | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/setup.py b/setup.py +index c00a978..380d449 100644 +--- a/setup.py ++++ b/setup.py +@@ -41,8 +41,8 @@ if sys.version_info[0] >= 3: + kwargs['install_requires'] = ['isodate', 'pyparsing'] + kwargs['tests_require'] = ['html5lib'] + kwargs['requires'] = [ +- 'isodate', 'pyparsing', +- 'SPARQLWrapper'] ++ 'isodate', 'pyparsing'] ++ kwargs['extras_require'] = {'SPARQLStore': 'SPARQLWrapper'} + kwargs['src_root'] = setup_python3() + assert setup + else: +@@ -52,7 +52,8 @@ else: + kwargs['test_suite'] = "nose.collector" + kwargs['install_requires'] = [ + 'isodate', +- 'pyparsing', 'SPARQLWrapper'] ++ 'pyparsing'] ++ kwargs['extras_require'] = {'SPARQLStore': 'SPARQLWrapper'} + + if sys.version_info[1]<7: # Python 2.6 + kwargs['install_requires'].append('ordereddict') +-- +1.8.5.3 + diff --git a/python-rdflib.spec b/python-rdflib.spec index 1b5b6fd..ba96716 100644 --- a/python-rdflib.spec +++ b/python-rdflib.spec @@ -1,20 +1,24 @@ %define run_tests 1 Name: python-rdflib -Version: 3.2.3 -Release: 6%{?dist} +Version: 4.1.1 +Release: 1%{?dist} Summary: Python library for working with RDF Group: Development/Languages License: BSD -URL: http://code.google.com/p/rdflib/ +URL: https://github.com/RDFLib/rdflib Source0: http://pypi.python.org/packages/source/r/rdflib/rdflib-%{version}.tar.gz +Patch1: python-rdflib-SPARQLWrapper-optional.patch BuildArch: noarch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: python-isodate +Requires: pyparsing +BuildRequires: python-html5lib BuildRequires: python-isodate +BuildRequires: pyparsing BuildRequires: python-devel BuildRequires: python-setuptools @@ -22,17 +26,24 @@ BuildRequires: python-setuptools BuildRequires: python-nose >= 0.9.2 %endif +Obsoletes: python-rdfextras <= 0.1-7 + %description RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. -The library contains parsers and serializers for RDF/XML, N3, NTriples, -Turtle, TriX and RDFa. The library presents a Graph interface which can -be backed by any one of a number of store implementations, including -memory, MySQL, Redland, SQLite, Sleepycat, ZODB and SQLObject. +The library contains parsers and serializers for RDF/XML, N3, +NTriples, Turtle, TriX, RDFa and Microdata. The library presents +a Graph interface which can be backed by any one of a number of +Store implementations. The core rdflib includes store +implementations for in memory storage, persistent storage on top +of the Berkeley DB, and a wrapper for remote SPARQL endpoints. + +A SPARQL 1.1 engine is also included. %prep %setup -q -n rdflib-%{version} +%patch1 -p1 find -name "*.pyc" -delete sed -i -e 's|_sn_gen=bnode_uuid()|_sn_gen=bnode_uuid|' test/test_bnode_ncname.py @@ -57,6 +68,20 @@ chmod +x $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/plugins/parsers/ntriples.py # __main__ parses the file given on the command line: chmod +x $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/plugins/parsers/notation3.py +# __main__ parses the file or URI given on the command line: +chmod +x $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/tools/rdfpipe.py + +# __main__ runs a test (well, it's something) +chmod +x $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/extras/infixowl.py + +# sed these headers out as they include no __main__ +for lib in $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/extras/describer.py \ + $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/plugins/parsers/pyRdfa/extras/httpheader.py \ + $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/plugins/parsers/structureddata.py; do + sed '1{\@^#!/usr/bin/env python@d}' $lib > $lib.new && + touch -r $lib $lib.new && + mv $lib.new $lib +done %check %if %{run_tests} @@ -66,15 +91,19 @@ sed -i -e "s|with-doctest = 1|#with-doctest = 1|" setup.cfg %{__python} run_tests.py --verbose %endif -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) %doc LICENSE %{python_sitelib}/* +%{_bindir}/* %changelog +* Tue Mar 04 2014 Dan Scott - 4.1.1-1 +- Update for 4.1.1 release +- Support for RDF 1.1 and HTML5 +- Support for RDFa, TRiG, microdata parsers, and HTML structured data +- Patch to make SPARQLWrapper an extras_require until it is packaged + * Thu Dec 12 2013 Toshio Kuratomi - 3.2.3-6 - Remove BR of python-setuptools-devel