Ubuntu Pastebin

Paste from nacc at Fri, 9 Jun 2017 16:57:20 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
diff -Nru sphinx-celery-1.3.1/debian/changelog sphinx-celery-1.3.1/debian/changelog
--- sphinx-celery-1.3.1/debian/changelog	2017-02-11 14:37:07.000000000 -0700
+++ sphinx-celery-1.3.1/debian/changelog	2017-06-09 10:21:15.000000000 -0600
@@ -1,3 +1,10 @@
+sphinx-celery (1.3.1-1ubuntu1) artful; urgency=medium
+
+  * Add python2 binary package, which is needed for newer celery builds. 
+    - Included DEP8 test.
+
+ -- Nishanth Aravamudan <nish.aravamudan@canonical.com>  Fri, 09 Jun 2017 10:21:15 -0600
+
 sphinx-celery (1.3.1-1) unstable; urgency=low
 
   * source package automatically created by stdeb 0.8.5. Closes: #854947
diff -Nru sphinx-celery-1.3.1/debian/control sphinx-celery-1.3.1/debian/control
--- sphinx-celery-1.3.1/debian/control	2017-02-11 14:37:07.000000000 -0700
+++ sphinx-celery-1.3.1/debian/control	2017-06-09 10:21:15.000000000 -0600
@@ -3,13 +3,28 @@
 Uploaders: Christopher Hoskin <mans0954@debian.org>
 Section: python
 Priority: optional
-Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9),
+Build-Depends: dh-python, python-setuptools, python-all, python-sphinx,
+ python-nose, python3-setuptools, python3-all, debhelper (>= 9),
  python3-sphinx (>= 1.4), python3-nose
 Standards-Version: 3.9.8
 Homepage: http://github.com/celery/sphinx_celery
 Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/sphinx-celery.git
 Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/sphinx-celery.git
 
+Package: python-sphinx-celery
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Sphinx Celery theme
+ This package provides the Celery sphinx theme and common Sphinx utilities,
+ including:
+ .
+  * Autodoc coverage checker builder extension - makes sure all modules in the
+    documented package are represented in the autodoc API reference
+  * Configuration Reference Checker builder extension - makes sure all settings
+    in the documented package are represented in the configuration reference
+ .
+ This package contains the Python 2 version of the library.
+
 Package: python3-sphinx-celery
 Architecture: all
 Depends: ${misc:Depends}, ${python3:Depends}
@@ -21,4 +36,5 @@
     documented package are represented in the autodoc API reference
   * Configuration Reference Checker builder extension - makes sure all settings
     in the documented package are represented in the configuration reference
-
+ .
+ This package contains the Python 3 version of the library.
diff -Nru sphinx-celery-1.3.1/debian/rules sphinx-celery-1.3.1/debian/rules
--- sphinx-celery-1.3.1/debian/rules	2017-02-11 14:37:07.000000000 -0700
+++ sphinx-celery-1.3.1/debian/rules	2017-06-09 10:21:15.000000000 -0600
@@ -4,5 +4,5 @@
 # Sat, 11 Feb 2017 21:37:07 +0000
 export PYBUILD_NAME=sphinx-celery
 %:
-	dh $@ --with python3 --buildsystem=pybuild
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
diff -Nru sphinx-celery-1.3.1/debian/tests/control sphinx-celery-1.3.1/debian/tests/control
--- sphinx-celery-1.3.1/debian/tests/control	2017-02-11 14:37:07.000000000 -0700
+++ sphinx-celery-1.3.1/debian/tests/control	2017-06-09 10:21:15.000000000 -0600
@@ -1,3 +1,5 @@
 Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import sphinx_celery; print(sphinx_celery)" ; done
 Depends: python3-all, python3-sphinx-celery
 
+Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import sphinx_celery; print(sphinx_celery)" ; done
+Depends: python-all, python-sphinx-celery
Download as text