[SCM] Packaging for pytango branch, master, updated. debian/8.0.2-1-5-g347cfbf

Picca Frédéric-Emma?==?UTF-8?Q?nuel picca at debian.org
Wed May 29 05:34:19 UTC 2013


The following commit has been merged in the master branch:
commit 7857da88f2b0d7401f0ef4f84f62844842de4375
Author: Picca Frédéric-Emmanuel <picca at debian.org>
Date:   Mon May 20 22:11:36 2013 +0200

    prepare for upload of 8.0.3-1

diff --git a/debian/changelog b/debian/changelog
index b132784..d42f63b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+pytango (8.0.3-1) unstable; urgency=low
+
+  * Imported Upstream version 8.0.3
+  * debian/rules
+    - updated the clean target to build twice.
+  * debian/patches
+    - 0001-feature-forwarded-fix-FTBFS-with-sphinx-beta-version.patch (deleted)
+      this patch was applyed by the upstream
+
+ -- Picca Frédéric-Emmanuel <picca at debian.org>  Mon, 20 May 2013 22:05:20 +0200
+
 pytango (8.0.2-1) unstable; urgency=low
 
   * debian/patches
diff --git a/debian/patches/0001-feature-forwarded-fix-FTBFS-with-sphinx-beta-version.patch b/debian/patches/0001-feature-forwarded-fix-FTBFS-with-sphinx-beta-version.patch
deleted file mode 100644
index 6b90da0..0000000
--- a/debian/patches/0001-feature-forwarded-fix-FTBFS-with-sphinx-beta-version.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From: =?UTF-8?q?Picca=20Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca at debian.org>
-Date: Tue, 7 May 2013 09:26:08 +0200
-Subject: feature forwarded fix FTBFS with sphinx beta version
-
----
- setup.py |   14 ++++++--------
- 1 file changed, 6 insertions(+), 8 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index b8575f4..b3506bd 100644
---- a/setup.py
-+++ b/setup.py
-@@ -33,6 +33,7 @@ from distutils.command.build import build as dftbuild
- from distutils.command.build_ext import build_ext as dftbuild_ext
- from distutils.command.install import install as dftinstall
- from distutils.unixccompiler import UnixCCompiler
-+from distutils.version import StrictVersion as V
- import distutils.sysconfig
- 
- try:
-@@ -46,8 +47,7 @@ except:
- try:
-     import IPython
-     _IPY_ROOT = os.path.dirname(os.path.abspath(IPython.__file__))
--    _IPY_VER = list(map(int, IPython.__version__.split(".")[:2]))
--    if _IPY_VER > [0,10]:
-+    if V(IPython.__version__) > V('0.10'):
-         import IPython.utils.path
-         get_ipython_dir = IPython.utils.path.get_ipython_dir
-     else:
-@@ -151,7 +151,7 @@ class build(dftbuild):
-             self.warn("NOT using numpy: numpy available but C source is not")
-         
-         if IPython and not self.without_ipython:
--            if _IPY_VER > [0,10]:
-+            if V(IPython.__version__) > V("0.10"):
-                 self.distribution.py_modules.append('IPython.config.profile.tango.ipython_config')
-             else:
-                 self.distribution.py_modules.append('IPython.Extensions.ipy_profile_tango')
-@@ -182,8 +182,7 @@ class build(dftbuild):
-             return False
-         if sphinx is None:
-             return False
--        v = list(map(int, sphinx.__version__.split(".")))
--        if v <= [0,6,5]:
-+        if V(sphinx.__version__) <= V("0.6.5"):
-             print("Documentation will not be generated: sphinx version (%s) too low. Needs 0.6.6" % sphinx.__version__)
-             return False 
-         setup_dir = os.path.dirname(os.path.abspath(__file__))
-@@ -206,9 +205,8 @@ class build_ext(dftbuild_ext):
-             import subprocess
-             compiler = self.compiler.compiler
-             pipe = subprocess.Popen(compiler + ["-dumpversion"], stdout=subprocess.PIPE).stdout
--            gcc_ver = pipe.readlines()[0].decode().strip().split(".")
--            gcc_ver = list(map(int, gcc_ver))
--            if gcc_ver >= [4,3,3]:
-+            gcc_ver = pipe.readlines()[0].decode().strip()
-+            if V(gcc_ver) >= V("4.3.3"):
-                 self.use_cpp_0x = True
-         dftbuild_ext.build_extensions(self)
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 56c337f..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-feature-forwarded-fix-FTBFS-with-sphinx-beta-version.patch

-- 
Packaging for pytango



More information about the debian-science-commits mailing list