Markéta Machová
6575ff7ecd
Add reproducible.patch for reproducible builds (boo#1062303) There might be other/better ways to solve this, but upstream moved pretty far already. OBS-URL: https://build.opensuse.org/request/show/1132811 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rdflib?expand=0&rev=61
128 lines
4.0 KiB
RPMSpec
128 lines
4.0 KiB
RPMSpec
#
|
|
# spec file for package python-rdflib
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python3-%{**}}
|
|
# Tests don't work and cause a dependency loop with python-SPARQLWrapper
|
|
%bcond_with tests
|
|
Name: python-rdflib
|
|
Version: 6.1.1
|
|
Release: 0
|
|
Summary: A Python library for working with RDF
|
|
License: BSD-3-Clause
|
|
URL: http://rdflib.net/
|
|
Source: https://files.pythonhosted.org/packages/source/r/rdflib/rdflib-%{version}.tar.gz
|
|
Patch0: reproducible.patch
|
|
BuildRequires: %{python_module html5lib}
|
|
BuildRequires: %{python_module isodate}
|
|
BuildRequires: %{python_module pyparsing}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module xml}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-Sphinx
|
|
BuildRequires: python3-sphinxcontrib-apidoc
|
|
Requires: python-html5lib
|
|
Requires: python-isodate
|
|
Requires: python-pyparsing
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%if %{with tests}
|
|
BuildRequires: %{python_module SPARQLWrapper}
|
|
BuildRequires: %{python_module flake8}
|
|
BuildRequires: %{python_module pytest}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%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.
|
|
|
|
%package -n %{name}-doc
|
|
Summary: A Python library for working with RDF
|
|
Provides: %{python_module rdflib-doc = %{version}}
|
|
|
|
%description -n %{name}-doc
|
|
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}
|
|
%patch0 -p1
|
|
# remove unwanted shebang
|
|
find rdflib -name "*.py" | xargs sed -i '1 { /^#!/ d }'
|
|
|
|
%build
|
|
%python_build
|
|
|
|
pushd docs
|
|
%make_build html
|
|
# Remove hidden file
|
|
rm -r _build/html/.buildinfo
|
|
popd
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/rdfs2dot
|
|
%python_clone -a %{buildroot}%{_bindir}/rdfpipe
|
|
%python_clone -a %{buildroot}%{_bindir}/rdfgraphisomorphism
|
|
%python_clone -a %{buildroot}%{_bindir}/rdf2dot
|
|
%python_clone -a %{buildroot}%{_bindir}/csv2rdf
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%fdupes docs/_build/html
|
|
|
|
%if %{with tests}
|
|
%check
|
|
%pytest
|
|
%endif
|
|
|
|
%post
|
|
%python_install_alternative rdfs2dot
|
|
%python_install_alternative rdfpipe
|
|
%python_install_alternative rdfgraphisomorphism
|
|
%python_install_alternative rdf2dot
|
|
%python_install_alternative csv2rdf
|
|
|
|
%postun
|
|
%python_uninstall_alternative rdfs2dot
|
|
%python_uninstall_alternative rdfpipe
|
|
%python_uninstall_alternative rdfgraphisomorphism
|
|
%python_uninstall_alternative rdf2dot
|
|
%python_uninstall_alternative csv2rdf
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CHANGELOG.md CONTRIBUTORS README.md
|
|
%python_alternative %{_bindir}/csv2rdf
|
|
%python_alternative %{_bindir}/rdf2dot
|
|
%python_alternative %{_bindir}/rdfgraphisomorphism
|
|
%python_alternative %{_bindir}/rdfpipe
|
|
%python_alternative %{_bindir}/rdfs2dot
|
|
%{python_sitelib}/rdflib/
|
|
%{python_sitelib}/rdflib-%{version}-py*.egg-info
|
|
|
|
%files -n %{name}-doc
|
|
%doc docs/_build/html
|
|
|
|
%changelog
|