[Python-modules-commits] r19465 - in packages/celery/trunk/debian (8 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Tue Nov 29 07:47:02 UTC 2011


    Date: Tuesday, November 29, 2011 @ 07:47:01
  Author: fladi-guest
Revision: 19465

Fix packaging issues spotted by jwilk.

Modified:
  packages/celery/trunk/debian/changelog
  packages/celery/trunk/debian/clean
  packages/celery/trunk/debian/control
  packages/celery/trunk/debian/patches/fix_dependencies.patch
  packages/celery/trunk/debian/python-celery-doc.links
  packages/celery/trunk/debian/rules
Deleted:
  packages/celery/trunk/debian/help2man.include
  packages/celery/trunk/debian/source/local-options

Modified: packages/celery/trunk/debian/changelog
===================================================================
--- packages/celery/trunk/debian/changelog	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/changelog	2011-11-29 07:47:01 UTC (rev 19465)
@@ -1,5 +1,5 @@
-celery (2.4.2-1) UNRELEASED; urgency=low
+celery (2.4.2-1) unstable; urgency=low
 
   * Initial release (Closes: #526350)
 
- -- Fladischer Michael <FladischerMichael at fladi.at>  Wed, 16 Nov 2011 08:50:31 +0100
+ -- Fladischer Michael <FladischerMichael at fladi.at>  Fri, 18 Nov 2011 12:42:29 +0100

Modified: packages/celery/trunk/debian/clean
===================================================================
--- packages/celery/trunk/debian/clean	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/clean	2011-11-29 07:47:01 UTC (rev 19465)
@@ -4,3 +4,5 @@
 celeryd-multi.1
 celeryev.1
 camqadm.1
+celery.egg-info/PKG-INFO
+celery.egg-info/SOURCES.txt

Modified: packages/celery/trunk/debian/control
===================================================================
--- packages/celery/trunk/debian/control	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/control	2011-11-29 07:47:01 UTC (rev 19465)
@@ -37,10 +37,11 @@
          python-kombu (>= 1.4.3),
          python-mailer,
          python-memcache,
+         python-pkg-resources,
          python-pyparsing,
          ${misc:Depends},
          ${python:Depends}
-Suggests: python-pytyrant, python-redis, python-sqlalchemy, python-gevent,
+Suggests: python-gevent, python-pytyrant, python-redis, python-sqlalchemy
 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,
@@ -62,7 +63,7 @@
 Package: python-celery-doc
 Section: doc
 Architecture: all
-Depends: libjs-jquery, python-celery, ${misc:Depends}, ${sphinxdoc:Depends}
+Depends: libjs-jquery, ${misc:Depends}, ${sphinxdoc:Depends}
 Description: async task/job queue based on message passing (Documentation)
  Celery is an open source asynchronous task queue/job queue based on
  distributed message passing. It is focused on real-time operation,

Deleted: packages/celery/trunk/debian/help2man.include
===================================================================
--- packages/celery/trunk/debian/help2man.include	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/help2man.include	2011-11-29 07:47:01 UTC (rev 19465)
@@ -1,7 +0,0 @@
-[authors]
-.B Celery
-was primarily written by Ask Solem Hoel.
-[see also]
-Full documentation for the
-.B celery
-suite is stored at http://celeryq.org/docs/

Modified: packages/celery/trunk/debian/patches/fix_dependencies.patch
===================================================================
--- packages/celery/trunk/debian/patches/fix_dependencies.patch	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/patches/fix_dependencies.patch	2011-11-29 07:47:01 UTC (rev 19465)
@@ -1,7 +1,8 @@
-Description: nose-cover3 is not essential for building this package. 
- Removing it thwarts any attempts to download it during build.
+Description: Remove pretty-printing nose-cover3 from build.
+ nose-cover3 is not essential to the build-proccess and is not packaged
+ for Debian. Thus removing it from the sources.
 Author: Fladischer Michael <FladischerMichael at fladi.at>
-Last-Update: 2011-02-22
+Last-Update: 2011-11-28
 Forwared: not-needed
 
 --- a/setup.cfg
@@ -52,12 +53,3 @@
  is_py3k  = sys.version_info >= (3, 0)
  if is_py3k:
      extra.update(use_2to3=True)
-@@ -54,7 +54,7 @@
- if is_py3k:
-     install_requires.append("python-dateutil>=2.0.0")
- else:
--    install_requires.append("python-dateutil>=1.5.0,<2.0.0")
-+    install_requires.append("python-dateutil>=1.5.0,<=2.0.0")
- 
- py_version = sys.version_info
- is_jython = sys.platform.startswith("java")

Modified: packages/celery/trunk/debian/python-celery-doc.links
===================================================================
--- packages/celery/trunk/debian/python-celery-doc.links	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/python-celery-doc.links	2011-11-29 07:47:01 UTC (rev 19465)
@@ -1 +1 @@
-usr/share/doc/python-kombu-doc/html/_sources usr/share/doc/python-kombu-doc/rst
+usr/share/doc/python-celery-doc/html/_sources usr/share/doc/python-celery-doc/rst

Modified: packages/celery/trunk/debian/rules
===================================================================
--- packages/celery/trunk/debian/rules	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/rules	2011-11-29 07:47:01 UTC (rev 19465)
@@ -28,9 +28,10 @@
 
 .PHONY: override_dh_compress
 override_dh_compress:
-	dh_compress -X .js -X .html
+	dh_compress -X .js
 
 .PHONY: override_dh_clean
 override_dh_clean:
 	rm -rf .build
+	dh_clean
 

Deleted: packages/celery/trunk/debian/source/local-options
===================================================================
--- packages/celery/trunk/debian/source/local-options	2011-11-28 23:57:09 UTC (rev 19464)
+++ packages/celery/trunk/debian/source/local-options	2011-11-29 07:47:01 UTC (rev 19465)
@@ -1 +0,0 @@
-abort-on-upstream-changes




More information about the Python-modules-commits mailing list