diff -Nru debhelper-7.3.15ubuntu1~bazaar1~hardy1/debian/changelog debhelper-7.3.15ubuntu1~bazaar1~hardy2/debian/changelog --- debhelper-7.3.15ubuntu1~bazaar1~hardy1/debian/changelog 2011-04-01 06:47:02.000000000 +0000 +++ debhelper-7.3.15ubuntu1~bazaar1~hardy2/debian/changelog 2011-05-15 16:35:45.000000000 +0000 @@ -1,3 +1,13 @@ +debhelper (7.3.15ubuntu1~bazaar1~hardy2) hardy; urgency=low + + * Backport fix to python_distutils buildsystem code from debhelper 7.4.3: + * python_distutils: Run default python last, not first, and pass --force + to setup.py install to ensure that timestamps do not prevent installation + of the scripts built for the default python, with unversioned shebang + lines. Closes: #547510 (Thanks, Andrew Straw) + + -- Max Bowsher <_@maxb.eu> Sun, 15 May 2011 17:35:36 +0100 + debhelper (7.3.15ubuntu1~bazaar1~hardy1) hardy; urgency=low * Backport to hardy: @@ -11,12 +21,6 @@ -- Max Bowsher Fri, 01 Apr 2011 07:46:21 +0100 -debhelper (7.3.15ubuntu1~bazaar1~jaunty1) jaunty; urgency=low - - * Rebuild karmic-vintage debhelper for jaunty, no changes made. - - -- Max Bowsher Thu, 31 Mar 2011 14:46:24 +0100 - debhelper (7.3.15ubuntu1) karmic; urgency=low * Resynchronise with Debian. Remaining changes: diff -Nru debhelper-7.3.15ubuntu1~bazaar1~hardy1/Debian/Debhelper/Buildsystem/python_distutils.pm debhelper-7.3.15ubuntu1~bazaar1~hardy2/Debian/Debhelper/Buildsystem/python_distutils.pm --- debhelper-7.3.15ubuntu1~bazaar1~hardy1/Debian/Debhelper/Buildsystem/python_distutils.pm 2011-03-31 23:17:43.000000000 +0000 +++ debhelper-7.3.15ubuntu1~bazaar1~hardy2/Debian/Debhelper/Buildsystem/python_distutils.pm 2011-05-15 16:34:15.000000000 +0000 @@ -108,9 +108,10 @@ my $this=shift; my $act=shift; - # We need to to run setup.py with the default python first + # We need to to run setup.py with the default python last # as distutils/setuptools modifies the shebang lines of scripts. - # This ensures that #!/usr/bin/python is used and not pythonX.Y + # This ensures that #!/usr/bin/python is installed last and + # not pythonX.Y # Take into account that the default Python must not be in # the requested Python versions. # Then, run setup.py with each available python, to build @@ -121,8 +122,10 @@ $python_default =~ s/\s+$//; my @python_requested = split ' ', `pyversions -r 2>/dev/null`; if (grep /^\Q$python_default\E/, @python_requested) { - @python_requested = ("python", grep(!/^\Q$python_default\E/, - @python_requested)); + @python_requested = ( + grep(!/^\Q$python_default\E/, @python_requested), + "python", + ); } my @python_dbg; @@ -137,7 +140,7 @@ } } - foreach my $python (@python_requested, @python_dbg) { + foreach my $python (@python_dbg, @python_requested) { if (-x "/usr/bin/".$python) { # To allow backports of debhelper we don't pass # --install-layout=deb to 'setup.py install` for @@ -167,6 +170,7 @@ my $this=shift; my $destdir=shift; $this->setup_py("install", + "--force", "--root=$destdir", "--no-compile", "-O0", diff -Nru debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/debhelper.pot debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/debhelper.pot --- debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/debhelper.pot 2011-04-01 06:47:20.000000000 +0000 +++ debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/debhelper.pot 2011-05-15 16:37:20.000000000 +0000 @@ -7,13 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-08-17 16:02-0300\n" +"POT-Creation-Date: 2011-05-15 17:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" +"Content-Transfer-Encoding: 8bit\n" #. type: =head1 #: debhelper.pod:1 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_desktop:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 dh_installdebconf:3 dh_installdeb:3 dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 dh_installmanpages:3 dh_installman:3 dh_installmenu:3 dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_install:3 dh_installppp:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_python:3 dh_scrollkeeper:3 dh_shlibdeps:3 dh_strip:3 dh_suidregister:3 dh_testdir:3 dh_testroot:3 dh_testversion:3 dh_undocumented:3 dh_usrlocal:3 @@ -1003,7 +1004,7 @@ msgstr "" #. type: =head1 -#: debhelper.pod:561 dh_builddeb:88 dh_clean:130 dh_compress:192 dh_desktop:27 dh_fixperms:122 dh_gconf:104 dh_gencontrol:79 dh_installcatalogs:109 dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 dh_installdeb:97 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 dh_installexamples:103 dh_installinfo:74 dh_installinit:224 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 dh_installpam:52 dh_install:267 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 dh_md5sums:89 dh_movefiles:164 dh_perl:145 dh_python:282 dh_scrollkeeper:28 dh_shlibdeps:168 dh_strip:227 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 +#: debhelper.pod:561 dh_builddeb:88 dh_clean:130 dh_compress:192 dh_desktop:27 dh_fixperms:122 dh_gconf:104 dh_gencontrol:83 dh_installcatalogs:109 dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 dh_installdeb:97 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 dh_installexamples:103 dh_installinfo:74 dh_installinit:224 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 dh_installpam:52 dh_install:267 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 dh_md5sums:89 dh_movefiles:164 dh_perl:145 dh_python:282 dh_scrollkeeper:28 dh_shlibdeps:168 dh_strip:227 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 msgid "SEE ALSO" msgstr "" @@ -1028,12 +1029,12 @@ msgstr "" #. type: =head1 -#: debhelper.pod:575 dh_builddeb:94 dh_clean:136 dh_compress:198 dh_desktop:33 dh_fixperms:128 dh_gconf:110 dh_gencontrol:85 dh_installcatalogs:115 dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 dh_installdeb:103 dh_installdirs:89 dh_installdocs:229 dh_installemacsen:117 dh_installexamples:109 dh_installinfo:80 dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:257 dh_installmenu:88 dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:273 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:170 dh_perl:151 dh_python:288 dh_scrollkeeper:34 dh_shlibdeps:174 dh_strip:233 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 dh_undocumented:34 dh_usrlocal:120 +#: debhelper.pod:575 dh_builddeb:94 dh_clean:136 dh_compress:198 dh_desktop:33 dh_fixperms:128 dh_gconf:110 dh_gencontrol:89 dh_installcatalogs:115 dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 dh_installdeb:103 dh_installdirs:89 dh_installdocs:229 dh_installemacsen:117 dh_installexamples:109 dh_installinfo:80 dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:257 dh_installmenu:88 dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:273 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:170 dh_perl:151 dh_python:288 dh_scrollkeeper:34 dh_shlibdeps:174 dh_strip:233 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 dh_undocumented:34 dh_usrlocal:120 msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:577 dh_builddeb:96 dh_clean:138 dh_compress:200 dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 dh_installdebconf:126 dh_installdeb:105 dh_installdirs:91 dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 dh_installinfo:82 dh_installinit:232 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:259 dh_installmenu:90 dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:275 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:172 dh_shlibdeps:176 dh_strip:235 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_testversion:83 dh_undocumented:36 +#: debhelper.pod:577 dh_builddeb:96 dh_clean:138 dh_compress:200 dh_fixperms:130 dh_gencontrol:91 dh_installchangelogs:155 dh_installcron:69 dh_installdebconf:126 dh_installdeb:105 dh_installdirs:91 dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 dh_installinfo:82 dh_installinit:232 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:259 dh_installmenu:90 dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:275 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:172 dh_shlibdeps:176 dh_strip:235 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_testversion:83 dh_undocumented:36 msgid "Joey Hess " msgstr "" @@ -1101,12 +1102,12 @@ msgstr "" #. type: textblock -#: dh_builddeb:90 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:106 dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 dh_installcron:63 dh_installdebconf:120 dh_installdeb:99 dh_installdirs:85 dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 dh_installinfo:76 dh_installinit:226 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:269 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:166 dh_perl:147 dh_python:284 dh_strip:229 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 +#: dh_builddeb:90 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:106 dh_gencontrol:85 dh_installcatalogs:111 dh_installchangelogs:149 dh_installcron:63 dh_installdebconf:120 dh_installdeb:99 dh_installdirs:85 dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 dh_installinfo:76 dh_installinit:226 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:269 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:166 dh_perl:147 dh_python:284 dh_strip:229 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 msgid "L" msgstr "" #. type: textblock -#: dh_builddeb:92 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126 dh_gconf:108 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 dh_installdebconf:122 dh_installdeb:101 dh_installdirs:87 dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 dh_installinfo:78 dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 dh_installpam:56 dh_install:271 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 dh_md5sums:93 dh_movefiles:168 dh_perl:149 dh_python:286 dh_scrollkeeper:32 dh_shlibdeps:172 dh_strip:231 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 +#: dh_builddeb:92 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126 dh_gconf:108 dh_gencontrol:87 dh_installchangelogs:151 dh_installcron:65 dh_installdebconf:122 dh_installdeb:101 dh_installdirs:87 dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 dh_installinfo:78 dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 dh_installpam:56 dh_install:271 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 dh_md5sums:93 dh_movefiles:168 dh_perl:149 dh_python:286 dh_scrollkeeper:32 dh_shlibdeps:172 dh_strip:231 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 msgid "This program is a part of debhelper." msgstr "" diff -Nru debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/es.po debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/es.po --- debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/es.po 2011-04-01 06:47:20.000000000 +0000 +++ debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/es.po 2011-05-15 16:37:20.000000000 +0000 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-08-17 16:02-0300\n" +"POT-Creation-Date: 2011-05-15 17:37+0200\n" "PO-Revision-Date: 2005-09-18 00:11+0200\n" "Last-Translator: Rubén Porras Campo \n" "Language-Team: SPANISH \n" @@ -1425,7 +1425,7 @@ # type: =head1 #. type: =head1 #: debhelper.pod:561 dh_builddeb:88 dh_clean:130 dh_compress:192 dh_desktop:27 -#: dh_fixperms:122 dh_gconf:104 dh_gencontrol:79 dh_installcatalogs:109 +#: dh_fixperms:122 dh_gconf:104 dh_gencontrol:83 dh_installcatalogs:109 #: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 #: dh_installdeb:97 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 #: dh_installexamples:103 dh_installinfo:74 dh_installinit:224 @@ -1466,7 +1466,7 @@ # type: =head1 #. type: =head1 #: debhelper.pod:575 dh_builddeb:94 dh_clean:136 dh_compress:198 dh_desktop:33 -#: dh_fixperms:128 dh_gconf:110 dh_gencontrol:85 dh_installcatalogs:115 +#: dh_fixperms:128 dh_gconf:110 dh_gencontrol:89 dh_installcatalogs:115 #: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 #: dh_installdeb:103 dh_installdirs:89 dh_installdocs:229 #: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:80 @@ -1484,7 +1484,7 @@ # type: textblock #. type: textblock #: debhelper.pod:577 dh_builddeb:96 dh_clean:138 dh_compress:200 -#: dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 +#: dh_fixperms:130 dh_gencontrol:91 dh_installchangelogs:155 dh_installcron:69 #: dh_installdebconf:126 dh_installdeb:105 dh_installdirs:91 #: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 #: dh_installinfo:82 dh_installinit:232 dh_installlogrotate:58 @@ -1593,7 +1593,7 @@ # type: textblock #. type: textblock #: dh_builddeb:90 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:106 -#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 +#: dh_gencontrol:85 dh_installcatalogs:111 dh_installchangelogs:149 #: dh_installcron:63 dh_installdebconf:120 dh_installdeb:99 dh_installdirs:85 #: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 #: dh_installinfo:76 dh_installinit:226 dh_installlogcheck:53 @@ -1609,7 +1609,7 @@ # type: textblock #. type: textblock #: dh_builddeb:92 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126 -#: dh_gconf:108 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 +#: dh_gconf:108 dh_gencontrol:87 dh_installchangelogs:151 dh_installcron:65 #: dh_installdebconf:122 dh_installdeb:101 dh_installdirs:87 #: dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 #: dh_installinfo:78 dh_installinit:228 dh_installlogrotate:54 diff -Nru debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/fr.po debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/fr.po --- debhelper-7.3.15ubuntu1~bazaar1~hardy1/man/po4a/po/fr.po 2011-04-01 06:47:21.000000000 +0000 +++ debhelper-7.3.15ubuntu1~bazaar1~hardy2/man/po4a/po/fr.po 2011-05-15 16:37:21.000000000 +0000 @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2009-08-17 16:02-0300\n" +"POT-Creation-Date: 2011-05-15 17:37+0200\n" "PO-Revision-Date: 2006-11-19 20:50+0100\n" "Last-Translator: Valery Perrin \n" "Language-Team: French \n" @@ -1455,7 +1455,7 @@ # type: =head1 #. type: =head1 #: debhelper.pod:561 dh_builddeb:88 dh_clean:130 dh_compress:192 dh_desktop:27 -#: dh_fixperms:122 dh_gconf:104 dh_gencontrol:79 dh_installcatalogs:109 +#: dh_fixperms:122 dh_gconf:104 dh_gencontrol:83 dh_installcatalogs:109 #: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 #: dh_installdeb:97 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 #: dh_installexamples:103 dh_installinfo:74 dh_installinit:224 @@ -1497,7 +1497,7 @@ # type: =head1 #. type: =head1 #: debhelper.pod:575 dh_builddeb:94 dh_clean:136 dh_compress:198 dh_desktop:33 -#: dh_fixperms:128 dh_gconf:110 dh_gencontrol:85 dh_installcatalogs:115 +#: dh_fixperms:128 dh_gconf:110 dh_gencontrol:89 dh_installcatalogs:115 #: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 #: dh_installdeb:103 dh_installdirs:89 dh_installdocs:229 #: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:80 @@ -1515,7 +1515,7 @@ # type: textblock #. type: textblock #: debhelper.pod:577 dh_builddeb:96 dh_clean:138 dh_compress:200 -#: dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 +#: dh_fixperms:130 dh_gencontrol:91 dh_installchangelogs:155 dh_installcron:69 #: dh_installdebconf:126 dh_installdeb:105 dh_installdirs:91 #: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 #: dh_installinfo:82 dh_installinit:232 dh_installlogrotate:58 @@ -1625,7 +1625,7 @@ # type: textblock #. type: textblock #: dh_builddeb:90 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:106 -#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 +#: dh_gencontrol:85 dh_installcatalogs:111 dh_installchangelogs:149 #: dh_installcron:63 dh_installdebconf:120 dh_installdeb:99 dh_installdirs:85 #: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 #: dh_installinfo:76 dh_installinit:226 dh_installlogcheck:53 @@ -1641,7 +1641,7 @@ # type: textblock #. type: textblock #: dh_builddeb:92 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126 -#: dh_gconf:108 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 +#: dh_gconf:108 dh_gencontrol:87 dh_installchangelogs:151 dh_installcron:65 #: dh_installdebconf:122 dh_installdeb:101 dh_installdirs:87 #: dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 #: dh_installinfo:78 dh_installinit:228 dh_installlogrotate:54