summaryrefslogtreecommitdiff
path: root/python-django-map-widgets.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 16:32:51 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 16:32:51 +0000
commite59afd03ef51bea38976b86aafaf5a8ea22045cb (patch)
tree880bd4d1fffd61be0ea11becd3f526db9410033e /python-django-map-widgets.spec
parent8b276b298d79f120d2e9784cc1b3887da493d1af (diff)
automatic import of python-django-map-widgets
Diffstat (limited to 'python-django-map-widgets.spec')
-rw-r--r--python-django-map-widgets.spec87
1 files changed, 87 insertions, 0 deletions
diff --git a/python-django-map-widgets.spec b/python-django-map-widgets.spec
new file mode 100644
index 0000000..bb46bfd
--- /dev/null
+++ b/python-django-map-widgets.spec
@@ -0,0 +1,87 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-map-widgets
+Version: 0.4.1
+Release: 1
+Summary: Map widgets for Django PostGIS fields
+License: MIT
+URL: https://github.com/erdem/django-map-widgets
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/51/f7/64586641b8c91d3f0ba945eda340fc6c7f7c53b3949cd95c747331926b70/django-map-widgets-0.4.1.tar.gz
+BuildArch: noarch
+
+
+%description
+
+Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
+Please check the `project home page <https://github.com/erdem/django-map-widgets/>`_ for latest updates.
+
+
+
+
+%package -n python3-django-map-widgets
+Summary: Map widgets for Django PostGIS fields
+Provides: python-django-map-widgets
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-map-widgets
+
+Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
+Please check the `project home page <https://github.com/erdem/django-map-widgets/>`_ for latest updates.
+
+
+
+
+%package help
+Summary: Development documents and examples for django-map-widgets
+Provides: python3-django-map-widgets-doc
+%description help
+
+Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
+Please check the `project home page <https://github.com/erdem/django-map-widgets/>`_ for latest updates.
+
+
+
+
+%prep
+%autosetup -n django-map-widgets-0.4.1
+
+%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-django-map-widgets -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.1-1
+- Package Spec generated