Hello community,
here is the log from the commit of package python-django-celery for
openSUSE:Factory checked in at 2017-12-29 00:03:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-celery (Old)
and /work/SRC/openSUSE:Factory/.python-django-celery.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-celery"
Fri Dec 29 00:03:50 2017 rev:14 rq:557873 version:3.2.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-celery/python-django-celery.changes
2015-05-07 09:22:16.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-celery.new/python-django-celery.changes
2017-12-29 00:04:01.725673110 +0100
@@ -1,0 +2,13 @@
+Thu Nov 30 10:18:27 UTC 2017 - [email protected]
+
+- Update to 3.2.2:
+ * Tons of fixes to work with new celery project
+ * Support for django 1.10
+ * Various dependencies tweaks
+
+-------------------------------------------------------------------
+Thu Aug 24 13:36:36 UTC 2017 - [email protected]
+
+- singlespec auto-conversion
+
+-------------------------------------------------------------------
@@ -505,0 +519 @@
+
Old:
----
django-celery-3.1.16.tar.gz
New:
----
v3.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-celery.spec ++++++
--- /var/tmp/diff_new_pack.Zfz2yP/_old 2017-12-29 00:04:05.376626589 +0100
+++ /var/tmp/diff_new_pack.Zfz2yP/_new 2017-12-29 00:04:05.380625443 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-django-celery
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,29 +16,32 @@
#
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-django-celery
-Version: 3.1.16
+Version: 3.2.2
Release: 0
-Url: http://celeryproject.org
Summary: Django Celery Integration
License: BSD-3-Clause
Group: Development/Languages/Python
-Source:
https://pypi.python.org/packages/source/d/django-celery/django-celery-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
-BuildRequires: python-devel
-BuildRequires: python-django
-BuildRequires: python-setuptools
-#BuildRequires: python-Sphinx
-#BuildRequires: python-sphinxcontrib-issuetracker
-Requires: python-celery >= 3.1.15
+Url: http://celeryproject.org
+Source:
https://github.com/celery/django-celery/archive/v%{version}.tar.gz
+BuildRequires: %{python_module Django}
+BuildRequires: %{python_module anyjson}
+BuildRequires: %{python_module celery} >= 4.1
+BuildRequires: %{python_module devel}
+BuildRequires: %{python_module django-nose}
+BuildRequires: %{python_module mock}
+BuildRequires: %{python_module nose-cover3}
+BuildRequires: %{python_module setuptools}
+BuildRequires: fdupes
+BuildRequires: python-rpm-macros
+Requires: python-Django
+Requires: python-celery >= 4.1
Requires: python-celerymon
Requires: python-django-picklefield
-Requires: python-tz
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
+Requires: python-pytz
BuildArch: noarch
-%endif
+%python_subpackages
%description
Django-celery provides Celery integration for Django. Using the Django
@@ -49,19 +52,19 @@
%setup -q -n django-celery-%{version}
%build
-python setup.py build
-# Building HTML docs currently not possible, needs internet access:
-#cd docs && make html && rm .build/html/.buildinfo # Build HTML documentation
+%python_build
%install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
rm -rf %{buildroot}%{python_sitelib}/djcelery/tests # Don't ship tests
+%fdupes %{buildroot}
-#%%check
-#python setup.py test
+%check
+# Do not check for now as tests fail on import from celery
+# This module is deprecated so upstream is not so keen on fixing it I suppose
+#%%python_exec setup.py test
-%files
-%defattr(-,root,root,-)
+%files %{python_files}
%doc AUTHORS LICENSE README
%{python_sitelib}/*