update version to 5.0.1

This commit is contained in:
Wangjunqi123 2022-12-19 11:30:53 +08:00
parent 69222ab69e
commit 0591492aef
3 changed files with 34 additions and 29 deletions

Binary file not shown.

BIN
confget-5.0.1.tar.gz Normal file

Binary file not shown.

View File

@ -1,12 +1,13 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-confget Name: python-confget
Version: 4.1.1 Version: 5.0.1
Release: 1 Release: 1
Summary: Parse configuration files and extract values from them Summary: Parse configuration files and extract values from them
License: BSD License: BSD
URL: https://devel.ringlet.net/textproc/confget/ URL: https://devel.ringlet.net/textproc/confget/
Source0: https://files.pythonhosted.org/packages/5b/db/e9927100c912d75567c8a7d675ee17c665b7e8ab8e3a0174d566aec341ab/confget-4.1.1.tar.gz Source0: https://files.pythonhosted.org/packages/b9/e4/f3e526707834555f07809cc29333c70d6d34962afb20adee14c01485f9c7/confget-5.0.1.tar.gz
BuildArch: noarch BuildArch: noarch
%description %description
confget parse configuration files The confget library parses configuration files confget parse configuration files The confget library parses configuration files
(currently INI-style files and CGI QUERY_STRING environment variable) and allows (currently INI-style files and CGI QUERY_STRING environment variable) and allows
@ -17,22 +18,21 @@ line tool with the same interface as the C implementation.The confget library is
fully typed.Specifying configuration values for the backends The confget. fully typed.Specifying configuration values for the backends The confget.
%package -n python3-confget %package -n python3-confget
Summary: Parse configuration files and extract values from them Summary: Parse configuration files and extract values from them
Provides: python-confget Provides: python-confget = %{version}-%{release}
# Base build requires # Base build requires
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools BuildRequires: python3-setuptools
BuildRequires: python3-pbr BuildRequires: python3-pbr
BuildRequires: python3-pip BuildRequires: python3-pip
BuildRequires: python3-wheel BuildRequires: python3-wheel
# General requires # General requires
BuildRequires: python3-six BuildRequires: python3-six
BuildRequires: python3-configparser BuildRequires: python3-configparser
BuildRequires: python3-pytest BuildRequires: python3-pytest
BuildRequires: python3-ddt BuildRequires: python3-ddt
# General requires # General requires
Requires: python3-six Requires: python3-pyparsing
Requires: python3-configparser
%description -n python3-confget %description -n python3-confget
confget parse configuration files The confget library parses configuration files confget parse configuration files The confget library parses configuration files
(currently INI-style files and CGI QUERY_STRING environment variable) and allows (currently INI-style files and CGI QUERY_STRING environment variable) and allows
@ -43,8 +43,8 @@ line tool with the same interface as the C implementation.The confget library is
fully typed.Specifying configuration values for the backends The confget. fully typed.Specifying configuration values for the backends The confget.
%package help %package help
Summary: Parse configuration files and extract values from them Summary: Development documents and examples for confget
Provides: python3-confget-doc Provides: python3-confget-doc
%description help %description help
confget parse configuration files The confget library parses configuration files confget parse configuration files The confget library parses configuration files
(currently INI-style files and CGI QUERY_STRING environment variable) and allows (currently INI-style files and CGI QUERY_STRING environment variable) and allows
@ -62,28 +62,30 @@ fully typed.Specifying configuration values for the backends The confget.
%install %install
%py3_install %py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir} install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot} pushd %{buildroot}
if [ -d usr/lib ]; then if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi fi
if [ -d usr/lib64 ]; then if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi fi
if [ -d usr/bin ]; then if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi fi
if [ -d usr/sbin ]; then if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi fi
touch doclist.lst touch doclist.lst
if [ -d usr/share/man ]; then if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi fi
popd popd
mv %{buildroot}/filelist.lst . mv %{buildroot}/filelist.lst .
@ -99,6 +101,9 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Mon Dec 19 2022 wangjunqi <wangjunqi@kylinos.cn> - 5.0.1-1
- Update package to version 5.0.1
* Thu Nov 24 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 4.1.1-1 * Thu Nov 24 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 4.1.1-1
- Update package to version 4.1.1 - Update package to version 4.1.1