Your message dated Sun, 17 Aug 2014 15:00:06 +0000
with message-id <[email protected]>
and subject line Bug#753555: fixed in celery 3.1.12-2
has caused the Debian Bug report #753555,
regarding python-celery: python3 package
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 [email protected]
immediately.)


-- 
753555: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=753555
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-celery
Version: 3.1.11-1
Severity: wishlist

I had a try at doing this, but unfortunately many of the dependancies
cannot be satisified (Python2 and Python3) just yet.


The following packages have unmet dependencies:
 sbuild-build-depends-celery-dummy : Depends: python-kombu (>= 3.0.19) but 
3.0.15-1 is to be installed
                                     Depends: python-kombu-doc (>= 3.0.19) but 
it is not going to be installed
                                     Depends: python3-cl but it is not 
installable
                                     Depends: python3-gevent but it is not 
installable
                                     Depends: python3-kombu (>= 3.0.19) but it 
is not installable
                                     Depends: python3-kombu-doc (>= 3.0.19) but 
it is not installable
                                     Depends: python3-mailer but it is not 
installable
                                     Depends: python3-pytyrant but it is not 
installable
                                     Depends: python3-unittest2 but it is not 
installable



Index: debian/python-celery.install
===================================================================
--- debian/python-celery.install        (revision 29601)
+++ debian/python-celery.install        (working copy)
@@ -1 +0,0 @@
-usr/
Index: debian/control
===================================================================
--- debian/control      (revision 29601)
+++ debian/control      (working copy)
@@ -3,33 +3,22 @@
 Priority: optional
 Maintainer: Debian Python Modules Team 
<[email protected]>
 Uploaders: Michael Fladischer <[email protected]>
-Build-Depends: debhelper (>= 8.1.0~),
-               docbook-to-man,
-               dvipng,
-               locales,
-               texlive-latex-base,
-               texlive-latex-extra,
-               python-all (>= 2.7),
-               python-billiard (>= 3.3.0.17),
-               python-cl,
-               python-dateutil (>= 1.5),
-               python-doc,
-               python-gevent,
-               python-kombu (>= 3.0.19),
-               python-kombu-doc (>= 3.0.19),
-               python-mailer,
-               python-memcache,
-               python-mock (>= 1.0.1),
-               python-nose,
-               python-openssl,
-               python-pyparsing,
-               python-pytyrant,
-               python-redis,
-               python-setuptools,
-               python-sphinx (>= 1.0.7+dfsg),
-               python-sqlalchemy,
-               python-tz,
-               python-unittest2
+Build-Depends: debhelper (>= 8.1.0~), dh-python,
+ docbook-to-man, dvipng, locales, texlive-latex-base, texlive-latex-extra,
+ python-all (>= 2.7), python-billiard (>= 3.3.0.17), python-cl,
+ python-dateutil (>= 1.5), python-doc, python-gevent,
+ python-kombu (>= 3.0.19), python-kombu-doc (>= 3.0.19), python-mailer,
+ python-memcache, python-mock (>= 1.0.1), python-nose,
+ python-openssl, python-pyparsing, python-pytyrant,
+ python-redis, python-setuptools, python-sphinx (>= 1.0.7+dfsg),
+ python-sqlalchemy, python-tz, python-unittest2,
+ python3-all, python3-billiard (>= 3.3.0.17), python3-cl,
+ python3-dateutil (>= 1.5), python3-doc, python3-gevent,
+ python3-kombu (>= 3.0.19), python3-kombu-doc (>= 3.0.19), python3-mailer,
+ python3-memcache, python3-mock (>= 1.0.1), python3-nose,
+ python3-openssl, python3-pyparsing, python3-pytyrant,
+ python3-redis, python3-setuptools, python3-sphinx (>= 1.0.7+dfsg),
+ python3-sqlalchemy, python3-tz, python3-unittest2
 X-Python-Version: >= 2.7
 XS-Testsuite: autopkgtest
 Standards-Version: 3.9.5
@@ -69,6 +58,38 @@
  ORM) is also available. Celery is easy to integrate with Django, using the
  python-django-celery package.
 
