diff --git a/0001-add-setup.py.patch b/0001-add-setup.py.patch index cf2f677..66763f4 100644 --- a/0001-add-setup.py.patch +++ b/0001-add-setup.py.patch @@ -1,12 +1,25 @@ --- c/setup.py 1970-01-01 08:00:00.000000000 +0800 +++ a/setup.py 2022-11-25 17:53:10.910857335 +0800 -@@ -0,0 +1,9 @@ +@@ -0,0 +1,22 @@ +#!/usr/bin/env python + +from setuptools import setup + ++packages = \ ++['pyrpm'] ++ ++package_data = \ ++{'': ['*']} ++ +if __name__ == "__main__": + setup( + name = "python-rpm-spec", -+ version = "0.13" ++ version = "0.14.1", ++ description='python-rpm-spec is a Python library for parsing RPM spec files.', ++ author='Benjamin Kircher', ++ author_email='bkircher@0xadd.de', ++ url='https://github.com/bkircher/python-rpm-spec', ++ packages=packages, ++ package_data=package_data, ++ python_requires='>=3.3', + ) diff --git a/python-pyrpm.spec b/python-pyrpm.spec index 2ad927b..4b30ff3 100644 --- a/python-pyrpm.spec +++ b/python-pyrpm.spec @@ -2,12 +2,12 @@ %bcond_without tests Name: python-pyrpm -Version: 0.13 +Version: 0.14.1 Release: 1 Summary: python-pyrpm is a Python library for parsing RPM spec files License: MIT URL: https://github.com/bkircher/%{repo_name} -Source0: https://files.pythonhosted.org/packages/25/08/b5ae515362eadb7d25e9de3ad0b5067fc2f469fb4f4d32dcbb2a1f8ab41b/python-rpm-spec-0.13.tar.gz +Source0: https://files.pythonhosted.org/packages/a8/35/b00d2a67f5116f6690db70c915f0c58d190174d585b7171f007110d28b1e/python-rpm-spec-0.14.1.tar.gz Patch0: 0001-add-setup.py.patch BuildArch: noarch @@ -78,6 +78,9 @@ py.test-%{python3_version} -vv tests || : %doc README.md AUTHORS examples %changelog +* Tue Apr 11 2023 Ge Wang - 0.14.1-1 +- Update package to version 0.14.1 + * Fri Nov 25 2022 wangjunqi - 0.13-1 - Update package to version 0.13 diff --git a/python-rpm-spec-0.13.tar.gz b/python-rpm-spec-0.13.tar.gz deleted file mode 100644 index 221b0f5..0000000 Binary files a/python-rpm-spec-0.13.tar.gz and /dev/null differ diff --git a/python-rpm-spec-0.14.1.tar.gz b/python-rpm-spec-0.14.1.tar.gz new file mode 100644 index 0000000..61c0829 Binary files /dev/null and b/python-rpm-spec-0.14.1.tar.gz differ