diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-11 05:49:35 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 05:49:35 +0000 |
commit | 630f3992e9462e72f475d909ff2c318cf661610f (patch) | |
tree | 48fa0802dae8bbd1a5a2c03497cad828db5d8535 | |
parent | e7db226c045f2fa49fc548149b597b0f57cdb578 (diff) |
automatic import of python-django-netfields
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-django-netfields.spec | 102 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 104 insertions, 0 deletions
@@ -0,0 +1 @@ +/django-netfields-1.3.1.tar.gz diff --git a/python-django-netfields.spec b/python-django-netfields.spec new file mode 100644 index 0000000..0d0d0d8 --- /dev/null +++ b/python-django-netfields.spec @@ -0,0 +1,102 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-netfields +Version: 1.3.1 +Release: 1 +Summary: Django PostgreSQL netfields implementation +License: BSD +URL: https://github.com/jimfunk/django-postgresql-netfields +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8e/5a/7577bd5f1603e74f6a8b440e41e095cc153971d02d1c8636c5b344d5d2ce/django-netfields-1.3.1.tar.gz +BuildArch: noarch + + +%description +This project is an attempt at making proper PostgreSQL net related fields for +Django. In Django pre 1.4 the built in ``IPAddressField`` does not support IPv6 +and uses an inefficient ``HOST()`` cast in all lookups. As of 1.4 you can use +``GenericIPAddressField`` for IPv6, but the casting problem remains. +In addition to the basic ``IPAddressField`` replacement, ``InetAddressField``, +a ``CidrAddressField`` a ``MACAddressField``, and a ``MACAddress8Field`` have +been added. This library also provides a manager that allows for advanced IP +based lookups directly in the ORM. +In Python, the values of the IP address fields are represented as types from +the ipaddress_ module. In Python 2.x, a backport_ is used. The MAC address +fields are represented as EUI types from the netaddr_ module. + +%package -n python3-django-netfields +Summary: Django PostgreSQL netfields implementation +Provides: python-django-netfields +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-netfields +This project is an attempt at making proper PostgreSQL net related fields for +Django. In Django pre 1.4 the built in ``IPAddressField`` does not support IPv6 +and uses an inefficient ``HOST()`` cast in all lookups. As of 1.4 you can use +``GenericIPAddressField`` for IPv6, but the casting problem remains. +In addition to the basic ``IPAddressField`` replacement, ``InetAddressField``, +a ``CidrAddressField`` a ``MACAddressField``, and a ``MACAddress8Field`` have +been added. This library also provides a manager that allows for advanced IP +based lookups directly in the ORM. +In Python, the values of the IP address fields are represented as types from +the ipaddress_ module. In Python 2.x, a backport_ is used. The MAC address +fields are represented as EUI types from the netaddr_ module. + +%package help +Summary: Development documents and examples for django-netfields +Provides: python3-django-netfields-doc +%description help +This project is an attempt at making proper PostgreSQL net related fields for +Django. In Django pre 1.4 the built in ``IPAddressField`` does not support IPv6 +and uses an inefficient ``HOST()`` cast in all lookups. As of 1.4 you can use +``GenericIPAddressField`` for IPv6, but the casting problem remains. +In addition to the basic ``IPAddressField`` replacement, ``InetAddressField``, +a ``CidrAddressField`` a ``MACAddressField``, and a ``MACAddress8Field`` have +been added. This library also provides a manager that allows for advanced IP +based lookups directly in the ORM. +In Python, the values of the IP address fields are represented as types from +the ipaddress_ module. In Python 2.x, a backport_ is used. The MAC address +fields are represented as EUI types from the netaddr_ module. + +%prep +%autosetup -n django-netfields-1.3.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-netfields -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.1-1 +- Package Spec generated @@ -0,0 +1 @@ +3b38d1d2bf9e8d8663d5638edcc98aa9 django-netfields-1.3.1.tar.gz |