diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:05:20 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:05:20 +0000 |
commit | bc3e74fa14f2b33cf4da884dfe2eb1e0f6dcf521 (patch) | |
tree | 4d8251d31d72d7b806e34b4f85af1c27ac647965 | |
parent | 12b071b65c14cdff3289dc7ec6edd33443a53b77 (diff) |
automatic import of python-conf-d
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-conf-d.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/conf_d-0.1.0.tar.gz diff --git a/python-conf-d.spec b/python-conf-d.spec new file mode 100644 index 0000000..5c0ac37 --- /dev/null +++ b/python-conf-d.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-conf_d +Version: 0.1.0 +Release: 1 +Summary: read configuration files, conf.d style +License: LICENSE.txt +URL: http://github.com/josegonzalez/conf_d +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/78/b8/f096e604ae7d2e1116891d83bda96de3f9e68003c5a443216011d8c32038/conf_d-0.1.0.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-conf_d +Summary: read configuration files, conf.d style +Provides: python-conf_d +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-conf_d + + +%package help +Summary: Development documents and examples for conf_d +Provides: python3-conf_d-doc +%description help + + +%prep +%autosetup -n conf_d-0.1.0 + +%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-conf_d -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +53248fda747faf589d6936791988847a conf_d-0.1.0.tar.gz |