[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#924481: marked as done (unblock: celery/4.2.1-3)



Your message dated Wed, 13 Mar 2019 17:15:23 +0100
with message-id <2963c729-7c6c-9815-71e7-8a0e6bea3d89@debian.org>
and subject line Re: Bug#924481: unblock: celery/4.2.1-3
has caused the Debian Bug report #924481,
regarding unblock: celery/4.2.1-3
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
924481: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=924481
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package celery

Celery 4.2.1-3 fixes RC bug #923719.

I didn't upload this package, but I'm filing the unblock request because the
uploader asked me to due to lack of time this week to do it themselves.

The package was uploaded before final freeze was in effect, so it's not a
completely minimal change, but the other changes are minor and do not present
a regression risk.

If you'd prefer the fix re-uploaded without the other changes, please let us
know.

unblock celery/4.2.1-3
diff -Nru celery-4.2.1/debian/changelog celery-4.2.1/debian/changelog
--- celery-4.2.1/debian/changelog	2018-09-27 02:06:32.000000000 -0400
+++ celery-4.2.1/debian/changelog	2019-03-07 16:14:11.000000000 -0500
@@ -1,3 +1,13 @@
+celery (4.2.1-3) unstable; urgency=medium
+
+  * Integrate py37-skip-tests patch into gbp-pq.
+  * Add patch to relax version requirements on billiard (Closes:
+    #923719).
+  * Clean up pytest artifacts to allow two builds in a row.
+  * Bump Standards-Version to 4.3.0.
+
+ -- Michael Fladischer <fladi@debian.org>  Thu, 07 Mar 2019 22:14:11 +0100
+
 celery (4.2.1-2) unstable; urgency=medium
 
   * Team upload.
diff -Nru celery-4.2.1/debian/clean celery-4.2.1/debian/clean
--- celery-4.2.1/debian/clean	2018-09-26 07:02:43.000000000 -0400
+++ celery-4.2.1/debian/clean	2019-03-07 16:14:11.000000000 -0500
@@ -3,3 +3,7 @@
 test.db
 celery.egg-info/requires.txt
 celery.egg-info/PKG-INFO
+celery.egg-info/SOURCES.txt
+.pytest_cache/README.md
+.pytest_cache/v/cache/nodeids
+.pytest_cache/v/cache/stepwise
diff -Nru celery-4.2.1/debian/control celery-4.2.1/debian/control
--- celery-4.2.1/debian/control	2018-09-26 07:02:43.000000000 -0400
+++ celery-4.2.1/debian/control	2019-03-07 16:14:11.000000000 -0500
@@ -56,7 +56,7 @@
  python3-vine,
  texlive-latex-base,
  texlive-latex-extra,
-Standards-Version: 4.1.4
+Standards-Version: 4.3.0
 Vcs-Browser: https://salsa.debian.org/python-team/modules/celery
 Vcs-Git: https://salsa.debian.org/python-team/modules/celery.git
 Homepage: http://www.celeryproject.org/
diff -Nru celery-4.2.1/debian/patches/0010-Relax-version-requirements-on-billiard.patch celery-4.2.1/debian/patches/0010-Relax-version-requirements-on-billiard.patch
--- celery-4.2.1/debian/patches/0010-Relax-version-requirements-on-billiard.patch	1969-12-31 19:00:00.000000000 -0500
+++ celery-4.2.1/debian/patches/0010-Relax-version-requirements-on-billiard.patch	2019-03-07 16:14:11.000000000 -0500
@@ -0,0 +1,17 @@
+From: Michael Fladischer <FladischerMichael@fladi.at>
+Date: Thu, 7 Mar 2019 17:50:22 +0100
+Subject: Relax version requirements on billiard.
+
+---
+ requirements/default.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/requirements/default.txt b/requirements/default.txt
+index 11d527f..e3f626c 100644
+--- a/requirements/default.txt
++++ b/requirements/default.txt
+@@ -1,3 +1,3 @@
+ pytz>dev
+-billiard>=3.5.0.2,<3.6.0
++billiard>=3.5.0.2
+ kombu>=4.2.0,<5.0
diff -Nru celery-4.2.1/debian/patches/py37-skip-tests.diff celery-4.2.1/debian/patches/py37-skip-tests.diff
--- celery-4.2.1/debian/patches/py37-skip-tests.diff	2018-09-26 07:12:51.000000000 -0400
+++ celery-4.2.1/debian/patches/py37-skip-tests.diff	2019-03-07 16:14:11.000000000 -0500
@@ -1,9 +1,16 @@
-Description: skip some tests that fail with py 3.7
-Author: Matthias Klose <doko@ubuntu.com>
+From: Matthias Klose <doko@ubuntu.com>
+Date: Thu, 7 Mar 2019 17:49:54 +0100
+Subject: skip some tests that fail with py 3.7
+
 Bug: https://github.com/celery/celery/issues/4913
+---
+ t/unit/worker/test_loops.py | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
 
---- celery-4.2.1.orig/t/unit/worker/test_loops.py
-+++ celery-4.2.1/t/unit/worker/test_loops.py
+diff --git a/t/unit/worker/test_loops.py b/t/unit/worker/test_loops.py
+index 5c96175..b0a323c 100644
+--- a/t/unit/worker/test_loops.py
++++ b/t/unit/worker/test_loops.py
 @@ -4,7 +4,7 @@ import errno
  import socket
  
diff -Nru celery-4.2.1/debian/patches/series celery-4.2.1/debian/patches/series
--- celery-4.2.1/debian/patches/series	2018-09-26 07:11:58.000000000 -0400
+++ celery-4.2.1/debian/patches/series	2019-03-07 16:14:11.000000000 -0500
@@ -7,3 +7,4 @@
 0008-Python-3.7-compat-issues-4852.patch
 0008-Added-compatibility-with-python-3.7-4902.patch
 py37-skip-tests.diff
+0010-Relax-version-requirements-on-billiard.patch

--- End Message ---
--- Begin Message ---
On 13/03/2019 12:45, Scott Kitterman wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package celery
> 
> Celery 4.2.1-3 fixes RC bug #923719.
> 
> I didn't upload this package, but I'm filing the unblock request because the
> uploader asked me to due to lack of time this week to do it themselves.
> 
> The package was uploaded before final freeze was in effect, so it's not a
> completely minimal change, but the other changes are minor and do not present
> a regression risk.
> 
> If you'd prefer the fix re-uploaded without the other changes, please let us
> know.
> 
> unblock celery/4.2.1-3

It's already unblocked:

Hints in place:
==> ivodd
  # 20190311
  # #923719
  unblock celery/4.2.1-3

Cheers,
Emilio

--- End Message ---

Reply to: