summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 06:32:57 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 06:32:57 +0000
commit152b2c5c9c75f97475e51cb23874fb1480aa484d (patch)
tree7ccf293c844c1f983dc7e2067d0935412830042c
parent5c6124e0d9aeb54622fb54524feef64502555b80 (diff)
automatic import of python-archiveopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-archive.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..94f1c26 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Archive-0.3.tar.gz
diff --git a/python-archive.spec b/python-archive.spec
new file mode 100644
index 0000000..a1e6320
--- /dev/null
+++ b/python-archive.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-Archive
+Version: 0.3
+Release: 1
+Summary: Simple library that provides a common interface for extracting zip and tar archives.
+License: LICENSE.txt
+URL: http://code.google.com/p/python-archive/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f7/37/bf86a96c30477011b6a48fa82cfdf0e6a616314ad229a4544b59b70dfd2f/Archive-0.3.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-Archive
+Summary: Simple library that provides a common interface for extracting zip and tar archives.
+Provides: python-Archive
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-Archive
+
+
+%package help
+Summary: Development documents and examples for Archive
+Provides: python3-Archive-doc
+%description help
+
+
+%prep
+%autosetup -n Archive-0.3
+
+%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-Archive -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..48478d8
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+fa2d4c414f87e97c6804e6261936a0ed Archive-0.3.tar.gz