summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-djangotoolbox.spec135
-rw-r--r--sources1
3 files changed, 137 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..0cf6fdc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/djangotoolbox-1.8.0.tar.gz
diff --git a/python-djangotoolbox.spec b/python-djangotoolbox.spec
new file mode 100644
index 0000000..016b2f3
--- /dev/null
+++ b/python-djangotoolbox.spec
@@ -0,0 +1,135 @@
+%global _empty_manifest_terminate_build 0
+Name: python-djangotoolbox
+Version: 1.8.0
+Release: 1
+Summary: Djangotoolbox for Django-nonrel
+License: 3-clause BSD
+URL: https://github.com/django-nonrel/djangotoolbox
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f2/4b/c124e10ff4048a926476d2da077b0e30349f25053c2b62f92a93d07e85bb/djangotoolbox-1.8.0.tar.gz
+BuildArch: noarch
+
+
+%description
+Djangotoolbox provides a common API for running Django on
+non-relational/NoSQL databases (currently via Django-nonrel_).
+
+In ``djangotoolbox.db`` you can find base classes for writing
+non-relational DB backends. Read
+`Writing a non-relational Django backend`_
+for more information.
+
+In ``djangotoolbox.fields`` you can find several common field
+types for non-relational DB backends (``ListField``, ``SetField``,
+``DictField``, ``RawField``, ``BlobField``).
+
+The ``djangotoolbox.admin`` module provides admin overrides for
+making ``django.contrib.auth`` work correctly in the admin UI.
+Simply add ``'djangotoolbox'`` to ``INSTALLED_APPS`` **after**
+``django.contrib.admin``. This will disable features that
+require JOINs. If you still need permission handling you should
+use the `nonrel permission backend`_.
+
+.. _Django-nonrel: http://django-nonrel.org/
+.. _Writing a non-relational Django backend: http://www.allbuttonspressed.com/blog/django/2010/04/Writing-a-non-relational-Django-backend
+.. _nonrel permission backend: https://github.com/django-nonrel/django-permission-backend-nonrel
+
+%package -n python3-djangotoolbox
+Summary: Djangotoolbox for Django-nonrel
+Provides: python-djangotoolbox
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-djangotoolbox
+Djangotoolbox provides a common API for running Django on
+non-relational/NoSQL databases (currently via Django-nonrel_).
+
+In ``djangotoolbox.db`` you can find base classes for writing
+non-relational DB backends. Read
+`Writing a non-relational Django backend`_
+for more information.
+
+In ``djangotoolbox.fields`` you can find several common field
+types for non-relational DB backends (``ListField``, ``SetField``,
+``DictField``, ``RawField``, ``BlobField``).
+
+The ``djangotoolbox.admin`` module provides admin overrides for
+making ``django.contrib.auth`` work correctly in the admin UI.
+Simply add ``'djangotoolbox'`` to ``INSTALLED_APPS`` **after**
+``django.contrib.admin``. This will disable features that
+require JOINs. If you still need permission handling you should
+use the `nonrel permission backend`_.
+
+.. _Django-nonrel: http://django-nonrel.org/
+.. _Writing a non-relational Django backend: http://www.allbuttonspressed.com/blog/django/2010/04/Writing-a-non-relational-Django-backend
+.. _nonrel permission backend: https://github.com/django-nonrel/django-permission-backend-nonrel
+
+%package help
+Summary: Development documents and examples for djangotoolbox
+Provides: python3-djangotoolbox-doc
+%description help
+Djangotoolbox provides a common API for running Django on
+non-relational/NoSQL databases (currently via Django-nonrel_).
+
+In ``djangotoolbox.db`` you can find base classes for writing
+non-relational DB backends. Read
+`Writing a non-relational Django backend`_
+for more information.
+
+In ``djangotoolbox.fields`` you can find several common field
+types for non-relational DB backends (``ListField``, ``SetField``,
+``DictField``, ``RawField``, ``BlobField``).
+
+The ``djangotoolbox.admin`` module provides admin overrides for
+making ``django.contrib.auth`` work correctly in the admin UI.
+Simply add ``'djangotoolbox'`` to ``INSTALLED_APPS`` **after**
+``django.contrib.admin``. This will disable features that
+require JOINs. If you still need permission handling you should
+use the `nonrel permission backend`_.
+
+.. _Django-nonrel: http://django-nonrel.org/
+.. _Writing a non-relational Django backend: http://www.allbuttonspressed.com/blog/django/2010/04/Writing-a-non-relational-Django-backend
+.. _nonrel permission backend: https://github.com/django-nonrel/django-permission-backend-nonrel
+
+%prep
+%autosetup -n djangotoolbox-1.8.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-djangotoolbox -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.8.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..fa3cfb5
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d19e1c1659f3dc43ef650d1099caefda djangotoolbox-1.8.0.tar.gz