File python3-rdflib.spec of Package python3-rdflib
#
# spec file for package python3-rdflib
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python3-rdflib
Version: 4.2.1
Release: 0
Summary: A Python library for working with RDF
License: BSD-3-Clause
Group: Development/Libraries/Python
Url: http://rdflib.net/
Source: https://files.pythonhosted.org/packages/source/r/rdflib/rdflib-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
BuildRequires: python3 >= 3.2
BuildRequires: python3-2to3
BuildRequires: python3-devel
BuildRequires: python3-html5lib
BuildRequires: python3-isodate
BuildRequires: python3-networkx
BuildRequires: python3-pyparsing
BuildRequires: python3-setuptools
BuildRequires: python3-xml
Requires: python3-SPARQLWrapper
Requires: python3-html5lib
Requires: python3-isodate
Requires: python3-pyparsing
Requires: python3-xml
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%description
RDFLib is a Python library for working with RDF, a simple yet powerful
language for representing information. The library contains an RDF/XML
parser/serializer that conforms to the RDF/XML Syntax Specification (Revised).
The library also contains both in-memory and persistent Graph backends.
%prep
%setup -q -n rdflib-%{version}
sed -i "1d" rdflib/plugins/parsers/{ntriples,notation3}.py # Fix non-executable bits
# Drop py2.7 bytecode files, we have to rebuild these:
find . -type f -name "*.pyc" -print -delete
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
# for update-alternatives
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
for f in csv2rdf rdf2dot rdfgraphisomorphism rdfpipe rdfs2dot; do
mv %{buildroot}%{_bindir}/$f %{buildroot}%{_bindir}/$f-%{py3_ver}
ln -sf %{_sysconfdir}/alternatives/$f %{buildroot}%{_bindir}/$f
touch %{buildroot}%{_sysconfdir}/alternatives/$f
done
%post
update-alternatives \
--install %{_bindir}/rdfpipe rdfpipe %{_bindir}/rdfpipe-%{py3_ver} 30 \
--slave %{_bindir}/csv2rdf csv2rdf %{_bindir}/csv2rdf%{py3_ver} \
--slave %{_bindir}/rdf2dot rdf2dot %{_bindir}/rdf2dot%{py3_ver} \
--slave %{_bindir}/rdfgraphisomorphism graphisomorpishm %{_bindir}/rdfgraphisomorphism%{py3_ver} \
--slave %{_bindir}/rdfs2dot rdfs2dot %{_bindir}/rdfs2dot%{py3_ver}
%postun
if [ $1 -eq 0 ] ; then
update-alternatives --remove rdfpipe %{_bindir}/rdfpipe-%{py3_ver}
fi
# Tests don't work properly on Python 3.x
# %check
# python3 setup.py test
%files
%defattr(-,root,root)
%doc CHANGELOG.md LICENSE CONTRIBUTORS README.md
%{_bindir}/csv2rdf
%{_bindir}/rdf2dot
%{_bindir}/rdfgraphisomorphism
%{_bindir}/rdfpipe
%{_bindir}/rdfs2dot
%{_bindir}/csv2rdf-%{py3_ver}
%{_bindir}/rdf2dot-%{py3_ver}
%{_bindir}/rdfgraphisomorphism-%{py3_ver}
%{_bindir}/rdfpipe-%{py3_ver}
%{_bindir}/rdfs2dot-%{py3_ver}
%ghost %{_sysconfdir}/alternatives/csv2rdf
%ghost %{_sysconfdir}/alternatives/rdf2dot
%ghost %{_sysconfdir}/alternatives/rdfgraphisomorphism
%ghost %{_sysconfdir}/alternatives/rdfpipe
%ghost %{_sysconfdir}/alternatives/rdfs2dot
%{python3_sitelib}/rdflib/
%{python3_sitelib}/rdflib-%{version}-py*.egg-info
%changelog