[Python-modules-commits] r22441 - in packages/django-celery/trunk/debian (4 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Wed Jul 18 08:33:06 UTC 2012


    Date: Wednesday, July 18, 2012 @ 08:33:04
  Author: fladi-guest
Revision: 22441

Do not build issues by default, they need a network connection. Thanks to Evgeni Golov for the patch! (Closes: #681379)

Added:
  packages/django-celery/trunk/debian/patches/no-issues.patch
Modified:
  packages/django-celery/trunk/debian/changelog
  packages/django-celery/trunk/debian/patches/series
  packages/django-celery/trunk/debian/rules

Modified: packages/django-celery/trunk/debian/changelog
===================================================================
--- packages/django-celery/trunk/debian/changelog	2012-07-16 20:31:35 UTC (rev 22440)
+++ packages/django-celery/trunk/debian/changelog	2012-07-18 08:33:04 UTC (rev 22441)
@@ -1,3 +1,10 @@
+django-celery (2.5.5-2) unstable; urgency=low
+
+  * Do not build issues by default, they need a network connection. Thanks to
+    Evgeni Golov for the patch! (Closes: #681379)
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Wed, 18 Jul 2012 10:14:52 +0200
+
 django-celery (2.5.5-1) unstable; urgency=low
 
   * New upstream release.

Added: packages/django-celery/trunk/debian/patches/no-issues.patch
===================================================================
--- packages/django-celery/trunk/debian/patches/no-issues.patch	                        (rev 0)
+++ packages/django-celery/trunk/debian/patches/no-issues.patch	2012-07-18 08:33:04 UTC (rev 22441)
@@ -0,0 +1,20 @@
+Description: Do not build issues if DEB_BUILD_ISSUES=disabled
+   Building the issues via sphinxcontrib.issuetracker requires
+   a network connection which is not available on Debian
+   buildds.
+Author: Evgeni Golov <evgeni at debian.org>
+Bug-Debian: http://bugs.debian.org/681379
+
+--- django-celery-2.5.5.orig/docs/conf.py
++++ django-celery-2.5.5/docs/conf.py
+@@ -77,6 +77,7 @@ html_sidebars = {
+ }
+ 
+ ### Issuetracker
+-issuetracker = "github"
+-issuetracker_project = "ask/django-celery"
+-issuetracker_issue_pattern = r'[Ii]ssue #(\d+)'
++if os.environ.get("DEB_BUILD_ISSUES", False) != "disabled":
++    issuetracker = "github"
++    issuetracker_project = "ask/django-celery"
++    issuetracker_issue_pattern = r'[Ii]ssue #(\d+)'

Modified: packages/django-celery/trunk/debian/patches/series
===================================================================
--- packages/django-celery/trunk/debian/patches/series	2012-07-16 20:31:35 UTC (rev 22440)
+++ packages/django-celery/trunk/debian/patches/series	2012-07-18 08:33:04 UTC (rev 22441)
@@ -1,2 +1,3 @@
 skip_tests.patch
 fix_dependencies.patch
+no-issues.patch

Modified: packages/django-celery/trunk/debian/rules
===================================================================
--- packages/django-celery/trunk/debian/rules	2012-07-16 20:31:35 UTC (rev 22440)
+++ packages/django-celery/trunk/debian/rules	2012-07-18 08:33:04 UTC (rev 22441)
@@ -12,7 +12,7 @@
 
 .PHONY: override_dh_auto_build
 override_dh_auto_build:
-	PYTHONPATH=. sphinx-build -b html -d .build/.doctrees -N docs .build/html
+	PYTHONPATH=. DEB_BUILD_ISSUES=disabled sphinx-build -b html -d .build/.doctrees -N docs .build/html
 	dh_auto_build
 
 .PHONY: override_dh_compress




More information about the Python-modules-commits mailing list