=== modified file 'debian/control' --- debian/control 2013-12-15 15:38:51 +0000 +++ debian/control 2014-02-16 02:42:42 +0000 @@ -6,7 +6,8 @@ Björn Påhlsson Build-Depends: debhelper (>= 9), docbook-xml, docbook-xsl, libavahi-core-dev, libgpgme11-dev, libgnutls-dev, xsltproc, - pkg-config, systemd + pkg-config, systemd, python (>=2.6), python-gnutls, python-dbus, + python-avahi, python-gobject, python (>=2.7) | python-argparse Standards-Version: 3.9.4 Vcs-Bzr: http://ftp.recompile.se/pub/mandos/trunk Vcs-Browser: http://bzr.recompile.se/loggerhead/mandos/trunk/files === modified file 'debian/copyright' --- debian/copyright 2013-10-20 15:25:09 +0000 +++ debian/copyright 2014-02-16 02:42:42 +0000 @@ -22,4 +22,4 @@ . . On Debian systems, the complete text of the GNU General Public - License can be found in "/usr/share/common-licenses/GPL". + License can be found in "/usr/share/common-licenses/GPL-3". === modified file 'debian/watch' --- debian/watch 2011-10-05 16:00:56 +0000 +++ debian/watch 2014-02-16 02:42:42 +0000 @@ -1,2 +1,3 @@ version=3 -ftp://ftp.recompile.se/pub/mandos/mandos[-_]([^\s]+?)(?:\.orig)?\.tar\.(?:gz|bz2|7z|xz) +opts=pgpsigurlmangle=s/$/.asc/ \ + ftp://ftp.recompile.se/pub/mandos/mandos[-_]([^\s]+?)(?:\.orig)?\.tar\.(?:gz|bz2|7z|xz) === modified file 'mandos' --- mandos 2014-01-21 21:04:25 +0000 +++ mandos 2014-02-16 02:42:42 +0000 @@ -2343,8 +2343,8 @@ if options.check: import doctest - doctest.testmod() - sys.exit() + fail_count, test_count = doctest.testmod() + sys.exit(os.EX_OK if fail_count == 0 else 1) # Default values for config file for server-global settings server_defaults = { "interface": "", === modified file 'mandos-ctl' --- mandos-ctl 2014-01-21 21:04:25 +0000 +++ mandos-ctl 2014-02-16 02:42:42 +0000 @@ -331,7 +331,7 @@ if options.check: fail_count, test_count = doctest.testmod() - sys.exit(0 if fail_count == 0 else 1) + sys.exit(os.EX_OK if fail_count == 0 else 1) try: bus = dbus.SystemBus()