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
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,6 +94,9 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%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
- update to 6.2.0

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
)