summaryrefslogtreecommitdiff
path: root/python-omero-web.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 13:35:46 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 13:35:46 +0000
commit8e05ee68164f0157fb9d6f6eaa7ed14f8f3c2d0d (patch)
tree426ed800467e97201f35bd686f818720f783b0c3 /python-omero-web.spec
parent510dade09f3ef768440f7eba87539af0a27cf333 (diff)
automatic import of python-omero-web
Diffstat (limited to 'python-omero-web.spec')
-rw-r--r--python-omero-web.spec83
1 files changed, 83 insertions, 0 deletions
diff --git a/python-omero-web.spec b/python-omero-web.spec
new file mode 100644
index 0000000..059d9b9
--- /dev/null
+++ b/python-omero-web.spec
@@ -0,0 +1,83 @@
+%global _empty_manifest_terminate_build 0
+Name: python-omero-web
+Version: 5.20.0
+Release: 1
+Summary: OMERO.web
+License: GPLv2+
+URL: https://github.com/ome/omero-web/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/62/fe/ecbb75d890427d80d110f5a95c84e5c9674adc0ba891a7c57ee65cc872a5/omero-web-5.20.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-Django
+Requires: python3-Pillow
+Requires: python3-concurrent-log-handler
+Requires: python3-django-cors-headers
+Requires: python3-django-pipeline
+Requires: python3-gunicorn
+Requires: python3-omero-marshal
+Requires: python3-omero-py
+Requires: python3-portalocker
+Requires: python3-whitenoise
+Requires: python3-django-redis
+
+%description
+
+
+%package -n python3-omero-web
+Summary: OMERO.web
+Provides: python-omero-web
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-omero-web
+
+
+%package help
+Summary: Development documents and examples for omero-web
+Provides: python3-omero-web-doc
+%description help
+
+
+%prep
+%autosetup -n omero-web-5.20.0
+
+%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-omero-web -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 5.20.0-1
+- Package Spec generated