From c02a6dbfbed6ad1dbd12ce6f63f8a8c89cc62874 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 10 Apr 2023 09:58:19 +0000 Subject: automatic import of python-configobj --- .gitignore | 1 + python-configobj.spec | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 108 insertions(+) create mode 100644 python-configobj.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..ed7d952 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/configobj-5.0.8.tar.gz diff --git a/python-configobj.spec b/python-configobj.spec new file mode 100644 index 0000000..449c458 --- /dev/null +++ b/python-configobj.spec @@ -0,0 +1,106 @@ +%global _empty_manifest_terminate_build 0 +Name: python-configobj +Version: 5.0.8 +Release: 1 +Summary: Config file reading, writing and validation. +License: BSD (2 clause) +URL: https://github.com/DiffSK/configobj +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/cb/87/17d4c6d634c044ab08b11c0cd2a8a136d103713d438f8792d7be2c5148fb/configobj-5.0.8.tar.gz +BuildArch: noarch + +Requires: python3-six + +%description +* Nested sections (subsections), to any level +* List values +* Multiple line values +* Full Unicode support +* String interpolation (substitution) +* Integrated with a powerful validation system + - including automatic type checking/conversion + - and allowing default values + - repeated sections +* All comments in the file are preserved +* The order of keys/sections is preserved +* Powerful ``unrepr`` mode for storing/retrieving Python data-types + +%package -n python3-configobj +Summary: Config file reading, writing and validation. +Provides: python-configobj +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-configobj +* Nested sections (subsections), to any level +* List values +* Multiple line values +* Full Unicode support +* String interpolation (substitution) +* Integrated with a powerful validation system + - including automatic type checking/conversion + - and allowing default values + - repeated sections +* All comments in the file are preserved +* The order of keys/sections is preserved +* Powerful ``unrepr`` mode for storing/retrieving Python data-types + +%package help +Summary: Development documents and examples for configobj +Provides: python3-configobj-doc +%description help +* Nested sections (subsections), to any level +* List values +* Multiple line values +* Full Unicode support +* String interpolation (substitution) +* Integrated with a powerful validation system + - including automatic type checking/conversion + - and allowing default values + - repeated sections +* All comments in the file are preserved +* The order of keys/sections is preserved +* Powerful ``unrepr`` mode for storing/retrieving Python data-types + +%prep +%autosetup -n configobj-5.0.8 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{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 examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-configobj -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot - 5.0.8-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..2a6c974 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +8dda7b31bb3aea87ecfe3b7a87812b17 configobj-5.0.8.tar.gz -- cgit v1.2.3