summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 07:47:12 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 07:47:12 +0000
commite6303942f86e3907e23e93a668012d541b91252b (patch)
treec6be14a3d55d81a638140e39c0a65369d3b003ff
parent4db70077fb51a8bc495ce398baad56acd034d755 (diff)
automatic import of python-morton-pyopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-morton-py.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..4790e43 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/morton-py-1.3.tar.gz
diff --git a/python-morton-py.spec b/python-morton-py.spec
new file mode 100644
index 0000000..0cf3cb4
--- /dev/null
+++ b/python-morton-py.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-morton-py
+Version: 1.3
+Release: 1
+Summary: Morton code pack/unpack library
+License: BSD
+URL: https://github.com/gojuno/morton-py
+Source0: https://mirrors.aliyun.com/pypi/web/packages/77/63/32cae020fe3c173f28043777e8cee43406a52ba371ca91c1b63dad70b125/morton-py-1.3.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-morton-py
+Summary: Morton code pack/unpack library
+Provides: python-morton-py
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-morton-py
+
+
+%package help
+Summary: Development documents and examples for morton-py
+Provides: python3-morton-py-doc
+%description help
+
+
+%prep
+%autosetup -n morton-py-1.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-morton-py -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..98d2c8c
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+b9d844ab13a1978623ffeb2a6a8d784c morton-py-1.3.tar.gz