summaryrefslogtreecommitdiff
path: root/python-reprozip.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 10:47:13 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 10:47:13 +0000
commit11d56ff68267ba065a6ed713e8ec3de668514fca (patch)
tree5d7abf8dd968e5f5cfdf469ddfa3aa2bc806fbec /python-reprozip.spec
parentb8d0f59fc835def3905750136b0dd0a7828e921d (diff)
automatic import of python-reprozip
Diffstat (limited to 'python-reprozip.spec')
-rw-r--r--python-reprozip.spec72
1 files changed, 72 insertions, 0 deletions
diff --git a/python-reprozip.spec b/python-reprozip.spec
new file mode 100644
index 0000000..5a10bf9
--- /dev/null
+++ b/python-reprozip.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-reprozip
+Version: 1.2
+Release: 1
+Summary: Linux tool enabling reproducible experiments (packer)
+License: BSD-3-Clause
+URL: https://www.reprozip.org/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1e/55/9e40fc191e75d849a340f4aec40db3fa4ad8fae042c5c6ea21f91863c02b/reprozip-1.2.tar.gz
+BuildArch: noarch
+
+
+%description
+`ReproZip <https://www.reprozip.org/>`__ is a tool aimed at simplifying the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science. It tracks operating system calls and creates a bundle that contains all the binaries, files and dependencies required to run a given command on the author's computational environment (packing step). A reviewer can then extract the experiment in his environment to reproduce the results (unpacking step).
+
+%package -n python3-reprozip
+Summary: Linux tool enabling reproducible experiments (packer)
+Provides: python-reprozip
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-reprozip
+`ReproZip <https://www.reprozip.org/>`__ is a tool aimed at simplifying the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science. It tracks operating system calls and creates a bundle that contains all the binaries, files and dependencies required to run a given command on the author's computational environment (packing step). A reviewer can then extract the experiment in his environment to reproduce the results (unpacking step).
+
+%package help
+Summary: Development documents and examples for reprozip
+Provides: python3-reprozip-doc
+%description help
+`ReproZip <https://www.reprozip.org/>`__ is a tool aimed at simplifying the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science. It tracks operating system calls and creates a bundle that contains all the binaries, files and dependencies required to run a given command on the author's computational environment (packing step). A reviewer can then extract the experiment in his environment to reproduce the results (unpacking step).
+
+%prep
+%autosetup -n reprozip-1.2
+
+%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-reprozip -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 1.2-1
+- Package Spec generated