summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 17:33:41 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 17:33:41 +0000
commitb4dcb2a814039bf99cbde04f1d54a45e2ff81764 (patch)
tree2a3ee75c43df2e1481bc8e0dadbcaf14b16ae3a9
parent6d006459fc9230253d2170335b8d144c26c576cd (diff)
automatic import of python-django-cities-light
-rw-r--r--.gitignore1
-rw-r--r--python-django-cities-light.spec124
-rw-r--r--sources1
3 files changed, 126 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..91e4b8c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-cities-light-3.9.2.tar.gz
diff --git a/python-django-cities-light.spec b/python-django-cities-light.spec
new file mode 100644
index 0000000..8d7f3ca
--- /dev/null
+++ b/python-django-cities-light.spec
@@ -0,0 +1,124 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-cities-light
+Version: 3.9.2
+Release: 1
+Summary: Simple alternative to django-cities
+License: MIT
+URL: https://github.com/yourlabs/django-cities-light
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/84/6d/26841a5a9c422f1c09a11cb79ecc920cb4a1dc2068d76b8098e55fc1a108/django-cities-light-3.9.2.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytz
+Requires: python3-unidecode
+Requires: python3-django-autoslug
+Requires: python3-progressbar2
+
+%description
+This add-on provides models and commands to import country, subregion, region/state, and
+city data in your database.
+The data is pulled from `GeoNames
+<http://www.geonames.org/>`_ and contains cities, subregions, regions/states and countries.
+Spatial query support is not required by this application.
+This application is very simple and is useful if you want to make a simple
+address book for example. If you intend to build a fully featured spatial
+database, you should use
+`django-cities
+<https://github.com/coderholic/django-cities>`_.
+Requirements:
+- Python >= 3.8
+- Django >= 3.0
+- MySQL or PostgreSQL or SQLite.
+Yes, for some reason, code that used to work on MySQL (not without pain xD)
+does not work anymore. So we're now using django.db.transaction.atomic which
+comes from Django 1.6 just to support MySQL quacks.
+
+%package -n python3-django-cities-light
+Summary: Simple alternative to django-cities
+Provides: python-django-cities-light
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-cities-light
+This add-on provides models and commands to import country, subregion, region/state, and
+city data in your database.
+The data is pulled from `GeoNames
+<http://www.geonames.org/>`_ and contains cities, subregions, regions/states and countries.
+Spatial query support is not required by this application.
+This application is very simple and is useful if you want to make a simple
+address book for example. If you intend to build a fully featured spatial
+database, you should use
+`django-cities
+<https://github.com/coderholic/django-cities>`_.
+Requirements:
+- Python >= 3.8
+- Django >= 3.0
+- MySQL or PostgreSQL or SQLite.
+Yes, for some reason, code that used to work on MySQL (not without pain xD)
+does not work anymore. So we're now using django.db.transaction.atomic which
+comes from Django 1.6 just to support MySQL quacks.
+
+%package help
+Summary: Development documents and examples for django-cities-light
+Provides: python3-django-cities-light-doc
+%description help
+This add-on provides models and commands to import country, subregion, region/state, and
+city data in your database.
+The data is pulled from `GeoNames
+<http://www.geonames.org/>`_ and contains cities, subregions, regions/states and countries.
+Spatial query support is not required by this application.
+This application is very simple and is useful if you want to make a simple
+address book for example. If you intend to build a fully featured spatial
+database, you should use
+`django-cities
+<https://github.com/coderholic/django-cities>`_.
+Requirements:
+- Python >= 3.8
+- Django >= 3.0
+- MySQL or PostgreSQL or SQLite.
+Yes, for some reason, code that used to work on MySQL (not without pain xD)
+does not work anymore. So we're now using django.db.transaction.atomic which
+comes from Django 1.6 just to support MySQL quacks.
+
+%prep
+%autosetup -n django-cities-light-3.9.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-django-cities-light -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 3.9.2-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..cb127c0
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+6755f4c68c370dd15a10d2f629ce1c0b django-cities-light-3.9.2.tar.gz