diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-longitudinal-tomography.spec | 91 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 93 insertions, 0 deletions
@@ -0,0 +1 @@ +/longitudinal_tomography-3.4.3.tar.gz diff --git a/python-longitudinal-tomography.spec b/python-longitudinal-tomography.spec new file mode 100644 index 0000000..161b9e6 --- /dev/null +++ b/python-longitudinal-tomography.spec @@ -0,0 +1,91 @@ +%global _empty_manifest_terminate_build 0 +Name: python-longitudinal-tomography +Version: 3.4.3 +Release: 1 +Summary: A python library for longitudinal particle beam tomography +License: GNU General Public License version 3 +URL: https://gitlab.cern.ch/longitudinaltomography/tomographyv3 +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ac/ff/82f0440b986b19ff306c392b4aa2829d30b8ea123e613f5325a4f6ebcada/longitudinal_tomography-3.4.3.tar.gz +BuildArch: noarch + +Requires: python3-matplotlib +Requires: python3-multipledispatch +Requires: python3-numpy +Requires: python3-scipy +Requires: python3-coverage +Requires: python3-coverage-badge +Requires: python3-flake8 +Requires: python3-pylint +Requires: python3-pytest-cov +Requires: python3-pyyaml + +%description +The computationally intensive or time-critical parts of the library is +written in C++ and python bindings are provided using `pybind11 <https://pybind11.readthedocs.io/en/stable/>`_. +The installation and usage of the library is the same for all operating systems, but +different dependencies are needed for different operating systems. + +%package -n python3-longitudinal-tomography +Summary: A python library for longitudinal particle beam tomography +Provides: python-longitudinal-tomography +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-longitudinal-tomography +The computationally intensive or time-critical parts of the library is +written in C++ and python bindings are provided using `pybind11 <https://pybind11.readthedocs.io/en/stable/>`_. +The installation and usage of the library is the same for all operating systems, but +different dependencies are needed for different operating systems. + +%package help +Summary: Development documents and examples for longitudinal-tomography +Provides: python3-longitudinal-tomography-doc +%description help +The computationally intensive or time-critical parts of the library is +written in C++ and python bindings are provided using `pybind11 <https://pybind11.readthedocs.io/en/stable/>`_. +The installation and usage of the library is the same for all operating systems, but +different dependencies are needed for different operating systems. + +%prep +%autosetup -n longitudinal-tomography-3.4.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-longitudinal-tomography -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 3.4.3-1 +- Package Spec generated @@ -0,0 +1 @@ +d0ec22a7be841309fd7297b1ca179a59 longitudinal_tomography-3.4.3.tar.gz |