123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- # The upstream test suite does not pass on recent versions of Fedora
- # See package review (bug 378841)
- # For now, we disable running the test suite:
- %define run_tests 0
- Name: python-rdflib
- Summary: Python library for working with RDF
- Version: 3.1.0
- Release: 4%{?_dist_release}
- Group: Development/Languages
- License: BSD
- URL: http://rdflib.net
- Source0: http://rdflib.googlecode.com/files/rdflib-%{version}.tar.gz
- BuildArch: noarch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: python-devel
- BuildRequires: python-setuptools
- %if %{run_tests}
- BuildRequires: python-nose >= 0.9.2
- %endif
- Vendor: Project Vine
- Distribution: Vine Linux
- %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.
- %prep
- %setup -q -n rdflib-%{version}
- %build
- %{__python} setup.py build
- %install
- rm -rf $RPM_BUILD_ROOT
- %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
- cp LICENSE $RPM_BUILD_ROOT/%{python_sitelib}/rdflib/LICENSE
- # Various .py files within site-packages have a shebang line but aren't
- # flagged as executable.
- # I've gone through them and either removed the shebang or made them
- # executable as appropriate:
- # __main__ parses URI as N-Triples:
- 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
- %check
- %if %{run_tests}
- %{__python} run_tests.py
- %endif
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc LICENSE
- %{python_sitelib}/*
- %changelog
- * Sun Jan 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.1.0-4
- - rebuild with VineSeed environment
- * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.1.0-3
- - rebuild with python-2.7.2
- * Sun Nov 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.1.0-2
- - Initial build for Vine Linux
- * Wed Sep 28 2011 David Malcolm <dmalcolm@redhat.com> - 3.1.0-1
- - 3.1.0; converting from arch-specific to noarch (sitearch -> sitelib);
- removing rdfpipe and various other extensions
- * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.4.2-2
- - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
- * Wed Jan 6 2010 David Malcolm <dmalcolm@redhat.com> - 2.4.2-1
- - bump to 2.4.2 (#552909)
- - fix source URL to use version macro
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-10
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-9
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Dec 10 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.4.0-8
- - Rebuild for Python 2.6
- * Wed Oct 1 2008 David Malcolm <dmalcolm@redhat.com> - 2.4.0-7
- - fix tab/space issue in specfile
- * Tue Sep 30 2008 David Malcolm <dmalcolm@redhat.com> - 2.4.0-6
- - override autogeneration of provides info to eliminate unwanted provision
- of SPARQLParserc.so
- * Mon Sep 29 2008 David Malcolm <dmalcolm@redhat.com> - 2.4.0-5
- - make various scripts executable, or remove shebang, as appropriate
- * Tue Feb 19 2008 David Malcolm <dmalcolm@redhat.com> - 2.4.0-4
- - delete test subdir
- * Thu Jan 24 2008 David Malcolm <dmalcolm@redhat.com> - 2.4.0-3
- - introduce macro to disable running the test suite, in the hope of eventually
- patching it so it passes
- * Mon Nov 19 2007 David Malcolm <dmalcolm@redhat.com> - 2.4.0-2
- - add python-setuptools(-devel) build requirement; move testing to correct stanza
- * Wed Aug 1 2007 David Malcolm <dmalcolm@redhat.com> - 2.4.0-1
- - initial version
|