summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 13:14:13 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 13:14:13 +0000
commit99a9738f3ababc83dbaa8e254ec50f4e3c129d43 (patch)
tree1d3958069acdb24cde4c40e26f4ce511de3ef3c3
parent5626ca9bc291579a8a5b7614b4ec89e0b37a60a5 (diff)
automatic import of python-understreckopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-understreck.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..51e5c2d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/understreck-1.0.0.tar.gz
diff --git a/python-understreck.spec b/python-understreck.spec
new file mode 100644
index 0000000..da645c1
--- /dev/null
+++ b/python-understreck.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-understreck
+Version: 1.0.0
+Release: 1
+Summary: A collection of nice utility functions for python
+License: GNU General Public License v3
+URL: https://github.com/cfarvidson/understreck
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3a/8a/de81ecf22a63a90fe3255f800c7cc948a9bad613439e1c8c3e3fa6f469bc/understreck-1.0.0.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-understreck
+Summary: A collection of nice utility functions for python
+Provides: python-understreck
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-understreck
+
+
+%package help
+Summary: Development documents and examples for understreck
+Provides: python3-understreck-doc
+%description help
+
+
+%prep
+%autosetup -n understreck-1.0.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-understreck -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..11d8168
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+ad5357546e671b8d29ecea84a826f3f4 understreck-1.0.0.tar.gz