summaryrefslogtreecommitdiff
path: root/python-msumastro.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-09 05:18:11 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-09 05:18:11 +0000
commitf14dc744b9e5dbd9fe55a02d63ebf5b143c0445a (patch)
tree6f8fa4e1b543191f8dcc565d1dcce27983adef46 /python-msumastro.spec
parentbbfbb54b498cd36f68f15000ed647867c17c0d79 (diff)
automatic import of python-msumastroopeneuler20.03
Diffstat (limited to 'python-msumastro.spec')
-rw-r--r--python-msumastro.spec83
1 files changed, 83 insertions, 0 deletions
diff --git a/python-msumastro.spec b/python-msumastro.spec
new file mode 100644
index 0000000..5878140
--- /dev/null
+++ b/python-msumastro.spec
@@ -0,0 +1,83 @@
+%global _empty_manifest_terminate_build 0
+Name: python-msumastro
+Version: 1.2.4
+Release: 1
+Summary: Process FITS files
+License: BSD 3-Clause
+URL: http://github.com/mwcraig/msumastro
+Source0: https://mirrors.aliyun.com/pypi/web/packages/b7/c0/ffda614d2db6f947c4667d5c0ed78aa3ee81e154a183c32e1fe2c3f128e0/msumastro-1.2.4.tar.gz
+BuildArch: noarch
+
+Requires: python3-astropy
+Requires: python3-ccdproc
+Requires: python3-numpy
+Requires: python3-numpydoc
+Requires: python3-sphinx-argparse
+Requires: python3-sphinx-rtd-theme
+Requires: python3-sphinx-astropy
+Requires: python3-pytest-astropy
+
+%description
+This software was developed primarily to process the files coming off the Paul P. Feder Observatory at Minnesota State University Moorhead.
+
+
+%package -n python3-msumastro
+Summary: Process FITS files
+Provides: python-msumastro
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-msumastro
+This software was developed primarily to process the files coming off the Paul P. Feder Observatory at Minnesota State University Moorhead.
+
+
+%package help
+Summary: Development documents and examples for msumastro
+Provides: python3-msumastro-doc
+%description help
+This software was developed primarily to process the files coming off the Paul P. Feder Observatory at Minnesota State University Moorhead.
+
+
+%prep
+%autosetup -n msumastro-1.2.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-msumastro -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri Jun 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.2.4-1
+- Package Spec generated