diff -Nru ros-genlisp-0.4.15/debian/changelog ros-genlisp-0.4.16/debian/changelog --- ros-genlisp-0.4.15/debian/changelog 2016-07-11 13:56:02.000000000 +0000 +++ ros-genlisp-0.4.16/debian/changelog 2016-09-17 16:18:42.000000000 +0000 @@ -1,3 +1,14 @@ +ros-genlisp (0.4.16-1) unstable; urgency=medium + + * Bumped Standards-Version to 3.9.8, no changes needed. + * Update Vcs URLs + * Update my email address + * Remove lintian override, fixed in lintian 2.5.47 + * New upstream version 0.4.16 + * Remove patch (accepted upstream) + + -- Jochen Sprickerhof Sat, 17 Sep 2016 18:18:42 +0200 + ros-genlisp (0.4.15-5) unstable; urgency=medium * Add patch to make message build reproducible diff -Nru ros-genlisp-0.4.15/debian/control ros-genlisp-0.4.16/debian/control --- ros-genlisp-0.4.15/debian/control 2016-02-13 16:03:16.000000000 +0000 +++ ros-genlisp-0.4.16/debian/control 2016-09-17 16:15:50.000000000 +0000 @@ -3,13 +3,13 @@ Priority: optional Maintainer: Debian Science Maintainers Uploaders: Thomas Moulard , - Jochen Sprickerhof , + Jochen Sprickerhof , Leopold Palomo-Avellaneda Build-Depends: debhelper (>= 9), catkin (>= 0.6.16-4), python-genmsg, python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), dh-python -Standards-Version: 3.9.6 -Homepage: https://github.com/ros/genlisp -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/ros/ros-genlisp.git -Vcs-Git: git://anonscm.debian.org/debian-science/packages/ros/ros-genlisp.git +Standards-Version: 3.9.8 +Homepage: http://wiki.ros.org/genlisp +Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/ros/ros-genlisp.git +Vcs-Git: https://anonscm.debian.org/cgit/debian-science/packages/ros/ros-genlisp.git X-Python-Version: >= 2.7 Package: python-genlisp diff -Nru ros-genlisp-0.4.15/debian/copyright ros-genlisp-0.4.16/debian/copyright --- ros-genlisp-0.4.15/debian/copyright 2015-10-19 07:32:13.000000000 +0000 +++ ros-genlisp-0.4.16/debian/copyright 2016-09-17 16:15:50.000000000 +0000 @@ -37,7 +37,7 @@ Files: debian/* Copyright: 2015, Thomas Moulard , - Jochen Sprickerhof , + Jochen Sprickerhof , Leopold Palomo-Avellaneda License: BSD-3-clause diff -Nru ros-genlisp-0.4.15/debian/patches/0002-sort-message-list-to-make-build-reproducible.patch ros-genlisp-0.4.16/debian/patches/0002-sort-message-list-to-make-build-reproducible.patch --- ros-genlisp-0.4.15/debian/patches/0002-sort-message-list-to-make-build-reproducible.patch 2016-07-11 13:54:28.000000000 +0000 +++ ros-genlisp-0.4.16/debian/patches/0002-sort-message-list-to-make-build-reproducible.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -From: Jochen Sprickerhof -Date: Mon, 11 Jul 2016 15:53:40 +0200 -Subject: sort message list to make build reproducible - ---- - src/genlisp/generate.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/genlisp/generate.py b/src/genlisp/generate.py -index b187127..d1d3ce7 100644 ---- a/src/genlisp/generate.py -+++ b/src/genlisp/generate.py -@@ -736,7 +736,7 @@ def msg_list(pkg, search_path, ext): - files = [] - for d in dir_list: - files.extend([f for f in os.listdir(d) if f.endswith(ext)]) -- return [f[:-len(ext)] for f in files] -+ return sorted([f[:-len(ext)] for f in files]) - - def generate_msg_from_spec(msg_context, spec, search_path, output_dir, package): - """ diff -Nru ros-genlisp-0.4.15/debian/patches/series ros-genlisp-0.4.16/debian/patches/series --- ros-genlisp-0.4.15/debian/patches/series 2016-07-11 13:54:28.000000000 +0000 +++ ros-genlisp-0.4.16/debian/patches/series 2016-09-17 16:17:54.000000000 +0000 @@ -1,2 +1 @@ 0001-Fix-location-of-gen_lisp.py.patch -0002-sort-message-list-to-make-build-reproducible.patch diff -Nru ros-genlisp-0.4.15/debian/source.lintian-overrides ros-genlisp-0.4.16/debian/source.lintian-overrides --- ros-genlisp-0.4.15/debian/source.lintian-overrides 2015-10-19 07:32:13.000000000 +0000 +++ ros-genlisp-0.4.16/debian/source.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -# all catkin packages contain a package.xml -genlisp source: pear-package-without-pkg-php-tools-builddep diff -Nru ros-genlisp-0.4.15/package.xml ros-genlisp-0.4.16/package.xml --- ros-genlisp-0.4.15/package.xml 2015-04-08 13:58:11.000000000 +0000 +++ ros-genlisp-0.4.16/package.xml 2016-09-02 18:23:45.000000000 +0000 @@ -1,7 +1,7 @@ genlisp - 0.4.15 + 0.4.16 Common-Lisp ROS message and service generators. diff -Nru ros-genlisp-0.4.15/src/genlisp/generate.py ros-genlisp-0.4.16/src/genlisp/generate.py --- ros-genlisp-0.4.15/src/genlisp/generate.py 2015-04-08 13:58:11.000000000 +0000 +++ ros-genlisp-0.4.16/src/genlisp/generate.py 2016-09-02 18:23:45.000000000 +0000 @@ -607,6 +607,7 @@ for line in lines: l = line.replace('\\', '\\\\') l = l.replace('"', '\\"') + l = l.replace('~', '~~') s.write('%s~%%'%l, indent=False) s.write('~%', indent=False) s.write('"))', indent=False) @@ -736,7 +737,8 @@ files = [] for d in dir_list: files.extend([f for f in os.listdir(d) if f.endswith(ext)]) - return [f[:-len(ext)] for f in files] + # sort list because listdir is filesystem specific + return sorted([f[:-len(ext)] for f in files]) def generate_msg_from_spec(msg_context, spec, search_path, output_dir, package): """