Update package to version 6.3.0

This commit is contained in:
wubijie 2023-04-06 21:40:07 +08:00
parent a2ae30cd95
commit 5b8c56a232
4 changed files with 19 additions and 4 deletions

View File

@ -1,11 +1,13 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-rdflib Name: python-rdflib
Version: 6.2.0 Version: 6.3.0
Release: 1 Release: 1
Summary: RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. Summary: RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.
License: BSD-3-clause License: BSD-3-clause
URL: https://github.com/RDFLib/rdflib 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 BuildArch: noarch
Requires: python3-isodate Requires: python3-isodate
@ -51,7 +53,8 @@ Provides: python3-rdflib-doc
Development documents and examples for rdflib Development documents and examples for rdflib
%prep %prep
%autosetup -n rdflib-6.2.0 %autosetup -n rdflib-%{version}
cp %{SOURCE1} ./
%build %build
%py3_build %py3_build
@ -91,8 +94,11 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Fri Apr 7 2023 wubijie <wubijie@kylinos.cn> - 6.3.0-1
- Update package to version 6.3.0
* Mon Aug 01 2022 liqiuyu <liqiuyu@kylinos.cn> - 6.2.0-1 * Mon Aug 01 2022 liqiuyu <liqiuyu@kylinos.cn> - 6.2.0-1
- update to 6.2.0 - update to 6.2.0
* Sat Feb 20 2021 Python_Bot <Python_Bot@openeuler.org> * Sat Feb 20 2021 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated - Package Spec generated

Binary file not shown.

BIN
rdflib-6.3.0.tar.gz Normal file

Binary file not shown.

9
setup.py Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
from setuptools import setup
if __name__ == "__main__":
setup(
name = "rdflib", # name
version = "6.3.0", # version
)