=== modified file 'Makefile' --- Makefile 2012-05-20 13:52:09 +0000 +++ Makefile 2012-05-24 18:10:10 +0000 @@ -71,8 +71,10 @@ /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \ $(notdir $<); \ $(MANPOST) $(notdir $@);\ - LANG=en_US.UTF-8 MANWIDTH=80 man --warnings --encoding=UTF-8 \ - --local-file $(notdir $@) >/dev/null) + if locale --all | grep --regexp='^en_US\.utf8$$' && type man \ + 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 man \ + --warnings --encoding=UTF-8 --local-file $(notdir $@); fi \ + >/dev/null) # DocBook-to-man post-processing to fix a '\n' escape bug MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g' === modified file 'debian/control' --- debian/control 2012-05-12 19:54:59 +0000 +++ debian/control 2012-05-24 18:10:10 +0000 @@ -6,8 +6,8 @@ Björn Påhlsson Build-Depends: debhelper (>= 7), docbook-xml, docbook-xsl, libavahi-core-dev, libgpgme11-dev, libgnutls-dev, xsltproc, - pkg-config, man, locales-all -Standards-Version: 3.9.2 + pkg-config +Standards-Version: 3.9.3 Vcs-Bzr: http://ftp.recompile.se/pub/mandos/trunk Vcs-Browser: http://bzr.recompile.se/loggerhead/mandos/trunk/files Homepage: http://www.recompile.se/mandos === modified file 'debian/copyright' --- debian/copyright 2011-12-31 23:05:34 +0000 +++ debian/copyright 2012-05-24 18:10:10 +0000 @@ -1,4 +1,4 @@ -Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=202 +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Mandos Upstream-Contact: Mandos Source: === modified file 'mandos' --- mandos 2012-05-20 13:52:09 +0000 +++ mandos 2012-05-24 18:10:10 +0000 @@ -151,7 +151,7 @@ def __enter__(self): return self - def __exit__ (self, exc_type, exc_value, traceback): + def __exit__(self, exc_type, exc_value, traceback): self._cleanup() return False @@ -1016,7 +1016,7 @@ return xmlstring -def datetime_to_dbus (dt, variant_level=0): +def datetime_to_dbus(dt, variant_level=0): """Convert a UTC datetime.datetime() to a D-Bus type.""" if dt is None: return dbus.String("", variant_level = variant_level) @@ -1030,8 +1030,8 @@ interface names according to the "alt_interface_names" mapping. Usage: - @alternate_dbus_names({"org.example.Interface": - "net.example.AlternateInterface"}) + @alternate_dbus_interfaces({"org.example.Interface": + "net.example.AlternateInterface"}) class SampleDBusObject(dbus.service.Object): @dbus.service.method("org.example.Interface") def SampleDBusMethod():