+Package: python3-celery
+Architecture: all
+Depends: python3-billiard (>= 3.3.0.17),
+         python3-cl,
+         python3-dateutil (>= 1.5),
+         python3-kombu (>= 3.0.19),
+         python3-mailer,
+         python3-memcache,
+         python3-pkg-resources,
+         python3-pyparsing,
+         python3-tz,
+         ${misc:Depends},
+         ${python3:Depends}
+Suggests: python-gevent, python-pytyrant, python-redis, python-sqlalchemy, 
python-celery-doc
+Description: async task/job queue based on message passing
+ Celery is an open source asynchronous task queue/job queue based on
+ distributed message passing. It is focused on real-time operation,
+ but supports scheduling as well.
+ .
+ The execution units, called tasks, are executed concurrently on one
+ or more worker nodes. Tasks can execute asynchronously (in the
+ background) or synchronously (wait until ready).
+ .
+ Celery is written in Python, but the protocol can be implemented
+ in any language. It can also operate with other languages using
+ webhooks.
+ .
+ The recommended message broker is RabbitMQ, but limited support for Redis,
+ Beanstalk, MongoDB, CouchDB, and databases (using SQLAlchemy or the Django
+ ORM) is also available. Celery is easy to integrate with Django, using the
+ python-django-celery package.
+
 Package: python-celery-doc
 Section: doc
 Architecture: all
Index: debian/rules
===================================================================
--- debian/rules        (revision 29601)
+++ debian/rules        (working copy)
@@ -1,7 +1,9 @@
 #!/usr/bin/make -f
 
+export PYBUILD_NAME=celery
+
 %:
-       dh $@ --with python2,sphinxdoc
+       dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
 
 .PHONY: override_dh_installman
 override_dh_installman:






-- System Information:
Debian Release: 7.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14-0.bpo.1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages python-celery depends on:
ii  adduser               3.113+nmu3
ii  python                2.7.3-4+deb7u1
ii  python-amqplib        1.0.2-1
ii  python-anyjson        0.3.1-2
ii  python-cl             0.0.3-1
ii  python-dateutil       1.5+dfsg-0.1
ii  python-kombu          2.1.8-1
ii  python-mailer         0.7-1
ii  python-memcache       1.48-1
ii  python-pkg-resources  0.6.24-1
ii  python-pyparsing      1.5.6+dfsg1-2

python-celery recommends no packages.

Versions of packages python-celery suggests:
pn  python-gevent      <none>
pn  python-pytyrant    <none>
pn  python-redis       <none>
pn  python-sqlalchemy  <none>

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: celery
Source-Version: 3.1.12-2

