summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 16:11:04 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 16:11:04 +0000
commitfea329d1aa99dc69d9308c2cc325767c88602b91 (patch)
tree3301de0d8e25d7c582704327c0a52d24a5a47473
parent0b0fd1e45f72aafd985dd3aafe2041cf5657d61d (diff)
automatic import of python-pyzolib
-rw-r--r--.gitignore1
-rw-r--r--python-pyzolib.spec132
-rw-r--r--sources1
3 files changed, 134 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..00486ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pyzolib-0.3.4.tar.gz
diff --git a/python-pyzolib.spec b/python-pyzolib.spec
new file mode 100644
index 0000000..445ee66
--- /dev/null
+++ b/python-pyzolib.spec
@@ -0,0 +1,132 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pyzolib
+Version: 0.3.4
+Release: 1
+Summary: Utilities for the Pyzo environment.
+License: (new) BSD
+URL: http://bitbucket.org/pyzo/pyzolib
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/df/2e/571e44fb64f23e17f3f3a4a5926519dc0243f61619704fd343c77f3fb5b3/pyzolib-0.3.4.tar.gz
+BuildArch: noarch
+
+
+%description
+Package pyzolib
+
+The pyzolib package provides basic functionality for the Pyzo environment.
+It contains a collection of modules and small packages that should be
+imported as "from pyzolib import xxx"
+
+The packages currently are:
+ * path - object oriented path processing (no more os.path.x)
+ * paths - Get paths to useful directories in a cross platform manner.
+ * qt - Proxy for importing QtCore et al. from PySide or PyQt4
+ * ssdf - the Simple Structured Data Format (for config files and
+ scientific databases)
+ * insertdocs - a sphynx pre-processor to include docstrings in the text,
+ allowing readthedocs.org to host the docs without requiring importing code.
+ * pyximport - for easy on the fly compilation of Cython, using the Pyzo
+ environment to establish the location of a gcc compiler.
+ * gccutils - used by the above to manage the gcc compiler.
+ * interprerers - list the Python interpreters available on this system.
+ * dllutils - utilities to set the RPATH in dynamic libararies and
+ remove depndencies on the MSVCR from the embedded manifest.
+ * shebang - for making shebangs in pyzo distro absolute.
+
+%package -n python3-pyzolib
+Summary: Utilities for the Pyzo environment.
+Provides: python-pyzolib
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pyzolib
+Package pyzolib
+
+The pyzolib package provides basic functionality for the Pyzo environment.
+It contains a collection of modules and small packages that should be
+imported as "from pyzolib import xxx"
+
+The packages currently are:
+ * path - object oriented path processing (no more os.path.x)
+ * paths - Get paths to useful directories in a cross platform manner.
+ * qt - Proxy for importing QtCore et al. from PySide or PyQt4
+ * ssdf - the Simple Structured Data Format (for config files and
+ scientific databases)
+ * insertdocs - a sphynx pre-processor to include docstrings in the text,
+ allowing readthedocs.org to host the docs without requiring importing code.
+ * pyximport - for easy on the fly compilation of Cython, using the Pyzo
+ environment to establish the location of a gcc compiler.
+ * gccutils - used by the above to manage the gcc compiler.
+ * interprerers - list the Python interpreters available on this system.
+ * dllutils - utilities to set the RPATH in dynamic libararies and
+ remove depndencies on the MSVCR from the embedded manifest.
+ * shebang - for making shebangs in pyzo distro absolute.
+
+%package help
+Summary: Development documents and examples for pyzolib
+Provides: python3-pyzolib-doc
+%description help
+Package pyzolib
+
+The pyzolib package provides basic functionality for the Pyzo environment.
+It contains a collection of modules and small packages that should be
+imported as "from pyzolib import xxx"
+
+The packages currently are:
+ * path - object oriented path processing (no more os.path.x)
+ * paths - Get paths to useful directories in a cross platform manner.
+ * qt - Proxy for importing QtCore et al. from PySide or PyQt4
+ * ssdf - the Simple Structured Data Format (for config files and
+ scientific databases)
+ * insertdocs - a sphynx pre-processor to include docstrings in the text,
+ allowing readthedocs.org to host the docs without requiring importing code.
+ * pyximport - for easy on the fly compilation of Cython, using the Pyzo
+ environment to establish the location of a gcc compiler.
+ * gccutils - used by the above to manage the gcc compiler.
+ * interprerers - list the Python interpreters available on this system.
+ * dllutils - utilities to set the RPATH in dynamic libararies and
+ remove depndencies on the MSVCR from the embedded manifest.
+ * shebang - for making shebangs in pyzo distro absolute.
+
+%prep
+%autosetup -n pyzolib-0.3.4
+
+%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-pyzolib -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.4-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..10c9073
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+0d3bfe0736b0b17da1b330e2112cd900 pyzolib-0.3.4.tar.gz