summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 09:47:58 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 09:47:58 +0000
commit3b77fe57b00b76da5fc08388010cc8e3c6b088cb (patch)
tree6bbeb56785abc35351484d5ceecfa587c81fe39d
parentea9f7e7d49625b89812a8010ad842683207472bf (diff)
automatic import of python-myapp
-rw-r--r--.gitignore1
-rw-r--r--python-myapp.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..7bd2205 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/myapp-0.1dev.tar.gz
diff --git a/python-myapp.spec b/python-myapp.spec
new file mode 100644
index 0000000..35acf68
--- /dev/null
+++ b/python-myapp.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-myapp
+Version: 0.1dev
+Release: 1
+Summary: test
+License: UNKNOWN
+URL: UNKNOWN
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4f/2e/ce237cddf066fb40d2dffeb499a1dcf335dcf4c483649f9ccf28272574fa/myapp-0.1dev.tar.gz
+BuildArch: noarch
+
+
+%description
+FirstTest
+
+%package -n python3-myapp
+Summary: test
+Provides: python-myapp
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-myapp
+FirstTest
+
+%package help
+Summary: Development documents and examples for myapp
+Provides: python3-myapp-doc
+%description help
+FirstTest
+
+%prep
+%autosetup -n myapp-0.1dev
+
+%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-myapp -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1dev-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..cdb40a7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+f18b74066ba4f18a895d5a921a116363 myapp-0.1dev.tar.gz