We believe that the bug you reported is fixed in the latest version of
celery, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brian May <[email protected]> (supplier of updated celery package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Wed, 13 Aug 2014 12:13:59 +1000
Source: celery
Binary: python-celery-common python-celery python3-celery python-celery-doc 
celeryd
Architecture: source all
Version: 3.1.12-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<[email protected]>
Changed-By: Brian May <[email protected]>
Description:
 celeryd    - async task/job queue based on message passing (daemons)
 python-celery - async task/job queue based on message passing
 python-celery-common - async task/job queue based on message passing
 python-celery-doc - async task/job queue based on message passing 
(Documentation)
 python3-celery - async task/job queue based on message passing
Closes: 753555 757897
Changes:
 celery (3.1.12-2) unstable; urgency=medium
 .
   [ Michael Fladischer ]
   * Drop python-cl from Depends and Build-Depends as it is no longer needed.
 .
   [ Brian May ]
   * Python3 package. Closes: #753555.
   * Change certificate test, as test certificate has expired. Closes: #757897.
Checksums-Sha1:
 68f113b9bf548fd32e05203d77ec7f79c6845d0b 3050 celery_3.1.12-2.dsc
 f3982c49ac653163446b4dac57e61f7d81991ca0 1291525 celery_3.1.12.orig.tar.gz
 958790f9a268604cdebd2f88abab480a5d727528 17356 celery_3.1.12-2.debian.tar.xz
 8f7bee22f22663b6c276a1792d17a63f8f16e110 17828 
python-celery-common_3.1.12-2_all.deb
 66ce1d65f4d01ade64d9cf5ff6c754cc402ca5d6 350012 python-celery_3.1.12-2_all.deb
 d826b2444ad47d47e33f331cbac542b62ffa4718 337364 python3-celery_3.1.12-2_all.deb
 043eade73326bfd83cfcf3894396834e8123b357 1390212 
python-celery-doc_3.1.12-2_all.deb
 49029ee3a73a7716bfe9a753d516a885b4fd44e8 22448 celeryd_3.1.12-2_all.deb
Checksums-Sha256:
 9799b2589f4fbb9833de6c564714b6d6339d49caa7dcfd25e7e3f68a969c44a8 3050 
celery_3.1.12-2.dsc
 22c8fba96b7522afacdf3ee6fd3da7b10b90f76de88686d13ee939da361254b1 1291525 
celery_3.1.12.orig.tar.gz
 f4f5484141da56d4eee455e223205694d8ca58ad454a1c348a36e407b6236099 17356 
celery_3.1.12-2.debian.tar.xz
 e403fff09d6214aa1b944f36311d9e73286ecc23b2735bcf89642a89c8f81710 17828 
python-celery-common_3.1.12-2_all.deb
 dd8c87a8452ee6769a53c010062aa59f8fe006643176e36f145b0f7088d13773 350012 
python-celery_3.1.12-2_all.deb
 cf64ee31fef07732a4c7bd316c8261893f26f87d3e5efa6400e3281609c008cf 337364 
python3-celery_3.1.12-2_all.deb
 5135db69985d14474698c83d60997c8c9f0c944db7c094af4b00cd18b2eb0b14 1390212 
python-celery-doc_3.1.12-2_all.deb
 33d063cb821635b50dbebbb88861c1182ecc59ced3a38a1850d2237a2233e4cb 22448 
celeryd_3.1.12-2_all.deb
Files:
 eb17050eef93926c46f814afd18a73e7 17828 python optional 
python-celery-common_3.1.12-2_all.deb
 d4db1ba33f0a22c44f76279f9046ac85 350012 python optional 
python-celery_3.1.12-2_all.deb
 b7ee9f6a3a7c7018b30152e6595d2a79 337364 python optional 
python3-celery_3.1.12-2_all.deb
 4408c30c0a675431affeb0450b97cca8 1390212 doc optional 
python-celery-doc_3.1.12-2_all.deb
 2d9bda8ecbf9d384e2a6d5a382b82521 22448 python optional celeryd_3.1.12-2_all.deb
 8a65a394c42e1ddb1aa05ee4a7a5697f 3050 python optional celery_3.1.12-2.dsc
 31927b26c3225fac0250ac4fe2849824 1291525 python optional 
celery_3.1.12.orig.tar.gz
 64a3f3f03d4046a55dad33af762b096e 17356 python optional 
celery_3.1.12-2.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJT6tDdAAoJEJyE7hq50CY2vMIP/1fgTuf7FSkLBq+tVukijhtR
JEFOAkBPZIKQoG1GyuZwrhpbLh2JgTnQvmJC1rfsj1HKguzoCn6MhXForexGGCN/
PYTLzHQR+eE/3NX5+N8Hg1NLKWIY9wNpaCXUY1z1Torncu7/YWUS9ob+l5AHR2I0
NBDVAgQiCi15FXCgGiFb7sXChuxcxcAd08sVL5oP5bTEOpW/Rv/gOhNtwhN6iFAE
QYPj2b/Zpf9Na8r+R+5fo7FjxFKI8pIPa0LfWgZXH3n1MQIFexkKTvp25dF3GFQN
msLdMOzg4ZBxfXtZ3c3wq8WLkqt2WtElCSoI7O7BeGezv3jqbIa/bwhothxHSMzk
CmyW4VorN4R0LPlQh8KcXNBPmA5yuubhN8v8Ap9wBgkuvNRtgmM2H9Ts/OLxiQpW
OFzd6jaZFGjsZJmaRLVqul/6Nb7EXwpzUtXiEzGrimkrp5QRneOdTvxIVOFFySUT
FfTLg/6wT47GPJdj+GhatrEJ6rhkn3Z/tT/3g/VPDvtFxivx4Dqs9LaPju97/A+/
p4L9OKVK/1tljKQdsnOcK/fbKYkdkGvtHbRqknELjZutWygZ6+FyG7W24Xp0N0T3
R6azaK88+Sf6dJmMDlZy1dchYZ26B81oAw40gWfMLdjAjkVREIin/fK2VyLB57f0
yM0lsBKhqCFEXBjBckzN
=GO8O
-----END PGP SIGNATURE-----

--- End Message ---
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to