diff --git a/python-rdflib.spec b/python-rdflib.spec index 48fed7c3e2f017bb5bbfac95d48801512aa14703..5f7031f35228de58a161cc201b242ba8fa29b53e 100644 --- a/python-rdflib.spec +++ b/python-rdflib.spec @@ -1,11 +1,13 @@ %global _empty_manifest_terminate_build 0 Name: python-rdflib -Version: 6.2.0 +Version: 6.3.0 Release: 1 Summary: RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. License: BSD-3-clause URL: https://github.com/RDFLib/rdflib -Source0: https://files.pythonhosted.org/packages/fc/8d/2d1c8a08471b4333657c98a3048642095f844f10cd1d4e28f9b08725c7bd/rdflib-6.2.0.tar.gz +Source0: https://files.pythonhosted.org/packages/b9/ca/1eefdac73ef3c33b108df79fcfe86cd6afc0afaf50d48c94991964f5a6b9/rdflib-6.3.0.tar.gz +Source1: setup.py + BuildArch: noarch Requires: python3-isodate @@ -51,7 +53,8 @@ Provides: python3-rdflib-doc Development documents and examples for rdflib %prep -%autosetup -n rdflib-6.2.0 +%autosetup -n rdflib-%{version} +cp %{SOURCE1} ./ %build %py3_build @@ -91,8 +94,11 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Fri Apr 7 2023 wubijie - 6.3.0-1 +- Update package to version 6.3.0 + * Mon Aug 01 2022 liqiuyu - 6.2.0-1 - update to 6.2.0 * Sat Feb 20 2021 Python_Bot -- Package Spec generated \ No newline at end of file +- Package Spec generated diff --git a/rdflib-6.2.0.tar.gz b/rdflib-6.2.0.tar.gz deleted file mode 100644 index 30b5e5d6dba0acd02376979f022c644f8809934c..0000000000000000000000000000000000000000 Binary files a/rdflib-6.2.0.tar.gz and /dev/null differ diff --git a/rdflib-6.3.0.tar.gz b/rdflib-6.3.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..d1a4ef2721984471d7694291a64f7bfcf1faf1db Binary files /dev/null and b/rdflib-6.3.0.tar.gz differ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..305757022adb47508270fa7d8d79ffc02da8660d --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +from setuptools import setup + +if __name__ == "__main__": + setup( + name = "rdflib", # name + version = "6.3.0", # version +)