summaryrefslogtreecommitdiffstats
path: root/python/python-django-picklefield.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python/python-django-picklefield.spec')
-rw-r--r--python/python-django-picklefield.spec74
1 files changed, 0 insertions, 74 deletions
diff --git a/python/python-django-picklefield.spec b/python/python-django-picklefield.spec
deleted file mode 100644
index 85ac02e..0000000
--- a/python/python-django-picklefield.spec
+++ /dev/null
@@ -1,74 +0,0 @@
-%global srcname django-picklefield
-%global modname picklefield
-
-%global forgeurl https://github.com/koed00/django-q
-
-Name: python-%{srcname}
-Version: 3.0.1
-Release: %autorelease
-Summary: A multiprocessing distributed task queue for Django
-License: MIT
-URL: http://github.com/gintas/django-picklefield
-# PyPI tarball has no tests
-# Source0: %%{pypi_source %%{srcname}}
-Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
-
-BuildArch: noarch
-
-BuildRequires: python%{python3_pkgversion}-devel
-BuildRequires: python%{python3_pkgversion}-setuptools
-# Test dependencies:
-# for some reason these are not picked up automatically
-BuildRequires: python3dist(django)
-
-%global _description %{expand:
-django-picklefield provides an implementation of a pickled object field. Such
-fields can contain any picklable objects.
-
-The implementation is taken and adopted from Django snippet \#1694 by Taavi
-Taijala, which is in turn based on Django snippet \#513 by Oliver Beattie.}
-
-%description %{_description}
-
-
-%package -n python%{python3_pkgversion}-%{srcname}
-Summary: %{summary}
-
-%description -n python%{python3_pkgversion}-%{srcname} %{_description}
-
-
-%prep
-%autosetup -p1 -n %{srcname}-%{version}
-
-
-%generate_buildrequires
-%pyproject_buildrequires -t
-
-
-%build
-%pyproject_wheel
-
-
-%install
-%pyproject_install
-%pyproject_save_files %{modname}
-
-
-%check
-# tox.ini runs coverage tests we don't need and
-# need to be patched for py310
-#
-# the two tests in PickledObjectFieldCheckTests failed
-# and django test / unittest's -k doesn't do negations
-%python3 -m django test -v2 --settings=tests.settings \
- -k PickledObjectFieldTests \
- -k PickledObjectFieldDeconstructTests
-
-
-%files -n python%{python3_pkgversion}-%{srcname} -f %{pyproject_files}
-%license LICENSE
-%doc README.rst
-
-
-%changelog
-%autochangelog