From ecfa8d0aa124961e5892cea5c23d3bb67f54c0a0 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 22 Sep 2016 21:21:58 +0000 Subject: dh_md5sums.1: Mention dpkg --verify as a consumer Thanks to Guillem Jover for suggesting it. Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ dh_md5sums | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 534a24b5..8ce728b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium pass the CC and CXX variables set to the host compilers when cross-building. Thanks to Helmut Grohne for the idea and the initial patch. (Closes: #836988) + * dh_md5sums.1: Mention dpkg --verify as a consumer of the + output file. Thanks to Guillem Jover for reporting it. -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 diff --git a/dh_md5sums b/dh_md5sums index c720b11c..64370033 100755 --- a/dh_md5sums +++ b/dh_md5sums @@ -19,7 +19,7 @@ B [S>] [B<-x>] [B<-X>I] [B<--include-conf B is a debhelper program that is responsible for generating a F file, which lists the md5sums of each file in the package. -These files are used by the B package. +These files are used by B or the L program. All files in F are omitted from the F file, as are all conffiles (unless you use the B<--include-conffiles> switch). -- cgit v1.2.3 From 583079e4e52358973848c8bacf09079a873c2d4b Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Wed, 28 Sep 2016 15:42:37 +0000 Subject: dh_strip: Avoid duplicate condition Reported-by: Julien Cristau Signed-off-by: Niels Thykier --- dh_strip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh_strip b/dh_strip index 2f20dabf..7161cc5d 100755 --- a/dh_strip +++ b/dh_strip @@ -260,7 +260,7 @@ sub make_debug { $debug_path=$desttmp."/usr/lib/debug/.build-id/$1/$2.debug"; $debug_build_id="${1}${2}"; push(@build_ids, $debug_build_id); - } elsif ($use_build_id > 1) { + } else { # For dbgsyms, we need build-id (else it will not be # co-installable). return if $use_build_id > 1; -- cgit v1.2.3 From 94adb2938d708d7fe2051a17cfcc00a8bf9cee13 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 07:22:43 +0000 Subject: Add manpage of obsolete compat levels Signed-off-by: Niels Thykier --- Makefile | 10 +++- debhelper-obsolete-compat.pod | 124 ++++++++++++++++++++++++++++++++++++++++++ debhelper.pod | 3 + debian/changelog | 3 + 4 files changed, 138 insertions(+), 2 deletions(-) create mode 100644 debhelper-obsolete-compat.pod diff --git a/Makefile b/Makefile index e27779b3..e5e51c80 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ else LANGS= endif -build: version debhelper.7 +build: version debhelper.7 debhelper-obsolete-compat.7 find . -maxdepth 1 -type f -perm /100 -name "dh*" \ -exec $(POD2MAN) {} {}.1 \; ifneq ($(USE_NLS),no) @@ -66,6 +66,9 @@ ifneq ($(USE_NLS),no) $(MAKEMANLIST) `find $$dir -type f -maxdepth 1 -name "dh_*.pod" | LC_ALL=C sort` | \ $(POD2MAN) --name="debhelper" --section=7 > debhelper.$$lang.7; \ fi; \ + if [ -e $$dir/debhelper-obsolete-compat.pod ]; then \ + $(POD2MAN) --name="debhelper" --section=7 $$dir/debhelper-obsolete-compat.pod > debhelper-obsolete-compat.$$lang.7; \ + fi; \ done endif @@ -76,7 +79,10 @@ version: debhelper.7: debhelper.pod cat debhelper.pod | \ $(MAKEMANLIST) $(COMMANDS) | \ - $(POD2MAN) --name="debhelper" --section=7 > debhelper.7 + $(POD2MAN) --name="debhelper" --section=7 > $@ + +debhelper-obsolete-compat.7: debhelper-obsolete-compat.pod + $(POD2MAN) --name="debhelper" --section=7 $^ > $@ clean: rm -f *.1 *.7 Debian/Debhelper/Dh_Version.pm diff --git a/debhelper-obsolete-compat.pod b/debhelper-obsolete-compat.pod new file mode 100644 index 00000000..1d9f349d --- /dev/null +++ b/debhelper-obsolete-compat.pod @@ -0,0 +1,124 @@ +=head1 NAME + +debhelper-obsolete-compat - List of no longer supported compat levels + +=head1 SYNOPSIS + +This document contains the upgrade guidelines from all compat levels +which are no longer supported. Accordingly it is mostly for +historical purposes and to assist people upgrading from a +non-supported compat level to a supported level. + +For upgrades from supported compat levels, please see L. + +=head1 UPGRADE LIST FOR COMPAT LEVELS + +The following is the list of now obsolete compat levels and their +changes. + +=over 4 + +=item v1 + +This is the original debhelper compatibility level, and so it is the default +one. In this mode, debhelper will use F as the package tree +directory for the first binary package listed in the control file, while using +debian/I for all other packages listed in the F file. + +This mode is deprecated. + +=item v2 + +In this mode, debhelper will consistently use debian/I +as the package tree directory for every package that is built. + +This mode is deprecated. + +=item v3 + +This mode works like v2, with the following additions: + +=over 8 + +=item - + +Debhelper config files support globbing via B<*> and B, when appropriate. To +turn this off and use those characters raw, just prefix with a backslash. + +=item - + +B makes the F and F scripts call B. + +=item - + +Every file in F is automatically flagged as a conffile by B. + +=back + +=item v4 + +Changes from v3 are: + +=over 8 + +=item - + +B will not include the Debian part of the version number in +the generated dependency line in the shlibs file. + +=item - + +You are encouraged to put the new B<${misc:Depends}> into F to +supplement the B<${shlibs:Depends}> field. + +=item - + +B will make all files in F directories and in F +executable. + +=item - + +B will correct existing links to conform with policy. + +=back + +=item v5 + +This is the lowest supported compatibility level. + +Changes from v4 are: + +=over 8 + +=item - + +Comments are ignored in debhelper config files. + +=item - + +B now specifies the name of a package to put debugging +symbols in, not the packages to take the symbols from. + +=item - + +B skips installing empty files. + +=item - + +B errors out if wildcards expand to nothing. + +=back + +=back + +=head1 SEE ALSO + +L + +=head1 AUTHORS + +Niels Thykier + +Joey Hess + +=cut diff --git a/debhelper.pod b/debhelper.pod index bd10b34d..391007b0 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -302,6 +302,9 @@ These are the available compatibility levels: This is the lowest supported compatibility level. +If you are upgrading from an earlier compatibility level, please +review L. + =item v6 Changes from v5 are: diff --git a/debian/changelog b/debian/changelog index 8ce728b3..c70cd243 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,9 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium the initial patch. (Closes: #836988) * dh_md5sums.1: Mention dpkg --verify as a consumer of the output file. Thanks to Guillem Jover for reporting it. + * debhelper-obsolete-compat.pod: Add a manpage for the + upgrade checklist for all obsolete/removed compat levels. + Thanks to Jakub Wilk for the suggestion. -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 -- cgit v1.2.3 From 172e0f4e20619b1cc971a71a0bcf06c3354debb8 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 07:53:18 +0000 Subject: Update POT and PO files Signed-off-by: Niels Thykier --- man/po4a/po/de.po | 600 +++++++++++++++++++++++++------------ man/po4a/po/debhelper.pot | 448 +++++++++++++++++++--------- man/po4a/po/es.po | 734 ++++++++++++++++++++++++++------------------- man/po4a/po/fr.po | 746 +++++++++++++++++++++++++++------------------- man/po4a/po/pt.po | 704 +++++++++++++++++++++++++------------------ man/po4a/po4a.cfg | 1 + 6 files changed, 1988 insertions(+), 1245 deletions(-) diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index 00ca0a16..01faa27d 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-09-11 08:47+0000\n" +"POT-Creation-Date: 2016-10-01 08:12+0000\n" "PO-Revision-Date: 2016-08-27 11:57+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" @@ -18,18 +18,18 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. type: =head1 -#: debhelper.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 -#: dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 -#: dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 -#: dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 -#: dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 -#: dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 -#: dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 -#: dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 -#: dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 -#: dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 -#: dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 -#: dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 +#: dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 +#: dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 +#: dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 +#: dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 +#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 +#: dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 +#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 +#: dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 +#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 +#: dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 #: dh_systemd_enable:3 dh_systemd_start:3 msgid "NAME" msgstr "NAME" @@ -40,20 +40,21 @@ msgid "debhelper - the debhelper tool suite" msgstr "debhelper - die Debhelper-Werkzeugsammlung" #. type: =head1 -#: debhelper.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 -#: dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 -#: dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 -#: dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 -#: dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 -#: dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 -#: dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 -#: dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 -#: dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 -#: dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 -#: dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 -#: dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 -#: dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 -#: dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 +#: dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 +#: dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 +#: dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 +#: dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 +#: dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 +#: dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 +#: dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 +#: dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 +#: dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 +#: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 +#: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 +#: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 +#: dh_systemd_start:14 msgid "SYNOPSIS" msgstr "ÜBERSICHT" @@ -830,41 +831,54 @@ msgid "These are the available compatibility levels:" msgstr "Folgende Kompatibilitätsstufen sind verfügbar:" #. type: =item -#: debhelper.pod:301 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 msgid "v5" msgstr "v5" #. type: textblock -#: debhelper.pod:303 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 msgid "This is the lowest supported compatibility level." msgstr "Dies ist die unterste unterstützte Kompatibilitätsstufe." -#. type: =item +#. type: textblock #: debhelper.pod:305 +msgid "" +"If you are upgrading from an earlier compatibility level, please review " +"L." +msgstr "" + +#. type: =item +#: debhelper.pod:308 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:307 +#: debhelper.pod:310 msgid "Changes from v5 are:" msgstr "Änderungen gegenüber v5 sind:" #. type: =item -#: debhelper.pod:311 debhelper.pod:316 debhelper.pod:322 debhelper.pod:328 -#: debhelper.pod:341 debhelper.pod:348 debhelper.pod:352 debhelper.pod:356 -#: debhelper.pod:369 debhelper.pod:373 debhelper.pod:381 debhelper.pod:386 -#: debhelper.pod:398 debhelper.pod:403 debhelper.pod:410 debhelper.pod:415 -#: debhelper.pod:420 debhelper.pod:424 debhelper.pod:430 debhelper.pod:435 -#: debhelper.pod:440 debhelper.pod:456 debhelper.pod:461 debhelper.pod:467 -#: debhelper.pod:474 debhelper.pod:480 debhelper.pod:485 debhelper.pod:491 -#: debhelper.pod:497 debhelper.pod:507 debhelper.pod:513 debhelper.pod:536 -#: debhelper.pod:543 debhelper.pod:549 debhelper.pod:555 debhelper.pod:571 -#: debhelper.pod:576 debhelper.pod:580 debhelper.pod:585 +#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 +#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 +#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 +#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 +#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 +#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 +#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 +#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 +#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 +#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 +#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 +#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 +#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 +#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 +#: debhelper-obsolete-compat.pod:106 msgid "-" msgstr "-" #. type: textblock -#: debhelper.pod:313 +#: debhelper.pod:316 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -873,7 +887,7 @@ msgstr "" "für die F- und F-Skripte in umgekehrter Reiherfolge anordnen." #. type: textblock -#: debhelper.pod:318 +#: debhelper.pod:321 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -884,7 +898,7 @@ msgstr "" "man/man1> im Bauverzeichnis des Pakets entdeckt." #. type: textblock -#: debhelper.pod:324 +#: debhelper.pod:327 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -895,7 +909,7 @@ msgstr "" "sollen, wie B. Nun tut es dies." #. type: textblock -#: debhelper.pod:330 +#: debhelper.pod:333 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -905,17 +919,17 @@ msgstr "" "lautlos ab, dies zu tun." #. type: =item -#: debhelper.pod:335 +#: debhelper.pod:338 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:337 +#: debhelper.pod:340 msgid "Changes from v6 are:" msgstr "Änderungen gegenüber v6 sind:" #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:346 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -930,19 +944,19 @@ msgstr "" "tmp> installiert, ohne irgendwelche besonderen Parameter zu benötigen." #. type: textblock -#: debhelper.pod:350 +#: debhelper.pod:353 msgid "B will read F and delete files listed there." msgstr "" "B wird F lesen und die dort aufgeführten Dateien " "löschen." #. type: textblock -#: debhelper.pod:354 +#: debhelper.pod:357 msgid "B will delete toplevel F<*-stamp> files." msgstr " wird die F<*-stamp>-Dateien der obersten Ebene löschen." #. type: textblock -#: debhelper.pod:358 +#: debhelper.pod:361 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -951,17 +965,17 @@ msgstr "" "Änderungsprotokoll der Originalautoren liegt, falls keines angegeben wurde." #. type: =item -#: debhelper.pod:363 +#: debhelper.pod:366 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:365 +#: debhelper.pod:368 msgid "Changes from v7 are:" msgstr "Änderungen gegenüber v7 sind:" #. type: textblock -#: debhelper.pod:371 +#: debhelper.pod:374 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -969,7 +983,7 @@ msgstr "" "Optionen übergeben werden." #. type: textblock -#: debhelper.pod:375 +#: debhelper.pod:378 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -985,7 +999,7 @@ msgstr "" "Pakete zum Scheitern bringen." #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:386 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -996,7 +1010,7 @@ msgstr "" "»B«." #. type: textblock -#: debhelper.pod:388 +#: debhelper.pod:391 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1004,17 +1018,17 @@ msgstr "" "BI<*> bevorzugt Perls B gegenüber F." #. type: =item -#: debhelper.pod:392 +#: debhelper.pod:395 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:394 +#: debhelper.pod:397 msgid "Changes from v8 are:" msgstr "Änderungen gegenüber v8 sind:" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:403 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1023,7 +1037,7 @@ msgstr "" "Verzeichnisse an Autoconf in --libdir and --libexecdir weiter." #. type: textblock -#: debhelper.pod:405 +#: debhelper.pod:408 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1037,7 +1051,7 @@ msgstr "" "Zielen zu definieren." #. type: textblock -#: debhelper.pod:412 +#: debhelper.pod:415 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1046,7 +1060,7 @@ msgstr "" "dbg«-Paketen zu verringern." #. type: textblock -#: debhelper.pod:417 +#: debhelper.pod:420 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1055,12 +1069,12 @@ msgstr "" "Autoconf benutzt wird." #. type: textblock -#: debhelper.pod:422 +#: debhelper.pod:425 msgid "B does not default to enabling --with=python-support" msgstr "Standardmäßig aktiviert B nicht --with=python-support." #. type: textblock -#: debhelper.pod:426 +#: debhelper.pod:429 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1070,7 +1084,7 @@ msgstr "" "sie nicht bereits gesetzt sind." #. type: textblock -#: debhelper.pod:432 +#: debhelper.pod:435 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1079,7 +1093,7 @@ msgstr "" "buildflags> an Perls F und F" #. type: textblock -#: debhelper.pod:437 +#: debhelper.pod:440 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1088,7 +1102,7 @@ msgstr "" "ihrer Baukennzahl basiert." #. type: textblock -#: debhelper.pod:442 +#: debhelper.pod:445 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1097,22 +1111,22 @@ msgstr "" "Ausgabe wird als Konfiguration benutzt." #. type: =item -#: debhelper.pod:447 +#: debhelper.pod:450 msgid "v10" msgstr "v10" #. type: textblock -#: debhelper.pod:449 +#: debhelper.pod:452 msgid "This is the recommended mode of operation." msgstr "Dies ist der empfohlene Betriebsmodus." #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:455 msgid "Changes from v9 are:" msgstr "Änderungen gegenüber v9 sind:" #. type: textblock -#: debhelper.pod:458 +#: debhelper.pod:461 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1121,7 +1135,7 @@ msgstr "" "Skript installieren." #. type: textblock -#: debhelper.pod:463 +#: debhelper.pod:466 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1132,7 +1146,7 @@ msgstr "" "nicht-»all« erzeugt wurden, da es binNMUs beschädigt." #. type: textblock -#: debhelper.pod:469 +#: debhelper.pod:472 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1145,7 +1159,7 @@ msgstr "" "Befehlen offenlegen, die nicht in Debhelper enthalten sind." #. type: textblock -#: debhelper.pod:476 +#: debhelper.pod:479 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1155,7 +1169,7 @@ msgstr "" "erledigt." #. type: textblock -#: debhelper.pod:482 +#: debhelper.pod:485 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1165,7 +1179,7 @@ msgstr "" "Window-Manager zu registrieren)." #. type: textblock -#: debhelper.pod:487 +#: debhelper.pod:490 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1177,7 +1191,7 @@ msgstr "" "deaktiviert werden." #. type: textblock -#: debhelper.pod:493 +#: debhelper.pod:496 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1188,7 +1202,7 @@ msgstr "" "verwenden Sie stattdessen Aufhebungsziele." #. type: textblock -#: debhelper.pod:499 +#: debhelper.pod:502 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1200,12 +1214,12 @@ msgstr "" "diesem Fall." #. type: textblock -#: debhelper.pod:503 +#: debhelper.pod:506 msgid "The main affects of this are:" msgstr "Die wichtigsten Auswirkungen davon sind:" #. type: textblock -#: debhelper.pod:509 +#: debhelper.pod:512 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1217,7 +1231,7 @@ msgstr "" "ist)." #. type: textblock -#: debhelper.pod:515 +#: debhelper.pod:518 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1229,12 +1243,12 @@ msgstr "" "stattfinden, wird alles wie zuvor funktionieren." #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:523 msgid "Example of where it can go wrong:" msgstr "Beispiel, bei dem es schiefgehen kann:" #. type: verbatim -#: debhelper.pod:522 +#: debhelper.pod:525 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1246,7 +1260,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:528 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1260,7 +1274,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:529 +#: debhelper.pod:532 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1272,7 +1286,7 @@ msgstr "" "begrenzt, es umfasst außerdem B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:538 +#: debhelper.pod:541 msgid "" "The B command now shell escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1286,7 +1300,7 @@ msgstr "" "(z.B. Dateinamen in Anführungszeichen setzen)." #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:548 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1297,7 +1311,7 @@ msgstr "" "erfordern, B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:554 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1307,7 +1321,7 @@ msgstr "" "nicht gewünscht wird." #. type: textblock -#: debhelper.pod:557 +#: debhelper.pod:560 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1317,12 +1331,12 @@ msgstr "" "gewünscht wird." #. type: =item -#: debhelper.pod:563 +#: debhelper.pod:566 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:565 +#: debhelper.pod:568 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1330,12 +1344,12 @@ msgstr "" "Verwenden Sie sie mit Vorsicht." #. type: textblock -#: debhelper.pod:567 +#: debhelper.pod:570 msgid "Changes from v10 are:" msgstr "Änderungen gegenüber v10 sind:" #. type: textblock -#: debhelper.pod:573 +#: debhelper.pod:576 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1344,12 +1358,12 @@ msgstr "" "Dateien werden weiterhin installiert." #. type: textblock -#: debhelper.pod:578 +#: debhelper.pod:581 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "Die Option B<-s> (B<--same-arch>) wurde entfernt." #. type: textblock -#: debhelper.pod:582 +#: debhelper.pod:585 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1357,7 +1371,7 @@ msgstr "" "Warnung, es sei missbilligt." #. type: textblock -#: debhelper.pod:587 +#: debhelper.pod:590 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." @@ -1378,17 +1392,17 @@ msgstr "" "mainpackage> emuliert werden." #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:598 msgid "Please remember to check/update your doc-base files." msgstr "Bitte denken Sie daran, Ihre Doc-Base-Dateien zu prüfen/aktualisieren." #. type: =head2 -#: debhelper.pod:601 +#: debhelper.pod:604 msgid "Participating in the open beta testing of new compat levels" msgstr "Teilnahme an offenen Beta-Tests neuer Kompatibilitätsstufen" #. type: textblock -#: debhelper.pod:603 +#: debhelper.pod:606 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1398,7 +1412,7 @@ msgstr "" "Kompatibilitätsstufe auf die Zeichenkette »beta-tester« erledigt." #. type: textblock -#: debhelper.pod:607 +#: debhelper.pod:610 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1410,18 +1424,18 @@ msgstr "" "die Kompatibilitätsstufe die höchste stabile Kompatibilitätsstufe sein." #. type: textblock -#: debhelper.pod:612 +#: debhelper.pod:615 msgid "Please consider the following before opting in:" msgstr "Bitte bedenken Sie vor der Teilnahme Folgendes:" #. type: =item -#: debhelper.pod:616 debhelper.pod:621 debhelper.pod:628 debhelper.pod:634 -#: debhelper.pod:640 +#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 +#: debhelper.pod:643 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:618 +#: debhelper.pod:621 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1430,7 +1444,7 @@ msgstr "" "Paket (oder eine enthaltene Funktionalität) nicht mehr funktioniert." #. type: textblock -#: debhelper.pod:623 +#: debhelper.pod:626 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1442,7 +1456,7 @@ msgstr "" "nicht während der Beta-Phase ändert." #. type: textblock -#: debhelper.pod:630 +#: debhelper.pod:633 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1454,7 +1468,7 @@ msgstr "" "Laufenden halten." #. type: textblock -#: debhelper.pod:636 +#: debhelper.pod:639 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1465,7 +1479,7 @@ msgstr "" "nicht für Pakete empfohlen, die regulär zurückportiert werden." #. type: textblock -#: debhelper.pod:642 +#: debhelper.pod:645 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1475,14 +1489,14 @@ msgstr "" # CHECKME (english text correct?) #. type: textblock -#: debhelper.pod:647 +#: debhelper.pod:650 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" "Sollten Sie immer noch am offenen Beta-Test interessiert sein, führen Sie " "Folgendes aus:" #. type: verbatim -#: debhelper.pod:649 +#: debhelper.pod:652 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1493,12 +1507,12 @@ msgstr "" # CHECKME (english text correct?) #. type: textblock -#: debhelper.pod:651 +#: debhelper.pod:654 msgid "You will also need to ensure that debian/control contains:" msgstr "Außerdem müssen Sie sicherstellen, dass debian/control dies enthält:" #. type: verbatim -#: debhelper.pod:653 +#: debhelper.pod:656 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1508,14 +1522,14 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:655 +#: debhelper.pod:658 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" "Dadurch wird sichergestellt, dass Debhelper von der Kompatibilitätsstufe " "»beta-tester« weiß." #. type: =head1 -#: debhelper.pod:657 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 @@ -1524,12 +1538,12 @@ msgid "NOTES" msgstr "ANMERKUNGEN" #. type: =head2 -#: debhelper.pod:659 +#: debhelper.pod:662 msgid "Multiple binary package support" msgstr "Unterstützung mehrerer Binärpakete" #. type: textblock -#: debhelper.pod:661 +#: debhelper.pod:664 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1548,7 +1562,7 @@ msgstr "" "Ziel »binary-indep«." #. type: textblock -#: debhelper.pod:669 +#: debhelper.pod:672 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1564,7 +1578,7 @@ msgstr "" "sind, mit nachfolgenden Ausnahmen." #. type: textblock -#: debhelper.pod:675 +#: debhelper.pod:678 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:679 +#: debhelper.pod:682 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1589,12 +1603,12 @@ msgstr "" "BuildProfileSpec>." #. type: =head2 -#: debhelper.pod:684 +#: debhelper.pod:687 msgid "Automatic generation of Debian install scripts" msgstr "Automatisches Erzeugen von Debian-Installationsskripten" #. type: textblock -#: debhelper.pod:686 +#: debhelper.pod:689 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1611,7 +1625,7 @@ msgstr "" "erzeugten Kode ersetzt." #. type: textblock -#: debhelper.pod:693 +#: debhelper.pod:696 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1620,7 +1634,7 @@ msgstr "" "hinzufügen muss, dann wird Debhelper das komplette Skript erstellen." #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:699 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1629,7 +1643,7 @@ msgstr "" "dies durch den Parameter -n deaktiviert (siehe oben)." #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:702 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1643,7 +1657,7 @@ msgstr "" "etc. gesetzt sind):" #. type: verbatim -#: debhelper.pod:704 +#: debhelper.pod:707 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1675,12 +1689,12 @@ msgstr "" "\n" #. type: =head2 -#: debhelper.pod:717 +#: debhelper.pod:720 msgid "Automatic generation of miscellaneous dependencies." msgstr "Automatisches Erzeugen verschiedener Abhängigkeiten" #. type: textblock -#: debhelper.pod:719 +#: debhelper.pod:722 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1700,7 +1714,7 @@ msgstr "" "bietet, sie zu automatisieren." #. type: textblock -#: debhelper.pod:727 +#: debhelper.pod:730 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1714,7 +1728,7 @@ msgstr "" "Debhelper findet, dass Sie sie benötigen." #. type: textblock -#: debhelper.pod:732 +#: debhelper.pod:735 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1728,12 +1742,12 @@ msgstr "" "entspricht." #. type: =head2 -#: debhelper.pod:737 +#: debhelper.pod:740 msgid "Package build directories" msgstr "Paketbauverzeichnisse" #. type: textblock -#: debhelper.pod:739 +#: debhelper.pod:742 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1743,7 +1757,7 @@ msgstr "" "debian/I ist." #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:745 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1763,12 +1777,12 @@ msgstr "" "Debhelper-Programm auswirkt." #. type: =head2 -#: debhelper.pod:750 +#: debhelper.pod:753 msgid "udebs" msgstr "Udebs" #. type: textblock -#: debhelper.pod:752 +#: debhelper.pod:755 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1786,12 +1800,12 @@ msgstr "" "übersprungen werden." #. type: =head1 -#: debhelper.pod:759 +#: debhelper.pod:762 msgid "ENVIRONMENT" msgstr "UMGEBUNGSVARIABLEN" #. type: textblock -#: debhelper.pod:761 +#: debhelper.pod:764 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1807,12 +1821,12 @@ msgstr "" "Beispiel »B«." #. type: =item -#: debhelper.pod:769 +#: debhelper.pod:772 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:771 +#: debhelper.pod:774 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1823,12 +1837,12 @@ msgstr "" "aktiviert." #. type: =item -#: debhelper.pod:774 +#: debhelper.pod:777 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:776 +#: debhelper.pod:779 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1845,12 +1859,12 @@ msgstr "" "wird diese Einstellung ignoriert." #. type: =item -#: debhelper.pod:783 +#: debhelper.pod:786 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:785 +#: debhelper.pod:788 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1859,22 +1873,22 @@ msgstr "" "werden sollte und setzt dabei jeden Wert in F außer Kraft." #. type: =item -#: debhelper.pod:788 +#: debhelper.pod:791 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:790 +#: debhelper.pod:793 msgid "Set to B<1> to enable no-act mode." msgstr "auf B<1> gesetzt, um Modus ohne Aktion zu aktivieren." #. type: =item -#: debhelper.pod:792 +#: debhelper.pod:795 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:794 +#: debhelper.pod:797 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1883,7 +1897,7 @@ msgstr "" "Befehle vorangestellt." #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:800 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1893,12 +1907,12 @@ msgstr "" "DH_OPTIONS zu verwenden." #. type: =item -#: debhelper.pod:800 +#: debhelper.pod:803 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:802 +#: debhelper.pod:805 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1910,7 +1924,7 @@ msgstr "" "entspricht, B ausführen." #. type: textblock -#: debhelper.pod:806 +#: debhelper.pod:809 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1928,7 +1942,7 @@ msgstr "" "ist, wo auch immer Ihr Paket gebaut wird." #. type: textblock -#: debhelper.pod:813 +#: debhelper.pod:816 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1937,12 +1951,12 @@ msgstr "" "getrennt werden, wie in B." #. type: =head1 -#: debhelper.pod:818 dh:1064 dh_auto_build:48 dh_auto_clean:51 -#: dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 -#: dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 -#: dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 -#: dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 -#: dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 +#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 +#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 +#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 #: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 @@ -1956,29 +1970,29 @@ msgid "SEE ALSO" msgstr "SIEHE AUCH" #. type: =item -#: debhelper.pod:822 +#: debhelper.pod:825 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:824 +#: debhelper.pod:827 msgid "A set of example F files that use debhelper." msgstr "" "eine Zusammenstellung von F-Beispieldateien, die Debhelper " "benutzen" #. type: =item -#: debhelper.pod:826 +#: debhelper.pod:829 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:828 +#: debhelper.pod:831 msgid "Debhelper web site." msgstr "Debhelper-Website" #. type: =head1 -#: debhelper.pod:832 dh:1070 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 #: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 @@ -1996,7 +2010,7 @@ msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:834 dh:1072 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 @@ -2011,6 +2025,232 @@ msgstr "AUTOR" msgid "Joey Hess " msgstr "Joey Hess " +#. type: textblock +#: debhelper-obsolete-compat.pod:3 +msgid "debhelper-obsolete-compat - List of no longer supported compat levels" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:7 +msgid "" +"This document contains the upgrade guidelines from all compat levels which " +"are no longer supported. Accordingly it is mostly for historical purposes " +"and to assist people upgrading from a non-supported compat level to a " +"supported level." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:12 +#, fuzzy +#| msgid "" +#| "* The package must be using compatibility level 9 or later (see " +#| "L)" +msgid "For upgrades from supported compat levels, please see L." +msgstr "" +"* Das Paket muss Kompatibilitätsstufe 9 oder höher verwenden (siehe " +"L)." + +#. type: =head1 +#: debhelper-obsolete-compat.pod:14 +msgid "UPGRADE LIST FOR COMPAT LEVELS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:16 +msgid "" +"The following is the list of now obsolete compat levels and their changes." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:21 +msgid "v1" +msgstr "v1" + +#. type: textblock +#: debhelper-obsolete-compat.pod:23 +msgid "" +"This is the original debhelper compatibility level, and so it is the default " +"one. In this mode, debhelper will use F as the package tree " +"directory for the first binary package listed in the control file, while " +"using debian/I for all other packages listed in the F file." +msgstr "" +"Dies ist die Original-Debhelper-Kompatibilitätsstufe und daher ist sie die " +"Vorgabe. In diesem Modus wird Debhelper F als " +"Paketverzeichnisbaum des ersten in der Datei »control« aufgeführten Pakets " +"nehmen, während für alle anderen in der Datei F aufgeführten Pakete " +"debian/I genommen wird." + +#. type: textblock +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +#, fuzzy +#| msgid "These files are deprecated." +msgid "This mode is deprecated." +msgstr "Diese Dateien sind veraltet." + +#. type: =item +#: debhelper-obsolete-compat.pod:30 +msgid "v2" +msgstr "v2" + +#. type: textblock +#: debhelper-obsolete-compat.pod:32 +msgid "" +"In this mode, debhelper will consistently use debian/I as the " +"package tree directory for every package that is built." +msgstr "" +"In diesem Modus wird Debhelper durchweg debian/I als " +"Paketverzeichnisbaum für jedes Paket nehmen, das gebaut wird." + +#. type: =item +#: debhelper-obsolete-compat.pod:37 +msgid "v3" +msgstr "v3" + +#. type: textblock +#: debhelper-obsolete-compat.pod:39 +msgid "This mode works like v2, with the following additions:" +msgstr "Dieser Modus funktioniert wie v2 mit den folgenden Zusätzen:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:45 +msgid "" +"Debhelper config files support globbing via B<*> and B, when appropriate. " +"To turn this off and use those characters raw, just prefix with a backslash." +msgstr "" +"Debhelper-Konfigurationsdateien unterstützen Platzhalter mittels B<*> und B, wenn geeignet. Um dies auszuschalten und diese Zeichen im Rohzustand zu " +"verwenden, stellen Sie ihnen einen Rückwärtsschragstrich voran." + +#. type: textblock +#: debhelper-obsolete-compat.pod:50 +msgid "" +"B makes the F and F scripts call " +"B." +msgstr "" +"B lässt F- und F-Skripte B " +"aufrufen." + +#. type: textblock +#: debhelper-obsolete-compat.pod:54 +msgid "" +"Every file in F is automatically flagged as a conffile by " +"B." +msgstr "" +"Jede Datei in F wird automatisch durch B als Conffile " +"markiert." + +#. type: =item +#: debhelper-obsolete-compat.pod:58 +msgid "v4" +msgstr "v4" + +#. type: textblock +#: debhelper-obsolete-compat.pod:60 +msgid "Changes from v3 are:" +msgstr "Änderungen gegenüber v3 sind:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:66 +msgid "" +"B will not include the Debian part of the version number " +"in the generated dependency line in the shlibs file." +msgstr "" +"B wird nicht den Debian-Teil der Versionsnummer in der " +"erzeugten Abhängigkeitslinie in der Shlibs-Datei enthalten." + +#. type: textblock +#: debhelper-obsolete-compat.pod:71 +msgid "" +"You are encouraged to put the new B<${misc:Depends}> into F " +"to supplement the B<${shlibs:Depends}> field." +msgstr "" +"Sie werden aufgefordert, das neue B<${misc:Depends}> in F " +"abzulegen, um das Feld B<${shlibs:Depends}> zu ergänzen." + +#. type: textblock +#: debhelper-obsolete-compat.pod:76 +msgid "" +"B will make all files in F directories and in F executable." +msgstr "" +"B wird alle Dateien in F-Verzeichnissen und in F ausführbar machen." + +#. type: textblock +#: debhelper-obsolete-compat.pod:81 +msgid "B will correct existing links to conform with policy." +msgstr "" +"B wird bestehende Verweise korrigieren, damit sie konform mit der " +"Richtlinie sind." + +#. type: textblock +#: debhelper-obsolete-compat.pod:89 +msgid "Changes from v4 are:" +msgstr "Änderungen gegenüber v4 sind:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:95 +msgid "Comments are ignored in debhelper config files." +msgstr "Kommentare in Debhelper-Konfigurationsdateien werden ignoriert." + +# http://de.wikipedia.org/wiki/Debugsymbol +#. type: textblock +#: debhelper-obsolete-compat.pod:99 +msgid "" +"B now specifies the name of a package to put " +"debugging symbols in, not the packages to take the symbols from." +msgstr "" +"B gibt nun den Name des Pakets an, in das Debug-" +"Symbole getan werden, nicht die Pakete, aus denen die Symbole genommen " +"werden." + +#. type: textblock +#: debhelper-obsolete-compat.pod:104 +#, fuzzy +#| msgid "dh_installinfo - install info files" +msgid "B skips installing empty files." +msgstr "dh_installinfo - installiert Info-Dateien" + +#. type: textblock +#: debhelper-obsolete-compat.pod:108 +msgid "B errors out if wildcards expand to nothing." +msgstr "" +"B gibt Fehlermeldungen aus, wenn Platzhalter zu nichts " +"expandieren." + +#. type: textblock +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 +#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 +#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 +#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 +#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 +#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:245 +msgid "L" +msgstr "L" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 +#: dh_systemd_start:247 +msgid "AUTHORS" +msgstr "AUTOREN" + +#. type: textblock +#: debhelper-obsolete-compat.pod:120 +msgid "Niels Thykier " +msgstr "Niels Thykier " + +#. type: textblock +#: debhelper-obsolete-compat.pod:122 +msgid "Joey Hess" +msgstr "Joey Hess" + #. type: textblock #: dh:5 msgid "dh - debhelper command sequencer" @@ -2743,23 +2983,6 @@ msgstr "" "Mehrdeutigkeit zu vermeiden. Falls mehrere Teilzeichenketten passen, wird " "der letzte in der Sequenz benutzt." -#. type: textblock -#: dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 -#: dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 -#: dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 -msgid "L" -msgstr "L" - #. type: textblock #: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 #: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 @@ -5830,11 +6053,6 @@ msgstr "" "Init-Skripts fehlschlägt. Die Funktion sollte in den F- und " "F-Skripten vor der Markierung B<#DEBHELPER#> bereitgestellt werden." -#. type: =head1 -#: dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 -msgid "AUTHORS" -msgstr "AUTOREN" - #. type: textblock #: dh_installinit:352 msgid "Steve Langasek " @@ -7235,10 +7453,16 @@ msgstr "" #. type: textblock #: dh_md5sums:20 +#, fuzzy +#| msgid "" +#| "B is a debhelper program that is responsible for generating a " +#| "F file, which lists the md5sums of each file in the " +#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " -"package. These files are used by the B package." +"package. These files are used by B or the L " +"program." msgstr "" "B ist ein Debhelper-Programm, das für das Erzeugen einer " "F-Datei zuständig ist, die die Md5-Prüfsummen jeder Datei im " diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot index 8c974b3c..accb1325 100644 --- a/man/po4a/po/debhelper.pot +++ b/man/po4a/po/debhelper.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-09-11 08:47+0000\n" +"POT-Creation-Date: 2016-10-01 08:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: =head1 -#: debhelper.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 dh_systemd_enable:3 dh_systemd_start:3 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 dh_systemd_enable:3 dh_systemd_start:3 msgid "NAME" msgstr "" @@ -27,7 +27,7 @@ msgid "debhelper - the debhelper tool suite" msgstr "" #. type: =head1 -#: debhelper.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 msgid "SYNOPSIS" msgstr "" @@ -597,39 +597,46 @@ msgid "These are the available compatibility levels:" msgstr "" #. type: =item -#: debhelper.pod:301 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 msgid "v5" msgstr "" #. type: textblock -#: debhelper.pod:303 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 msgid "This is the lowest supported compatibility level." msgstr "" -#. type: =item +#. type: textblock #: debhelper.pod:305 +msgid "" +"If you are upgrading from an earlier compatibility level, please review " +"L." +msgstr "" + +#. type: =item +#: debhelper.pod:308 msgid "v6" msgstr "" #. type: textblock -#: debhelper.pod:307 +#: debhelper.pod:310 msgid "Changes from v5 are:" msgstr "" #. type: =item -#: debhelper.pod:311 debhelper.pod:316 debhelper.pod:322 debhelper.pod:328 debhelper.pod:341 debhelper.pod:348 debhelper.pod:352 debhelper.pod:356 debhelper.pod:369 debhelper.pod:373 debhelper.pod:381 debhelper.pod:386 debhelper.pod:398 debhelper.pod:403 debhelper.pod:410 debhelper.pod:415 debhelper.pod:420 debhelper.pod:424 debhelper.pod:430 debhelper.pod:435 debhelper.pod:440 debhelper.pod:456 debhelper.pod:461 debhelper.pod:467 debhelper.pod:474 debhelper.pod:480 debhelper.pod:485 debhelper.pod:491 debhelper.pod:497 debhelper.pod:507 debhelper.pod:513 debhelper.pod:536 debhelper.pod:543 debhelper.pod:549 debhelper.pod:555 debhelper.pod:571 debhelper.pod:576 debhelper.pod:580 debhelper.pod:585 +#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 debhelper-obsolete-compat.pod:106 msgid "-" msgstr "" #. type: textblock -#: debhelper.pod:313 +#: debhelper.pod:316 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." msgstr "" #. type: textblock -#: debhelper.pod:318 +#: debhelper.pod:321 msgid "" "B will install a slave manpage link for " "F, if it sees the man page in F " @@ -637,7 +644,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:324 +#: debhelper.pod:327 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -645,24 +652,24 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:330 +#: debhelper.pod:333 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." msgstr "" #. type: =item -#: debhelper.pod:335 +#: debhelper.pod:338 msgid "v7" msgstr "" #. type: textblock -#: debhelper.pod:337 +#: debhelper.pod:340 msgid "Changes from v6 are:" msgstr "" #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:346 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -672,39 +679,39 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:350 +#: debhelper.pod:353 msgid "B will read F and delete files listed there." msgstr "" #. type: textblock -#: debhelper.pod:354 +#: debhelper.pod:357 msgid "B will delete toplevel F<*-stamp> files." msgstr "" #. type: textblock -#: debhelper.pod:358 +#: debhelper.pod:361 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." msgstr "" #. type: =item -#: debhelper.pod:363 +#: debhelper.pod:366 msgid "v8" msgstr "" #. type: textblock -#: debhelper.pod:365 +#: debhelper.pod:368 msgid "Changes from v7 are:" msgstr "" #. type: textblock -#: debhelper.pod:371 +#: debhelper.pod:374 msgid "Commands will fail rather than warning when they are passed unknown options." msgstr "" #. type: textblock -#: debhelper.pod:375 +#: debhelper.pod:378 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -714,7 +721,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:386 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"BI<*> prefer to use Perl's B in preference to " "F." msgstr "" #. type: =item -#: debhelper.pod:392 +#: debhelper.pod:395 msgid "v9" msgstr "" #. type: textblock -#: debhelper.pod:394 +#: debhelper.pod:397 msgid "Changes from v8 are:" msgstr "" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:403 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." msgstr "" #. type: textblock -#: debhelper.pod:405 +#: debhelper.pod:408 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -755,76 +762,76 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:412 +#: debhelper.pod:415 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." msgstr "" #. type: textblock -#: debhelper.pod:417 +#: debhelper.pod:420 msgid "" "B does not include the source package name in " "--libexecdir when using autoconf." msgstr "" #. type: textblock -#: debhelper.pod:422 +#: debhelper.pod:425 msgid "B does not default to enabling --with=python-support" msgstr "" #. type: textblock -#: debhelper.pod:426 +#: debhelper.pod:429 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." msgstr "" #. type: textblock -#: debhelper.pod:432 +#: debhelper.pod:435 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" msgstr "" #. type: textblock -#: debhelper.pod:437 +#: debhelper.pod:440 msgid "" "B puts separated debug symbols in a location based on their " "build-id." msgstr "" #. type: textblock -#: debhelper.pod:442 +#: debhelper.pod:445 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." msgstr "" #. type: =item -#: debhelper.pod:447 +#: debhelper.pod:450 msgid "v10" msgstr "" #. type: textblock -#: debhelper.pod:449 +#: debhelper.pod:452 msgid "This is the recommended mode of operation." msgstr "" #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:455 msgid "Changes from v9 are:" msgstr "" #. type: textblock -#: debhelper.pod:458 +#: debhelper.pod:461 msgid "" "B will no longer install a file named debian/I as " "an init script." msgstr "" #. type: textblock -#: debhelper.pod:463 +#: debhelper.pod:466 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -832,7 +839,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:469 +#: debhelper.pod:472 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -841,7 +848,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:476 +#: debhelper.pod:479 msgid "" "B no longer installs a maintainer-provided " "debian/I.shlibs file. This is now done by B " @@ -849,14 +856,14 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:482 +#: debhelper.pod:485 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." msgstr "" #. type: textblock -#: debhelper.pod:487 +#: debhelper.pod:490 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -864,7 +871,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:493 +#: debhelper.pod:496 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -872,7 +879,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:499 +#: debhelper.pod:502 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -880,12 +887,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:503 +#: debhelper.pod:506 msgid "The main affects of this are:" msgstr "" #. type: textblock -#: debhelper.pod:509 +#: debhelper.pod:512 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -893,7 +900,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:515 +#: debhelper.pod:518 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -901,12 +908,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:523 msgid "Example of where it can go wrong:" msgstr "" #. type: verbatim -#: debhelper.pod:522 +#: debhelper.pod:525 #, no-wrap msgid "" " override_dh_foo:\n" @@ -915,7 +922,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:528 #, no-wrap msgid "" " override_dh_bar:\n" @@ -925,7 +932,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:529 +#: debhelper.pod:532 msgid "" "In this case, the call to B will I include " "I, since B was run in a separate override target. " @@ -934,7 +941,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:538 +#: debhelper.pod:541 msgid "" "The B command now shell escapes the lines in the " "F config file. This was the original intent but it did not " @@ -943,7 +950,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:548 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use " @@ -951,7 +958,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:554 msgid "" "The B sequence is now enabled by default. Please pass " "B<--without autoreconf> to B if this is not desirable for a given " @@ -959,48 +966,48 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:557 +#: debhelper.pod:560 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." msgstr "" #. type: =item -#: debhelper.pod:563 +#: debhelper.pod:566 msgid "v11" msgstr "" #. type: textblock -#: debhelper.pod:565 +#: debhelper.pod:568 msgid "This compatibility level is still open for development; use with caution." msgstr "" #. type: textblock -#: debhelper.pod:567 +#: debhelper.pod:570 msgid "Changes from v10 are:" msgstr "" #. type: textblock -#: debhelper.pod:573 +#: debhelper.pod:576 msgid "" "B no longer installs F files. The F " "files are still installed." msgstr "" #. type: textblock -#: debhelper.pod:578 +#: debhelper.pod:581 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "" #. type: textblock -#: debhelper.pod:582 +#: debhelper.pod:585 msgid "" "Invoking B now causes an error instead of a deprecation " "warning." msgstr "" #. type: textblock -#: debhelper.pod:587 +#: debhelper.pod:590 msgid "" "B now installs user-supplied documentation " "(e.g. debian/I.docs) into F rather than " @@ -1008,31 +1015,31 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:592 +#: debhelper.pod:595 msgid "" "If you need the old behaviour, it can be emulated by using the " "B<--mainpackage> option." msgstr "" #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:598 msgid "Please remember to check/update your doc-base files." msgstr "" #. type: =head2 -#: debhelper.pod:601 +#: debhelper.pod:604 msgid "Participating in the open beta testing of new compat levels" msgstr "" #. type: textblock -#: debhelper.pod:603 +#: debhelper.pod:606 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." msgstr "" #. type: textblock -#: debhelper.pod:607 +#: debhelper.pod:610 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1040,24 +1047,24 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:612 +#: debhelper.pod:615 msgid "Please consider the following before opting in:" msgstr "" #. type: =item -#: debhelper.pod:616 debhelper.pod:621 debhelper.pod:628 debhelper.pod:634 debhelper.pod:640 +#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 debhelper.pod:643 msgid "*" msgstr "" #. type: textblock -#: debhelper.pod:618 +#: debhelper.pod:621 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." msgstr "" #. type: textblock -#: debhelper.pod:623 +#: debhelper.pod:626 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1065,7 +1072,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:630 +#: debhelper.pod:633 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1073,7 +1080,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:636 +#: debhelper.pod:639 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1081,19 +1088,19 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:642 +#: debhelper.pod:645 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." msgstr "" #. type: textblock -#: debhelper.pod:647 +#: debhelper.pod:650 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" #. type: verbatim -#: debhelper.pod:649 +#: debhelper.pod:652 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1101,12 +1108,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:651 +#: debhelper.pod:654 msgid "You will also need to ensure that debian/control contains:" msgstr "" #. type: verbatim -#: debhelper.pod:653 +#: debhelper.pod:656 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1114,22 +1121,22 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:655 +#: debhelper.pod:658 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" #. type: =head1 -#: debhelper.pod:657 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 dh_systemd_enable:72 dh_systemd_start:65 +#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 dh_systemd_enable:72 dh_systemd_start:65 msgid "NOTES" msgstr "" #. type: =head2 -#: debhelper.pod:659 +#: debhelper.pod:662 msgid "Multiple binary package support" msgstr "" #. type: textblock -#: debhelper.pod:661 +#: debhelper.pod:664 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1141,7 +1148,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:669 +#: debhelper.pod:672 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, " @@ -1151,7 +1158,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:675 +#: debhelper.pod:678 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L environment variable and B fields in " @@ -1168,12 +1175,12 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:684 +#: debhelper.pod:687 msgid "Automatic generation of Debian install scripts" msgstr "" #. type: textblock -#: debhelper.pod:686 +#: debhelper.pod:689 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1184,21 +1191,21 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:693 +#: debhelper.pod:696 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." msgstr "" #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:699 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." msgstr "" #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:702 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1207,7 +1214,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:704 +#: debhelper.pod:707 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1227,12 +1234,12 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:717 +#: debhelper.pod:720 msgid "Automatic generation of miscellaneous dependencies." msgstr "" #. type: textblock -#: debhelper.pod:719 +#: debhelper.pod:722 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1244,7 +1251,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:727 +#: debhelper.pod:730 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -1253,7 +1260,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:732 +#: debhelper.pod:735 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1262,19 +1269,19 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:737 +#: debhelper.pod:740 msgid "Package build directories" msgstr "" #. type: textblock -#: debhelper.pod:739 +#: debhelper.pod:742 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." msgstr "" #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:745 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B\" to the package's stanza in F. " @@ -1302,12 +1309,12 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:759 +#: debhelper.pod:762 msgid "ENVIRONMENT" msgstr "" #. type: textblock -#: debhelper.pod:761 +#: debhelper.pod:764 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1317,24 +1324,24 @@ msgid "" msgstr "" #. type: =item -#: debhelper.pod:769 +#: debhelper.pod:772 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:771 +#: debhelper.pod:774 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." msgstr "" #. type: =item -#: debhelper.pod:774 +#: debhelper.pod:777 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:776 +#: debhelper.pod:779 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1344,53 +1351,53 @@ msgid "" msgstr "" #. type: =item -#: debhelper.pod:783 +#: debhelper.pod:786 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:785 +#: debhelper.pod:788 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." msgstr "" #. type: =item -#: debhelper.pod:788 +#: debhelper.pod:791 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:790 +#: debhelper.pod:793 msgid "Set to B<1> to enable no-act mode." msgstr "" #. type: =item -#: debhelper.pod:792 +#: debhelper.pod:795 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:794 +#: debhelper.pod:797 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." msgstr "" #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:800 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." msgstr "" #. type: =item -#: debhelper.pod:800 +#: debhelper.pod:803 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:802 +#: debhelper.pod:805 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1398,7 +1405,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:806 +#: debhelper.pod:809 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1409,47 +1416,223 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:813 +#: debhelper.pod:816 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" msgstr "" #. type: =head1 -#: debhelper.pod:818 dh:1064 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:283 dh_systemd_start:243 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:283 dh_systemd_start:243 msgid "SEE ALSO" msgstr "" #. type: =item -#: debhelper.pod:822 +#: debhelper.pod:825 msgid "F" msgstr "" #. type: textblock -#: debhelper.pod:824 +#: debhelper.pod:827 msgid "A set of example F files that use debhelper." msgstr "" #. type: =item -#: debhelper.pod:826 +#: debhelper.pod:829 msgid "L" msgstr "" #. type: textblock -#: debhelper.pod:828 +#: debhelper.pod:831 msgid "Debhelper web site." msgstr "" #. type: =head1 -#: debhelper.pod:832 dh:1070 dh_auto_build:54 dh_auto_clean:57 dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:272 dh_installmanpages:204 dh_installmenu:106 dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 dh_testdir:60 dh_testroot:34 dh_usrlocal:122 +#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:272 dh_installmanpages:204 dh_installmenu:106 dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:834 dh:1072 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 dh_installman:274 dh_installmanpages:206 dh_installmenu:108 dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 dh_installman:274 dh_installmanpages:206 dh_installmenu:108 dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "" +#. type: textblock +#: debhelper-obsolete-compat.pod:3 +msgid "debhelper-obsolete-compat - List of no longer supported compat levels" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:7 +msgid "" +"This document contains the upgrade guidelines from all compat levels which " +"are no longer supported. Accordingly it is mostly for historical purposes " +"and to assist people upgrading from a non-supported compat level to a " +"supported level." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:12 +msgid "For upgrades from supported compat levels, please see L." +msgstr "" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:14 +msgid "UPGRADE LIST FOR COMPAT LEVELS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:16 +msgid "The following is the list of now obsolete compat levels and their changes." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:21 +msgid "v1" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:23 +msgid "" +"This is the original debhelper compatibility level, and so it is the default " +"one. In this mode, debhelper will use F as the package tree " +"directory for the first binary package listed in the control file, while " +"using debian/I for all other packages listed in the F " +"file." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +msgid "This mode is deprecated." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:30 +msgid "v2" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:32 +msgid "" +"In this mode, debhelper will consistently use debian/I as the " +"package tree directory for every package that is built." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:37 +msgid "v3" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:39 +msgid "This mode works like v2, with the following additions:" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:45 +msgid "" +"Debhelper config files support globbing via B<*> and B, when " +"appropriate. To turn this off and use those characters raw, just prefix with " +"a backslash." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:50 +msgid "" +"B makes the F and F scripts call " +"B." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:54 +msgid "" +"Every file in F is automatically flagged as a conffile by " +"B." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:58 +msgid "v4" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:60 +msgid "Changes from v3 are:" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:66 +msgid "" +"B will not include the Debian part of the version number " +"in the generated dependency line in the shlibs file." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:71 +msgid "" +"You are encouraged to put the new B<${misc:Depends}> into F " +"to supplement the B<${shlibs:Depends}> field." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:76 +msgid "" +"B will make all files in F directories and in " +"F executable." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:81 +msgid "B will correct existing links to conform with policy." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:89 +msgid "Changes from v4 are:" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:95 +msgid "Comments are ignored in debhelper config files." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:99 +msgid "" +"B now specifies the name of a package to put " +"debugging symbols in, not the packages to take the symbols from." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:104 +msgid "B skips installing empty files." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:108 +msgid "B errors out if wildcards expand to nothing." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:245 +msgid "L" +msgstr "" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 +msgid "AUTHORS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:120 +msgid "Niels Thykier " +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:122 +msgid "Joey Hess" +msgstr "" + #. type: textblock #: dh:5 msgid "dh - debhelper command sequencer" @@ -1985,11 +2168,6 @@ msgid "" "the last one in the sequence will be used." msgstr "" -#. type: textblock -#: dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:245 -msgid "L" -msgstr "" - #. type: textblock #: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." @@ -4367,11 +4545,6 @@ msgid "" "the B<#DEBHELPER#> token." msgstr "" -#. type: =head1 -#: dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 -msgid "AUTHORS" -msgstr "" - #. type: textblock #: dh_installinit:352 msgid "Steve Langasek " @@ -5480,7 +5653,8 @@ msgstr "" msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " -"package. These files are used by the B package." +"package. These files are used by B or the L " +"program." msgstr "" #. type: textblock diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index 918c6b6f..cec5012e 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20120609\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-11 08:47+0000\n" +"POT-Creation-Date: 2016-10-01 08:12+0000\n" "PO-Revision-Date: 2012-08-20 11:17+0200\n" "Last-Translator: Omar Campagne \n" "Language-Team: Debian l10n Spanish \n" @@ -44,18 +44,18 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 -#: dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 -#: dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 -#: dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 -#: dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 -#: dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 -#: dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 -#: dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 -#: dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 -#: dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 -#: dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 -#: dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 +#: dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 +#: dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 +#: dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 +#: dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 +#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 +#: dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 +#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 +#: dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 +#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 +#: dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 #: dh_systemd_enable:3 dh_systemd_start:3 msgid "NAME" msgstr "NOMBRE" @@ -68,20 +68,21 @@ msgstr "debhelper - El conjunto de herramientas debhelper" # type: =head1 #. type: =head1 -#: debhelper.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 -#: dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 -#: dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 -#: dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 -#: dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 -#: dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 -#: dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 -#: dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 -#: dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 -#: dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 -#: dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 -#: dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 -#: dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 -#: dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 +#: dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 +#: dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 +#: dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 +#: dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 +#: dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 +#: dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 +#: dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 +#: dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 +#: dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 +#: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 +#: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 +#: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 +#: dh_systemd_start:14 msgid "SYNOPSIS" msgstr "SINOPSIS" @@ -939,46 +940,59 @@ msgid "These are the available compatibility levels:" msgstr "Los niveles de compatibilidad disponibles son:" #. type: =item -#: debhelper.pod:301 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 msgid "v5" msgstr "v5" # type: textblock #. type: textblock -#: debhelper.pod:303 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 #, fuzzy #| msgid "These are the available compatibility levels:" msgid "This is the lowest supported compatibility level." msgstr "Los niveles de compatibilidad disponibles son:" -#. type: =item +#. type: textblock #: debhelper.pod:305 +msgid "" +"If you are upgrading from an earlier compatibility level, please review " +"L." +msgstr "" + +#. type: =item +#: debhelper.pod:308 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:307 +#: debhelper.pod:310 msgid "Changes from v5 are:" msgstr "Los cambios desde el nivel v5 son:" # type: =item #. type: =item -#: debhelper.pod:311 debhelper.pod:316 debhelper.pod:322 debhelper.pod:328 -#: debhelper.pod:341 debhelper.pod:348 debhelper.pod:352 debhelper.pod:356 -#: debhelper.pod:369 debhelper.pod:373 debhelper.pod:381 debhelper.pod:386 -#: debhelper.pod:398 debhelper.pod:403 debhelper.pod:410 debhelper.pod:415 -#: debhelper.pod:420 debhelper.pod:424 debhelper.pod:430 debhelper.pod:435 -#: debhelper.pod:440 debhelper.pod:456 debhelper.pod:461 debhelper.pod:467 -#: debhelper.pod:474 debhelper.pod:480 debhelper.pod:485 debhelper.pod:491 -#: debhelper.pod:497 debhelper.pod:507 debhelper.pod:513 debhelper.pod:536 -#: debhelper.pod:543 debhelper.pod:549 debhelper.pod:555 debhelper.pod:571 -#: debhelper.pod:576 debhelper.pod:580 debhelper.pod:585 +#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 +#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 +#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 +#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 +#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 +#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 +#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 +#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 +#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 +#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 +#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 +#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 +#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 +#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 +#: debhelper-obsolete-compat.pod:106 msgid "-" msgstr "-" # type: textblock #. type: textblock -#: debhelper.pod:313 +#: debhelper.pod:316 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -988,7 +1002,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:318 +#: debhelper.pod:321 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -1000,7 +1014,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:324 +#: debhelper.pod:327 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -1012,7 +1026,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:330 +#: debhelper.pod:333 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -1022,18 +1036,18 @@ msgstr "" "anteriores simplemente rechazaba hacerlo, de forma silenciosa." #. type: =item -#: debhelper.pod:335 +#: debhelper.pod:338 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:337 +#: debhelper.pod:340 msgid "Changes from v6 are:" msgstr "Los cambios desde el nivel v6 son:" # type: textblock #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:346 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -1049,20 +1063,20 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:350 +#: debhelper.pod:353 msgid "B will read F and delete files listed there." msgstr "" "B leerá F y eliminará los ficheros ahí listados." # type: textblock #. type: textblock -#: debhelper.pod:354 +#: debhelper.pod:357 msgid "B will delete toplevel F<*-stamp> files." msgstr "B eliminará ficheros F<*-stamp> del nivel superior." # type: textblock #. type: textblock -#: debhelper.pod:358 +#: debhelper.pod:361 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -1071,17 +1085,17 @@ msgstr "" "cambios de la fuente original si no se especifica ninguno." #. type: =item -#: debhelper.pod:363 +#: debhelper.pod:366 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:365 +#: debhelper.pod:368 msgid "Changes from v7 are:" msgstr "Los cambios desde el nivel v7 son:" #. type: textblock -#: debhelper.pod:371 +#: debhelper.pod:374 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -1089,7 +1103,7 @@ msgstr "" "opciones desconocidas." #. type: textblock -#: debhelper.pod:375 +#: debhelper.pod:378 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -1105,7 +1119,7 @@ msgstr "" "paquetes." #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:386 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -1116,7 +1130,7 @@ msgstr "" "B, no B." #. type: textblock -#: debhelper.pod:388 +#: debhelper.pod:391 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1125,17 +1139,17 @@ msgstr "" "preferencia a un fichero F." #. type: =item -#: debhelper.pod:392 +#: debhelper.pod:395 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:394 +#: debhelper.pod:397 msgid "Changes from v8 are:" msgstr "Los cambios desde el nivel v8 son:" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:403 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1144,7 +1158,7 @@ msgstr "" "multiarquitectura a autoconf en «--libdir» y «--libexecdir»." #. type: textblock -#: debhelper.pod:405 +#: debhelper.pod:408 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1158,7 +1172,7 @@ msgstr "" "sobre otros objetivos." #. type: textblock -#: debhelper.pod:412 +#: debhelper.pod:415 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1167,7 +1181,7 @@ msgstr "" "reducir el tamaño de los paquetes -dbg." #. type: textblock -#: debhelper.pod:417 +#: debhelper.pod:420 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1176,12 +1190,12 @@ msgstr "" "libexecdir» al utilizar autoconf." #. type: textblock -#: debhelper.pod:422 +#: debhelper.pod:425 msgid "B does not default to enabling --with=python-support" msgstr "B no activa «--with=python-support» de forma predeterminada." #. type: textblock -#: debhelper.pod:426 +#: debhelper.pod:429 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1190,7 +1204,7 @@ msgstr "" "entorno listados en B, a menos que ya estén definidas." #. type: textblock -#: debhelper.pod:432 +#: debhelper.pod:435 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1199,7 +1213,7 @@ msgstr "" "LDFLAGS a ficheros de Perl F y F" #. type: textblock -#: debhelper.pod:437 +#: debhelper.pod:440 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1208,7 +1222,7 @@ msgstr "" "build-id." #. type: textblock -#: debhelper.pod:442 +#: debhelper.pod:445 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1217,30 +1231,30 @@ msgstr "" "debhelper y su salida." #. type: =item -#: debhelper.pod:447 +#: debhelper.pod:450 msgid "v10" msgstr "v10" # type: textblock #. type: textblock -#: debhelper.pod:449 +#: debhelper.pod:452 msgid "This is the recommended mode of operation." msgstr "Este es el modo de operación aconsejado." #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:455 msgid "Changes from v9 are:" msgstr "Los cambios desde el nivel v9 son:" #. type: textblock -#: debhelper.pod:458 +#: debhelper.pod:461 msgid "" "B will no longer install a file named debian/I as " "an init script." msgstr "" #. type: textblock -#: debhelper.pod:463 +#: debhelper.pod:466 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1248,7 +1262,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:469 +#: debhelper.pod:472 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1257,21 +1271,21 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:476 +#: debhelper.pod:479 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." msgstr "" #. type: textblock -#: debhelper.pod:482 +#: debhelper.pod:485 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." msgstr "" #. type: textblock -#: debhelper.pod:487 +#: debhelper.pod:490 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1279,7 +1293,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:493 +#: debhelper.pod:496 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1287,7 +1301,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:499 +#: debhelper.pod:502 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1295,12 +1309,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:503 +#: debhelper.pod:506 msgid "The main affects of this are:" msgstr "" #. type: textblock -#: debhelper.pod:509 +#: debhelper.pod:512 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1308,7 +1322,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:515 +#: debhelper.pod:518 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1316,12 +1330,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:523 msgid "Example of where it can go wrong:" msgstr "" #. type: verbatim -#: debhelper.pod:522 +#: debhelper.pod:525 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1330,7 +1344,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:528 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1340,7 +1354,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:529 +#: debhelper.pod:532 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1348,7 +1362,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:538 +#: debhelper.pod:541 msgid "" "The B command now shell escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1357,7 +1371,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:548 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1365,28 +1379,28 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:554 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" msgstr "" #. type: textblock -#: debhelper.pod:557 +#: debhelper.pod:560 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." msgstr "" #. type: =item -#: debhelper.pod:563 +#: debhelper.pod:566 #, fuzzy #| msgid "v1" msgid "v11" msgstr "v1" #. type: textblock -#: debhelper.pod:565 +#: debhelper.pod:568 #, fuzzy #| msgid "" #| "This compatibility level is still open for development; use with caution." @@ -1397,14 +1411,14 @@ msgstr "" "precaución." #. type: textblock -#: debhelper.pod:567 +#: debhelper.pod:570 #, fuzzy #| msgid "Changes from v3 are:" msgid "Changes from v10 are:" msgstr "Los cambios desde el nivel v3 son:" #. type: textblock -#: debhelper.pod:573 +#: debhelper.pod:576 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1412,20 +1426,20 @@ msgstr "" # type: =item #. type: textblock -#: debhelper.pod:578 +#: debhelper.pod:581 #, fuzzy #| msgid "B<-s>, B<--same-arch>" msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "B<-s>, B<--same-arch>" #. type: textblock -#: debhelper.pod:582 +#: debhelper.pod:585 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" #. type: textblock -#: debhelper.pod:587 +#: debhelper.pod:590 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." msgstr "" #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:598 msgid "Please remember to check/update your doc-base files." msgstr "" #. type: =head2 -#: debhelper.pod:601 +#: debhelper.pod:604 msgid "Participating in the open beta testing of new compat levels" msgstr "" #. type: textblock -#: debhelper.pod:603 +#: debhelper.pod:606 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." msgstr "" #. type: textblock -#: debhelper.pod:607 +#: debhelper.pod:610 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1465,25 +1479,25 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:612 +#: debhelper.pod:615 msgid "Please consider the following before opting in:" msgstr "" #. type: =item -#: debhelper.pod:616 debhelper.pod:621 debhelper.pod:628 debhelper.pod:634 -#: debhelper.pod:640 +#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 +#: debhelper.pod:643 msgid "*" msgstr "" #. type: textblock -#: debhelper.pod:618 +#: debhelper.pod:621 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." msgstr "" #. type: textblock -#: debhelper.pod:623 +#: debhelper.pod:626 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1491,7 +1505,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:630 +#: debhelper.pod:633 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1499,7 +1513,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:636 +#: debhelper.pod:639 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1507,20 +1521,20 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:642 +#: debhelper.pod:645 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." msgstr "" #. type: textblock -#: debhelper.pod:647 +#: debhelper.pod:650 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:649 +#: debhelper.pod:652 #, fuzzy, no-wrap #| msgid "" #| " % echo 9 > debian/compat\n" @@ -1533,13 +1547,13 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:651 +#: debhelper.pod:654 msgid "You will also need to ensure that debian/control contains:" msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:653 +#: debhelper.pod:656 #, fuzzy, no-wrap #| msgid "" #| " Build-Depends: debhelper (>= 9)\n" @@ -1552,13 +1566,13 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:655 +#: debhelper.pod:658 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:657 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 @@ -1568,13 +1582,13 @@ msgstr "NOTAS" # type: =head2 #. type: =head2 -#: debhelper.pod:659 +#: debhelper.pod:662 msgid "Multiple binary package support" msgstr "Compatibilidad con varios paquetes binarios" # type: textblock #. type: textblock -#: debhelper.pod:661 +#: debhelper.pod:664 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1595,7 +1609,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:669 +#: debhelper.pod:672 #, fuzzy #| msgid "" #| "To facilitate this, as well as give you more control over which packages " @@ -1617,7 +1631,7 @@ msgstr "" "los paquetes listados en el fichero de control." #. type: textblock -#: debhelper.pod:675 +#: debhelper.pod:678 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L environment variable and B fields in " @@ -1635,13 +1649,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:684 +#: debhelper.pod:687 msgid "Automatic generation of Debian install scripts" msgstr "Generación automática de los scripts de instalación de Debian" # type: textblock #. type: textblock -#: debhelper.pod:686 +#: debhelper.pod:689 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1659,7 +1673,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:693 +#: debhelper.pod:696 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1669,7 +1683,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:699 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1679,7 +1693,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:702 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1692,7 +1706,7 @@ msgstr "" "caso comprobé que $1, $2, etc se definen con la orden «set»):" #. type: verbatim -#: debhelper.pod:704 +#: debhelper.pod:707 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1712,12 +1726,12 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:717 +#: debhelper.pod:720 msgid "Automatic generation of miscellaneous dependencies." msgstr "Generación automática de diversas dependencias." #. type: textblock -#: debhelper.pod:719 +#: debhelper.pod:722 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1737,7 +1751,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:727 +#: debhelper.pod:730 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1752,7 +1766,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:732 +#: debhelper.pod:735 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1766,13 +1780,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:737 +#: debhelper.pod:740 msgid "Package build directories" msgstr "Directorios de construcción del paquete" # type: textblock #. type: textblock -#: debhelper.pod:739 +#: debhelper.pod:742 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1783,7 +1797,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:745 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1803,13 +1817,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:750 +#: debhelper.pod:753 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:752 +#: debhelper.pod:755 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1828,12 +1842,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:759 +#: debhelper.pod:762 msgid "ENVIRONMENT" msgstr "ENTORNO" #. type: textblock -#: debhelper.pod:761 +#: debhelper.pod:764 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1844,13 +1858,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:769 +#: debhelper.pod:772 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:771 +#: debhelper.pod:774 #, fuzzy #| msgid "" #| "Set to B<1> to enable verbose mode. Debhelper will output every command " @@ -1865,14 +1879,14 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:774 +#: debhelper.pod:777 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:776 +#: debhelper.pod:779 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1883,13 +1897,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:783 +#: debhelper.pod:786 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:785 +#: debhelper.pod:788 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1899,25 +1913,25 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:788 +#: debhelper.pod:791 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:790 +#: debhelper.pod:793 msgid "Set to B<1> to enable no-act mode." msgstr "Defina como B<1> para habilitar el modo no-act." # type: =item #. type: =item -#: debhelper.pod:792 +#: debhelper.pod:795 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:794 +#: debhelper.pod:797 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1926,7 +1940,7 @@ msgstr "" "de órdenes de todas las órdenes de debhelper." #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:800 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1936,13 +1950,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:800 +#: debhelper.pod:803 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:802 +#: debhelper.pod:805 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1954,7 +1968,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:806 +#: debhelper.pod:809 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1972,7 +1986,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:813 +#: debhelper.pod:816 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1982,12 +1996,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:818 dh:1064 dh_auto_build:48 dh_auto_clean:51 -#: dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 -#: dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 -#: dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 -#: dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 -#: dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 +#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 +#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 +#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 #: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 @@ -2002,19 +2016,19 @@ msgstr "VÉASE TAMBIÉN" # type: =item #. type: =item -#: debhelper.pod:822 +#: debhelper.pod:825 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:824 +#: debhelper.pod:827 msgid "A set of example F files that use debhelper." msgstr "Varios ficheros de ejemplo F que utilizan debhelper." # type: =item #. type: =item -#: debhelper.pod:826 +#: debhelper.pod:829 #, fuzzy #| msgid "L" msgid "L" @@ -2022,13 +2036,13 @@ msgstr "L" # type: textblock #. type: textblock -#: debhelper.pod:828 +#: debhelper.pod:831 msgid "Debhelper web site." msgstr "Sitio web de Debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:832 dh:1070 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 #: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 @@ -2047,7 +2061,7 @@ msgstr "AUTOR" # type: textblock #. type: textblock -#: debhelper.pod:834 dh:1072 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 @@ -2062,6 +2076,242 @@ msgstr "AUTOR" msgid "Joey Hess " msgstr "Joey Hess " +#. type: textblock +#: debhelper-obsolete-compat.pod:3 +msgid "debhelper-obsolete-compat - List of no longer supported compat levels" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:7 +msgid "" +"This document contains the upgrade guidelines from all compat levels which " +"are no longer supported. Accordingly it is mostly for historical purposes " +"and to assist people upgrading from a non-supported compat level to a " +"supported level." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:12 +msgid "For upgrades from supported compat levels, please see L." +msgstr "" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:14 +msgid "UPGRADE LIST FOR COMPAT LEVELS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:16 +msgid "" +"The following is the list of now obsolete compat levels and their changes." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:21 +#, fuzzy +#| msgid "v10" +msgid "v1" +msgstr "v10" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:23 +msgid "" +"This is the original debhelper compatibility level, and so it is the default " +"one. In this mode, debhelper will use F as the package tree " +"directory for the first binary package listed in the control file, while " +"using debian/I for all other packages listed in the F file." +msgstr "" +"Este es el nivel de compatibilidad original de debhelper, y por tanto es el " +"nivel predeterminado. En este modo, debhelper utiliza F como el " +"árbol de directorios del paquete, y «debian/I» para el resto de " +"paquetes listados en el fichero F." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +msgid "This mode is deprecated." +msgstr "Este modo está obsoleto." + +#. type: =item +#: debhelper-obsolete-compat.pod:30 +msgid "v2" +msgstr "v2" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:32 +msgid "" +"In this mode, debhelper will consistently use debian/I as the " +"package tree directory for every package that is built." +msgstr "" +"En este modo, debhelper utilizará «debian/I» de forma consistente " +"como el árbol de directorios para cada paquete que se construya." + +#. type: =item +#: debhelper-obsolete-compat.pod:37 +msgid "v3" +msgstr "v3" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:39 +msgid "This mode works like v2, with the following additions:" +msgstr "Este modo funciona como v2, con los siguientes añadidos:" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:45 +msgid "" +"Debhelper config files support globbing via B<*> and B, when appropriate. " +"To turn this off and use those characters raw, just prefix with a backslash." +msgstr "" +"Los ficheros de configuración de Debhelper aceptan comodines globales " +"mediante B<*> y B cuando sea apropiado. Para utilizar «*» y «?» como " +"caracteres simplemente debe insertar como prefijo una barra invertida." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:50 +msgid "" +"B makes the F and F scripts call " +"B." +msgstr "" +"B hace que los scripts F y F ejecuten " +"ldconfig." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:54 +msgid "" +"Every file in F is automatically flagged as a conffile by " +"B." +msgstr "" +"B marca automáticamente todos los ficheros en F como " +"conffiles." + +#. type: =item +#: debhelper-obsolete-compat.pod:58 +msgid "v4" +msgstr "v4" + +#. type: textblock +#: debhelper-obsolete-compat.pod:60 +#, fuzzy +#| msgid "Changes from v5 are:" +msgid "Changes from v3 are:" +msgstr "Los cambios desde el nivel v5 son:" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:66 +msgid "" +"B will not include the Debian part of the version number " +"in the generated dependency line in the shlibs file." +msgstr "" +"B no incluirá la parte de Debian en el numero de versión " +"generado en la línea de dependencias del fichero «shlibs»." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:71 +msgid "" +"You are encouraged to put the new B<${misc:Depends}> into F " +"to supplement the B<${shlibs:Depends}> field." +msgstr "" +"Se aconseja que use el nuevo B<${misc:Depends}> en F para " +"reemplazar el campo B<${shlibs:Depends}>." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:76 +msgid "" +"B will make all files in F directories and in F executable." +msgstr "" +"B hará ejecutables todos los ficheros en los directorios F y F." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:81 +msgid "B will correct existing links to conform with policy." +msgstr "" +"B corregirá los enlaces existentes para ajustarse a las normas de " +"Debian." + +#. type: textblock +#: debhelper-obsolete-compat.pod:89 +msgid "Changes from v4 are:" +msgstr "Los cambios desde el nivel v4 son:" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:95 +msgid "Comments are ignored in debhelper config files." +msgstr "" +"Se ignoran los comentarios en los ficheros de configuración de debhelper." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:99 +msgid "" +"B now specifies the name of a package to put " +"debugging symbols in, not the packages to take the symbols from." +msgstr "" +"B ahora especifica el nombre del paquete en el que " +"se colocan los símbolos de depuración, no los paquetes desde los que obtener " +"los símbolos." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:104 +msgid "B skips installing empty files." +msgstr "B omite la instalación de ficheros vacíos." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:108 +msgid "B errors out if wildcards expand to nothing." +msgstr "" +"B devuelve un error si los comodines se expanden a un valor " +"vacío." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 +#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 +#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 +#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 +#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 +#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:245 +msgid "L" +msgstr "L" + +# type: =head1 +#. type: =head1 +#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 +#: dh_systemd_start:247 +msgid "AUTHORS" +msgstr "AUTORES" + +#. type: textblock +#: debhelper-obsolete-compat.pod:120 +msgid "Niels Thykier " +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:122 +msgid "Joey Hess" +msgstr "" + #. type: textblock #: dh:5 msgid "dh - debhelper command sequencer" @@ -2823,24 +3073,6 @@ msgstr "" "ambigüedad. Si hay muchas coincidencias con la subcadena se utilizará la " "última en la secuencia." -# type: textblock -#. type: textblock -#: dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 -#: dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 -#: dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 -msgid "L" -msgstr "L" - # type: textblock #. type: textblock #: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 @@ -6163,12 +6395,6 @@ msgstr "" "La función se debe proporcionar en los scripts F y F, antes " "del comodín B<#DEBHELPER#>." -# type: =head1 -#. type: =head1 -#: dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 -msgid "AUTHORS" -msgstr "AUTORES" - #. type: textblock #: dh_installinit:352 msgid "Steve Langasek " @@ -7727,10 +7953,16 @@ msgstr "" # type: textblock #. type: textblock #: dh_md5sums:20 +#, fuzzy +#| msgid "" +#| "B is a debhelper program that is responsible for generating a " +#| "F file, which lists the md5sums of each file in the " +#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " -"package. These files are used by the B package." +"package. These files are used by B or the L " +"program." msgstr "" "B es un programa de debhelper responsable de generar un fichero " "F, el cual lista las sumas de control md5 de cada fichero en " @@ -8998,73 +9230,6 @@ msgstr "" #~ "Solía ser una versión más inteligente de la opción B<-a>, pero " #~ "actualmente la opción B<-a> es igual de inteligente." -#~ msgid "v3" -#~ msgstr "v3" - -# type: textblock -#~ msgid "This mode is deprecated." -#~ msgstr "Este modo está obsoleto." - -#~ msgid "v4" -#~ msgstr "v4" - -# type: textblock -#~ msgid "" -#~ "B will not include the Debian part of the version " -#~ "number in the generated dependency line in the shlibs file." -#~ msgstr "" -#~ "B no incluirá la parte de Debian en el numero de " -#~ "versión generado en la línea de dependencias del fichero «shlibs»." - -# type: textblock -#~ msgid "" -#~ "You are encouraged to put the new B<${misc:Depends}> into F to supplement the B<${shlibs:Depends}> field." -#~ msgstr "" -#~ "Se aconseja que use el nuevo B<${misc:Depends}> en F para " -#~ "reemplazar el campo B<${shlibs:Depends}>." - -# type: textblock -#~ msgid "" -#~ "B will make all files in F directories and in F executable." -#~ msgstr "" -#~ "B hará ejecutables todos los ficheros en los directorios " -#~ "F y F." - -# type: textblock -#~ msgid "B will correct existing links to conform with policy." -#~ msgstr "" -#~ "B corregirá los enlaces existentes para ajustarse a las normas " -#~ "de Debian." - -#~ msgid "Changes from v4 are:" -#~ msgstr "Los cambios desde el nivel v4 son:" - -# type: textblock -#~ msgid "Comments are ignored in debhelper config files." -#~ msgstr "" -#~ "Se ignoran los comentarios en los ficheros de configuración de debhelper." - -# type: textblock -#~ msgid "" -#~ "B now specifies the name of a package to put " -#~ "debugging symbols in, not the packages to take the symbols from." -#~ msgstr "" -#~ "B ahora especifica el nombre del paquete en el " -#~ "que se colocan los símbolos de depuración, no los paquetes desde los que " -#~ "obtener los símbolos." - -# type: textblock -#~ msgid "B skips installing empty files." -#~ msgstr "B omite la instalación de ficheros vacíos." - -# type: textblock -#~ msgid "B errors out if wildcards expand to nothing." -#~ msgstr "" -#~ "B devuelve un error si los comodines se expanden a un valor " -#~ "vacío." - #~ msgid "" #~ "If your package uses autotools and you want to freshen F and " #~ "F with newer versions from the B package at " @@ -9246,61 +9411,6 @@ msgstr "" #~ "suidmanager; en caso contrario, puede simplemente eliminar la invocación " #~ "a este programa de su fichero «rules»." -# type: textblock -#~ msgid "" -#~ "This is the original debhelper compatibility level, and so it is the " -#~ "default one. In this mode, debhelper will use F as the " -#~ "package tree directory for the first binary package listed in the control " -#~ "file, while using debian/I for all other packages listed in the " -#~ "F file." -#~ msgstr "" -#~ "Este es el nivel de compatibilidad original de debhelper, y por tanto es " -#~ "el nivel predeterminado. En este modo, debhelper utiliza F " -#~ "como el árbol de directorios del paquete, y «debian/I» para el " -#~ "resto de paquetes listados en el fichero F." - -#~ msgid "v2" -#~ msgstr "v2" - -# type: textblock -#~ msgid "" -#~ "In this mode, debhelper will consistently use debian/I as the " -#~ "package tree directory for every package that is built." -#~ msgstr "" -#~ "En este modo, debhelper utilizará «debian/I» de forma " -#~ "consistente como el árbol de directorios para cada paquete que se " -#~ "construya." - -# type: textblock -#~ msgid "This mode works like v2, with the following additions:" -#~ msgstr "Este modo funciona como v2, con los siguientes añadidos:" - -# type: textblock -#~ msgid "" -#~ "Debhelper config files support globbing via B<*> and B, when " -#~ "appropriate. To turn this off and use those characters raw, just prefix " -#~ "with a backslash." -#~ msgstr "" -#~ "Los ficheros de configuración de Debhelper aceptan comodines globales " -#~ "mediante B<*> y B cuando sea apropiado. Para utilizar «*» y «?» como " -#~ "caracteres simplemente debe insertar como prefijo una barra invertida." - -# type: textblock -#~ msgid "" -#~ "B makes the F and F scripts call " -#~ "B." -#~ msgstr "" -#~ "B hace que los scripts F y F ejecuten " -#~ "ldconfig." - -# type: textblock -#~ msgid "" -#~ "Every file in F is automatically flagged as a conffile by " -#~ "B." -#~ msgstr "" -#~ "B marca automáticamente todos los ficheros en F como " -#~ "conffiles." - # type: =item #~ msgid "B<--parallel>" #~ msgstr "B<--parallel>" diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index 7dd795b5..f1d99eb3 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2016-09-11 08:47+0000\n" +"POT-Creation-Date: 2016-10-01 08:12+0000\n" "PO-Revision-Date: 2016-08-31 13:18+0200\n" "Last-Translator: Baptiste Jammet \n" "Language-Team: French \n" @@ -18,18 +18,18 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 -#: dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 -#: dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 -#: dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 -#: dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 -#: dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 -#: dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 -#: dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 -#: dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 -#: dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 -#: dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 -#: dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 +#: dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 +#: dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 +#: dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 +#: dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 +#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 +#: dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 +#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 +#: dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 +#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 +#: dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 #: dh_systemd_enable:3 dh_systemd_start:3 msgid "NAME" msgstr "NOM" @@ -42,20 +42,21 @@ msgstr "debhelper - Ensemble d'outils regroupés sous le nom de debhelper" # type: =head1 #. type: =head1 -#: debhelper.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 -#: dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 -#: dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 -#: dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 -#: dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 -#: dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 -#: dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 -#: dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 -#: dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 -#: dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 -#: dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 -#: dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 -#: dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 -#: dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 +#: dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 +#: dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 +#: dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 +#: dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 +#: dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 +#: dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 +#: dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 +#: dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 +#: dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 +#: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 +#: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 +#: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 +#: dh_systemd_start:14 msgid "SYNOPSIS" msgstr "SYNOPSIS" @@ -896,45 +897,58 @@ msgid "These are the available compatibility levels:" msgstr "Les niveaux de compatibilité sont les suivants :" #. type: =item -#: debhelper.pod:301 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 msgid "v5" msgstr "v5" # type: textblock #. type: textblock -#: debhelper.pod:303 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 msgid "This is the lowest supported compatibility level." msgstr "C'est le niveau de compatibilité le plus bas pris en charge." -#. type: =item +#. type: textblock #: debhelper.pod:305 +msgid "" +"If you are upgrading from an earlier compatibility level, please review " +"L." +msgstr "" + +#. type: =item +#: debhelper.pod:308 msgid "v6" msgstr "v6" # type: textblock #. type: textblock -#: debhelper.pod:307 +#: debhelper.pod:310 msgid "Changes from v5 are:" msgstr "Les changements par rapport à la version 5 sont :" # type: =item #. type: =item -#: debhelper.pod:311 debhelper.pod:316 debhelper.pod:322 debhelper.pod:328 -#: debhelper.pod:341 debhelper.pod:348 debhelper.pod:352 debhelper.pod:356 -#: debhelper.pod:369 debhelper.pod:373 debhelper.pod:381 debhelper.pod:386 -#: debhelper.pod:398 debhelper.pod:403 debhelper.pod:410 debhelper.pod:415 -#: debhelper.pod:420 debhelper.pod:424 debhelper.pod:430 debhelper.pod:435 -#: debhelper.pod:440 debhelper.pod:456 debhelper.pod:461 debhelper.pod:467 -#: debhelper.pod:474 debhelper.pod:480 debhelper.pod:485 debhelper.pod:491 -#: debhelper.pod:497 debhelper.pod:507 debhelper.pod:513 debhelper.pod:536 -#: debhelper.pod:543 debhelper.pod:549 debhelper.pod:555 debhelper.pod:571 -#: debhelper.pod:576 debhelper.pod:580 debhelper.pod:585 +#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 +#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 +#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 +#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 +#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 +#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 +#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 +#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 +#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 +#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 +#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 +#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 +#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 +#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 +#: debhelper-obsolete-compat.pod:106 msgid "-" msgstr "-" # type: textblock #. type: textblock -#: debhelper.pod:313 +#: debhelper.pod:316 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -944,7 +958,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:318 +#: debhelper.pod:321 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -956,7 +970,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:324 +#: debhelper.pod:327 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -968,7 +982,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:330 +#: debhelper.pod:333 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -978,19 +992,19 @@ msgstr "" "de le faire." #. type: =item -#: debhelper.pod:335 +#: debhelper.pod:338 msgid "v7" msgstr "v7" # type: textblock #. type: textblock -#: debhelper.pod:337 +#: debhelper.pod:340 msgid "Changes from v6 are:" msgstr "Les changements par rapport à la version 6 sont :" # type: textblock #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:346 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -1006,7 +1020,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:350 +#: debhelper.pod:353 msgid "B will read F and delete files listed there." msgstr "" "B lit le répertoire F et supprime les fichiers qui y " @@ -1014,13 +1028,13 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:354 +#: debhelper.pod:357 msgid "B will delete toplevel F<*-stamp> files." msgstr "B supprime les fichiers F<*-stamp>." # type: textblock #. type: textblock -#: debhelper.pod:358 +#: debhelper.pod:361 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -1029,18 +1043,18 @@ msgstr "" "amont si rien n'est indiqué." #. type: =item -#: debhelper.pod:363 +#: debhelper.pod:366 msgid "v8" msgstr "v8" # type: textblock #. type: textblock -#: debhelper.pod:365 +#: debhelper.pod:368 msgid "Changes from v7 are:" msgstr "Les changements par rapport à la version 7 sont :" #. type: textblock -#: debhelper.pod:371 +#: debhelper.pod:374 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -1048,7 +1062,7 @@ msgstr "" "recevront des options inconnues." #. type: textblock -#: debhelper.pod:375 +#: debhelper.pod:378 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -1065,7 +1079,7 @@ msgstr "" "certains paquets." #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:386 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -1076,7 +1090,7 @@ msgstr "" "faut écrire « B », et non « B »" #. type: textblock -#: debhelper.pod:388 +#: debhelper.pod:391 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1085,18 +1099,18 @@ msgstr "" "F." #. type: =item -#: debhelper.pod:392 +#: debhelper.pod:395 msgid "v9" msgstr "v9" # type: textblock #. type: textblock -#: debhelper.pod:394 +#: debhelper.pod:397 msgid "Changes from v8 are:" msgstr "Les changements par rapport à la version 8 sont :" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:403 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1106,7 +1120,7 @@ msgstr "" "libexecdir>." #. type: textblock -#: debhelper.pod:405 +#: debhelper.pod:408 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1120,7 +1134,7 @@ msgstr "" "les autres cibles." #. type: textblock -#: debhelper.pod:412 +#: debhelper.pod:415 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1129,7 +1143,7 @@ msgstr "" "la taille d'installation des paquets -dbg." #. type: textblock -#: debhelper.pod:417 +#: debhelper.pod:420 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1138,12 +1152,12 @@ msgstr "" "libexecdir> en utilisant B." #. type: textblock -#: debhelper.pod:422 +#: debhelper.pod:425 msgid "B does not default to enabling --with=python-support" msgstr "B n'active pas B<--with=python-support> par défaut." #. type: textblock -#: debhelper.pod:426 +#: debhelper.pod:429 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1153,7 +1167,7 @@ msgstr "" "sont déjà configurées." #. type: textblock -#: debhelper.pod:432 +#: debhelper.pod:435 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1162,7 +1176,7 @@ msgstr "" "buildflags> à F et F de Perl." #. type: textblock -#: debhelper.pod:437 +#: debhelper.pod:440 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1171,7 +1185,7 @@ msgstr "" "fonction de leur identifiant de construction (build-id)." #. type: textblock -#: debhelper.pod:442 +#: debhelper.pod:445 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1180,24 +1194,24 @@ msgstr "" "sortie est utilisée comme configuration." #. type: =item -#: debhelper.pod:447 +#: debhelper.pod:450 msgid "v10" msgstr "v10" # type: textblock #. type: textblock -#: debhelper.pod:449 +#: debhelper.pod:452 msgid "This is the recommended mode of operation." msgstr "C'est la version dont l'usage est recommandé." # type: textblock #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:455 msgid "Changes from v9 are:" msgstr "Les changements par rapport à la version 9 sont :" #. type: textblock -#: debhelper.pod:458 +#: debhelper.pod:461 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1206,7 +1220,7 @@ msgstr "" "script d'initialisation." #. type: textblock -#: debhelper.pod:463 +#: debhelper.pod:466 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1218,7 +1232,7 @@ msgstr "" "responsable)." #. type: textblock -#: debhelper.pod:469 +#: debhelper.pod:472 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1232,7 +1246,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:476 +#: debhelper.pod:479 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1242,7 +1256,7 @@ msgstr "" "B." #. type: textblock -#: debhelper.pod:482 +#: debhelper.pod:485 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1252,7 +1266,7 @@ msgstr "" "manager)." #. type: textblock -#: debhelper.pod:487 +#: debhelper.pod:490 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1264,7 +1278,7 @@ msgstr "" "parallel>." #. type: textblock -#: debhelper.pod:493 +#: debhelper.pod:496 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1275,7 +1289,7 @@ msgstr "" "cibles de réécritures à la place." #. type: textblock -#: debhelper.pod:499 +#: debhelper.pod:502 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1287,12 +1301,12 @@ msgstr "" "cas." #. type: textblock -#: debhelper.pod:503 +#: debhelper.pod:506 msgid "The main affects of this are:" msgstr "Les principales conséquences de cela sont :" #. type: textblock -#: debhelper.pod:509 +#: debhelper.pod:512 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1303,7 +1317,7 @@ msgstr "" "(sans avoir à refaire un cycle complet de « clean & rebuild »)" #. type: textblock -#: debhelper.pod:515 +#: debhelper.pod:518 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1315,12 +1329,12 @@ msgstr "" "fonctionnera comme avant." #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:523 msgid "Example of where it can go wrong:" msgstr "Exemple de ce qui pourrait mal se passer :" #. type: verbatim -#: debhelper.pod:522 +#: debhelper.pod:525 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1332,7 +1346,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:528 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1346,7 +1360,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:529 +#: debhelper.pod:532 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1358,7 +1372,7 @@ msgstr "" "B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:538 +#: debhelper.pod:541 msgid "" "The B command now shell escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1372,7 +1386,7 @@ msgstr "" "de fichiers de guillemets)." #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:548 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1383,7 +1397,7 @@ msgstr "" "utiliser l'option B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:554 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1393,7 +1407,7 @@ msgstr "" "certains paquets." #. type: textblock -#: debhelper.pod:557 +#: debhelper.pod:560 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1403,12 +1417,12 @@ msgstr "" "paquets." #. type: =item -#: debhelper.pod:563 +#: debhelper.pod:566 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:565 +#: debhelper.pod:568 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1417,12 +1431,12 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:567 +#: debhelper.pod:570 msgid "Changes from v10 are:" msgstr "Les changements par rapport à la version 10 sont :" #. type: textblock -#: debhelper.pod:573 +#: debhelper.pod:576 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1432,12 +1446,12 @@ msgstr "" # type: =item #. type: textblock -#: debhelper.pod:578 +#: debhelper.pod:581 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "L'option B<-s> (B<--same-arch>) est supprimée." #. type: textblock -#: debhelper.pod:582 +#: debhelper.pod:585 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1445,7 +1459,7 @@ msgstr "" "l'avertissement d'obsolescence." #. type: textblock -#: debhelper.pod:587 +#: debhelper.pod:590 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." @@ -1466,17 +1480,17 @@ msgstr "" "utilisant l'option B<--mainpackage>." #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:598 msgid "Please remember to check/update your doc-base files." msgstr "Veuillez vérifier et mettre à jour vos fichiers doc-base." #. type: =head2 -#: debhelper.pod:601 +#: debhelper.pod:604 msgid "Participating in the open beta testing of new compat levels" msgstr "Participation au test des nouveaux modes de compatibilité" #. type: textblock -#: debhelper.pod:603 +#: debhelper.pod:606 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1486,7 +1500,7 @@ msgstr "" "« beta-tester »." #. type: textblock -#: debhelper.pod:607 +#: debhelper.pod:610 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1497,18 +1511,18 @@ msgstr "" "« open beta », le mode de compatibilité sera le mode stable le plus élevé." #. type: textblock -#: debhelper.pod:612 +#: debhelper.pod:615 msgid "Please consider the following before opting in:" msgstr "Veuillez vous souvenir de ces remarques avant de choisir :" #. type: =item -#: debhelper.pod:616 debhelper.pod:621 debhelper.pod:628 debhelper.pod:634 -#: debhelper.pod:640 +#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 +#: debhelper.pod:643 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:618 +#: debhelper.pod:621 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1517,7 +1531,7 @@ msgstr "" "fonctionnement d'un paquet (ou d'une des fonctionnalités)." #. type: textblock -#: debhelper.pod:623 +#: debhelper.pod:626 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1529,7 +1543,7 @@ msgstr "" "phase." #. type: textblock -#: debhelper.pod:630 +#: debhelper.pod:633 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1541,7 +1555,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:636 +#: debhelper.pod:639 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1552,7 +1566,7 @@ msgstr "" "pas recommandé pour les paquets souvent rétroportés." #. type: textblock -#: debhelper.pod:642 +#: debhelper.pod:645 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1561,7 +1575,7 @@ msgstr "" "compatibilité de votre paquet à une version stable." #. type: textblock -#: debhelper.pod:647 +#: debhelper.pod:650 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" "Si vous êtes toujours intéressé par le test « open beta », veuillez exécuter " @@ -1569,7 +1583,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:649 +#: debhelper.pod:652 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1579,14 +1593,14 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:651 +#: debhelper.pod:654 msgid "You will also need to ensure that debian/control contains:" msgstr "" "Vous devrez aussi vous assurer que votre fichier debian/control contient :" # type: verbatim #. type: verbatim -#: debhelper.pod:653 +#: debhelper.pod:656 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1596,13 +1610,13 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:655 +#: debhelper.pod:658 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "Pour vous assurer que debhelper connaît le mode « beta-tester »." # type: =head1 #. type: =head1 -#: debhelper.pod:657 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 @@ -1612,13 +1626,13 @@ msgstr "REMARQUES" # type: =head2 #. type: =head2 -#: debhelper.pod:659 +#: debhelper.pod:662 msgid "Multiple binary package support" msgstr "Prise en charge de plusieurs paquets binaires" # type: textblock #. type: textblock -#: debhelper.pod:661 +#: debhelper.pod:664 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1638,7 +1652,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:669 +#: debhelper.pod:672 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1653,7 +1667,7 @@ msgstr "" "paquets énumérés dans le fichier de contrôle, avec les exceptions ci-dessous." #. type: textblock -#: debhelper.pod:675 +#: debhelper.pod:678 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:679 +#: debhelper.pod:682 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1679,13 +1693,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:684 +#: debhelper.pod:687 msgid "Automatic generation of Debian install scripts" msgstr "Génération automatique des scripts Debian d’installation" # type: textblock #. type: textblock -#: debhelper.pod:686 +#: debhelper.pod:689 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1703,7 +1717,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:693 +#: debhelper.pod:696 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1713,7 +1727,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:699 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1724,7 +1738,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:702 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1738,7 +1752,7 @@ msgstr "" "la commande set) :" #. type: verbatim -#: debhelper.pod:704 +#: debhelper.pod:707 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1771,13 +1785,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:717 +#: debhelper.pod:720 msgid "Automatic generation of miscellaneous dependencies." msgstr "Génération automatique des diverses dépendances." # type: textblock #. type: textblock -#: debhelper.pod:719 +#: debhelper.pod:722 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1797,7 +1811,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:727 +#: debhelper.pod:730 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1812,7 +1826,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:732 +#: debhelper.pod:735 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1826,13 +1840,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:737 +#: debhelper.pod:740 msgid "Package build directories" msgstr "Répertoires de construction du paquet" # type: textblock #. type: textblock -#: debhelper.pod:739 +#: debhelper.pod:742 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1843,7 +1857,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:745 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1863,13 +1877,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:750 +#: debhelper.pod:753 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:752 +#: debhelper.pod:755 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1888,12 +1902,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:759 +#: debhelper.pod:762 msgid "ENVIRONMENT" msgstr "VARIABLES D'ENVIRONNEMENT" #. type: textblock -#: debhelper.pod:761 +#: debhelper.pod:764 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1910,13 +1924,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:769 +#: debhelper.pod:772 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:771 +#: debhelper.pod:774 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1927,12 +1941,12 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:774 +#: debhelper.pod:777 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:776 +#: debhelper.pod:779 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1950,13 +1964,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:783 +#: debhelper.pod:786 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:785 +#: debhelper.pod:788 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1967,25 +1981,25 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:788 +#: debhelper.pod:791 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:790 +#: debhelper.pod:793 msgid "Set to B<1> to enable no-act mode." msgstr "Mettre cette variable à B<1> pour activer le mode simulation (no-act)." # type: =item #. type: =item -#: debhelper.pod:792 +#: debhelper.pod:795 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:794 +#: debhelper.pod:797 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1994,7 +2008,7 @@ msgstr "" "les commandes debhelper." #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:800 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -2004,13 +2018,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:800 +#: debhelper.pod:803 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:802 +#: debhelper.pod:805 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -2023,7 +2037,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:806 +#: debhelper.pod:809 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -2042,7 +2056,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:813 +#: debhelper.pod:816 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -2052,12 +2066,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:818 dh:1064 dh_auto_build:48 dh_auto_clean:51 -#: dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 -#: dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 -#: dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 -#: dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 -#: dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 +#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 +#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 +#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 #: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 @@ -2072,32 +2086,32 @@ msgstr "VOIR AUSSI" # type: =item #. type: =item -#: debhelper.pod:822 +#: debhelper.pod:825 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:824 +#: debhelper.pod:827 msgid "A set of example F files that use debhelper." msgstr "" "Un ensemble d'exemples de fichiers F qui utilisent debhelper." # type: =item #. type: =item -#: debhelper.pod:826 +#: debhelper.pod:829 msgid "L" msgstr "L" # type: textblock #. type: textblock -#: debhelper.pod:828 +#: debhelper.pod:831 msgid "Debhelper web site." msgstr "Le site internet de debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:832 dh:1070 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 #: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 @@ -2116,7 +2130,7 @@ msgstr "AUTEUR" # type: textblock #. type: textblock -#: debhelper.pod:834 dh:1072 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 @@ -2131,6 +2145,252 @@ msgstr "AUTEUR" msgid "Joey Hess " msgstr "Joey Hess " +#. type: textblock +#: debhelper-obsolete-compat.pod:3 +msgid "debhelper-obsolete-compat - List of no longer supported compat levels" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:7 +msgid "" +"This document contains the upgrade guidelines from all compat levels which " +"are no longer supported. Accordingly it is mostly for historical purposes " +"and to assist people upgrading from a non-supported compat level to a " +"supported level." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:12 +#, fuzzy +#| msgid "" +#| "* The package must be using compatibility level 9 or later (see " +#| "L)" +msgid "For upgrades from supported compat levels, please see L." +msgstr "" +"* Le paquet doit utiliser le niveau de compatibilité 9 ou supérieur (voir " +"L) ;" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:14 +msgid "UPGRADE LIST FOR COMPAT LEVELS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:16 +msgid "" +"The following is the list of now obsolete compat levels and their changes." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:21 +#, fuzzy +#| msgid "v10" +msgid "v1" +msgstr "v10" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:23 +msgid "" +"This is the original debhelper compatibility level, and so it is the default " +"one. In this mode, debhelper will use F as the package tree " +"directory for the first binary package listed in the control file, while " +"using debian/I for all other packages listed in the F file." +msgstr "" +"C'est le niveau initial de compatibilité de debhelper d'où son numéro 1. " +"Dans ce mode, debhelper emploiera F comme répertoire de " +"l'arborescence du premier paquet binaire énuméré dans le fichier F " +"et « debian/I » pour tous les autres." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +msgid "This mode is deprecated." +msgstr "Ce mode est déconseillé." + +#. type: =item +#: debhelper-obsolete-compat.pod:30 +msgid "v2" +msgstr "v2" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:32 +msgid "" +"In this mode, debhelper will consistently use debian/I as the " +"package tree directory for every package that is built." +msgstr "" +"Dans ce mode, debhelper emploiera uniformément « debian/I » comme " +"répertoire de l'arborescence de chaque paquet construit." + +#. type: =item +#: debhelper-obsolete-compat.pod:37 +msgid "v3" +msgstr "v3" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:39 +msgid "This mode works like v2, with the following additions:" +msgstr "Ce mode fonctionne comme v2 mais avec les ajouts suivants :" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:45 +msgid "" +"Debhelper config files support globbing via B<*> and B, when appropriate. " +"To turn this off and use those characters raw, just prefix with a backslash." +msgstr "" +"Les fichiers de configuration de debhelper acceptent les jokers B<*> et B " +"lorsque cela a un sens. Pour désactiver cette substitution et utiliser ces " +"caractères tels quels, il suffit de les préfixer avec une barre contre-" +"oblique (backslash)." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:50 +msgid "" +"B makes the F and F scripts call " +"B." +msgstr "" +"Les scripts de maintenance du paquet (F et F) feront appel " +"à B quand B sera lancé." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:54 +msgid "" +"Every file in F is automatically flagged as a conffile by " +"B." +msgstr "" +"Chaque fichier de F est automatiquement marqué par B " +"comme un fichier de configuration." + +#. type: =item +#: debhelper-obsolete-compat.pod:58 +msgid "v4" +msgstr "v4" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:60 +#, fuzzy +#| msgid "Changes from v5 are:" +msgid "Changes from v3 are:" +msgstr "Les changements par rapport à la version 5 sont :" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:66 +msgid "" +"B will not include the Debian part of the version number " +"in the generated dependency line in the shlibs file." +msgstr "" +"B n'inclura pas la partie Debian du numéro de version dans " +"la ligne de dépendance produite dans le fichier shlibs." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:71 +msgid "" +"You are encouraged to put the new B<${misc:Depends}> into F " +"to supplement the B<${shlibs:Depends}> field." +msgstr "" +"Il est fortement conseillé de mettre le nouveau B<${misc:Depends}> dans " +"F pour compléter le champs B<${shlibs:Depends}>." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:76 +msgid "" +"B will make all files in F directories and in F executable." +msgstr "" +"B rendra exécutables tous les fichiers des répertoires F " +"et F." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:81 +msgid "B will correct existing links to conform with policy." +msgstr "" +"B corrigera les liens existants pour les rendre conformes à la " +"Charte Debian." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:89 +msgid "Changes from v4 are:" +msgstr "Les changements par rapport à la version 4 sont :" + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:95 +msgid "Comments are ignored in debhelper config files." +msgstr "" +"Les commentaires sont ignorés dans les fichiers de configuration de " +"debhelper." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:99 +msgid "" +"B now specifies the name of a package to put " +"debugging symbols in, not the packages to take the symbols from." +msgstr "" +"B indique maintenant le nom du paquet qui doit " +"recevoir les symboles de mise au point et non les paquets d'où proviennent " +"ces symboles." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:104 +msgid "B skips installing empty files." +msgstr "B saute l'installation des fichiers vides." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:108 +msgid "B errors out if wildcards expand to nothing." +msgstr "" +"B génère des erreurs si les jokers (wildcards) ne correspondent " +"à rien." + +# type: textblock +#. type: textblock +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 +#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 +#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 +#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 +#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 +#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:245 +msgid "L" +msgstr "L" + +# type: =head1 +#. type: =head1 +#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 +#: dh_systemd_start:247 +msgid "AUTHORS" +msgstr "AUTEURS" + +#. type: textblock +#: debhelper-obsolete-compat.pod:120 +msgid "Niels Thykier " +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:122 +msgid "Joey Hess" +msgstr "" + # type: textblock #. type: textblock #: dh:5 @@ -2915,24 +3175,6 @@ msgstr "" "ambiguïté. Si plusieurs commandes correspondent à la sous-chaîne la dernière " "de la séquence sera prise en compte." -# type: textblock -#. type: textblock -#: dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 -#: dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 -#: dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 -msgid "L" -msgstr "L" - # type: textblock #. type: textblock #: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 @@ -6342,12 +6584,6 @@ msgstr "" "le script init échouerait. La fonction doit être décrite dans les scripts de " "maintenance F et F avant l'apparition de B<#DEBHELPER#>." -# type: =head1 -#. type: =head1 -#: dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 -msgid "AUTHORS" -msgstr "AUTEURS" - # type: textblock #. type: textblock #: dh_installinit:352 @@ -7951,10 +8187,16 @@ msgstr "" # type: textblock #. type: textblock #: dh_md5sums:20 +#, fuzzy +#| msgid "" +#| "B is a debhelper program that is responsible for generating a " +#| "F file, which lists the md5sums of each file in the " +#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " -"package. These files are used by the B package." +"package. These files are used by B or the L " +"program." msgstr "" "B est le programme de la suite debhelper chargé de produire un " "fichier F indiquant la somme md5 de chacun des fichiers du " @@ -9232,75 +9474,6 @@ msgstr "" #~ "Cette option était plus intelligente que l'option B<-a>, mais l'option B<-" #~ "a> est maintenant tout aussi intelligente." -#~ msgid "v3" -#~ msgstr "v3" - -# type: textblock -#~ msgid "This mode is deprecated." -#~ msgstr "Ce mode est déconseillé." - -#~ msgid "v4" -#~ msgstr "v4" - -# type: textblock -#~ msgid "" -#~ "B will not include the Debian part of the version " -#~ "number in the generated dependency line in the shlibs file." -#~ msgstr "" -#~ "B n'inclura pas la partie Debian du numéro de version " -#~ "dans la ligne de dépendance produite dans le fichier shlibs." - -# type: textblock -#~ msgid "" -#~ "You are encouraged to put the new B<${misc:Depends}> into F to supplement the B<${shlibs:Depends}> field." -#~ msgstr "" -#~ "Il est fortement conseillé de mettre le nouveau B<${misc:Depends}> dans " -#~ "F pour compléter le champs B<${shlibs:Depends}>." - -# type: textblock -#~ msgid "" -#~ "B will make all files in F directories and in F executable." -#~ msgstr "" -#~ "B rendra exécutables tous les fichiers des répertoires F et F." - -# type: textblock -#~ msgid "B will correct existing links to conform with policy." -#~ msgstr "" -#~ "B corrigera les liens existants pour les rendre conformes à la " -#~ "Charte Debian." - -# type: textblock -#~ msgid "Changes from v4 are:" -#~ msgstr "Les changements par rapport à la version 4 sont :" - -# type: textblock -#~ msgid "Comments are ignored in debhelper config files." -#~ msgstr "" -#~ "Les commentaires sont ignorés dans les fichiers de configuration de " -#~ "debhelper." - -# type: textblock -#~ msgid "" -#~ "B now specifies the name of a package to put " -#~ "debugging symbols in, not the packages to take the symbols from." -#~ msgstr "" -#~ "B indique maintenant le nom du paquet qui doit " -#~ "recevoir les symboles de mise au point et non les paquets d'où " -#~ "proviennent ces symboles." - -# type: textblock -#~ msgid "B skips installing empty files." -#~ msgstr "B saute l'installation des fichiers vides." - -# type: textblock -#~ msgid "B errors out if wildcards expand to nothing." -#~ msgstr "" -#~ "B génère des erreurs si les jokers (wildcards) ne " -#~ "correspondent à rien." - #~ msgid "" #~ "If your package uses autotools and you want to freshen F and " #~ "F with newer versions from the B package at " @@ -9524,61 +9697,6 @@ msgstr "" #~ "variable est seulement un garde-fou temporaire et sera supprimée une fois " #~ "l'archive prête." -# type: textblock -#~ msgid "" -#~ "This is the original debhelper compatibility level, and so it is the " -#~ "default one. In this mode, debhelper will use F as the " -#~ "package tree directory for the first binary package listed in the control " -#~ "file, while using debian/I for all other packages listed in the " -#~ "F file." -#~ msgstr "" -#~ "C'est le niveau initial de compatibilité de debhelper d'où son numéro 1. " -#~ "Dans ce mode, debhelper emploiera F comme répertoire de " -#~ "l'arborescence du premier paquet binaire énuméré dans le fichier " -#~ "F et « debian/I » pour tous les autres." - -#~ msgid "v2" -#~ msgstr "v2" - -# type: textblock -#~ msgid "" -#~ "In this mode, debhelper will consistently use debian/I as the " -#~ "package tree directory for every package that is built." -#~ msgstr "" -#~ "Dans ce mode, debhelper emploiera uniformément « debian/I » comme " -#~ "répertoire de l'arborescence de chaque paquet construit." - -# type: textblock -#~ msgid "This mode works like v2, with the following additions:" -#~ msgstr "Ce mode fonctionne comme v2 mais avec les ajouts suivants :" - -# type: textblock -#~ msgid "" -#~ "Debhelper config files support globbing via B<*> and B, when " -#~ "appropriate. To turn this off and use those characters raw, just prefix " -#~ "with a backslash." -#~ msgstr "" -#~ "Les fichiers de configuration de debhelper acceptent les jokers B<*> " -#~ "et B lorsque cela a un sens. Pour désactiver cette substitution et " -#~ "utiliser ces caractères tels quels, il suffit de les préfixer avec une " -#~ "barre contre-oblique (backslash)." - -# type: textblock -#~ msgid "" -#~ "B makes the F and F scripts call " -#~ "B." -#~ msgstr "" -#~ "Les scripts de maintenance du paquet (F et F) feront " -#~ "appel à B quand B sera lancé." - -# type: textblock -#~ msgid "" -#~ "Every file in F is automatically flagged as a conffile by " -#~ "B." -#~ msgstr "" -#~ "Chaque fichier de F est automatiquement marqué par B " -#~ "comme un fichier de configuration." - # type: =item #~ msgid "B<--parallel>" #~ msgstr "B<--parallel>" diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index 845624cf..bca0d902 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814+unreleased\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-09-11 08:47+0000\n" +"POT-Creation-Date: 2016-10-01 08:12+0000\n" "PO-Revision-Date: 2016-08-25 11:59+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -19,18 +19,18 @@ msgstr "" "X-Generator: Lokalize 1.5\n" #. type: =head1 -#: debhelper.pod:1 dh:3 dh_auto_build:3 dh_auto_clean:3 dh_auto_configure:3 -#: dh_auto_install:3 dh_auto_test:3 dh_bugfiles:3 dh_builddeb:3 dh_clean:3 -#: dh_compress:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_icons:3 -#: dh_install:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 -#: dh_installdeb:3 dh_installdebconf:3 dh_installdirs:3 dh_installdocs:3 -#: dh_installemacsen:3 dh_installexamples:3 dh_installifupdown:3 -#: dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 -#: dh_installman:3 dh_installmanpages:3 dh_installmenu:3 dh_installmime:3 -#: dh_installmodules:3 dh_installpam:3 dh_installppp:3 dh_installudev:3 -#: dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 dh_listpackages:3 -#: dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_prep:3 -#: dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 +#: dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 +#: dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 +#: dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 +#: dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 +#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 +#: dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 +#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 +#: dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 +#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 +#: dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 #: dh_systemd_enable:3 dh_systemd_start:3 msgid "NAME" msgstr "NOME" @@ -41,20 +41,21 @@ msgid "debhelper - the debhelper tool suite" msgstr "debhelper - a suite de ferramentas debhelper" #. type: =head1 -#: debhelper.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 -#: dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 -#: dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 -#: dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 -#: dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 -#: dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 -#: dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 -#: dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 -#: dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 -#: dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 -#: dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 -#: dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 -#: dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 -#: dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 +#: dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 +#: dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 +#: dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 +#: dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 +#: dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 +#: dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 +#: dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 +#: dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 +#: dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 +#: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 +#: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 +#: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 +#: dh_systemd_start:14 msgid "SYNOPSIS" msgstr "RESUMO" @@ -821,41 +822,54 @@ msgid "These are the available compatibility levels:" msgstr "Estes são os níveis de compatibilidade disponíveis:" #. type: =item -#: debhelper.pod:301 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 msgid "v5" msgstr "v5" #. type: textblock -#: debhelper.pod:303 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 msgid "This is the lowest supported compatibility level." msgstr "Este é o nível de compatibilidade mais baixo suportado." -#. type: =item +#. type: textblock #: debhelper.pod:305 +msgid "" +"If you are upgrading from an earlier compatibility level, please review " +"L." +msgstr "" + +#. type: =item +#: debhelper.pod:308 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:307 +#: debhelper.pod:310 msgid "Changes from v5 are:" msgstr "As alterações a partir de v5 são:" #. type: =item -#: debhelper.pod:311 debhelper.pod:316 debhelper.pod:322 debhelper.pod:328 -#: debhelper.pod:341 debhelper.pod:348 debhelper.pod:352 debhelper.pod:356 -#: debhelper.pod:369 debhelper.pod:373 debhelper.pod:381 debhelper.pod:386 -#: debhelper.pod:398 debhelper.pod:403 debhelper.pod:410 debhelper.pod:415 -#: debhelper.pod:420 debhelper.pod:424 debhelper.pod:430 debhelper.pod:435 -#: debhelper.pod:440 debhelper.pod:456 debhelper.pod:461 debhelper.pod:467 -#: debhelper.pod:474 debhelper.pod:480 debhelper.pod:485 debhelper.pod:491 -#: debhelper.pod:497 debhelper.pod:507 debhelper.pod:513 debhelper.pod:536 -#: debhelper.pod:543 debhelper.pod:549 debhelper.pod:555 debhelper.pod:571 -#: debhelper.pod:576 debhelper.pod:580 debhelper.pod:585 +#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 +#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 +#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 +#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 +#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 +#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 +#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 +#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 +#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 +#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 +#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 +#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 +#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 +#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 +#: debhelper-obsolete-compat.pod:106 msgid "-" msgstr "-" #. type: textblock -#: debhelper.pod:313 +#: debhelper.pod:316 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -864,7 +878,7 @@ msgstr "" "fragmentos em ordem reversa para os scripts F e F." #. type: textblock -#: debhelper.pod:318 +#: debhelper.pod:321 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -875,7 +889,7 @@ msgstr "" "compilação do pacote." #. type: textblock -#: debhelper.pod:324 +#: debhelper.pod:327 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -886,7 +900,7 @@ msgstr "" "como B. Mas agora fá-lo." #. type: textblock -#: debhelper.pod:330 +#: debhelper.pod:333 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -896,17 +910,17 @@ msgstr "" "se em silêncio a fazer isto." #. type: =item -#: debhelper.pod:335 +#: debhelper.pod:338 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:337 +#: debhelper.pod:340 msgid "Changes from v6 are:" msgstr "As alterações a partir de v6 são:" #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:346 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -921,17 +935,17 @@ msgstr "" "nenhuns parâmetros especiais." #. type: textblock -#: debhelper.pod:350 +#: debhelper.pod:353 msgid "B will read F and delete files listed there." msgstr "B irá ler F e apagar os ficheiros listados lá." #. type: textblock -#: debhelper.pod:354 +#: debhelper.pod:357 msgid "B will delete toplevel F<*-stamp> files." msgstr "B irá apagar ficheiros F<*-stamp> do nível de topo." #. type: textblock -#: debhelper.pod:358 +#: debhelper.pod:361 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -940,17 +954,17 @@ msgstr "" "alterações da origem se nenhum for especificado." #. type: =item -#: debhelper.pod:363 +#: debhelper.pod:366 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:365 +#: debhelper.pod:368 msgid "Changes from v7 are:" msgstr "As alterações a partir de v7 são:" #. type: textblock -#: debhelper.pod:371 +#: debhelper.pod:374 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -958,7 +972,7 @@ msgstr "" "opções desconhecidas." #. type: textblock -#: debhelper.pod:375 +#: debhelper.pod:378 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -974,7 +988,7 @@ msgstr "" "pacotes falhem a compilar." #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:386 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -985,7 +999,7 @@ msgstr "" "--foo>\", e não \"B" #. type: textblock -#: debhelper.pod:388 +#: debhelper.pod:391 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -994,17 +1008,17 @@ msgstr "" "F." #. type: =item -#: debhelper.pod:392 +#: debhelper.pod:395 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:394 +#: debhelper.pod:397 msgid "Changes from v8 are:" msgstr "As alterações a partir de v8 são:" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:403 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1013,7 +1027,7 @@ msgstr "" "directórios de multi-arquitectura ao autoconf em --libdir e --libexecdir." #. type: textblock -#: debhelper.pod:405 +#: debhelper.pod:408 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1027,7 +1041,7 @@ msgstr "" "explícitas em outras metas." #. type: textblock -#: debhelper.pod:412 +#: debhelper.pod:415 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1036,7 +1050,7 @@ msgstr "" "tamanho instalado dos pacotes -dbg." #. type: textblock -#: debhelper.pod:417 +#: debhelper.pod:420 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1045,12 +1059,12 @@ msgstr "" "quando usa autoconf." #. type: textblock -#: debhelper.pod:422 +#: debhelper.pod:425 msgid "B does not default to enabling --with=python-support" msgstr "B não tem por predefinição a activação de --with=python-support" #. type: textblock -#: debhelper.pod:426 +#: debhelper.pod:429 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1060,7 +1074,7 @@ msgstr "" "definidas." #. type: textblock -#: debhelper.pod:432 +#: debhelper.pod:435 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1069,7 +1083,7 @@ msgstr "" "para F e F de perl." #. type: textblock -#: debhelper.pod:437 +#: debhelper.pod:440 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1078,7 +1092,7 @@ msgstr "" "seu build-id." #. type: textblock -#: debhelper.pod:442 +#: debhelper.pod:445 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1087,22 +1101,22 @@ msgstr "" "resultados usados como configuração." #. type: =item -#: debhelper.pod:447 +#: debhelper.pod:450 msgid "v10" msgstr "v10" #. type: textblock -#: debhelper.pod:449 +#: debhelper.pod:452 msgid "This is the recommended mode of operation." msgstr "Este é o modo de operação recomendado." #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:455 msgid "Changes from v9 are:" msgstr "As alterações a partir de v9 são:" #. type: textblock -#: debhelper.pod:458 +#: debhelper.pod:461 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1111,7 +1125,7 @@ msgstr "" "como um script de iniciação (init)." #. type: textblock -#: debhelper.pod:463 +#: debhelper.pod:466 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1122,7 +1136,7 @@ msgstr "" "binNMUs." #. type: textblock -#: debhelper.pod:469 +#: debhelper.pod:472 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1135,7 +1149,7 @@ msgstr "" "incluídos no debhelper." #. type: textblock -#: debhelper.pod:476 +#: debhelper.pod:479 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1145,7 +1159,7 @@ msgstr "" "B." #. type: textblock -#: debhelper.pod:482 +#: debhelper.pod:485 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1155,7 +1169,7 @@ msgstr "" "window-manager)." #. type: textblock -#: debhelper.pod:487 +#: debhelper.pod:490 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1166,7 +1180,7 @@ msgstr "" "usando B<--no-parallel> ou passando B<--max-parallel> com o valor de 1." #. type: textblock -#: debhelper.pod:493 +#: debhelper.pod:496 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1177,7 +1191,7 @@ msgstr "" "utilize metas de sobreposição em vez destes." #. type: textblock -#: debhelper.pod:499 +#: debhelper.pod:502 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1188,12 +1202,12 @@ msgstr "" "a sequência de \"compilação\" e salta-a se já o fez." #. type: textblock -#: debhelper.pod:503 +#: debhelper.pod:506 msgid "The main affects of this are:" msgstr "Os principais efeitos disto são:" #. type: textblock -#: debhelper.pod:509 +#: debhelper.pod:512 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1204,7 +1218,7 @@ msgstr "" "fazer um ciclo de \"limpar e recompilar\" completo." #. type: textblock -#: debhelper.pod:515 +#: debhelper.pod:518 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1216,12 +1230,12 @@ msgstr "" "funcionar como dantes." #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:523 msgid "Example of where it can go wrong:" msgstr "Exemplo de onde pode falhar:" #. type: verbatim -#: debhelper.pod:522 +#: debhelper.pod:525 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1233,7 +1247,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:528 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1247,7 +1261,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:529 +#: debhelper.pod:532 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1259,7 +1273,7 @@ msgstr "" "B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:538 +#: debhelper.pod:541 msgid "" "The B command now shell escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1272,7 +1286,7 @@ msgstr "" "de shell\" incompleto (ex. ao mencionar nomes de ficheiros)." #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:548 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1283,7 +1297,7 @@ msgstr "" "B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:554 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1293,7 +1307,7 @@ msgstr "" "determinado pacote" #. type: textblock -#: debhelper.pod:557 +#: debhelper.pod:560 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1303,12 +1317,12 @@ msgstr "" "pacote." #. type: =item -#: debhelper.pod:563 +#: debhelper.pod:566 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:565 +#: debhelper.pod:568 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1316,12 +1330,12 @@ msgstr "" "cuidado." #. type: textblock -#: debhelper.pod:567 +#: debhelper.pod:570 msgid "Changes from v10 are:" msgstr "As alterações a partir de v10 são:" #. type: textblock -#: debhelper.pod:573 +#: debhelper.pod:576 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1330,12 +1344,12 @@ msgstr "" "method> continuam a ser instalados." #. type: textblock -#: debhelper.pod:578 +#: debhelper.pod:581 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "A opção B<-s> (B<--same-arch>) foi removida." #. type: textblock -#: debhelper.pod:582 +#: debhelper.pod:585 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1343,7 +1357,7 @@ msgstr "" "descontinuação." #. type: textblock -#: debhelper.pod:587 +#: debhelper.pod:590 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F por predefinição como recomendado por Debian Policy 3.9.7." #. type: textblock -#: debhelper.pod:592 +#: debhelper.pod:595 msgid "" "If you need the old behaviour, it can be emulated by using the B<--" "mainpackage> option." @@ -1363,18 +1377,18 @@ msgstr "" "opção B<--mainpackage>." #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:598 msgid "Please remember to check/update your doc-base files." msgstr "" "Por favor lembre-se de verificar/actualizar os seus ficheiros doc-base." #. type: =head2 -#: debhelper.pod:601 +#: debhelper.pod:604 msgid "Participating in the open beta testing of new compat levels" msgstr "Participar no teste beta aberto dos novos níveis de compatibilidade" #. type: textblock -#: debhelper.pod:603 +#: debhelper.pod:606 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1384,7 +1398,7 @@ msgstr "" "string \"beta-tester\"." #. type: textblock -#: debhelper.pod:607 +#: debhelper.pod:610 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1396,18 +1410,18 @@ msgstr "" "o nível de compatibilidade estável mais alto." #. type: textblock -#: debhelper.pod:612 +#: debhelper.pod:615 msgid "Please consider the following before opting in:" msgstr "Por favor considere o seguinte antes de decidir como optar:" #. type: =item -#: debhelper.pod:616 debhelper.pod:621 debhelper.pod:628 debhelper.pod:634 -#: debhelper.pod:640 +#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 +#: debhelper.pod:643 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:618 +#: debhelper.pod:621 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1416,7 +1430,7 @@ msgstr "" "pacote (ou alguma funcionalidade nele) deixe de funcionar." #. type: textblock -#: debhelper.pod:623 +#: debhelper.pod:626 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1428,7 +1442,7 @@ msgstr "" "altere durante o beta." #. type: textblock -#: debhelper.pod:630 +#: debhelper.pod:633 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1440,7 +1454,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:636 +#: debhelper.pod:639 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1451,7 +1465,7 @@ msgstr "" "recomendada para pacotes que sejam colocados em backport regularmente." #. type: textblock -#: debhelper.pod:642 +#: debhelper.pod:645 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1460,12 +1474,12 @@ msgstr "" "pacote para uma versão estável." #. type: textblock -#: debhelper.pod:647 +#: debhelper.pod:650 msgid "Should you still be interested in the open beta testing, please run:" msgstr "Caso esteja ainda interessado no teste beta aberto, por favor execute:" #. type: verbatim -#: debhelper.pod:649 +#: debhelper.pod:652 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1475,12 +1489,12 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:651 +#: debhelper.pod:654 msgid "You will also need to ensure that debian/control contains:" msgstr "Você também precisa assegurar que debian/control tem:" #. type: verbatim -#: debhelper.pod:653 +#: debhelper.pod:656 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1490,14 +1504,14 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:655 +#: debhelper.pod:658 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" "Para assegurar que o debhelper sabe acerca do nível de compatibilidade " "\"beta-tester\"." #. type: =head1 -#: debhelper.pod:657 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 @@ -1506,12 +1520,12 @@ msgid "NOTES" msgstr "NOTAS" #. type: =head2 -#: debhelper.pod:659 +#: debhelper.pod:662 msgid "Multiple binary package support" msgstr "Suporte a pacotes de múltiplos binários" #. type: textblock -#: debhelper.pod:661 +#: debhelper.pod:664 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1530,7 +1544,7 @@ msgstr "" "independentes de arquitectura na meta F binary-indep." #. type: textblock -#: debhelper.pod:669 +#: debhelper.pod:672 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1546,7 +1560,7 @@ msgstr "" "excepções em baixo." #. type: textblock -#: debhelper.pod:675 +#: debhelper.pod:678 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:679 +#: debhelper.pod:682 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1570,12 +1584,12 @@ msgstr "" "política proposta em L." #. type: =head2 -#: debhelper.pod:684 +#: debhelper.pod:687 msgid "Automatic generation of Debian install scripts" msgstr "Geração automática de scripts de instalação Debian" #. type: textblock -#: debhelper.pod:686 +#: debhelper.pod:689 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1592,7 +1606,7 @@ msgstr "" "auto-gerado quando você correr o B." #. type: textblock -#: debhelper.pod:693 +#: debhelper.pod:696 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1601,7 +1615,7 @@ msgstr "" "então o debhelper irá criar o script completo." #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:699 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1610,7 +1624,7 @@ msgstr "" "permitem que o seja desactivado pelo parâmetro -n (ver em cima)." #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:702 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1623,7 +1637,7 @@ msgstr "" "definidos com o comando \"set\"):" #. type: verbatim -#: debhelper.pod:704 +#: debhelper.pod:707 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1655,12 +1669,12 @@ msgstr "" "\n" #. type: =head2 -#: debhelper.pod:717 +#: debhelper.pod:720 msgid "Automatic generation of miscellaneous dependencies." msgstr "Geração automática de dependências variadas." #. type: textblock -#: debhelper.pod:719 +#: debhelper.pod:722 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1679,7 +1693,7 @@ msgstr "" "debhelper oferece um modo de automatizar isto." #. type: textblock -#: debhelper.pod:727 +#: debhelper.pod:730 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1693,7 +1707,7 @@ msgstr "" "que você precisa." #. type: textblock -#: debhelper.pod:732 +#: debhelper.pod:735 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1706,12 +1720,12 @@ msgstr "" "corresponderem à realidade." #. type: =head2 -#: debhelper.pod:737 +#: debhelper.pod:740 msgid "Package build directories" msgstr "Directórios de compilação de pacotes" #. type: textblock -#: debhelper.pod:739 +#: debhelper.pod:742 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1721,7 +1735,7 @@ msgstr "" "I." #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:745 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1740,13 +1754,13 @@ msgstr "" "programa debhelper irá actuar." #. type: =head2 -#: debhelper.pod:750 +#: debhelper.pod:753 msgid "udebs" msgstr "udebs" # FIXME : a udeb #. type: textblock -#: debhelper.pod:752 +#: debhelper.pod:755 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1763,12 +1777,12 @@ msgstr "" "F, F, F, e F, etc." #. type: =head1 -#: debhelper.pod:759 +#: debhelper.pod:762 msgid "ENVIRONMENT" msgstr "AMBIENTE" #. type: textblock -#: debhelper.pod:761 +#: debhelper.pod:764 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1784,12 +1798,12 @@ msgstr "" "DH_VERBOSE>\"" #. type: =item -#: debhelper.pod:769 +#: debhelper.pod:772 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:771 +#: debhelper.pod:774 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1799,12 +1813,12 @@ msgstr "" "detalhados para alguns sistemas de compilação como o autoconf." #. type: =item -#: debhelper.pod:774 +#: debhelper.pod:777 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:776 +#: debhelper.pod:779 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1821,12 +1835,12 @@ msgstr "" "definido." #. type: =item -#: debhelper.pod:783 +#: debhelper.pod:786 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:785 +#: debhelper.pod:788 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1835,22 +1849,22 @@ msgstr "" "correr, sobrepondo qualquer valor em F." #. type: =item -#: debhelper.pod:788 +#: debhelper.pod:791 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:790 +#: debhelper.pod:793 msgid "Set to B<1> to enable no-act mode." msgstr "Defina para B<1> para activar o modo no-act." #. type: =item -#: debhelper.pod:792 +#: debhelper.pod:795 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:794 +#: debhelper.pod:797 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1859,7 +1873,7 @@ msgstr "" "comandos de todos os comandos do debhelper." #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:800 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1868,12 +1882,12 @@ msgstr "" "comando do debhelper, o que é geralmente melhor do que usar DH_OPTIONS." #. type: =item -#: debhelper.pod:800 +#: debhelper.pod:803 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:802 +#: debhelper.pod:805 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1885,7 +1899,7 @@ msgstr "" "sua árvore de compilação do pacote." #. type: textblock -#: debhelper.pod:806 +#: debhelper.pod:809 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1903,7 +1917,7 @@ msgstr "" "seu é compilado." #. type: textblock -#: debhelper.pod:813 +#: debhelper.pod:816 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1912,12 +1926,12 @@ msgstr "" "B" #. type: =head1 -#: debhelper.pod:818 dh:1064 dh_auto_build:48 dh_auto_clean:51 -#: dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 -#: dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 -#: dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 -#: dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 -#: dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 +#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 +#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 +#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 #: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 @@ -1931,27 +1945,27 @@ msgid "SEE ALSO" msgstr "VEJA TAMBÉM" #. type: =item -#: debhelper.pod:822 +#: debhelper.pod:825 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:824 +#: debhelper.pod:827 msgid "A set of example F files that use debhelper." msgstr "Um conjunto de ficheiros F exemplo que usam debhelper." #. type: =item -#: debhelper.pod:826 +#: debhelper.pod:829 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:828 +#: debhelper.pod:831 msgid "Debhelper web site." msgstr "Sítio web do debhelper." #. type: =head1 -#: debhelper.pod:832 dh:1070 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 #: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 @@ -1969,7 +1983,7 @@ msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:834 dh:1072 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 @@ -1984,6 +1998,230 @@ msgstr "AUTOR" msgid "Joey Hess " msgstr "Joey Hess " +#. type: textblock +#: debhelper-obsolete-compat.pod:3 +msgid "debhelper-obsolete-compat - List of no longer supported compat levels" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:7 +msgid "" +"This document contains the upgrade guidelines from all compat levels which " +"are no longer supported. Accordingly it is mostly for historical purposes " +"and to assist people upgrading from a non-supported compat level to a " +"supported level." +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:12 +#, fuzzy +#| msgid "" +#| "* The package must be using compatibility level 9 or later (see " +#| "L)" +msgid "For upgrades from supported compat levels, please see L." +msgstr "" +"* O pacote tem se usar nível de compatibilidade 9 ou superior veja " +"L)" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:14 +msgid "UPGRADE LIST FOR COMPAT LEVELS" +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:16 +msgid "" +"The following is the list of now obsolete compat levels and their changes." +msgstr "" + +#. type: =item +#: debhelper-obsolete-compat.pod:21 +#, fuzzy +#| msgid "v10" +msgid "v1" +msgstr "v10" + +#. type: textblock +#: debhelper-obsolete-compat.pod:23 +msgid "" +"This is the original debhelper compatibility level, and so it is the default " +"one. In this mode, debhelper will use F as the package tree " +"directory for the first binary package listed in the control file, while " +"using debian/I for all other packages listed in the F file." +msgstr "" +"Este é o nível de compatibilidade original do debhelper, e por isso é o " +"predefinido. Neste modo, o debhelper irá usar F como o " +"directório da árvore do pacote para o primeiro pacote binário listado no " +"ficheiro de controle, enquanto usa debian/I para todos os outros " +"pacotes listados no ficheiro F." + +#. type: textblock +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +msgid "This mode is deprecated." +msgstr "Este modo está descontinuado." + +#. type: =item +#: debhelper-obsolete-compat.pod:30 +msgid "v2" +msgstr "v2" + +#. type: textblock +#: debhelper-obsolete-compat.pod:32 +msgid "" +"In this mode, debhelper will consistently use debian/I as the " +"package tree directory for every package that is built." +msgstr "" +"Neste modo, o debhelper irá consistentemente usar debian/I como o " +"directório da árvore do pacote para cada pacote que é compilado." + +#. type: =item +#: debhelper-obsolete-compat.pod:37 +msgid "v3" +msgstr "v3" + +#. type: textblock +#: debhelper-obsolete-compat.pod:39 +msgid "This mode works like v2, with the following additions:" +msgstr "Este modo funciona como v2, com as seguintes adições:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:45 +msgid "" +"Debhelper config files support globbing via B<*> and B, when appropriate. " +"To turn this off and use those characters raw, just prefix with a backslash." +msgstr "" +"Os ficheiros de configuração do debhelper suportam englobamentos via B<*> e " +"B, onde apropriado. Para desligar isto e usar esses caracteres a cru, " +"basta antecedê-los com uma barra invertida (backslash \"\")." + +#. type: textblock +#: debhelper-obsolete-compat.pod:50 +msgid "" +"B makes the F and F scripts call " +"B." +msgstr "" +"B faz com que os scripts F e F chamem " +"B." + +#. type: textblock +#: debhelper-obsolete-compat.pod:54 +msgid "" +"Every file in F is automatically flagged as a conffile by " +"B." +msgstr "" +"Qualquer ficheiro em F é marcado automaticamente como um conffile " +"(ficheiro de configuração) pelo B." + +#. type: =item +#: debhelper-obsolete-compat.pod:58 +msgid "v4" +msgstr "v4" + +#. type: textblock +#: debhelper-obsolete-compat.pod:60 +#, fuzzy +#| msgid "Changes from v5 are:" +msgid "Changes from v3 are:" +msgstr "As alterações a partir de v5 são:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:66 +msgid "" +"B will not include the Debian part of the version number " +"in the generated dependency line in the shlibs file." +msgstr "" +"B não irá incluir a parte Debian do número de versão na " +"linha de dependência gerada no ficheiro shlibs." + +#. type: textblock +#: debhelper-obsolete-compat.pod:71 +msgid "" +"You are encouraged to put the new B<${misc:Depends}> into F " +"to supplement the B<${shlibs:Depends}> field." +msgstr "" +"Você é encorajado a colocar o novo B<${misc:Depends}> em F " +"para suplementar o campo B<${shlibs:Depends}>." + +#. type: textblock +#: debhelper-obsolete-compat.pod:76 +msgid "" +"B will make all files in F directories and in F executable." +msgstr "" +"B irá tornar em executáveis todos os ficheiros nos directórios " +"F e em F." + +#. type: textblock +#: debhelper-obsolete-compat.pod:81 +msgid "B will correct existing links to conform with policy." +msgstr "" +"B irá corrigir os links existentes para ficarem em conformidade com " +"a politica." + +#. type: textblock +#: debhelper-obsolete-compat.pod:89 +msgid "Changes from v4 are:" +msgstr "As alterações a partir de v4 são:" + +#. type: textblock +#: debhelper-obsolete-compat.pod:95 +msgid "Comments are ignored in debhelper config files." +msgstr "Comentários são ignorados nos ficheiros de configuração do debhelper." + +# http://de.wikipedia.org/wiki/Debugsymbol +#. type: textblock +#: debhelper-obsolete-compat.pod:99 +msgid "" +"B now specifies the name of a package to put " +"debugging symbols in, not the packages to take the symbols from." +msgstr "" +"Agora B especifica o nome de um pacote onde colocar " +"símbolos de depuração, e não os pacotes de onde tirar os símbolos." + +#. type: textblock +#: debhelper-obsolete-compat.pod:104 +msgid "B skips installing empty files." +msgstr "B evita a instalação de ficheiros vazios." + +#. type: textblock +#: debhelper-obsolete-compat.pod:108 +msgid "B errors out if wildcards expand to nothing." +msgstr "" +"B resulta em erro se as \"wildcards\" expandirem para nada." + +#. type: textblock +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 +#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 +#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 +#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 +#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 +#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:245 +msgid "L" +msgstr "L" + +#. type: =head1 +#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 +#: dh_systemd_start:247 +msgid "AUTHORS" +msgstr "AUTORES" + +#. type: textblock +#: debhelper-obsolete-compat.pod:120 +msgid "Niels Thykier " +msgstr "" + +#. type: textblock +#: debhelper-obsolete-compat.pod:122 +msgid "Joey Hess" +msgstr "" + #. type: textblock #: dh:5 msgid "dh - debhelper command sequencer" @@ -2707,23 +2945,6 @@ msgstr "" "existirem múltiplas correspondências de substring, será usada a última da " "sequência." -#. type: textblock -#: dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 -#: dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 -#: dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 -msgid "L" -msgstr "L" - #. type: textblock #: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 #: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 @@ -5771,11 +5992,6 @@ msgstr "" "falhar. A função deve ser disponibilizada nos scripts F e " "F, antes do símbolo B<#DEBHELPER#>." -#. type: =head1 -#: dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 -msgid "AUTHORS" -msgstr "AUTORES" - #. type: textblock #: dh_installinit:352 msgid "Steve Langasek " @@ -7182,10 +7398,16 @@ msgstr "" #. type: textblock #: dh_md5sums:20 +#, fuzzy +#| msgid "" +#| "B is a debhelper program that is responsible for generating a " +#| "F file, which lists the md5sums of each file in the " +#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " -"package. These files are used by the B package." +"package. These files are used by B or the L " +"program." msgstr "" "B é um programa debhelper que é responsável por gerar um " "ficheiro F o qual lista os md5sums de cada ficheiro no " @@ -8341,63 +8563,6 @@ msgstr "" #~ "Isto costumava ser uma versão mais inteligente da bandeira B<-a>, mas a " #~ "bandeira B<-a> é agora igualmente inteligente." -#~ msgid "v3" -#~ msgstr "v3" - -#~ msgid "This mode is deprecated." -#~ msgstr "Este modo está descontinuado." - -#~ msgid "v4" -#~ msgstr "v4" - -#~ msgid "" -#~ "B will not include the Debian part of the version " -#~ "number in the generated dependency line in the shlibs file." -#~ msgstr "" -#~ "B não irá incluir a parte Debian do número de versão na " -#~ "linha de dependência gerada no ficheiro shlibs." - -#~ msgid "" -#~ "You are encouraged to put the new B<${misc:Depends}> into F to supplement the B<${shlibs:Depends}> field." -#~ msgstr "" -#~ "Você é encorajado a colocar o novo B<${misc:Depends}> em F para suplementar o campo B<${shlibs:Depends}>." - -#~ msgid "" -#~ "B will make all files in F directories and in F executable." -#~ msgstr "" -#~ "B irá tornar em executáveis todos os ficheiros nos " -#~ "directórios F e em F." - -#~ msgid "B will correct existing links to conform with policy." -#~ msgstr "" -#~ "B irá corrigir os links existentes para ficarem em conformidade " -#~ "com a politica." - -#~ msgid "Changes from v4 are:" -#~ msgstr "As alterações a partir de v4 são:" - -#~ msgid "Comments are ignored in debhelper config files." -#~ msgstr "" -#~ "Comentários são ignorados nos ficheiros de configuração do debhelper." - -# http://de.wikipedia.org/wiki/Debugsymbol -#~ msgid "" -#~ "B now specifies the name of a package to put " -#~ "debugging symbols in, not the packages to take the symbols from." -#~ msgstr "" -#~ "Agora B especifica o nome de um pacote onde " -#~ "colocar símbolos de depuração, e não os pacotes de onde tirar os símbolos." - -#~ msgid "B skips installing empty files." -#~ msgstr "B evita a instalação de ficheiros vazios." - -#~ msgid "B errors out if wildcards expand to nothing." -#~ msgstr "" -#~ "B resulta em erro se as \"wildcards\" expandirem para nada." - #~ msgid "" #~ "If your package uses autotools and you want to freshen F and " #~ "F with newer versions from the B package at " @@ -8597,55 +8762,6 @@ msgstr "" #~ "B os aceita. Esta variável é apenas uma segurança temporária e será " #~ "removida assim que o arquivo esteja pronto para aceitar ddebs." -#~ msgid "" -#~ "This is the original debhelper compatibility level, and so it is the " -#~ "default one. In this mode, debhelper will use F as the " -#~ "package tree directory for the first binary package listed in the control " -#~ "file, while using debian/I for all other packages listed in the " -#~ "F file." -#~ msgstr "" -#~ "Este é o nível de compatibilidade original do debhelper, e por isso é o " -#~ "predefinido. Neste modo, o debhelper irá usar F como o " -#~ "directório da árvore do pacote para o primeiro pacote binário listado no " -#~ "ficheiro de controle, enquanto usa debian/I para todos os outros " -#~ "pacotes listados no ficheiro F." - -#~ msgid "v2" -#~ msgstr "v2" - -#~ msgid "" -#~ "In this mode, debhelper will consistently use debian/I as the " -#~ "package tree directory for every package that is built." -#~ msgstr "" -#~ "Neste modo, o debhelper irá consistentemente usar debian/I como o " -#~ "directório da árvore do pacote para cada pacote que é compilado." - -#~ msgid "This mode works like v2, with the following additions:" -#~ msgstr "Este modo funciona como v2, com as seguintes adições:" - -#~ msgid "" -#~ "Debhelper config files support globbing via B<*> and B, when " -#~ "appropriate. To turn this off and use those characters raw, just prefix " -#~ "with a backslash." -#~ msgstr "" -#~ "Os ficheiros de configuração do debhelper suportam englobamentos via B<*> " -#~ "e B, onde apropriado. Para desligar isto e usar esses caracteres a " -#~ "cru, basta antecedê-los com uma barra invertida (backslash \"\")." - -#~ msgid "" -#~ "B makes the F and F scripts call " -#~ "B." -#~ msgstr "" -#~ "B faz com que os scripts F e F chamem " -#~ "B." - -#~ msgid "" -#~ "Every file in F is automatically flagged as a conffile by " -#~ "B." -#~ msgstr "" -#~ "Qualquer ficheiro em F é marcado automaticamente como um conffile " -#~ "(ficheiro de configuração) pelo B." - #~ msgid "B<--parallel>" #~ msgstr "B<--parallel>" diff --git a/man/po4a/po4a.cfg b/man/po4a/po4a.cfg index 7b593d25..0c11c36b 100644 --- a/man/po4a/po4a.cfg +++ b/man/po4a/po4a.cfg @@ -5,6 +5,7 @@ [po4a_alias:pod] pod opt_de:"-L ISO-8859-15 -A UTF-8" [po4a_alias:pod] pod opt_pt:"-L UTF-8 -A UTF-8" [type: pod] debhelper.pod $lang:man/$lang/debhelper.pod add_fr:man/po4a/add.fr add_es:man/po4a/add1.es add_de:man/po4a/add.de add_pt:man/po4a/add.pt +[type: pod] debhelper-obsolete-compat.pod $lang:man/$lang/debhelper-obsolete-compat.pod add_fr:man/po4a/add.fr add_es:man/po4a/add2.es add_de:man/po4a/add.de add_pt:man/po4a/add.pt [type: pod] dh $lang:man/$lang/dh.pod add_fr:man/po4a/add.fr add_es:man/po4a/add3.es add_de:man/po4a/add.de add_pt:man/po4a/add.pt [type: pod] dh_auto_build $lang:man/$lang/dh_auto_build.pod add_fr:man/po4a/add.fr add_es:man/po4a/add3.es add_de:man/po4a/add.de add_pt:man/po4a/add.pt [type: pod] dh_auto_clean $lang:man/$lang/dh_auto_clean.pod add_fr:man/po4a/add.fr add_es:man/po4a/add3.es add_de:man/po4a/add.de add_pt:man/po4a/add.pt -- cgit v1.2.3 From e9ee7898595b965cd67004f7e17b7549183d2989 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 16:40:17 +0000 Subject: Add a dash in --no-scripts and --only-scripts for consistency Signed-off-by: Niels Thykier --- Debian/Debhelper/Dh_Getopt.pm | 2 ++ debian/changelog | 5 +++++ dh_icons | 2 +- dh_installcatalogs | 2 +- dh_installdebconf | 2 +- dh_installemacsen | 2 +- dh_installinit | 6 +++--- dh_installmenu | 2 +- dh_installmodules | 2 +- dh_installwm | 2 +- dh_makeshlibs | 6 +++--- dh_ucf | 2 +- dh_usrlocal | 2 +- man/po4a/po/de.po | 14 +++++++------- man/po4a/po/debhelper.pot | 8 ++++---- man/po4a/po/es.po | 16 ++++++++-------- man/po4a/po/fr.po | 20 ++++++++++---------- man/po4a/po/pt.po | 16 ++++++++-------- 18 files changed, 59 insertions(+), 52 deletions(-) diff --git a/Debian/Debhelper/Dh_Getopt.pm b/Debian/Debhelper/Dh_Getopt.pm index 181a88dd..22ef536d 100644 --- a/Debian/Debhelper/Dh_Getopt.pm +++ b/Debian/Debhelper/Dh_Getopt.pm @@ -112,8 +112,10 @@ sub getoptions { "n" => \$dh{NOSCRIPTS}, "noscripts" => \$dh{NOSCRIPTS}, + "no-scripts" => \$dh{NOSCRIPTS}, "o" => \$dh{ONLYSCRIPTS}, "onlyscripts" => \$dh{ONLYSCRIPTS}, + "only-scripts" => \$dh{ONLYSCRIPTS}, "X=s" => \&AddExclude, "exclude=s" => \&AddExclude, diff --git a/debian/changelog b/debian/changelog index c70cd243..868aa344 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,11 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium * debhelper-obsolete-compat.pod: Add a manpage for the upgrade checklist for all obsolete/removed compat levels. Thanks to Jakub Wilk for the suggestion. + * Dh_Getopt,dh_*: Rename --onlyscripts to --only-scripts and + --noscripts to --no-scripts for consistency with other + options. The old variants are accepted for compatibility. + Thanks to Raphaël Hertzog for the suggestion. + (Closes: #838446) -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 diff --git a/dh_icons b/dh_icons index b6caaf3c..73f6c155 100755 --- a/dh_icons +++ b/dh_icons @@ -32,7 +32,7 @@ These commands are inserted into the maintainer scripts by L. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify maintainer scripts. diff --git a/dh_installcatalogs b/dh_installcatalogs index bb45db99..1a863d5f 100755 --- a/dh_installcatalogs +++ b/dh_installcatalogs @@ -52,7 +52,7 @@ start with F. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F/F scripts nor add an activation trigger. diff --git a/dh_installdebconf b/dh_installdebconf index 686c7bca..bf601eba 100755 --- a/dh_installdebconf +++ b/dh_installdebconf @@ -63,7 +63,7 @@ For this to work, your package should build-depend on F. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F script. diff --git a/dh_installemacsen b/dh_installemacsen index 26a2fc75..aac15a1f 100755 --- a/dh_installemacsen +++ b/dh_installemacsen @@ -55,7 +55,7 @@ build directory. Use B<--priority> to use a different priority than 50. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F scripts. diff --git a/dh_installinit b/dh_installinit index 812b03da..f5c96dc3 100755 --- a/dh_installinit +++ b/dh_installinit @@ -61,11 +61,11 @@ by systemd.) =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F/F scripts. -=item B<-o>, B<--onlyscripts> +=item B<-o>, B<--only-scripts> Only modify F/F/F scripts, do not actually install any init script, default files, upstart job or systemd service file. May be @@ -78,7 +78,7 @@ to use this with B<-p> to limit, which packages are affected by the call. Example: override_dh_installinit: - dh_installinit -pfoo --onlyscripts + dh_installinit -pfoo --only-scripts dh_installinit --remaining =item B<-R>, B<--restart-after-upgrade> diff --git a/dh_installmenu b/dh_installmenu index ba69905e..a2c5910b 100755 --- a/dh_installmenu +++ b/dh_installmenu @@ -46,7 +46,7 @@ in the package build directory. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F scripts. diff --git a/dh_installmodules b/dh_installmodules index b4b2e676..068f56dd 100755 --- a/dh_installmodules +++ b/dh_installmodules @@ -40,7 +40,7 @@ Installed to etc/modprobe.d/I.conf in the package build directory. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F/F scripts. diff --git a/dh_installwm b/dh_installwm index 2cceeae1..bf0e5a6e 100755 --- a/dh_installwm +++ b/dh_installwm @@ -42,7 +42,7 @@ Set the priority of the window manager. Default is 20, which is too low for most window managers; see the Debian Policy document for instructions on calculating the correct value. -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F scripts. Turns this command into a no-op. diff --git a/dh_makeshlibs b/dh_makeshlibs index 87a84ac8..4c393879 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -81,10 +81,10 @@ maintainer screws up then they won't break. The flip side is that packages might end up with dependencies that are too tight and so find it harder to be upgraded. -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not add the "ldconfig" trigger even if it seems like the package -might need it. The option is called B<--noscripts> for historical +might need it. The option is called B<--no-scripts> for historical reasons as B would previously generate maintainer scripts that called B. @@ -278,7 +278,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } } - # Historically, --noscripts would disable the creation of + # Historically, --no-scripts would disable the creation of # maintscripts for calling ldconfig. if (! $dh{NOSCRIPTS} && $need_ldconfig) { autotrigger($package, 'activate-noawait', 'ldconfig'); diff --git a/dh_ucf b/dh_ucf index 0978a539..a96b3e8d 100755 --- a/dh_ucf +++ b/dh_ucf @@ -39,7 +39,7 @@ A dependency on ucf will be generated in B<${misc:Depends}>. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F scripts. Turns this command into a no-op. diff --git a/dh_usrlocal b/dh_usrlocal index b21d11f3..4bf6ab80 100755 --- a/dh_usrlocal +++ b/dh_usrlocal @@ -40,7 +40,7 @@ directories in F. =over 4 -=item B<-n>, B<--noscripts> +=item B<-n>, B<--no-scripts> Do not modify F/F scripts. diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index 01faa27d..f71b8a41 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -4074,8 +4074,8 @@ msgstr "" #: dh_icons:35 dh_installcatalogs:55 dh_installdebconf:66 dh_installemacsen:58 #: dh_installinit:64 dh_installmenu:49 dh_installmodules:43 dh_installwm:45 #: dh_makeshlibs:84 dh_usrlocal:43 -msgid "B<-n>, B<--noscripts>" -msgstr "B<-n>, B<--noscripts>" +msgid "B<-n>, B<--no-scripts>" +msgstr "B<-n>, B<--no-scripts>" #. type: textblock #: dh_icons:37 @@ -5826,8 +5826,8 @@ msgstr "ändert keine F-/F/F-Skripte." #. type: =item #: dh_installinit:68 -msgid "B<-o>, B<--onlyscripts>" -msgstr "B<-o>, B<--onlyscripts>" +msgid "B<-o>, B<--only-scripts>" +msgstr "B<-o>, B<--only-scripts>" #. type: textblock #: dh_installinit:70 @@ -5860,12 +5860,12 @@ msgstr "" #, no-wrap msgid "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" msgstr "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" @@ -7343,7 +7343,7 @@ msgstr "" #: dh_makeshlibs:86 msgid "" "Do not add the \"ldconfig\" trigger even if it seems like the package might " -"need it. The option is called B<--noscripts> for historical reasons as " +"need it. The option is called B<--no-scripts> for historical reasons as " "B would previously generate maintainer scripts that called " "B." msgstr "" diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot index accb1325..8a0495d9 100644 --- a/man/po4a/po/debhelper.pot +++ b/man/po4a/po/debhelper.pot @@ -2989,7 +2989,7 @@ msgstr "" #. type: =item #: dh_icons:35 dh_installcatalogs:55 dh_installdebconf:66 dh_installemacsen:58 dh_installinit:64 dh_installmenu:49 dh_installmodules:43 dh_installwm:45 dh_makeshlibs:84 dh_usrlocal:43 -msgid "B<-n>, B<--noscripts>" +msgid "B<-n>, B<--no-scripts>" msgstr "" #. type: textblock @@ -4377,7 +4377,7 @@ msgstr "" #. type: =item #: dh_installinit:68 -msgid "B<-o>, B<--onlyscripts>" +msgid "B<-o>, B<--only-scripts>" msgstr "" #. type: textblock @@ -4402,7 +4402,7 @@ msgstr "" #, no-wrap msgid "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" msgstr "" @@ -5561,7 +5561,7 @@ msgstr "" #: dh_makeshlibs:86 msgid "" "Do not add the \"ldconfig\" trigger even if it seems like the package might " -"need it. The option is called B<--noscripts> for historical reasons as " +"need it. The option is called B<--no-scripts> for historical reasons as " "B would previously generate maintainer scripts that called " "B." msgstr "" diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index cec5012e..eea9f9c8 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -4253,8 +4253,8 @@ msgstr "" #: dh_icons:35 dh_installcatalogs:55 dh_installdebconf:66 dh_installemacsen:58 #: dh_installinit:64 dh_installmenu:49 dh_installmodules:43 dh_installwm:45 #: dh_makeshlibs:84 dh_usrlocal:43 -msgid "B<-n>, B<--noscripts>" -msgstr "B<-n>, B<--noscripts>" +msgid "B<-n>, B<--no-scripts>" +msgstr "B<-n>, B<--no-scripts>" # type: textblock #. type: textblock @@ -6145,8 +6145,8 @@ msgstr "No modifica los scripts F/F/F." # type: =item #. type: =item #: dh_installinit:68 -msgid "B<-o>, B<--onlyscripts>" -msgstr "B<-o>, B<--onlyscripts>" +msgid "B<-o>, B<--only-scripts>" +msgstr "B<-o>, B<--only-scripts>" #. type: textblock #: dh_installinit:70 @@ -6181,7 +6181,7 @@ msgstr "" #, no-wrap msgid "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" msgstr "" @@ -7834,7 +7834,7 @@ msgstr "" #: dh_makeshlibs:86 msgid "" "Do not add the \"ldconfig\" trigger even if it seems like the package might " -"need it. The option is called B<--noscripts> for historical reasons as " +"need it. The option is called B<--no-scripts> for historical reasons as " "B would previously generate maintainer scripts that called " "B." msgstr "" @@ -9673,12 +9673,12 @@ msgstr "" #~ msgid "" #~ "If no upstart job file is installed in the target directory when " -#~ "B is called, this program will assume that " +#~ "B is called, this program will assume that " #~ "an init script is being installed and not provide the compatibility " #~ "symlinks or upstart dependencies." #~ msgstr "" #~ "Si no se instala ninguna tarea de upstart en el directorio destino al " -#~ "invocar B, el programa supondrá que se está " +#~ "invocar B, el programa supondrá que se está " #~ "instalando un script de init, y no ofrecerá los enlaces simbólicos de " #~ "compatibilidad o dependencias de upstart." diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index f1d99eb3..da03ebcf 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -4383,8 +4383,8 @@ msgstr "" #: dh_icons:35 dh_installcatalogs:55 dh_installdebconf:66 dh_installemacsen:58 #: dh_installinit:64 dh_installmenu:49 dh_installmodules:43 dh_installwm:45 #: dh_makeshlibs:84 dh_usrlocal:43 -msgid "B<-n>, B<--noscripts>" -msgstr "B<-n>, B<--noscripts>" +msgid "B<-n>, B<--no-scripts>" +msgstr "B<-n>, B<--no-scripts>" # type: textblock #. type: textblock @@ -6345,8 +6345,8 @@ msgstr "" # type: =item #. type: =item #: dh_installinit:68 -msgid "B<-o>, B<--onlyscripts>" -msgstr "B<-o>, B<--onlyscripts>" +msgid "B<-o>, B<--only-scripts>" +msgstr "B<-o>, B<--only-scripts>" # type: textblock #. type: textblock @@ -6380,12 +6380,12 @@ msgstr "" #, no-wrap msgid "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" msgstr "" " override_dh_installinit:\n" -"\tdh_installinit -ptoto --onlyscripts\n" +"\tdh_installinit -ptoto --only-scripts\n" "\tdh_installinit --remaining\n" "\n" @@ -8065,12 +8065,12 @@ msgstr "" #: dh_makeshlibs:86 msgid "" "Do not add the \"ldconfig\" trigger even if it seems like the package might " -"need it. The option is called B<--noscripts> for historical reasons as " +"need it. The option is called B<--no-scripts> for historical reasons as " "B would previously generate maintainer scripts that called " "B." msgstr "" "N'ajoutez pas l'action différée (« trigger ») même s'il semble que le paquet " -"en a besoin. L'option est nommée B<--noscripts> pour des raisons historiques " +"en a besoin. L'option est nommée B<--no-scripts> pour des raisons historiques " "car B générait précédemment un script de maintenance qui " "appelait B." @@ -9968,12 +9968,12 @@ msgstr "" # type: textblock #~ msgid "" #~ "If no upstart job file is installed in the target directory when " -#~ "B is called, this program will assume that " +#~ "B is called, this program will assume that " #~ "an init script is being installed and not provide the compatibility " #~ "symlinks or upstart dependencies." #~ msgstr "" #~ "Si aucun fichier de tâche upstart n'est installé dans le répertoire cible " -#~ "quand B est invoqué, ce programme considère " +#~ "quand B est invoqué, ce programme considère " #~ "qu'un script init est en cours d'installation et ne fournit pas les liens " #~ "symboliques de compatibilité, ni de dépendances envers upstart." diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index bca0d902..2da5dc3a 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -4021,8 +4021,8 @@ msgstr "" #: dh_icons:35 dh_installcatalogs:55 dh_installdebconf:66 dh_installemacsen:58 #: dh_installinit:64 dh_installmenu:49 dh_installmodules:43 dh_installwm:45 #: dh_makeshlibs:84 dh_usrlocal:43 -msgid "B<-n>, B<--noscripts>" -msgstr "B<-n>, B<--noscripts>" +msgid "B<-n>, B<--no-scripts>" +msgstr "B<-n>, B<--no-scripts>" #. type: textblock #: dh_icons:37 @@ -5770,8 +5770,8 @@ msgstr "Não modifique os scripts F/F/F." #. type: =item #: dh_installinit:68 -msgid "B<-o>, B<--onlyscripts>" -msgstr "B<-o>, B<--onlyscripts>" +msgid "B<-o>, B<--only-scripts>" +msgstr "B<-o>, B<--only-scripts>" #. type: textblock #: dh_installinit:70 @@ -5804,12 +5804,12 @@ msgstr "" #, no-wrap msgid "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" msgstr "" " override_dh_installinit:\n" -"\tdh_installinit -pfoo --onlyscripts\n" +"\tdh_installinit -pfoo --only-scripts\n" "\tdh_installinit --remaining\n" "\n" @@ -7288,12 +7288,12 @@ msgstr "" #: dh_makeshlibs:86 msgid "" "Do not add the \"ldconfig\" trigger even if it seems like the package might " -"need it. The option is called B<--noscripts> for historical reasons as " +"need it. The option is called B<--no-scripts> for historical reasons as " "B would previously generate maintainer scripts that called " "B." msgstr "" "Não adiciona o trigger \"ldconfig\" mesmo que parece que o pacote possa " -"precisar dele. A opção é chamada B<--noscripts> por razões históricas pois o " +"precisar dele. A opção é chamada B<--no-scripts> por razões históricas pois o " "B previamente gerava scripts do mantenedor que chamavam " "B." -- cgit v1.2.3 From 5da8359b52c6670afa525c4272972cbad374e38d Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 16:49:07 +0000 Subject: cmake.pm: Dump CMakeOutput and CMakeError on cmake errors Signed-off-by: Niels Thykier --- Debian/Debhelper/Buildsystem/cmake.pm | 6 ++++++ debian/changelog | 3 +++ 2 files changed, 9 insertions(+) diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm index cce9e350..338f65e0 100644 --- a/Debian/Debhelper/Buildsystem/cmake.pm +++ b/Debian/Debhelper/Buildsystem/cmake.pm @@ -92,6 +92,12 @@ sub configure { if (-e $this->get_buildpath("CMakeCache.txt")) { $this->doit_in_builddir("tail -v -n +0 CMakeCache.txt"); } + if (-e $this->get_buildpath('CMakeFiles/CMakeOutput.log')) { + $this->doit_in_builddir('tail -v -n +0 CMakeFiles/CMakeOutput.log'); + } + if (-e $this->get_buildpath('CMakeFiles/CMakeError.log')) { + $this->doit_in_builddir('tail -v -n +0 CMakeFiles/CMakeError.log'); + } die $err; } } diff --git a/debian/changelog b/debian/changelog index 868aa344..c2705b80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,9 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium options. The old variants are accepted for compatibility. Thanks to Raphaël Hertzog for the suggestion. (Closes: #838446) + * cmake.pm: If cmake fails, also down CMakeFiles/CMakeOutput.log + and CMakeFiles/CMakeError.log if they are present. Thanks to + Michael Banck for the suggestion. (Closes: #839389) -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 -- cgit v1.2.3 From be1eff4154f5f53c9fa1b696cb150eb643d46e03 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 20:04:46 +0000 Subject: d/copyright: Clarify copyright and license of dh_systemd* Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ debian/copyright | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/debian/changelog b/debian/changelog index c2705b80..3470acf2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,8 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium * cmake.pm: If cmake fails, also down CMakeFiles/CMakeOutput.log and CMakeFiles/CMakeError.log if they are present. Thanks to Michael Banck for the suggestion. (Closes: #839389) + * d/copyright: Correct copyright and license of dh_systemd* + tools. -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 diff --git a/debian/copyright b/debian/copyright index 01bf3890..bb8de768 100644 --- a/debian/copyright +++ b/debian/copyright @@ -62,6 +62,10 @@ Files: dh_ucf Copyright: 2011 Jeroen Schot License: GPL-2+ +Files: dh_systemd_enable dh_systemd_start +Copyright: 2013 Michael Stapelberg +License: BSD-3-clause + Files: Debian/Debhelper/Buildsystem* Debian/Debhelper/Dh_Buildsystems.pm Copyright: 2008-2009 Modestas Vainius License: GPL-2+ @@ -89,3 +93,31 @@ License: GPL-2+ License: GPL-3+ The full text of the GPL version 3 is distributed in /usr/share/common-licenses/GPL-3 on Debian systems. + +License: BSD-3-clause + All rights reserved. + . + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + . + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + . + * Neither the name of Michael Stapelberg nor the + names of contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY Michael Stapelberg ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL Michael Stapelberg BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- cgit v1.2.3 From 200b8ad036236a0e74590ff4755185bc7bd32c9e Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 1 Oct 2016 20:47:07 +0000 Subject: Release debhelper/10.1 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3470acf2..c2dd7b20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debhelper (10+unreleased) UNRELEASED; urgency=medium +debhelper (10.1) unstable; urgency=medium * Apply patch from Michael Biebl to take over dh-systemd package to ease backporting to jessie-backports. @@ -26,7 +26,7 @@ debhelper (10+unreleased) UNRELEASED; urgency=medium * d/copyright: Correct copyright and license of dh_systemd* tools. - -- Niels Thykier Wed, 14 Sep 2016 06:07:02 +0000 + -- Niels Thykier Sat, 01 Oct 2016 20:45:27 +0000 debhelper (10) unstable; urgency=medium -- cgit v1.2.3 From 04a2d9585093a08ebd1d15790021e1851d48d32a Mon Sep 17 00:00:00 2001 From: Peter Pentchev Date: Sat, 1 Oct 2016 23:51:45 +0300 Subject: Fix a couple of typographical errors. Signed-off-by: Niels Thykier --- debhelper.pod | 6 +++--- debian/changelog | 8 +++++++- man/po4a/po/de.po | 6 +++--- man/po4a/po/es.po | 6 +++--- man/po4a/po/fr.po | 6 +++--- man/po4a/po/pt.po | 6 +++--- 6 files changed, 22 insertions(+), 16 deletions(-) diff --git a/debhelper.pod b/debhelper.pod index 391007b0..b27bd647 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -503,7 +503,7 @@ The B command will no longer use log files to track which commands have been run. The B command I keeps track of whether it already ran the "build" sequence and skip it if it did. -The main affects of this are: +The main effects of this are: =over 4 @@ -517,7 +517,7 @@ do a full "clean and rebuild" cycle) The main caveat is that B now only keeps track of what happened in a single override target. When all the calls to a given B -command happens in the same override target every thing will work as +command happens in the same override target everything will work as before. Example of where it can go wrong: @@ -538,7 +538,7 @@ B<-a>, B<-i>, etc. =item - -The B command now shell escapes the lines in the +The B command now shell-escapes the lines in the F config file. This was the original intent but it did not work properly and packages have begun to rely on the incomplete shell escaping (e.g. quoting file names). diff --git a/debian/changelog b/debian/changelog index c2dd7b20..d061d02f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (10.2) UNRELEASED; urgency=medium + + * Apply patch from Peter Pentchev to fix some typos. + + -- Niels Thykier Sun, 02 Oct 2016 05:50:21 +0000 + debhelper (10.1) unstable; urgency=medium * Apply patch from Michael Biebl to take over dh-systemd @@ -20,7 +26,7 @@ debhelper (10.1) unstable; urgency=medium options. The old variants are accepted for compatibility. Thanks to Raphaël Hertzog for the suggestion. (Closes: #838446) - * cmake.pm: If cmake fails, also down CMakeFiles/CMakeOutput.log + * cmake.pm: If cmake fails, also dump CMakeFiles/CMakeOutput.log and CMakeFiles/CMakeError.log if they are present. Thanks to Michael Banck for the suggestion. (Closes: #839389) * d/copyright: Correct copyright and license of dh_systemd* diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index f71b8a41..dd798aee 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -1215,7 +1215,7 @@ msgstr "" #. type: textblock #: debhelper.pod:506 -msgid "The main affects of this are:" +msgid "The main effects of this are:" msgstr "Die wichtigsten Auswirkungen davon sind:" #. type: textblock @@ -1235,7 +1235,7 @@ msgstr "" msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " -"happens in the same override target every thing will work as before." +"happens in the same override target everything will work as before." msgstr "" "Der Pferdefuss hier liegt darin, dass B nun nur noch nachverfolgt, was " "in einem einzelnen außer Kraft setzenden Ziel geschieht. Wenn alle Aufrufe " @@ -1288,7 +1288,7 @@ msgstr "" #. type: textblock #: debhelper.pod:541 msgid "" -"The B command now shell escapes the lines in the " +"The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " "work properly and packages have begun to rely on the incomplete shell " "escaping (e.g. quoting file names)." diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index eea9f9c8..3cd22c09 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -1310,7 +1310,7 @@ msgstr "" #. type: textblock #: debhelper.pod:506 -msgid "The main affects of this are:" +msgid "The main effects of this are:" msgstr "" #. type: textblock @@ -1326,7 +1326,7 @@ msgstr "" msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " -"happens in the same override target every thing will work as before." +"happens in the same override target everything will work as before." msgstr "" #. type: textblock @@ -1364,7 +1364,7 @@ msgstr "" #. type: textblock #: debhelper.pod:541 msgid "" -"The B command now shell escapes the lines in the " +"The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " "work properly and packages have begun to rely on the incomplete shell " "escaping (e.g. quoting file names)." diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index da03ebcf..2981e3d3 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -1302,7 +1302,7 @@ msgstr "" #. type: textblock #: debhelper.pod:506 -msgid "The main affects of this are:" +msgid "The main effects of this are:" msgstr "Les principales conséquences de cela sont :" #. type: textblock @@ -1321,7 +1321,7 @@ msgstr "" msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " -"happens in the same override target every thing will work as before." +"happens in the same override target everything will work as before." msgstr "" "La principale précaution est que B enregistre uniquement ce qui s'est " "passé dans une unique cible de réécriture. Lorsque tous les appels à une " @@ -1374,7 +1374,7 @@ msgstr "" #. type: textblock #: debhelper.pod:541 msgid "" -"The B command now shell escapes the lines in the " +"The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " "work properly and packages have begun to rely on the incomplete shell " "escaping (e.g. quoting file names)." diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index 2da5dc3a..b09ea1d5 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -1203,7 +1203,7 @@ msgstr "" #. type: textblock #: debhelper.pod:506 -msgid "The main affects of this are:" +msgid "The main effects of this are:" msgstr "Os principais efeitos disto são:" #. type: textblock @@ -1222,7 +1222,7 @@ msgstr "" msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " -"happens in the same override target every thing will work as before." +"happens in the same override target everything will work as before." msgstr "" "O principal embargo é que B agora apenas mantêm acompanhamento do que " "aconteceu numa meta de sobreposição singular. Quanto todas as chamadas a um " @@ -1275,7 +1275,7 @@ msgstr "" #. type: textblock #: debhelper.pod:541 msgid "" -"The B command now shell escapes the lines in the " +"The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " "work properly and packages have begun to rely on the incomplete shell " "escaping (e.g. quoting file names)." -- cgit v1.2.3 From 213d231d51cd5d5b2e1505753a551370b0adc2cf Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sun, 2 Oct 2016 01:41:34 +0200 Subject: Make sure all files are installed into the debhelper binary package Now that we are building more then one binary package, dh_auto_install no longer uses debian/debhelper by default. Since the transitional dh-systemd package is supposed to be empty, override dh_auto_install and set --destdir=debian/debhelper to make sure all files end up in the debhelper binary package. Signed-off-by: Niels Thykier --- debian/changelog | 3 +++ debian/rules | 3 +++ 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index d061d02f..8a1b490d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,9 @@ debhelper (10.2) UNRELEASED; urgency=medium * Apply patch from Peter Pentchev to fix some typos. + * Apply patch from Michael Biebl to undo a major + regression where all of debhelpers functionality was + missing (introduced in 10.1). (Closes: #839557) -- Niels Thykier Sun, 02 Oct 2016 05:50:21 +0000 diff --git a/debian/rules b/debian/rules index addfbff3..b5073590 100755 --- a/debian/rules +++ b/debian/rules @@ -16,3 +16,6 @@ # Disable as they are unneeded (and we can then be sure debhelper # builds without needing autotools-dev, dh-strip-nondetermism etc.) override_dh_update_autotools_config override_dh_strip_nondeterminism: + +override_dh_auto_install: + dh_auto_install --destdir=debian/debhelper -- cgit v1.2.3 From 75fe3f9a91438ec6ed6dbee42fac56213ed32eb7 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 06:05:10 +0000 Subject: Introduce --no-stop-on-upgrade as alias of -r Signed-off-by: Niels Thykier --- debian/changelog | 5 +++++ dh_installinit | 3 ++- dh_systemd_start | 5 +++-- man/po4a/po/de.po | 8 ++++---- man/po4a/po/es.po | 6 +++--- man/po4a/po/fr.po | 8 ++++---- man/po4a/po/pt.po | 8 ++++---- 7 files changed, 25 insertions(+), 18 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8a1b490d..a6aeafa1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,11 @@ debhelper (10.2) UNRELEASED; urgency=medium * Apply patch from Michael Biebl to undo a major regression where all of debhelpers functionality was missing (introduced in 10.1). (Closes: #839557) + * dh_installinit,dh_systemd_start: Introduce a new + --no-stop-on-upgrade as an alternative to + --no-restart-on-upgrade. This new option should be + reduce the confusion of what it does. Thanks to + Michael Biebl for the suggestion. -- Niels Thykier Sun, 02 Oct 2016 05:50:21 +0000 diff --git a/dh_installinit b/dh_installinit index f5c96dc3..a79113ab 100755 --- a/dh_installinit +++ b/dh_installinit @@ -101,7 +101,7 @@ Undo a previous B<--restart-after-upgrade> (or the default of compat stopped in the F script and started again in the F script. -=item B<-r>, B<--no-restart-on-upgrade> +=item B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade> Do not stop init script on upgrade. @@ -168,6 +168,7 @@ $dh{RESTART_AFTER_UPGRADE} = 1 if not compat(9); init(options => { "r" => \$dh{R_FLAG}, + 'no-stop-on-upgrade' => \$dh{R_FLAG}, "no-restart-on-upgrade" => \$dh{R_FLAG}, "no-start" => \$dh{NO_START}, "R|restart-after-upgrade!" => \$dh{RESTART_AFTER_UPGRADE}, diff --git a/dh_systemd_start b/dh_systemd_start index 9914bbd1..6cee5c01 100755 --- a/dh_systemd_start +++ b/dh_systemd_start @@ -13,7 +13,7 @@ use Cwd qw(getcwd abs_path); =head1 SYNOPSIS -B [S>] [B<--restart-after-upgrade>] [B<--no-restart-on-upgrade>] [S ...>] +B [S>] [B<--restart-after-upgrade>] [B<--no-stop-on-upgrade>] [S ...>] =head1 DESCRIPTION @@ -51,7 +51,7 @@ Undo a previous B<--restart-after-upgrade> (or the default of compat stopped in the F script and started again in the F script. -=item B<-r>, B<--no-restart-on-upgrade> +=item B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade> Do not stop service on upgrade. @@ -80,6 +80,7 @@ $dh{RESTART_AFTER_UPGRADE} = 1 if not compat(9); init(options => { "r" => \$dh{R_FLAG}, + 'no-stop-on-upgrade' => \$dh{R_FLAG}, "no-restart-on-upgrade" => \$dh{R_FLAG}, "no-start" => \$dh{NO_START}, "R|restart-after-upgrade!" => \$dh{RESTART_AFTER_UPGRADE}, diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index dd798aee..8fa6a41b 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -5928,8 +5928,8 @@ msgstr "" #. type: =item #: dh_installinit:104 dh_systemd_start:54 -msgid "B<-r>, B<--no-restart-on-upgrade>" -msgstr "B<-r>, B<--no-restart-on-upgrade>" +msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" +msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" #. type: textblock #: dh_installinit:106 @@ -8535,10 +8535,10 @@ msgstr "" #: dh_systemd_start:16 msgid "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S …>]" +"[B<--no-stop-on-upgrade>] [S …>]" #. type: textblock #: dh_systemd_start:20 diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index 3cd22c09..e4dc0d17 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -6257,8 +6257,8 @@ msgstr "" # type: =item #. type: =item #: dh_installinit:104 dh_systemd_start:54 -msgid "B<-r>, B<--no-restart-on-upgrade>" -msgstr "B<-r>, B<--no-restart-on-upgrade>" +msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" +msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" # type: textblock #. type: textblock @@ -9117,7 +9117,7 @@ msgstr "" #| "[S ...>]" msgid "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" "B [S>] [B<-A>] [B<-X>I] " "[S ...>]" diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index 2981e3d3..92dff158 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -6449,8 +6449,8 @@ msgstr "" # type: =item #. type: =item #: dh_installinit:104 dh_systemd_start:54 -msgid "B<-r>, B<--no-restart-on-upgrade>" -msgstr "B<-r>, B<--no-restart-on-upgrade>" +msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" +msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" # type: textblock #. type: textblock @@ -9369,10 +9369,10 @@ msgstr "" #: dh_systemd_start:16 msgid "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" "B [S>] [B<--restart-after-" -"upgrade>] [B<--no-restart-on-upgrade>] [S ...>]" +"upgrade>] [B<--no-stop-on-upgrade>] [S ...>]" # type: textblock #. type: textblock diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index b09ea1d5..f4ceaf05 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -5868,8 +5868,8 @@ msgstr "" #. type: =item #: dh_installinit:104 dh_systemd_start:54 -msgid "B<-r>, B<--no-restart-on-upgrade>" -msgstr "B<-r>, B<--no-restart-on-upgrade>" +msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" +msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" #. type: textblock #: dh_installinit:106 @@ -8466,10 +8466,10 @@ msgstr "" #: dh_systemd_start:16 msgid "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" #. type: textblock #: dh_systemd_start:20 -- cgit v1.2.3 From 665314f36c0a58f5d185ef056868d6572a5aa750 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 06:18:27 +0000 Subject: Regenerate POT and PO files Signed-off-by: Niels Thykier --- man/po4a/po/de.po | 24 ++++++++++++------------ man/po4a/po/debhelper.pot | 28 ++++++++++++++-------------- man/po4a/po/es.po | 30 +++++++++++++++--------------- man/po4a/po/fr.po | 36 ++++++++++++++++++------------------ man/po4a/po/pt.po | 28 ++++++++++++++-------------- 5 files changed, 73 insertions(+), 73 deletions(-) diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index 8fa6a41b..73ba904a 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-10-01 08:12+0000\n" +"POT-Creation-Date: 2016-10-02 06:17+0000\n" "PO-Revision-Date: 2016-08-27 11:57+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" @@ -1958,14 +1958,14 @@ msgstr "" #: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 #: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 +#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 #: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 #: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 #: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 #: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 #: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:243 +#: dh_systemd_enable:283 dh_systemd_start:244 msgid "SEE ALSO" msgstr "SIEHE AUCH" @@ -2016,7 +2016,7 @@ msgstr "AUTOR" #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 #: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 #: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 +#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 #: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 #: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 #: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 @@ -2225,19 +2225,19 @@ msgstr "" #: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 #: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 #: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 #: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 #: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 #: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 #: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 #: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 +#: dh_usrlocal:118 dh_systemd_start:246 msgid "L" msgstr "L" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 -#: dh_systemd_start:247 +#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 +#: dh_systemd_start:248 msgid "AUTHORS" msgstr "AUTOREN" @@ -2990,7 +2990,7 @@ msgstr "" #: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 #: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 #: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 +#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 #: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 #: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 #: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 @@ -6054,12 +6054,12 @@ msgstr "" "F-Skripten vor der Markierung B<#DEBHELPER#> bereitgestellt werden." #. type: textblock -#: dh_installinit:352 +#: dh_installinit:353 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:354 +#: dh_installinit:355 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -8521,7 +8521,7 @@ msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:249 +#: dh_systemd_enable:289 dh_systemd_start:250 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot index 8a0495d9..2958de9a 100644 --- a/man/po4a/po/debhelper.pot +++ b/man/po4a/po/debhelper.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-10-01 08:12+0000\n" +"POT-Creation-Date: 2016-10-02 06:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -888,7 +888,7 @@ msgstr "" #. type: textblock #: debhelper.pod:506 -msgid "The main affects of this are:" +msgid "The main effects of this are:" msgstr "" #. type: textblock @@ -904,7 +904,7 @@ msgstr "" msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " -"happens in the same override target every thing will work as before." +"happens in the same override target everything will work as before." msgstr "" #. type: textblock @@ -943,7 +943,7 @@ msgstr "" #. type: textblock #: debhelper.pod:541 msgid "" -"The B command now shell escapes the lines in the " +"The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " "work properly and packages have begun to rely on the incomplete shell " "escaping (e.g. quoting file names)." @@ -1423,7 +1423,7 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:283 dh_systemd_start:243 +#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:283 dh_systemd_start:244 msgid "SEE ALSO" msgstr "" @@ -1453,7 +1453,7 @@ msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 dh_installman:274 dh_installmanpages:206 dh_installmenu:108 dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 dh_installman:274 dh_installmanpages:206 dh_installmenu:108 dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "" @@ -1614,12 +1614,12 @@ msgid "B errors out if wildcards expand to nothing." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:245 +#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:246 msgid "L" msgstr "" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 dh_systemd_start:247 +#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 dh_systemd_start:248 msgid "AUTHORS" msgstr "" @@ -2169,7 +2169,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "" @@ -4450,7 +4450,7 @@ msgstr "" #. type: =item #: dh_installinit:104 dh_systemd_start:54 -msgid "B<-r>, B<--no-restart-on-upgrade>" +msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "" #. type: textblock @@ -4546,12 +4546,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_installinit:352 +#: dh_installinit:353 msgid "Steve Langasek " msgstr "" #. type: textblock -#: dh_installinit:354 +#: dh_installinit:355 msgid "Michael Stapelberg " msgstr "" @@ -6451,7 +6451,7 @@ msgid "L, L" msgstr "" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:249 +#: dh_systemd_enable:289 dh_systemd_start:250 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" @@ -6464,7 +6464,7 @@ msgstr "" #: dh_systemd_start:16 msgid "" "B [S>] [B<--restart-after-upgrade>] " -"[B<--no-restart-on-upgrade>] [S ...>]" +"[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" #. type: textblock diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index e4dc0d17..6bec7884 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20120609\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 08:12+0000\n" +"POT-Creation-Date: 2016-10-02 06:17+0000\n" "PO-Revision-Date: 2012-08-20 11:17+0200\n" "Last-Translator: Omar Campagne \n" "Language-Team: Debian l10n Spanish \n" @@ -2003,14 +2003,14 @@ msgstr "" #: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 #: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 +#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 #: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 #: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 #: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 #: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 #: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:243 +#: dh_systemd_enable:283 dh_systemd_start:244 msgid "SEE ALSO" msgstr "VÉASE TAMBIÉN" @@ -2067,7 +2067,7 @@ msgstr "AUTOR" #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 #: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 #: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 +#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 #: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 #: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 #: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 @@ -2285,20 +2285,20 @@ msgstr "" #: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 #: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 #: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 #: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 #: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 #: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 #: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 #: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 +#: dh_usrlocal:118 dh_systemd_start:246 msgid "L" msgstr "L" # type: =head1 #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 -#: dh_systemd_start:247 +#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 +#: dh_systemd_start:248 msgid "AUTHORS" msgstr "AUTORES" @@ -3081,7 +3081,7 @@ msgstr "" #: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 #: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 #: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 +#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 #: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 #: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 #: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 @@ -6396,12 +6396,12 @@ msgstr "" "del comodín B<#DEBHELPER#>." #. type: textblock -#: dh_installinit:352 +#: dh_installinit:353 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:354 +#: dh_installinit:355 msgid "Michael Stapelberg " msgstr "" @@ -9099,7 +9099,7 @@ msgid "L, L" msgstr "" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:249 +#: dh_systemd_enable:289 dh_systemd_start:250 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" @@ -9678,9 +9678,9 @@ msgstr "" #~ "symlinks or upstart dependencies." #~ msgstr "" #~ "Si no se instala ninguna tarea de upstart en el directorio destino al " -#~ "invocar B, el programa supondrá que se está " -#~ "instalando un script de init, y no ofrecerá los enlaces simbólicos de " -#~ "compatibilidad o dependencias de upstart." +#~ "invocar B, el programa supondrá que se " +#~ "está instalando un script de init, y no ofrecerá los enlaces simbólicos " +#~ "de compatibilidad o dependencias de upstart." #~ msgid "The inverse of B<--with>, disables using the given addon." #~ msgstr "Lo contrario de B<--with>, desactiva la extensión dada." diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index 92dff158..25c2b26a 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2016-10-01 08:12+0000\n" +"POT-Creation-Date: 2016-10-02 06:17+0000\n" "PO-Revision-Date: 2016-08-31 13:18+0200\n" "Last-Translator: Baptiste Jammet \n" "Language-Team: French \n" @@ -2073,14 +2073,14 @@ msgstr "" #: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 #: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 +#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 #: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 #: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 #: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 #: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 #: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:243 +#: dh_systemd_enable:283 dh_systemd_start:244 msgid "SEE ALSO" msgstr "VOIR AUSSI" @@ -2136,7 +2136,7 @@ msgstr "AUTEUR" #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 #: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 #: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 +#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 #: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 #: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 #: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 @@ -2364,20 +2364,20 @@ msgstr "" #: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 #: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 #: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 #: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 #: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 #: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 #: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 #: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 +#: dh_usrlocal:118 dh_systemd_start:246 msgid "L" msgstr "L" # type: =head1 #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 -#: dh_systemd_start:247 +#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 +#: dh_systemd_start:248 msgid "AUTHORS" msgstr "AUTEURS" @@ -3183,7 +3183,7 @@ msgstr "" #: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 #: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 #: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 +#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 #: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 #: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 #: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 @@ -6586,12 +6586,12 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installinit:352 +#: dh_installinit:353 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:354 +#: dh_installinit:355 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -8070,9 +8070,9 @@ msgid "" "B." msgstr "" "N'ajoutez pas l'action différée (« trigger ») même s'il semble que le paquet " -"en a besoin. L'option est nommée B<--no-scripts> pour des raisons historiques " -"car B générait précédemment un script de maintenance qui " -"appelait B." +"en a besoin. L'option est nommée B<--no-scripts> pour des raisons " +"historiques car B générait précédemment un script de " +"maintenance qui appelait B." # type: textblock #. type: textblock @@ -9354,7 +9354,7 @@ msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:249 +#: dh_systemd_enable:289 dh_systemd_start:250 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -9973,9 +9973,9 @@ msgstr "" #~ "symlinks or upstart dependencies." #~ msgstr "" #~ "Si aucun fichier de tâche upstart n'est installé dans le répertoire cible " -#~ "quand B est invoqué, ce programme considère " -#~ "qu'un script init est en cours d'installation et ne fournit pas les liens " -#~ "symboliques de compatibilité, ni de dépendances envers upstart." +#~ "quand B est invoqué, ce programme " +#~ "considère qu'un script init est en cours d'installation et ne fournit pas " +#~ "les liens symboliques de compatibilité, ni de dépendances envers upstart." # type: textblock #~ msgid "The inverse of B<--with>, disables using the given addon." diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index f4ceaf05..45644d89 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814+unreleased\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-10-01 08:12+0000\n" +"POT-Creation-Date: 2016-10-02 06:17+0000\n" "PO-Revision-Date: 2016-08-25 11:59+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -1933,14 +1933,14 @@ msgstr "" #: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 #: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 #: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:342 dh_installlogcheck:81 +#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 #: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 #: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 #: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 #: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 #: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 #: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:243 +#: dh_systemd_enable:283 dh_systemd_start:244 msgid "SEE ALSO" msgstr "VEJA TAMBÉM" @@ -1989,7 +1989,7 @@ msgstr "AUTOR" #: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 #: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 #: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:350 dh_installlogrotate:61 +#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 #: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 #: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 #: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 @@ -2196,19 +2196,19 @@ msgstr "" #: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 #: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 #: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:344 dh_installlogcheck:83 +#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 #: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 #: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 #: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 #: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 #: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:245 +#: dh_usrlocal:118 dh_systemd_start:246 msgid "L" msgstr "L" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:348 dh_systemd_enable:287 -#: dh_systemd_start:247 +#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 +#: dh_systemd_start:248 msgid "AUTHORS" msgstr "AUTORES" @@ -2952,7 +2952,7 @@ msgstr "" #: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 #: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 #: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:346 +#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 #: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 #: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 #: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 @@ -5993,12 +5993,12 @@ msgstr "" "F, antes do símbolo B<#DEBHELPER#>." #. type: textblock -#: dh_installinit:352 +#: dh_installinit:353 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:354 +#: dh_installinit:355 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -7293,8 +7293,8 @@ msgid "" "B." msgstr "" "Não adiciona o trigger \"ldconfig\" mesmo que parece que o pacote possa " -"precisar dele. A opção é chamada B<--no-scripts> por razões históricas pois o " -"B previamente gerava scripts do mantenedor que chamavam " +"precisar dele. A opção é chamada B<--no-scripts> por razões históricas pois " +"o B previamente gerava scripts do mantenedor que chamavam " "B." #. type: textblock @@ -8452,7 +8452,7 @@ msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:249 +#: dh_systemd_enable:289 dh_systemd_start:250 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" -- cgit v1.2.3 From 868f1131f18b20e6500f8c1fedf53584e4d5a979 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 06:21:42 +0000 Subject: Release debhelper/10.2 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a6aeafa1..c8e5ca84 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debhelper (10.2) UNRELEASED; urgency=medium +debhelper (10.2) unstable; urgency=medium * Apply patch from Peter Pentchev to fix some typos. * Apply patch from Michael Biebl to undo a major @@ -10,7 +10,7 @@ debhelper (10.2) UNRELEASED; urgency=medium reduce the confusion of what it does. Thanks to Michael Biebl for the suggestion. - -- Niels Thykier Sun, 02 Oct 2016 05:50:21 +0000 + -- Niels Thykier Sun, 02 Oct 2016 06:20:56 +0000 debhelper (10.1) unstable; urgency=medium -- cgit v1.2.3 From 4e58a360e602e1557034ae0262f1dcb556f8919a Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 06:51:56 +0000 Subject: Release debhelper/10.2.1 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 8 ++++++++ debian/rules | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c8e5ca84..7f62c547 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +debhelper (10.2.1) unstable; urgency=medium + + * d/rules: Add a ./run in front of dh_auto_install. It is + technically not needed, but it prevents lintian from assuming + that we need to Build-Depend debhelper. + + -- Niels Thykier Sun, 02 Oct 2016 06:51:49 +0000 + debhelper (10.2) unstable; urgency=medium * Apply patch from Peter Pentchev to fix some typos. diff --git a/debian/rules b/debian/rules index b5073590..c323707d 100755 --- a/debian/rules +++ b/debian/rules @@ -18,4 +18,4 @@ override_dh_update_autotools_config override_dh_strip_nondeterminism: override_dh_auto_install: - dh_auto_install --destdir=debian/debhelper + ./run dh_auto_install --destdir=debian/debhelper -- cgit v1.2.3 From 4bba0022d71ac764dc9f5c0595cfc2b2d7640311 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 09:53:07 +0000 Subject: d/changelog: Fix typo Signed-off-by: Niels Thykier --- debian/changelog | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7f62c547..c007fb6d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (10.2.2) UNRELEASED; urgency=medium + + * Fix typo in changelog entry for release 10.2. Thanks to + Peter Pentchev for reporting it. + + -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 + debhelper (10.2.1) unstable; urgency=medium * d/rules: Add a ./run in front of dh_auto_install. It is @@ -14,7 +21,7 @@ debhelper (10.2) unstable; urgency=medium missing (introduced in 10.1). (Closes: #839557) * dh_installinit,dh_systemd_start: Introduce a new --no-stop-on-upgrade as an alternative to - --no-restart-on-upgrade. This new option should be + --no-restart-on-upgrade. This new option should reduce the confusion of what it does. Thanks to Michael Biebl for the suggestion. -- cgit v1.2.3 From 6812ef24ea66b7b9ab945efcd3bd161068151e17 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 12:34:24 +0000 Subject: Deprecate compat levels before 9 Signed-off-by: Niels Thykier --- Debian/Debhelper/Dh_Lib.pm | 2 +- debhelper-obsolete-compat.pod | 4 ++++ debhelper.pod | 8 ++++++++ debian/changelog | 1 + 4 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index ff7367b0..276686b0 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -13,7 +13,7 @@ use constant { 'MIN_COMPAT_LEVEL' => 5, # Lowest compat level that does *not* cause deprecation # warnings - 'LOWEST_NON_DEPRECATED_COMPAT_LEVEL' => 5, + 'LOWEST_NON_DEPRECATED_COMPAT_LEVEL' => 9, # Highest "open-beta" compat level. Remember to notify # debian-devel@l.d.o before bumping this. 'BETA_TESTER_COMPAT' => 10, diff --git a/debhelper-obsolete-compat.pod b/debhelper-obsolete-compat.pod index 1d9f349d..4c98ac3e 100644 --- a/debhelper-obsolete-compat.pod +++ b/debhelper-obsolete-compat.pod @@ -55,6 +55,8 @@ Every file in F is automatically flagged as a conffile by B =back +This mode is deprecated. + =item v4 Changes from v3 are: @@ -82,6 +84,8 @@ B will correct existing links to conform with policy. =back +This mode is deprecated. + =item v5 This is the lowest supported compatibility level. diff --git a/debhelper.pod b/debhelper.pod index b27bd647..bfc5e19f 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -305,6 +305,8 @@ This is the lowest supported compatibility level. If you are upgrading from an earlier compatibility level, please review L. +This mode is deprecated. + =item v6 Changes from v5 are: @@ -335,6 +337,8 @@ directory. In previous compatibility levels it silently refuses to do this. =back +This mode is deprecated. + =item v7 Changes from v6 are: @@ -363,6 +367,8 @@ none is specified. =back +This mode is deprecated. + =item v8 Changes from v7 are: @@ -392,6 +398,8 @@ BI<*> prefer to use Perl's B in preference to F Sun, 02 Oct 2016 09:52:08 +0000 -- cgit v1.2.3 From 91d076403a018e0cfbdd39c4f25c19b2e8c31ad7 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 13:45:56 +0000 Subject: dh_update_autotools_config: Remove unncessary space Signed-off-by: Niels Thykier --- dh_update_autotools_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh_update_autotools_config b/dh_update_autotools_config index e26073ad..17ee724a 100755 --- a/dh_update_autotools_config +++ b/dh_update_autotools_config @@ -2,7 +2,7 @@ =head1 NAME -dh_update_autotools_config - Update autotools config files +dh_update_autotools_config - Update autotools config files =cut -- cgit v1.2.3 From 4dad75a9f1f602d1a72f86b03d8a00ed6a6566bc Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 15:16:23 +0000 Subject: t: Fix test issues with the new compat deprecations Signed-off-by: Niels Thykier --- t/buildsystems/autoconf/configure | 1 + t/buildsystems/buildsystem_tests.t | 2 +- t/buildsystems/debian/compat | 2 +- t/dh_install.t | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/t/buildsystems/autoconf/configure b/t/buildsystems/autoconf/configure index 80cf3ecb..73715c8d 100755 --- a/t/buildsystems/autoconf/configure +++ b/t/buildsystems/autoconf/configure @@ -14,6 +14,7 @@ my @OPTIONS=qw( ^--sysconfdir=/etc$ ^--localstatedir=/var$ ^--libexecdir=\$\{prefix\}/lib/.*$ + ^--libdir=\$\{prefix\}/lib/.*$ ^--disable-silent-rules$ ^--disable-maintainer-mode$ ^--disable-dependency-tracking$ diff --git a/t/buildsystems/buildsystem_tests.t b/t/buildsystems/buildsystem_tests.t index 5a0f57ca..098f314a 100755 --- a/t/buildsystems/buildsystem_tests.t +++ b/t/buildsystems/buildsystem_tests.t @@ -634,7 +634,7 @@ override_dh_auto_build: $(MAKE) %: @dh_clean > /dev/null 2>&1 - @+dh --buildsystem=makefile --after=dh_auto_configure --until=dh_auto_build $@ 2>/dev/null + @+dh $@ --buildsystem=makefile 2>/dev/null @dh_clean > /dev/null 2>&1 EOF test_is_parallel( do_rules_for_parallel("build", "include debian/rules"), diff --git a/t/buildsystems/debian/compat b/t/buildsystems/debian/compat index 7f8f011e..ec635144 100644 --- a/t/buildsystems/debian/compat +++ b/t/buildsystems/debian/compat @@ -1 +1 @@ -7 +9 diff --git a/t/dh_install.t b/t/dh_install.t index c2666941..64e4df89 100755 --- a/t/dh_install.t +++ b/t/dh_install.t @@ -14,14 +14,14 @@ system("rm -rf debian/debhelper debian/tmp"); # debian/tmp explicitly specified in filenames in older compat level system("mkdir -p debian/tmp/usr/bin; touch debian/tmp/usr/bin/foo; touch debian/tmp/usr/bin/bar"); -system("DH_COMPAT=6 ./dh_install debian/tmp/usr/bin/foo"); +system("DH_COMPAT=6 ./dh_install debian/tmp/usr/bin/foo 2>/dev/null"); ok(-e "debian/debhelper/usr/bin/foo"); ok(! -e "debian/debhelper/usr/bin/bar"); system("rm -rf debian/debhelper debian/tmp"); # --sourcedir=debian/tmp in older compat level system("mkdir -p debian/tmp/usr/bin; touch debian/tmp/usr/bin/foo; touch debian/tmp/usr/bin/bar"); -system("DH_COMPAT=6 ./dh_install --sourcedir=debian/tmp usr/bin/foo"); +system("DH_COMPAT=6 ./dh_install --sourcedir=debian/tmp usr/bin/foo 2>/dev/null"); ok(-e "debian/debhelper/usr/bin/foo"); ok(! -e "debian/debhelper/usr/bin/bar"); system("rm -rf debian/debhelper debian/tmp"); -- cgit v1.2.3 From a28eaa2639820103ee39dab833eee68fd7be1f90 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 15:29:38 +0000 Subject: dh: Remove logs before and not after the override target Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ dh | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index d6f8a297..8c997078 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ debhelper (10.2.2) UNRELEASED; urgency=medium * Fix typo in changelog entry for release 10.2. Thanks to Peter Pentchev for reporting it. * Deprecate all compat levels lower than 9. + * dh: Discard override log files before running rather than + after. -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 diff --git a/dh b/dh index 4acad268..975e533d 100755 --- a/dh +++ b/dh @@ -842,6 +842,9 @@ sub run_override { push @options, $opt unless grep { $_ eq $opt } @options; } + # Discard any override log files before calling the override + # target + complex_doit("rm","-f","debian/*.debhelper.log") if not compat(9); # This passes the options through to commands called # inside the target. $ENV{DH_INTERNAL_OPTIONS}=join("\x1e", @options); @@ -849,7 +852,6 @@ sub run_override { run("debian/rules", $override); delete $ENV{DH_INTERNAL_OPTIONS}; delete $ENV{DH_INTERNAL_OVERRIDE}; - complex_doit("rm","-f","debian/*.debhelper.log") if not compat(9); # Update log for overridden command now that it has # finished successfully. -- cgit v1.2.3 From af55b01fe8f0f2ddf2e35ac95c43e378938f335a Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 17:19:46 +0000 Subject: Remove references to usr/{man,info,X11*/man} Signed-off-by: Niels Thykier --- debian/changelog | 3 +++ dh_compress | 2 +- dh_fixperms | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8c997078..7630d7ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,9 @@ debhelper (10.2.2) UNRELEASED; urgency=medium * Deprecate all compat levels lower than 9. * dh: Discard override log files before running rather than after. + * dh_compress,dh_fixperms: Remove references to long + obsolete directories such as usr/info, usr/man and + usr/X11*/man. -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 diff --git a/dh_compress b/dh_compress index 55f73863..dfb076ee 100755 --- a/dh_compress +++ b/dh_compress @@ -110,7 +110,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # complete list of such extensions: ".gz", ".z", ".taz", # ".tgz", "-gz", "-z", "_z" push @files, split(/\n/,` - find usr/info usr/share/info usr/man usr/share/man usr/X11*/man -type f ! -iname "*.gz" \\ + find usr/share/info usr/share/man -type f ! -iname "*.gz" \\ ! -iname "*.gif" ! -iname "*.png" ! -iname "*.jpg" \\ ! -iname "*.jpeg" \\ 2>/dev/null || true; diff --git a/dh_fixperms b/dh_fixperms index 214a0914..79c2b189 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -86,7 +86,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { "| xargs -0r chmod 0755"); # Executable man pages are a bad thing.. - complex_doit("find $tmp/usr/share/man $tmp/usr/man/ $tmp/usr/X11*/man/ -type f", + complex_doit("find $tmp/usr/share/man -type f", "$find_options -print0 2>/dev/null | xargs -0r chmod 0644"); # ..and header files .. -- cgit v1.2.3 From 56e7dc4f2a6b47007364ec7f4e3dee1eba2f21c8 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 19:43:52 +0000 Subject: dh_installudev: Remove unused variable Signed-off-by: Niels Thykier --- dh_installudev | 1 - 1 file changed, 1 deletion(-) diff --git a/dh_installudev b/dh_installudev index 5a07d34b..1985676a 100755 --- a/dh_installudev +++ b/dh_installudev @@ -85,7 +85,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $filename = "$package.udev"; } $filename=~s/\.udev$/.rules/; - my $oldfilename=$filename; if (defined $dh{NAME}) { $filename="$dh{NAME}.rules"; } -- cgit v1.2.3 From dbdad391cc62fc92f54d8f9eab1f4bc68c1073cb Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 20:11:34 +0000 Subject: Refactor install_dir usage to avoid the "if -d " tests They were not needed in the first place (as "install -d" DTRT). Signed-off-by: Niels Thykier --- Debian/Debhelper/Dh_Lib.pm | 15 +++++---------- dh_bugfiles | 2 +- dh_builddeb | 4 +--- dh_gconf | 2 +- dh_gencontrol | 8 ++------ dh_install | 6 ++---- dh_installcatalogs | 7 +++---- dh_installchangelogs | 4 +--- dh_installcron | 8 ++------ dh_installdeb | 4 +--- dh_installdebconf | 4 +--- dh_installdirs | 4 +--- dh_installdocs | 4 +--- dh_installemacsen | 16 ++++------------ dh_installexamples | 6 ++---- dh_installifupdown | 4 +--- dh_installinfo | 4 +--- dh_installinit | 24 +++++------------------- dh_installlogcheck | 4 +--- dh_installlogrotate | 4 +--- dh_installman | 4 +--- dh_installmanpages | 4 +--- dh_installmenu | 8 ++------ dh_installmime | 8 ++------ dh_installmodules | 4 +--- dh_installpam | 4 +--- dh_installppp | 4 +--- dh_installudev | 4 +--- dh_lintian | 4 +--- dh_makeshlibs | 8 ++------ dh_md5sums | 8 ++------ dh_movefiles | 4 +--- dh_shlibdeps | 8 ++------ dh_strip | 8 +++----- doc/PROGRAMMING | 1 + 35 files changed, 59 insertions(+), 156 deletions(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 276686b0..3ecd6e6c 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -321,7 +321,8 @@ sub install_lib { doit('install', '-p', '-m0644', @_); } sub install_dir { - doit('install', '-d', @_); + my @to_create = grep { not -d $_ } @_; + doit('install', '-d', @to_create) if @to_create; } # Run a command that may have a huge number of arguments, like xargs does. @@ -702,9 +703,7 @@ sub generated_file { my $dir = "debian/.debhelper/generated/${package}"; my $path = "${dir}/${filename}"; $mkdirs //= 1; - if ($mkdirs and not -d $dir) { - install_dir($dir); - } + install_dir($dir) if $mkdirs; return $path; } @@ -1132,9 +1131,7 @@ sub make_symlink{ # Make sure the directory the link will be in exists. my $basedir=dirname("$tmp/$dest"); - if (! -e $basedir) { - install_dir($basedir); - } + install_dir($basedir); # Policy says that if the link is all within one toplevel # directory, it should be relative. If it's between @@ -1354,9 +1351,7 @@ sub restore_file_on_clean { my $bucket_index = 'debian/.debhelper/bucket/index'; my $bucket_dir = 'debian/.debhelper/bucket/files'; my $checksum; - if (not -d $bucket_dir) { - install_dir($bucket_dir); - } + install_dir($bucket_dir); if ($file =~ m{^/}) { error("restore_file_on_clean requires a path relative to the package dir"); } diff --git a/dh_bugfiles b/dh_bugfiles index 2fe9a11e..dd694daf 100755 --- a/dh_bugfiles +++ b/dh_bugfiles @@ -107,7 +107,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { install_dir($dir); doit("mv", "${dir}.tmp", "$dir/script"); } - elsif (! -d $dir) { + else { install_dir($dir); } while (my ($type, $srcfile) = each(%bugfiles)) { diff --git a/dh_builddeb b/dh_builddeb index a39a716e..36e729dc 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -97,9 +97,7 @@ sub build_and_rename_deb { my ($package, $destdir, $cmd, $rename_sub) = @_; my $build_dir = "debian/.debhelper/scratch-space/build-${package}"; my ($dpkg_filename, $desired_filename); - if ( ! -d $build_dir) { - install_dir($build_dir); - } + install_dir($build_dir); doit(@${cmd}, $build_dir); opendir(my $fd, $build_dir); for my $name (readdir($fd)) { diff --git a/dh_gconf b/dh_gconf index 28793b26..caed0fd3 100755 --- a/dh_gconf +++ b/dh_gconf @@ -81,7 +81,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # Migrate schemas from /etc/gconf/schemas to /usr/share/gconf/schemas if (-d $old_schemas_dir) { - install_dir($new_schemas_dir) unless -d $new_schemas_dir; + install_dir($new_schemas_dir); complex_doit("mv $old_schemas_dir/*.schemas $new_schemas_dir/"); doit("rmdir","-p","--ignore-fail-on-non-empty",$old_schemas_dir); } diff --git a/dh_gencontrol b/dh_gencontrol index bde389de..887d35c2 100755 --- a/dh_gencontrol +++ b/dh_gencontrol @@ -67,9 +67,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $changelog='debian/changelog'; } - if ( ! -d "$tmp/DEBIAN" ) { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); # avoid gratuitous warning if (! -e $substvars || system("grep -q '^misc:Depends=' $substvars") != 0) { @@ -124,9 +122,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } else { push(@dbgsym_options, '-UReplaces', '-UBreaks'); } - if ( ! -d "${dbgsym_tmp}/DEBIAN" ) { - install_dir("${dbgsym_tmp}/DEBIAN"); - } + install_dir("${dbgsym_tmp}/DEBIAN"); doit("dpkg-gencontrol", "-p${package}", "-l$changelog", "-T$substvars", "-P${dbgsym_tmp}",@{$dh{U_PARAMS}}, @dbgsym_options); diff --git a/dh_install b/dh_install index 52750569..205d4701 100755 --- a/dh_install +++ b/dh_install @@ -227,10 +227,8 @@ foreach my $package (getpackages()) { } # Make sure the destination directory exists. - if (! -e "$tmp/$dest") { - install_dir("$tmp/$dest"); - } - + install_dir("$tmp/$dest"); + if (-d $src && $exclude) { my $basename = basename($src); my $dir = ($basename eq '.') ? $src : "$src/.."; diff --git a/dh_installcatalogs b/dh_installcatalogs index 1a863d5f..af6129ac 100755 --- a/dh_installcatalogs +++ b/dh_installcatalogs @@ -82,10 +82,11 @@ foreach my $package (@{$dh{DOPACKAGES}}) { foreach my $line (filedoublearray($sgmlcatlistfile)) { my $source = $line->[0]; my $dest = $line->[1]; - my $fulldest = "$tmpdir/$dest"; + my $fulldest = "$tmpdir/$dest"; $fulldest =~ s|//|/|g; # beautification if (! -d dirname($fulldest)) { + # Ensure the parent exist install_dir($tmpdir."/".dirname($dest)); } @@ -97,9 +98,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if (@sgmlinstalled) { addsubstvar($package, "misc:Depends", "sgml-base", ">= $sgmlbasever"); - if (! -d "$tmpdir/etc/sgml") { - install_dir("$tmpdir/etc/sgml"); - } + install_dir("$tmpdir/etc/sgml"); my $centralcat = "/etc/sgml/$package.cat"; diff --git a/dh_installchangelogs b/dh_installchangelogs index b5e26a7d..9f0563ea 100755 --- a/dh_installchangelogs +++ b/dh_installchangelogs @@ -199,9 +199,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { next unless -d "$tmp/usr/share/doc/$package"; } - if (! -d "$tmp/usr/share/doc/$package") { - install_dir("$tmp/usr/share/doc/$package"); - } + install_dir("$tmp/usr/share/doc/$package"); if (! $dh{NO_ACT}) { if (! install_binNMU_changelog($package, $changelog, $changelog_name)) { diff --git a/dh_installcron b/dh_installcron index 8b42775b..92179345 100755 --- a/dh_installcron +++ b/dh_installcron @@ -61,18 +61,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) { foreach my $type (qw{hourly daily weekly monthly}) { my $cron=pkgfile($package,"cron.$type"); if ($cron) { - if (! -d "$tmp/etc/cron.$type") { - install_dir("$tmp/etc/cron.$type"); - } + install_dir("$tmp/etc/cron.$type"); install_prog($cron,"$tmp/etc/cron.$type/".pkgfilename($package)); } } # Separate because this needs to be mode 644. my $cron=pkgfile($package,"cron.d"); if ($cron) { - if (! -d "$tmp/etc/cron.d") { - install_dir("$tmp/etc/cron.d"); - } + install_dir("$tmp/etc/cron.d"); install_file($cron,"$tmp/etc/cron.d/".pkgfilename($package)); } } diff --git a/dh_installdeb b/dh_installdeb index c881707b..7ba846c2 100755 --- a/dh_installdeb +++ b/dh_installdeb @@ -95,9 +95,7 @@ my %maintscript_predeps = ( foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); if (is_udeb($package)) { # For udebs, only do the postinst, and no #DEBHELPER#. diff --git a/dh_installdebconf b/dh_installdebconf index bf601eba..1c3d9025 100755 --- a/dh_installdebconf +++ b/dh_installdebconf @@ -89,9 +89,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $config=pkgfile($package,"config"); my $templates=pkgfile($package,"templates"); - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); if (! is_udeb($package)) { debhelper_script_subst($package, "config"); diff --git a/dh_installdirs b/dh_installdirs index d3bce35e..0ea9dd40 100755 --- a/dh_installdirs +++ b/dh_installdirs @@ -63,9 +63,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); my $file=pkgfile($package,"dirs"); - if (! -e $tmp) { - install_dir($tmp); - } + install_dir($tmp); my @dirs; diff --git a/dh_installdocs b/dh_installdocs index 935d7240..9c82b5b4 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -325,9 +325,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { closedir(DEB); if (%doc_ids) { - if (! -d "$tmp/usr/share/doc-base/") { - install_dir("$tmp/usr/share/doc-base/"); - } + install_dir("$tmp/usr/share/doc-base/"); } # check for duplicate document ids my %used_doc_ids; diff --git a/dh_installemacsen b/dh_installemacsen index aac15a1f..98f820c6 100755 --- a/dh_installemacsen +++ b/dh_installemacsen @@ -100,31 +100,23 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $emacsen_startup=pkgfile($package,"emacsen-startup"); if ($emacsen_compat ne '') { - if (! -d "$tmp/usr/lib/emacsen-common/packages/compat") { - install_dir("$tmp/usr/lib/emacsen-common/packages/compat"); - } + install_dir("$tmp/usr/lib/emacsen-common/packages/compat"); install_file($emacsen_compat, "$tmp/usr/lib/emacsen-common/packages/compat/$package"); } if ($emacsen_install ne '') { - if (! -d "$tmp/usr/lib/emacsen-common/packages/install") { - install_dir("$tmp/usr/lib/emacsen-common/packages/install"); - } + install_dir("$tmp/usr/lib/emacsen-common/packages/install"); install_prog($emacsen_install,"$tmp/usr/lib/emacsen-common/packages/install/$package"); } if ($emacsen_remove ne '') { - if (! -d "$tmp/usr/lib/emacsen-common/packages/remove") { - install_dir("$tmp/usr/lib/emacsen-common/packages/remove"); - } + install_dir("$tmp/usr/lib/emacsen-common/packages/remove"); install_prog("$emacsen_remove","$tmp/usr/lib/emacsen-common/packages/remove/$package"); } if ($emacsen_startup ne '') { - if (! -d "$tmp/etc/$dh{FLAVOR}/site-start.d/") { - install_dir("$tmp/etc/$dh{FLAVOR}/site-start.d/"); - } + install_dir("$tmp/etc/$dh{FLAVOR}/site-start.d/"); install_file($emacsen_startup,"$tmp/etc/$dh{FLAVOR}/site-start.d/$dh{PRIORITY}$package.el"); } diff --git a/dh_installexamples b/dh_installexamples index cd2fff5c..5a695dda 100755 --- a/dh_installexamples +++ b/dh_installexamples @@ -82,10 +82,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if (@examples) { - if (! -d "$tmp/usr/share/doc/$package/examples") { - install_dir("$tmp/usr/share/doc/$package/examples"); - } - + install_dir("$tmp/usr/share/doc/$package/examples"); + my $exclude = ''; if ($dh{EXCLUDE_FIND}) { $exclude .= ' -and ! \( '.$dh{EXCLUDE_FIND}.' \)'; diff --git a/dh_installifupdown b/dh_installifupdown index 3fdbaad4..d27f464c 100755 --- a/dh_installifupdown +++ b/dh_installifupdown @@ -61,9 +61,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { foreach my $script (qw(pre-up up down post-down)) { my $file=pkgfile($package, "if-$script"); if ($file ne '') { - if (! -d "$tmp/etc/network/if-$script.d") { - install_dir("$tmp/etc/network/if-$script.d"); - } + install_dir("$tmp/etc/network/if-$script.d"); install_prog($file,"$tmp/etc/network/if-$script.d/".pkgfilename($package)); } } diff --git a/dh_installinfo b/dh_installinfo index d12b0c0d..f5e7ad8e 100755 --- a/dh_installinfo +++ b/dh_installinfo @@ -66,9 +66,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if (@info) { - if ( ! -d "$tmp/usr/share/info") { - install_dir("$tmp/usr/share/info"); - } + install_dir("$tmp/usr/share/info"); doit("cp", '--reflink=auto', @info, "$tmp/usr/share/info"); doit("chmod","-R", "go=rX","$tmp/usr/share/info/"); doit("chmod","-R", "u+rw","$tmp/usr/share/info/"); diff --git a/dh_installinit b/dh_installinit index a79113ab..087a3bd8 100755 --- a/dh_installinit +++ b/dh_installinit @@ -219,37 +219,26 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $service=pkgfile($package,"service"); if ($service ne '' && ! $dh{ONLYSCRIPTS}) { my $path="$tmp/lib/systemd/system"; - if (! -d $path) { - install_dir($path); - } - + install_dir($path); install_file($service, "$path/$script.service"); } my $tmpfile=pkgfile($package,"tmpfile"); if ($tmpfile ne '' && ! $dh{ONLYSCRIPTS}) { my $path="$tmp/usr/lib/tmpfiles.d"; - if (! -d $path) { - install_dir($path); - } - + install_dir($path); install_file($tmpfile, "$path/$script.conf"); } my $job=pkgfile($package,"upstart"); if ($job ne '' && ! $dh{ONLYSCRIPTS}) { - if (! -d "$tmp/etc/init") { - install_dir("$tmp/etc/init"); - } - + install_dir("$tmp/etc/init"); install_file($job, "$tmp/etc/init/$jobfile.conf"); } my $default=pkgfile($package,'default'); if ($default ne '' && ! $dh{ONLYSCRIPTS}) { - if (! -d "$tmp/etc/default") { - install_dir("$tmp/etc/default"); - } + install_dir("$tmp/etc/default"); install_file($default, "$tmp/etc/default/$script"); } @@ -257,10 +246,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { pkgfile($package,"init.d"); if ($init ne '' && ! $dh{ONLYSCRIPTS}) { - if (! -d "$tmp/etc/init.d") { - install_dir("$tmp/etc/init.d"); - } - + install_dir("$tmp/etc/init.d"); install_prog($init,"$tmp/etc/init.d/$script"); } diff --git a/dh_installlogcheck b/dh_installlogcheck index 72c92a38..b243c6ef 100755 --- a/dh_installlogcheck +++ b/dh_installlogcheck @@ -68,11 +68,9 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $typenod=~s/\.d//; my $logcheck=pkgfile($package,"logcheck.$typenod"); if ($logcheck) { - if (! -d "$tmp/etc/logcheck/$type") { - install_dir("$tmp/etc/logcheck/$type"); - } my $packagenodot=pkgfilename($package); # run-parts.. $packagenodot=~s/\./_/g; + install_dir("$tmp/etc/logcheck/$type"); install_file($logcheck, "$tmp/etc/logcheck/$type/$packagenodot"); } } diff --git a/dh_installlogrotate b/dh_installlogrotate index 9d7d554c..8e430860 100755 --- a/dh_installlogrotate +++ b/dh_installlogrotate @@ -43,9 +43,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $file=pkgfile($package,"logrotate"); if ($file) { - if (! -d "$tmp/etc/logrotate.d") { - install_dir("$tmp/etc/logrotate.d"); - } + install_dir("$tmp/etc/logrotate.d"); install_file($file,"$tmp/etc/logrotate.d/".pkgfilename($package)); } } diff --git a/dh_installman b/dh_installman index af2d136d..78faf13e 100755 --- a/dh_installman +++ b/dh_installman @@ -178,9 +178,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { next if -l $instpage; next if compat(5) && -e $instpage; - if (! -d $destdir) { - install_dir($destdir); - } + install_dir($destdir); if ($gz) { complex_doit "zcat \Q$page\E > \Q$instpage\E"; } diff --git a/dh_installmanpages b/dh_installmanpages index 2583002b..3f5a949a 100755 --- a/dh_installmanpages +++ b/dh_installmanpages @@ -173,9 +173,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $destdir=~tr:/:/:s; # just for looks if (! -e "$destdir/$basename" && !-l "$destdir/$basename") { - if (! -d $destdir) { - install_dir($destdir); - } + install_dir($destdir); install_file($page,$destdir.$instname); } } diff --git a/dh_installmenu b/dh_installmenu index a2c5910b..9499ad37 100755 --- a/dh_installmenu +++ b/dh_installmenu @@ -65,9 +65,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if ($menu ne '') { if (compat(10)) { - if (! -d "$tmp/usr/share/menu") { - install_dir("$tmp/usr/share/menu"); - } + install_dir("$tmp/usr/share/menu"); install_file($menu,"$tmp/usr/share/menu/$package"); # Add the scripts if a menu-method file doesn't exist. @@ -83,9 +81,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if ($menu_method ne '') { - if (!-d "$tmp/etc/menu-methods") { - install_dir("$tmp/etc/menu-methods"); - } + install_dir("$tmp/etc/menu-methods"); install_file($menu_method,"$tmp/etc/menu-methods/$package"); if (! $dh{NOSCRIPTS}) { diff --git a/dh_installmime b/dh_installmime index 0b394ad0..25da89e2 100755 --- a/dh_installmime +++ b/dh_installmime @@ -46,17 +46,13 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $mime=pkgfile($package,"mime"); if ($mime ne '') { - if (! -d "$tmp/usr/lib/mime/packages") { - install_dir("$tmp/usr/lib/mime/packages"); - } + install_dir("$tmp/usr/lib/mime/packages"); install_file($mime, "$tmp/usr/lib/mime/packages/$package"); } my $sharedmimeinfo=pkgfile($package,"sharedmimeinfo"); if ($sharedmimeinfo ne '') { - if (! -d "$tmp/usr/share/mime/packages") { - install_dir("$tmp/usr/share/mime/packages"); - } + install_dir("$tmp/usr/share/mime/packages"); install_file($sharedmimeinfo, "$tmp/usr/share/mime/packages/$package.xml"); } diff --git a/dh_installmodules b/dh_installmodules index 068f56dd..6f7630a1 100755 --- a/dh_installmodules +++ b/dh_installmodules @@ -91,10 +91,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $modprobe_file=pkgfile($package,"modprobe"); if ($modprobe_file) { - if (! -e "$tmp/etc/modprobe.d") { - install_dir("$tmp/etc/modprobe.d"); - } my $path = '/etc/modprobe.d/' . pkgfilename($package) . '.conf'; + install_dir("$tmp/etc/modprobe.d"); install_file($modprobe_file, "$tmp/$path"); } diff --git a/dh_installpam b/dh_installpam index 2f73241e..92c26214 100755 --- a/dh_installpam +++ b/dh_installpam @@ -52,9 +52,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $pam=pkgfile($package,"pam"); if ($pam ne '') { - if (! -d "$tmp/etc/pam.d") { - install_dir("$tmp/etc/pam.d"); - } + install_dir("$tmp/etc/pam.d"); install_file($pam,"$tmp/etc/pam.d/".pkgfilename($package)); } } diff --git a/dh_installppp b/dh_installppp index 342591ae..39e41ca0 100755 --- a/dh_installppp +++ b/dh_installppp @@ -57,9 +57,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { foreach my $script (qw(up down)) { my $file=pkgfile($package, "ppp.ip-$script"); if ($file ne '') { - if (! -d "$tmp/etc/ppp/ip-$script.d") { - install_dir("$tmp/etc/ppp/ip-$script.d"); - } + install_dir("$tmp/etc/ppp/ip-$script.d"); install_prog($file,"$tmp/etc/ppp/ip-$script.d/".pkgfilename($package)); } } diff --git a/dh_installudev b/dh_installudev index 1985676a..41870e2f 100755 --- a/dh_installudev +++ b/dh_installudev @@ -90,10 +90,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if ($rules_file) { - if (! -e "$tmp/lib/udev/rules.d") { - install_dir("$tmp/lib/udev/rules.d"); - } my $rule="/lib/udev/rules.d/$dh{PRIORITY}$filename"; + install_dir("$tmp/lib/udev/rules.d"); install_file($rules_file, "${tmp}${rule}"); } } diff --git a/dh_lintian b/dh_lintian index ffb16f65..4439334c 100755 --- a/dh_lintian +++ b/dh_lintian @@ -50,9 +50,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $overrides=pkgfile($package,"lintian-overrides"); if ($overrides ne '') { - if (! -d $or_dir) { - install_dir($or_dir); - } + install_dir($or_dir); install_dh_config_file($overrides, "$or_dir/$package"); } } diff --git a/dh_makeshlibs b/dh_makeshlibs index 4c393879..45f29462 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -184,9 +184,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $major=$dh{M_PARAMS}; } - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); my $deps=$package; if ($dh{V_FLAG_SET}) { if ($shlibs_file) { @@ -236,9 +234,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if ($shlibs_file) { - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); install_file($shlibs_file, "$tmp/DEBIAN/shlibs"); } diff --git a/dh_md5sums b/dh_md5sums index 64370033..d4e9ff35 100755 --- a/dh_md5sums +++ b/dh_md5sums @@ -55,9 +55,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $dbgsym_tmp = "debian/.debhelper/${package}/dbgsym-root"; my $tmp=tmpdir($package); - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } + install_dir("$tmp/DEBIAN"); # Check if we should exclude conffiles. my $exclude=""; @@ -89,9 +87,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { doit("chown", "0:0", "$tmp/DEBIAN/md5sums"); } if ( -d $dbgsym_tmp) { - if (! -d "${dbgsym_tmp}/DEBIAN") { - install_dir("${dbgsym_tmp}/DEBIAN"); - } + install_dir("${dbgsym_tmp}/DEBIAN"); $find = "find . -type f ! -regex './DEBIAN/.*' -printf '%P\\0'"; complex_doit("(cd $dbgsym_tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null"); diff --git a/dh_movefiles b/dh_movefiles index 52a12bb1..de9facbe 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -118,9 +118,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { push(@tomove, @tomove_expanded); if (@tomove) { - if (! -d $tmp) { - install_dir($tmp); - } + install_dir($tmp); doit("rm","-f","debian/movelist"); foreach (@tomove) { diff --git a/dh_shlibdeps b/dh_shlibdeps index 19df209a..eefcc433 100755 --- a/dh_shlibdeps +++ b/dh_shlibdeps @@ -107,14 +107,10 @@ if (defined $dh{V_FLAG}) { foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); my $ext=pkgext($package); + my (@filelist, $ff); # dpkg-shlibdeps expects this directory to exist - if (! -d "$tmp/DEBIAN") { - install_dir("$tmp/DEBIAN"); - } - - my @filelist; - my $ff; + install_dir("$tmp/DEBIAN"); # Generate a list of ELF binaries in the package, ignoring any # we were told to exclude. diff --git a/dh_strip b/dh_strip index 7161cc5d..7a16750a 100755 --- a/dh_strip +++ b/dh_strip @@ -272,9 +272,7 @@ sub make_debug { $debug_path=$desttmp."/usr/lib/debug/".$base_file; } my $debug_dir=dirname($debug_path); - if (! -d $debug_dir) { - install_dir($debug_dir); - } + install_dir($debug_dir); if (compat(8) && $use_build_id < 2) { doit($objcopy, "--only-keep-debug", $file, $debug_path); } @@ -369,7 +367,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $dbgsym_docdir = "${debugtmp}/usr/share/doc"; my $doc_symlink = "${dbgsym_docdir}/${package}-dbgsym"; if ( not -l $doc_symlink and not -e $doc_symlink ) { - install_dir($dbgsym_docdir) if not -d $dbgsym_docdir; + install_dir($dbgsym_docdir); doit('ln', '-s', $package, $doc_symlink); } if ($dh{MIGRATE_DBGSYM}) { @@ -388,7 +386,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $dir = "debian/.debhelper/${dbg_pkg}"; } $path = "${dir}/dbgsym-build-ids"; - install_dir($dir) if ! -d $dir; + install_dir($dir); open(my $fd, '>>', $path) or error("open $path failed: $!"); print {$fd} join(q{ }, sort(@build_ids)) . "\n"; close($fd) or error("close $path failed: $!"); diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING index f530b947..4d1e315b 100644 --- a/doc/PROGRAMMING +++ b/doc/PROGRAMMING @@ -311,6 +311,7 @@ install_dh_config_file($src, $dest[, $mode]) install_dir($dir) Create the directory denoted by the path $dir and all parent entries as well (as needed). + If the directory already exists, the function does not. install_file($src, $dest) Installs $src into $dest with mode 0644. The parent dir of $dest must exist (can be created with install_dir). -- cgit v1.2.3 From bc446dacfa2c9507581c6fe5754241b975afc3f0 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 20:17:15 +0000 Subject: dh_systemd_enable: Prefer install_* to doit('install', ...) Signed-off-by: Niels Thykier --- dh_systemd_enable | 48 ++++++++++++++---------------------------------- 1 file changed, 14 insertions(+), 34 deletions(-) diff --git a/dh_systemd_enable b/dh_systemd_enable index 064adc86..7a0621ea 100755 --- a/dh_systemd_enable +++ b/dh_systemd_enable @@ -140,71 +140,51 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $service=pkgfile($package,"service"); if ($service ne '') { my $path="$tmpdir/lib/systemd/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } + install_dir($path); - doit("install","-p","-m644",$service,"$path/$script.service"); + install_file($service, "$path/$script.service"); } my $template=pkgfile("$package@","service"); if ($template ne '') { my $path="$tmpdir/lib/systemd/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$template,"$path/$script@.service"); + install_dir($path); + install_file($template, "$path/$script@.service"); } my $target=pkgfile($package,"target"); if ($target ne '') { my $path="$tmpdir/lib/systemd/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$target,"$path/$script.target"); + install_dir($path); + install_file($target, "$path/$script.target"); } my $socket=pkgfile($package,"socket"); if ($socket ne '') { my $path="$tmpdir/lib/systemd/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$socket,"$path/$script.socket"); + install_dir($path); + install_file($socket, "$path/$script.socket"); } my $tmpfile=pkgfile($package,"tmpfile"); if ($tmpfile ne '') { my $path="$tmpdir/usr/lib/tmpfiles.d"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$tmpfile,"$path/$script.conf"); + install_dir($path); + install_file($tmpfile, "$path/$script.conf"); } my $mount=pkgfile($package,"mount"); if ($mount ne '') { my $path="$tmpdir/usr/lib/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$mount,"$path/$script.mount"); + install_dir($path); + install_file($mount, "$path/$script.mount"); } my $pathunit=pkgfile($package,"path"); if ($pathunit ne '') { my $path="$tmpdir/lib/systemd/system"; - if (! -d "$path") { - doit("install","-d","$path"); - } - - doit("install","-p","-m644",$pathunit,"$path/$script.path"); + install_dir($path); + install_file($pathunit, "$path/$script.path"); } find({ -- cgit v1.2.3 From f1757dd5d915e567d2cd1f09e3811c2673ad1867 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 20:19:08 +0000 Subject: dh_systemd_*: Add "use warnings" Signed-off-by: Niels Thykier --- dh_systemd_enable | 1 + dh_systemd_start | 1 + 2 files changed, 2 insertions(+) diff --git a/dh_systemd_enable b/dh_systemd_enable index 7a0621ea..09093f0c 100755 --- a/dh_systemd_enable +++ b/dh_systemd_enable @@ -7,6 +7,7 @@ dh_systemd_enable - enable/disable systemd unit files =cut use strict; +use warnings; use Debian::Debhelper::Dh_Lib; use File::Find; diff --git a/dh_systemd_start b/dh_systemd_start index 6cee5c01..940fc80e 100755 --- a/dh_systemd_start +++ b/dh_systemd_start @@ -7,6 +7,7 @@ dh_systemd_start - start/stop/restart systemd unit files =cut use strict; +use warnings; use Debian::Debhelper::Dh_Lib; use File::Find; use Cwd qw(getcwd abs_path); -- cgit v1.2.3 From 580bc09d41ddc8542515f50d40ff8c8477711d3d Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 2 Oct 2016 20:41:26 +0000 Subject: Dh_Lib: Add a reset_perm_and_owner function Signed-off-by: Niels Thykier --- Debian/Debhelper/Dh_Lib.pm | 13 ++++++++----- dh_bugfiles | 4 ++-- dh_fixperms | 4 ++-- dh_gencontrol | 7 ++----- dh_installchangelogs | 3 +-- dh_installdeb | 2 +- dh_installman | 2 +- dh_makeshlibs | 3 +-- dh_md5sums | 6 ++---- dh_strip | 2 +- doc/PROGRAMMING | 10 ++++++++++ 11 files changed, 31 insertions(+), 25 deletions(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 3ecd6e6c..121dc04b 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -49,7 +49,7 @@ use vars qw(@EXPORT %dh); &get_source_date_epoch &is_cross_compiling &generated_file &autotrigger &package_section &restore_file_on_clean &restore_all_files - &open_gz + &open_gz &reset_perm_and_owner ); # The Makefile changes this if debhelper is installed in a PREFIX. @@ -324,6 +324,11 @@ sub install_dir { my @to_create = grep { not -d $_ } @_; doit('install', '-d', @to_create) if @to_create; } +sub reset_perm_and_owner { + my ($mode, @paths) = @_; + doit('chmod', $mode, '--', @paths); + doit('chown', '0:0', '--', @paths); +} # Run a command that may have a huge number of arguments, like xargs does. # Pass in a reference to an array containing the arguments, and then other @@ -1101,14 +1106,12 @@ sub debhelper_script_subst { # Just get rid of any #DEBHELPER# in the script. complex_doit("sed s/#DEBHELPER#// < $file > $tmp/DEBIAN/$script"); } - doit("chown","0:0","$tmp/DEBIAN/$script"); - doit("chmod","0755","$tmp/DEBIAN/$script"); + reset_perm_and_owner('0755', "$tmp/DEBIAN/$script"); } elsif ( -f "debian/$ext$script.debhelper" ) { complex_doit("printf '#!/bin/sh\nset -e\n' > $tmp/DEBIAN/$script"); complex_doit("cat debian/$ext$script.debhelper >> $tmp/DEBIAN/$script"); - doit("chown","0:0","$tmp/DEBIAN/$script"); - doit("chmod","0755","$tmp/DEBIAN/$script"); + reset_perm_and_owner('0755', "$tmp/DEBIAN/$script"); } } diff --git a/dh_bugfiles b/dh_bugfiles index dd694daf..51fe1ff3 100755 --- a/dh_bugfiles +++ b/dh_bugfiles @@ -121,10 +121,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # Ensure that the bug script is executable if (-f $dir) { - chmod 0755, $dir; + reset_perm_and_owner('0755', $dir); } elsif (-f "$dir/script") { - chmod 0755, "$dir/script"; + reset_perm_and_owner('0755', "$dir/script"); } } diff --git a/dh_fixperms b/dh_fixperms index 79c2b189..fafe4510 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -124,10 +124,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) { "! -name 'script' $find_options -print0", "2>/dev/null | xargs -0r chmod 644"); if ( -f "$tmp/usr/share/bug/$package/script" ) { - doit('chmod', '0755', "$tmp/usr/share/bug/$package/script"); + reset_perm_and_owner('0755', "$tmp/usr/share/bug/$package/script"); } } elsif ( -f "$tmp/usr/share/bug/$package" ) { - doit('chmod', '0755', "$tmp/usr/share/bug/$package"); + reset_perm_and_owner('0755', "$tmp/usr/share/bug/$package"); } # Lintian overrides should never be executable, too. diff --git a/dh_gencontrol b/dh_gencontrol index 887d35c2..4edb065f 100755 --- a/dh_gencontrol +++ b/dh_gencontrol @@ -126,8 +126,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { doit("dpkg-gencontrol", "-p${package}", "-l$changelog", "-T$substvars", "-P${dbgsym_tmp}",@{$dh{U_PARAMS}}, @dbgsym_options); - doit("chmod","0644","${dbgsym_tmp}/DEBIAN/control"); - doit("chown","0:0","${dbgsym_tmp}/DEBIAN/control"); + reset_perm_and_owner('0644', "${dbgsym_tmp}/DEBIAN/control"); } elsif ($build_ids) { # Only include the build-id if there is no dbgsym package (if # there is a dbgsym package, the build-ids into the control @@ -141,9 +140,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # This chmod is only necessary if the user sets the umask to # something odd. - doit("chmod","0644","$tmp/DEBIAN/control"); - - doit("chown","0:0","$tmp/DEBIAN/control"); + reset_perm_and_owner('0644', "${tmp}/DEBIAN/control"); } sub read_dbgsym_file { diff --git a/dh_installchangelogs b/dh_installchangelogs index 9f0563ea..4aaef0b1 100755 --- a/dh_installchangelogs +++ b/dh_installchangelogs @@ -224,8 +224,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $link_to='changelog.html'; if (! defined $upstream_text) { complex_doit("echo 'See changelog.html.gz' > $base/changelog"); - doit("chmod","644","$base/changelog"); - doit("chown","0:0","$base/changelog"); + reset_perm_and_owner('0644',"$base/changelog"); } } if ($dh{K_FLAG}) { diff --git a/dh_installdeb b/dh_installdeb index 7ba846c2..0507617e 100755 --- a/dh_installdeb +++ b/dh_installdeb @@ -182,7 +182,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { doit("rm","-f","$tmp/DEBIAN/conffiles"); } else { - doit("chmod","0644","$tmp/DEBIAN/conffiles"); + reset_perm_and_owner('0644', "$tmp/DEBIAN/conffiles"); } } } diff --git a/dh_installman b/dh_installman index 78faf13e..bbea82e8 100755 --- a/dh_installman +++ b/dh_installman @@ -210,7 +210,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { complex_doit "man --recode UTF-8 ./\Q$orig\E > \Q$tmp\E"; # recode uncompresses compressed pages doit "rm", "-f", $orig if s/\.(gz|Z)$//; - doit "chmod", 644, $tmp; + reset_perm_and_owner('0755' $tmp); doit "mv", "-f", $tmp, $_; }, "$tmp/$dir"); } diff --git a/dh_makeshlibs b/dh_makeshlibs index 45f29462..7fb5ac12 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -239,8 +239,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if (-e "$tmp/DEBIAN/shlibs") { - doit("chmod","0644","$tmp/DEBIAN/shlibs"); - doit("chown","0:0","$tmp/DEBIAN/shlibs"); + reset_perm_and_owner('0644', "$tmp/DEBIAN/shlibs"); } # dpkg-gensymbols files diff --git a/dh_md5sums b/dh_md5sums index d4e9ff35..b4b3c925 100755 --- a/dh_md5sums +++ b/dh_md5sums @@ -83,8 +83,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { doit("rm","-f","$tmp/DEBIAN/md5sums"); } else { - doit("chmod", "0644", "$tmp/DEBIAN/md5sums"); - doit("chown", "0:0", "$tmp/DEBIAN/md5sums"); + reset_perm_and_owner('0644', "$tmp/DEBIAN/md5sums"); } if ( -d $dbgsym_tmp) { install_dir("${dbgsym_tmp}/DEBIAN"); @@ -96,8 +95,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { doit('rm', '-f', "${dbgsym_tmp}/DEBIAN/md5sums"); } else { - doit('chmod', '0644', "${dbgsym_tmp}/DEBIAN/md5sums"); - doit('chown', '0:0', "${dbgsym_tmp}/DEBIAN/md5sums"); + reset_perm_and_owner('0644', "${dbgsym_tmp}/DEBIAN/md5sums"); } } } diff --git a/dh_strip b/dh_strip index 7a16750a..9ecfa415 100755 --- a/dh_strip +++ b/dh_strip @@ -283,7 +283,7 @@ sub make_debug { } # No reason for this to be executable. - doit("chmod", "0644", $debug_path); + reset_perm_and_owner('0644', $debug_path); return $debug_path; } diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING index 4d1e315b..eb063724 100644 --- a/doc/PROGRAMMING +++ b/doc/PROGRAMMING @@ -324,6 +324,16 @@ install_lib($src, $dest) Installs a library at the path $src into $dest. The parent dir of $dest must exist (can be created with install_dir). This is intended for installing libraries. +reset_perm_and_owner($mode, $path...) + Resets the ownership and mode (POSIX permissions) of $path + This is useful for files created directly by the script, but + it not necessary for files installed via the install_* + functions. + The file owner and group is set to "root:root". The change + is only done on the exact paths listed (i.e. it is *not* + recursive). + To avoid issue, please pass mode as a string (i.e. '0755' + rather than 0755). open_gz($file) Open $file, read from it as a gzip-compressed file and return the file handle. -- cgit v1.2.3 From a767ed7ea95053c49e1806fd3ddfc19f05a8a488 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Mon, 3 Oct 2016 19:09:58 +0200 Subject: fix autoconf/cross regression from #836988 When adding the makefile buildsystem cross variables, the intention was that it would not affect non-makefile buildsystems (in particular no downstream buildsystems). However, the decision which buildsystem to use is done on a per-target basis. Thus a typical autoconf package will use the autoconf buildsystem for configure and test, but fall back to the makefile buildsystem for clean and build. Thus the cross variables were added for autoconf build as well, which broke the cross build of icu. The solution chosen here is to have autoconf take over build and clean from makefile as well by inheriting its methods. Thus the semantics stay unchanged with the exception of not adding the cross variables for build. All other children of the makefile buildsystem (including mkcmake) already take over all targets, so this issue really only affects autoconf. Fixes: 7ea67c9aace4 ("makefile.pm: Set CC+CXX to the host compilers when cross-building") Signed-off-by: Helmut Grohne Signed-off-by: Niels Thykier --- Debian/Debhelper/Buildsystem/autoconf.pm | 14 +++++--------- debian/changelog | 5 +++++ 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm index 8604152d..ec3a9f7a 100644 --- a/Debian/Debhelper/Buildsystem/autoconf.pm +++ b/Debian/Debhelper/Buildsystem/autoconf.pm @@ -19,15 +19,11 @@ sub check_auto_buildable { my $this=shift; my ($step)=@_; - # Handle configure; the rest - next class (compat with 7.0.x code path) - if ($step eq "configure") { - return 1 if -x $this->get_sourcepath("configure"); - } - if ($step eq "test") { - return 1 if (-e $this->get_buildpath("Makefile") && - -x $this->get_sourcepath("configure")); - } - return 0; + return 0 unless -x $this->get_sourcepath("configure"); + + # Handle configure explicitly; inherit the rest + return 1 if $step eq "configure"; + return $this->SUPER::check_auto_buildable(@_); } sub configure { diff --git a/debian/changelog b/debian/changelog index 7630d7ce..10028cde 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,11 @@ debhelper (10.2.2) UNRELEASED; urgency=medium * dh_compress,dh_fixperms: Remove references to long obsolete directories such as usr/info, usr/man and usr/X11*/man. + * autoreconf.pm: Apply patch from Helmut Grohne to fix + autoconf/cross regression from #836988. The autoreconf + build-system is now also used directly for "clean" and + "build" (while still usin the "make" build-system for the + heavy lifting). (Closes: #839681) -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 -- cgit v1.2.3 From ff6a1cc2a88f548ecf06c7c6923b52861389c8f0 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 4 Oct 2016 16:47:53 +0000 Subject: d/changelog: Clarify an entry Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 10028cde..6b4117e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,8 @@ debhelper (10.2.2) UNRELEASED; urgency=medium * Fix typo in changelog entry for release 10.2. Thanks to Peter Pentchev for reporting it. * Deprecate all compat levels lower than 9. - * dh: Discard override log files before running rather than - after. + * dh: Discard override log files before running the override + rather than after. * dh_compress,dh_fixperms: Remove references to long obsolete directories such as usr/info, usr/man and usr/X11*/man. -- cgit v1.2.3 From 6720ebbbbde08e35072f53b13861fbcccee1e6ed Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Wed, 5 Oct 2016 18:22:02 +0000 Subject: dh_installdirs: in c11 - don't create d/ unconditionally Signed-off-by: Niels Thykier --- debhelper.pod | 8 ++++++++ debian/changelog | 5 +++++ dh_installdirs | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/debhelper.pod b/debhelper.pod index bfc5e19f..f3edcf51 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -605,6 +605,14 @@ B<--mainpackage> option. Please remember to check/update your doc-base files. +=item - + +B no longer creates debian/I directories +unless explicitly requested (or it has to create a subdirectory in +it). + +The vast majority of all packages will be unaffected by this change. + =back =back diff --git a/debian/changelog b/debian/changelog index 6b4117e1..24575cec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,11 @@ debhelper (10.2.2) UNRELEASED; urgency=medium build-system is now also used directly for "clean" and "build" (while still usin the "make" build-system for the heavy lifting). (Closes: #839681) + * dh_installdirs: In compat 11, avoid creating debian/ + directories except when required to do so. This fixes a + corner case, where an arch:all build would behave + differently than an arch:all+arch:any when dh_installdir is + optimised out only for the arch:all build. -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 diff --git a/dh_installdirs b/dh_installdirs index 0ea9dd40..df04e4a5 100755 --- a/dh_installdirs +++ b/dh_installdirs @@ -63,7 +63,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); my $file=pkgfile($package,"dirs"); - install_dir($tmp); + install_dir($tmp) if compat(10); my @dirs; -- cgit v1.2.3 From 540f05ad0d2a9cc0791cf415adc88284fa955b60 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Wed, 5 Oct 2016 20:25:58 +0000 Subject: Remove obsolete comment --- Debian/Debhelper/Dh_Lib.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 121dc04b..331c3160 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -801,7 +801,6 @@ sub filedoublearray { my @ret; while () { chomp; - # Only ignore comments and empty lines in v5 mode. if (not $x) { next if /^#/ || /^$/; } -- cgit v1.2.3 From 469fc42d51a84d7612c8de2e17fb79f3a4eb51b4 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 6 Oct 2016 15:58:49 +0000 Subject: Dh_Lib.pm: Fix typo of positive Signed-off-by: Niels Thykier --- Debian/Debhelper/Dh_Lib.pm | 4 ++-- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 331c3160..3c44238d 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -434,7 +434,7 @@ sub dirname { my $l=<$compat_in>; close($compat_in); if (! defined $l || ! length $l) { - error("debian/compat must contain a postive number (found an empty first line)"); + error("debian/compat must contain a positive number (found an empty first line)"); } else { @@ -445,7 +445,7 @@ sub dirname { if (exists($NAMED_COMPAT_LEVELS{$c})) { $c = $NAMED_COMPAT_LEVELS{$c}; } elsif ($c !~ m/^\d+$/) { - error("debian/compat must contain a postive number (found: \"$c\")"); + error("debian/compat must contain a positive number (found: \"$c\")"); } } } diff --git a/debian/changelog b/debian/changelog index 24575cec..45def96b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,8 @@ debhelper (10.2.2) UNRELEASED; urgency=medium corner case, where an arch:all build would behave differently than an arch:all+arch:any when dh_installdir is optimised out only for the arch:all build. + * Dh_Lib.pm: Fix typo of positive. Thanks to Matthias Klose + for spotting it. -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 -- cgit v1.2.3 From 18049844eb63bff2cdf9aba2fbad3ebca2ab324e Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 8 Oct 2016 09:48:17 +0000 Subject: t/syntax: Print the failing tool Signed-off-by: Niels Thykier --- t/syntax.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/syntax.t b/t/syntax.t index f58577ac..fb1d9c04 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -8,7 +8,8 @@ plan(tests => (@progs + @libs)); foreach my $file (@progs, @libs) { print "# Testing $file\n"; - ok(system("perl -c $file >/dev/null 2>&1"), 0); + ok(system("perl -c $file >/dev/null 2>&1"), 0) + or print STDERR "# Testing $file is broken\n"; } # Local Variables: -- cgit v1.2.3 From f56f3485155b06c78d2857a38678fa92df5736aa Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 8 Oct 2016 09:49:18 +0000 Subject: dh_installman: Fix syntax error Signed-off-by: Niels Thykier --- dh_installman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh_installman b/dh_installman index bbea82e8..3a160843 100755 --- a/dh_installman +++ b/dh_installman @@ -210,7 +210,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { complex_doit "man --recode UTF-8 ./\Q$orig\E > \Q$tmp\E"; # recode uncompresses compressed pages doit "rm", "-f", $orig if s/\.(gz|Z)$//; - reset_perm_and_owner('0755' $tmp); + reset_perm_and_owner('0755', $tmp); doit "mv", "-f", $tmp, $_; }, "$tmp/$dir"); } -- cgit v1.2.3 From c684d1e8bac977f5076ccb6441e6c6af69683ca0 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 8 Oct 2016 10:01:35 +0000 Subject: t: Fix test after change of autoconf build system Signed-off-by: Niels Thykier --- t/buildsystems/buildsystem_tests.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/buildsystems/buildsystem_tests.t b/t/buildsystems/buildsystem_tests.t index 098f314a..9d1c1aa0 100755 --- a/t/buildsystems/buildsystem_tests.t +++ b/t/buildsystems/buildsystem_tests.t @@ -253,7 +253,7 @@ for $bs (@bs) { } touch "$tmpdir/configure", 0755; -test_check_auto_buildable($bs{autoconf}, "configure", { configure => 1 }); +test_check_auto_buildable($bs{autoconf}, "configure", { configure => 1, clean => 1 }); touch "$tmpdir/CMakeLists.txt"; test_check_auto_buildable($bs{cmake}, "CMakeLists.txt", { configure => 1, clean => 1 }); @@ -264,7 +264,7 @@ test_check_auto_buildable($bs{perl_makemaker}, "Makefile.PL", { configure => 1 } # With Makefile touch "$builddir/Makefile"; test_check_auto_buildable($bs{makefile}, "Makefile", 1); -test_check_auto_buildable($bs{autoconf}, "configure+Makefile", { configure => 1, test => 1 }); +test_check_auto_buildable($bs{autoconf}, "configure+Makefile", { configure => 1, test => 1, build => 1, install => 1, clean => 1 }); test_check_auto_buildable($bs{cmake}, "CMakeLists.txt+Makefile", 1); touch "$builddir/CMakeCache.txt"; # strong evidence that cmake was run test_check_auto_buildable($bs{cmake}, "CMakeCache.txt+Makefile", 2); @@ -316,8 +316,8 @@ test_autoselection("auto-selects nothing", undef, %tmp); touch "$tmpdir/configure", 0755; touch "$builddir/Makefile"; test_autoselection("autoconf", - { configure => "autoconf", build => "makefile", - test => "autoconf", install => "makefile", clean => "makefile" }, %tmp); + { configure => "autoconf", build => "autoconf", + test => "autoconf", install => "autoconf", clean => "autoconf" }, %tmp); cleandir $tmpdir; # Perl Makemaker (build, test, clean fail with builddir set [not supported]) -- cgit v1.2.3 From 834dd62b30a35919f8ea0d528abf85fec32d504d Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 8 Oct 2016 10:19:24 +0000 Subject: Release debhelper/10.2.2 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 45def96b..cc44474d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debhelper (10.2.2) UNRELEASED; urgency=medium +debhelper (10.2.2) unstable; urgency=medium * Fix typo in changelog entry for release 10.2. Thanks to Peter Pentchev for reporting it. @@ -21,7 +21,7 @@ debhelper (10.2.2) UNRELEASED; urgency=medium * Dh_Lib.pm: Fix typo of positive. Thanks to Matthias Klose for spotting it. - -- Niels Thykier Sun, 02 Oct 2016 09:52:08 +0000 + -- Niels Thykier Sat, 08 Oct 2016 10:16:23 +0000 debhelper (10.2.1) unstable; urgency=medium -- cgit v1.2.3 From 1df6039437275d46c731264c5fbedd5f70696728 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sat, 8 Oct 2016 13:40:31 +0200 Subject: Fix wrong German translation of dh_systemd_start man page Thanks to Thorsten Alteholz for spotting the mistake! Closes: #839655 --- debian/changelog | 7 +++++++ man/po4a/po/de.po | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index cc44474d..9852a769 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (10.2.3) UNRELEASED; urgency=medium + + * Fix wrong German translation of dh_systemd_start man page. Thanks to + Thorsten Alteholz for spotting the mistake! (Closes: #839655) + + -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 + debhelper (10.2.2) unstable; urgency=medium * Fix typo in changelog entry for release 10.2. Thanks to diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index 73ba904a..369ac58f 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -8601,7 +8601,7 @@ msgid "" "(the latter is only relevant for services without a corresponding init " "script)." msgstr "" -"startet die Unit-Datei nach Upgrades und nach anfänglicher Installation " +"die Unit-Datei nach Upgrades oder nach anfänglicher Installation nicht starten" "(letzteres ist nur für Dienste ohne zugehöriges Init-Skript relevant)." #. type: textblock -- cgit v1.2.3 From 0b8b91707f1f335ea4ab56df56e84cd058ac508c Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sat, 8 Oct 2016 22:58:00 +0000 Subject: dh_auto_test: Note that tests are run under cross-builds Remove now wrong note from dh_auto_test that tests are skipped while cross compiling That's not true anymore since 49df7380cd2279dd30d965b2a88d81ccf7fc8216 (triggered by #726967). Signed-off-by: Mattia Rizzolo Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ dh_auto_test | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9852a769..4f2edce5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ debhelper (10.2.3) UNRELEASED; urgency=medium * Fix wrong German translation of dh_systemd_start man page. Thanks to Thorsten Alteholz for spotting the mistake! (Closes: #839655) + * dh_auto_test: Apply patch from Mattia Rizzolo to update + documentation about running tests during cross-building. -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 diff --git a/dh_auto_test b/dh_auto_test index 13dad9a0..af4b85d6 100755 --- a/dh_auto_test +++ b/dh_auto_test @@ -48,9 +48,6 @@ B usually passes. If the B environment variable contains B, no tests will be performed. -dh_auto_test does not run the test suite when a package is being cross -compiled. - =cut if (get_buildoption("nocheck")) { -- cgit v1.2.3 From 711e66f1cd978ad9cc9cb13107a72e7857e44420 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sun, 9 Oct 2016 11:29:36 +0200 Subject: Fix up current changelog entry: Add author tags --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4f2edce5..f68a2d20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,10 @@ debhelper (10.2.3) UNRELEASED; urgency=medium + [ Axel Beckert ] * Fix wrong German translation of dh_systemd_start man page. Thanks to Thorsten Alteholz for spotting the mistake! (Closes: #839655) + + [ Mattia Rizzolo ] * dh_auto_test: Apply patch from Mattia Rizzolo to update documentation about running tests during cross-building. -- cgit v1.2.3 From 939d1d78ca91889e158d51ad80f02b40e2f9d9cf Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 16 Oct 2016 14:17:37 +0000 Subject: d/changelog: Add entry for Mattia Rizzolo's entry Gbp-Dch: Ignore Signed-off-by: Niels Thykier --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index f68a2d20..0538111a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ debhelper (10.2.3) UNRELEASED; urgency=medium [ Mattia Rizzolo ] * dh_auto_test: Apply patch from Mattia Rizzolo to update documentation about running tests during cross-building. + * dh_auto_test: Note that tests are run under cross-builds -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 -- cgit v1.2.3 From 6b0e30371938c8f3083fb2c6cfac935f23eea238 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 18 Oct 2016 17:58:08 +0000 Subject: Revert "d/changelog: Add entry for Mattia Rizzolo's entry" This reverts commit 939d1d78ca91889e158d51ad80f02b40e2f9d9cf. --- debian/changelog | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0538111a..f68a2d20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,7 +7,6 @@ debhelper (10.2.3) UNRELEASED; urgency=medium [ Mattia Rizzolo ] * dh_auto_test: Apply patch from Mattia Rizzolo to update documentation about running tests during cross-building. - * dh_auto_test: Note that tests are run under cross-builds -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 -- cgit v1.2.3 From 84d08a9f73b04a90a1c810ccd5d2751c412197ba Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 22 Oct 2016 18:51:07 +0000 Subject: dh: Factor argument unpacking Gpb-Dch: Ignore Signed-off-by: Niels Thykier --- dh | 47 +++++++++++++++++++---------------------------- 1 file changed, 19 insertions(+), 28 deletions(-) diff --git a/dh b/dh index 975e533d..999779cc 100755 --- a/dh +++ b/dh @@ -467,9 +467,7 @@ my %command_opts; # sequence addon interface sub _insert { - my $offset=shift; - my $existing=shift; - my $new=shift; + my ($offset, $existing, $new) = @_; foreach my $sequence (keys %sequences) { my @list=@{$sequences{$sequence}}; next unless grep $existing, @list; @@ -494,15 +492,14 @@ sub insert_after { _insert(1, @_); } sub remove_command { - my $command=shift; + my ($command) = @_; foreach my $sequence (keys %sequences) { $sequences{$sequence}=[grep { $_ ne $command } @{$sequences{$sequence}}]; } } sub add_command { - my $command=shift; - my $sequence=shift; + my ($command, $sequence) = @_; unshift @{$sequences{$sequence}}, $command; } sub add_command_options { @@ -510,11 +507,11 @@ sub add_command_options { push @{$command_opts{$command}}, @_; } sub remove_command_options { - my $command=shift; - if (@_) { + my ($command, @cmd_options) = @_; + if (@cmd_options) { # Remove only specified options if (my $opts = $command_opts{$command}) { - foreach my $opt (@_) { + foreach my $opt (@cmd_options) { $opts = [ grep { $_ ne $opt } @$opts ]; } $command_opts{$command} = $opts; @@ -775,8 +772,7 @@ foreach my $i (0..$stoppoint) { } sub run { - my $command=shift; - my @options=@_; + my ($command, @options) = @_; # Include additional command options if any unshift @options, @{$command_opts{$command}} @@ -802,10 +798,7 @@ sub run { # Tries to run an override target for a command. Returns the list of # packages that it was unable to run an override target for. sub run_override { - my $override_type=shift; # arch, indep, or undef - my $command=shift; - my @packages=@{shift()}; - my @options=@_; + my ($override_type, $command, $packages, @options) = @_; my $override="override_$command". (defined $override_type ? "-".$override_type : ""); @@ -814,7 +807,7 @@ sub run_override { # override_type. my (@todo, @rest); if (defined $override_type) { - foreach my $package (@packages) { + foreach my $package (@{$packages}) { my $isall=package_arch($package) eq 'all'; if (($override_type eq 'indep' && $isall) || ($override_type eq 'arch' && !$isall)) { @@ -827,11 +820,11 @@ sub run_override { } } else { - @todo=@packages; + @todo=@{$packages}; } my $has_explicit_target = rules_explicit_target($override); - return @packages unless defined $has_explicit_target; # no such override + return @{$packages} unless defined $has_explicit_target; # no such override return @rest if ! $has_explicit_target; # has empty override return @rest unless @todo; # has override, but no packages to act on @@ -866,8 +859,8 @@ sub run_override { } sub optimize_sequence { - my @sequence; - my %seen; + my (@commands) = @_; + my (@sequence, %seen); my $add=sub { # commands can appear multiple times when sequences are # inlined together; only the first should be needed @@ -877,7 +870,7 @@ sub optimize_sequence { push @sequence, $command; } }; - foreach my $command (@_) { + foreach my $command (@commands) { my $rules_target=rules_target($command); if (defined $rules_target && ! defined rules_explicit_target($rules_target)) { @@ -892,7 +885,7 @@ sub optimize_sequence { } sub rules_target { - my $command=shift; + my ($command) = @_; if ($command =~ /^debian\/rules\s+(.*)/) { return $1 } @@ -922,7 +915,7 @@ sub rules_explicit_target { # in debian/rules. # undef is returned if target does not exist, 0 if target is noop # and 1 if target has dependencies or executes commands. - my $target=shift; + my ($target) = @_; if (! $rules_parsed) { my $processing_targets = 0; @@ -988,8 +981,7 @@ sub warn_deprecated { } sub command_pos { - my $command=shift; - my @sequence=@_; + my ($command, @sequence) = @_; foreach my $i (0..$#sequence) { if ($command eq $sequence[$i]) { @@ -1013,8 +1005,7 @@ sub command_pos { my %skipinfo; sub can_skip { - my $command=shift; - my @packages=@_; + my ($command, @packages) = @_; return 0 if $user_specified_options || (exists $ENV{DH_OPTIONS} && length $ENV{DH_OPTIONS}); @@ -1047,7 +1038,7 @@ sub can_skip { } sub extract_skipinfo { - my $command=shift; + my ($command) = @_; foreach my $dir (split (':', $ENV{PATH})) { if (open (my $h, "<", "$dir/$command")) { -- cgit v1.2.3 From 8a07afe7b2343442d73f1fb3b64626c2241b9e48 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 22 Oct 2016 19:28:32 +0000 Subject: Make the build-stamp optional via a build-stamp sequence Signed-off-by: Niels Thykier --- Debian/Debhelper/Sequence/build_stamp.pm | 17 +++++++++++++++++ debhelper.pod | 12 ++++++++++++ debian/rules | 2 +- dh | 12 +++++++++--- 4 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 Debian/Debhelper/Sequence/build_stamp.pm diff --git a/Debian/Debhelper/Sequence/build_stamp.pm b/Debian/Debhelper/Sequence/build_stamp.pm new file mode 100644 index 00000000..59437c81 --- /dev/null +++ b/Debian/Debhelper/Sequence/build_stamp.pm @@ -0,0 +1,17 @@ +#!/usr/bin/perl + +use warnings; +use strict; +use Debian::Debhelper::Dh_Lib; + +add_command_at_end('create-stamp debian/debhelper-build-stamp', 'build'); +add_command_at_end('create-stamp debian/debhelper-build-stamp', 'build-arch'); +add_command_at_end('create-stamp debian/debhelper-build-stamp', 'build-indep'); + +1 + +# Local Variables: +# indent-tabs-mode: t +# tab-width: 4 +# cperl-indent-level: 4 +# End: diff --git a/debhelper.pod b/debhelper.pod index f3edcf51..00ef6804 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -613,6 +613,18 @@ it). The vast majority of all packages will be unaffected by this change. +=item - + +B no longer creates a stamp (or log) file to record whether the +build already ran or not. This means that unless upstream's build +system correctly tracks this, the build will be run twice (once for +the "build" target and once for the "binary" target). + +On the other hand, this means that rebuild without cleaning +(e.g. B) will behave as much people expect. + +The previous behaviour can restored by using B<--with build-stamp> + =back =back diff --git a/debian/rules b/debian/rules index c323707d..9ca8b949 100755 --- a/debian/rules +++ b/debian/rules @@ -11,7 +11,7 @@ # nothing for debhelper and it keeps the set of B-D smaller) %: - ./run dh $@ --no-parallel --without autoreconf + ./run dh $@ --no-parallel --without autoreconf --with build-stamp # Disable as they are unneeded (and we can then be sure debhelper # builds without needing autotools-dev, dh-strip-nondetermism etc.) diff --git a/dh b/dh index 999779cc..87eae9d8 100755 --- a/dh +++ b/dh @@ -295,6 +295,10 @@ if (not compat(9, 1)) { # Enable systemd support by default in compat 10 or later. unshift(@ARGV, "--with=systemd"); } +if (compat(10, 1)) { + unshift(@ARGV, "--with=build-stamp"); +} + inhibit_log(); @@ -375,9 +379,7 @@ my @bd = (qw{ dh_auto_configure dh_auto_build dh_auto_test -}, - "create-stamp ${build_stamp_file}", -); +}); my @i = (qw{ dh_testroot dh_prep @@ -502,6 +504,10 @@ sub add_command { my ($command, $sequence) = @_; unshift @{$sequences{$sequence}}, $command; } +sub add_command_at_end { + my ($command, $sequence) = @_; + push(@{$sequences{$sequence}}, $command); +} sub add_command_options { my $command=shift; push @{$command_opts{$command}}, @_; -- cgit v1.2.3 From 4cefa7ed0cb4e6fd7863eb2d87e7a4eece6d8399 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 22 Oct 2016 19:36:10 +0000 Subject: debhelper.pod: Fix typo Signed-off-by: Niels Thykier --- debhelper.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debhelper.pod b/debhelper.pod index 00ef6804..03607d08 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -621,7 +621,7 @@ system correctly tracks this, the build will be run twice (once for the "build" target and once for the "binary" target). On the other hand, this means that rebuild without cleaning -(e.g. B) will behave as much people expect. +(e.g. B) will behave as most people expect. The previous behaviour can restored by using B<--with build-stamp> -- cgit v1.2.3 From b9a561dfcb4a5fa52346d0731d6fcac576f8a803 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 22 Oct 2016 19:42:24 +0000 Subject: debhelper.pod: Fix another typo - Thanks to Olly Betts Gbp-Dch: Ignore Signed-off-by: Niels Thykier --- debhelper.pod | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debhelper.pod b/debhelper.pod index 03607d08..e7697ead 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -621,7 +621,8 @@ system correctly tracks this, the build will be run twice (once for the "build" target and once for the "binary" target). On the other hand, this means that rebuild without cleaning -(e.g. B) will behave as most people expect. +(e.g. B) will behave as most people would +expect. The previous behaviour can restored by using B<--with build-stamp> -- cgit v1.2.3 From ad4f021fd47d29db2216e02eb033788687ee8b63 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 10 Nov 2016 07:01:38 +0000 Subject: Bump dh-strip-nondeterminism depends for -backports Signed-off-by: Niels Thykier --- debian/changelog | 5 +++++ debian/control | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f68a2d20..9a99f599 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,11 @@ debhelper (10.2.3) UNRELEASED; urgency=medium * dh_auto_test: Apply patch from Mattia Rizzolo to update documentation about running tests during cross-building. + [ Niels Thykier ] + * Bump dependency on dh-strip-nondeterminism to ensure + stable-backports uses a functional version. Thanks to Christoph + Biedl for the report. (Closes: #843813) + -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 debhelper (10.2.2) unstable; urgency=medium diff --git a/debian/control b/debian/control index 541e56ed..b60bb51e 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,7 @@ Architecture: all Depends: autotools-dev, binutils, dh-autoreconf (>= 12~), - dh-strip-nondeterminism, + dh-strip-nondeterminism (>= 0.028~), dpkg (>= 1.16.2), dpkg-dev (>= 1.18.2~), file (>= 3.23), -- cgit v1.2.3 From 43c01e83a51bcfc31480f0ba955dcb25c4181eae Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Sat, 22 Oct 2016 20:49:12 -0300 Subject: systemd_start: do not start when --no-start and --restart-after-upgrade are combined But do restart on upgrades Signed-off-by: Niels Thykier --- autoscripts/postinst-systemd-restartnostart | 6 ++++++ dh_systemd_start | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 autoscripts/postinst-systemd-restartnostart diff --git a/autoscripts/postinst-systemd-restartnostart b/autoscripts/postinst-systemd-restartnostart new file mode 100644 index 00000000..eb52e273 --- /dev/null +++ b/autoscripts/postinst-systemd-restartnostart @@ -0,0 +1,6 @@ +if [ -d /run/systemd/system ]; then + systemctl --system daemon-reload >/dev/null || true + if [ -n "$2" ]; then + deb-systemd-invoke try-restart #UNITFILES# >/dev/null || true + fi +fi diff --git a/dh_systemd_start b/dh_systemd_start index 940fc80e..46c14a7d 100755 --- a/dh_systemd_start +++ b/dh_systemd_start @@ -225,7 +225,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { }; if ($dh{RESTART_AFTER_UPGRADE}) { - $sd_autoscript->("postinst", "postinst-systemd-restart"); + my $snippet = "postinst-systemd-restart" . ($dh{NO_START} ? "nostart" : ""); + $sd_autoscript->("postinst", $snippet); } elsif (!$dh{NO_START}) { # We need to stop/start before/after the upgrade. $sd_autoscript->("postinst", "postinst-systemd-start"); -- cgit v1.2.3 From 8bf26d222b21c89794d9ff19886145527eef6992 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 15 Dec 2016 07:19:28 +0000 Subject: d/changelog: Add entry for Felipe Sateler's changes Signed-off-by: Niels Thykier --- debian/changelog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9a99f599..91923727 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,10 @@ debhelper (10.2.3) UNRELEASED; urgency=medium stable-backports uses a functional version. Thanks to Christoph Biedl for the report. (Closes: #843813) + [ Felipe Sateler ] + * dh_systemd_start: Fix a bug where --restart-after-upgrade with + --no-start would still start the service. (Closes: #805878) + -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 debhelper (10.2.2) unstable; urgency=medium -- cgit v1.2.3 From dc22817e139ba9924bd428c0a244c878117372ca Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Wed, 14 Dec 2016 22:31:27 -0300 Subject: installinit: do not process systemd files from compat 11 onwards Signed-off-by: Niels Thykier --- debhelper.pod | 6 ++++ dh_installinit | 12 ++++---- t/dh_installinit/debian/changelog | 5 ++++ t/dh_installinit/debian/compat | 1 + t/dh_installinit/debian/control | 20 +++++++++++++ t/dh_installinit/debian/foo.service | 5 ++++ t/dh_installinit/dh_installinit.t | 57 +++++++++++++++++++++++++++++++++++++ 7 files changed, 101 insertions(+), 5 deletions(-) create mode 100644 t/dh_installinit/debian/changelog create mode 100644 t/dh_installinit/debian/compat create mode 100644 t/dh_installinit/debian/control create mode 100644 t/dh_installinit/debian/foo.service create mode 100755 t/dh_installinit/dh_installinit.t diff --git a/debhelper.pod b/debhelper.pod index e7697ead..c9a3739e 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -586,6 +586,12 @@ F files are still installed. =item - +B no longer installs F or F files, nor +generates maintainer scripts for those files. Use B and +B instead. + +=item - + The B<-s> (B<--same-arch>) option is removed. =item - diff --git a/dh_installinit b/dh_installinit index 087a3bd8..a727af42 100755 --- a/dh_installinit +++ b/dh_installinit @@ -47,13 +47,13 @@ build directory. =item debian/I.service If this exists, it is installed into lib/systemd/system/I.service in -the package build directory. +the package build directory. Only compat levels 10 and below. =item debian/I.tmpfile If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in the package build directory. (The tmpfiles.d mechanism is currently only used -by systemd.) +by systemd.) Only compat levels 10 and below. =back @@ -216,14 +216,16 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } } - my $service=pkgfile($package,"service"); + my $service=''; + $service=pkgfile($package,"service") if compat(10); if ($service ne '' && ! $dh{ONLYSCRIPTS}) { my $path="$tmp/lib/systemd/system"; install_dir($path); install_file($service, "$path/$script.service"); } - my $tmpfile=pkgfile($package,"tmpfile"); + my $tmpfile=''; + $tmpfile=pkgfile($package,"tmpfile") if compat(10); if ($tmpfile ne '' && ! $dh{ONLYSCRIPTS}) { my $path="$tmp/usr/lib/tmpfiles.d"; install_dir($path); @@ -254,7 +256,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { error("Can't use --init-script with an upstart job"); } - if (!$dh{NOSCRIPTS}) { + if (compat(10) && !$dh{NOSCRIPTS}) { # Include postinst-init-tmpfiles if the package ships any files # in /usr/lib/tmpfiles.d or /etc/tmpfiles.d my @tmpfiles; diff --git a/t/dh_installinit/debian/changelog b/t/dh_installinit/debian/changelog new file mode 100644 index 00000000..5850f0e2 --- /dev/null +++ b/t/dh_installinit/debian/changelog @@ -0,0 +1,5 @@ +foo (1.0-1) unstable; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- Test Mon, 11 Jul 2016 18:10:59 +0200 diff --git a/t/dh_installinit/debian/compat b/t/dh_installinit/debian/compat new file mode 100644 index 00000000..f599e28b --- /dev/null +++ b/t/dh_installinit/debian/compat @@ -0,0 +1 @@ +10 diff --git a/t/dh_installinit/debian/control b/t/dh_installinit/debian/control new file mode 100644 index 00000000..48d4de2f --- /dev/null +++ b/t/dh_installinit/debian/control @@ -0,0 +1,20 @@ +Source: foo +Section: misc +Priority: optional +Maintainer: Test +Standards-Version: 3.9.8 + +Package: foo +Architecture: all +Description: package foo + Package foo + +Package: bar +Architecture: all +Description: package bar + Package bar + +Package: baz +Architecture: all +Description: package baz + Package baz diff --git a/t/dh_installinit/debian/foo.service b/t/dh_installinit/debian/foo.service new file mode 100644 index 00000000..aa216362 --- /dev/null +++ b/t/dh_installinit/debian/foo.service @@ -0,0 +1,5 @@ +[Unit] +Description=A unit + +[Service] +ExecStart=/bin/true diff --git a/t/dh_installinit/dh_installinit.t b/t/dh_installinit/dh_installinit.t new file mode 100755 index 00000000..d05c2074 --- /dev/null +++ b/t/dh_installinit/dh_installinit.t @@ -0,0 +1,57 @@ +#!/usr/bin/perl +use strict; +use Test::More; +use File::Basename (); + +# Let the tests be run from anywhere, but current directory +# is expected to be the one where this test lives in. +chdir File::Basename::dirname($0) or die "Unable to chdir to ".File::Basename::dirname($0); + +my $TOPDIR = "../.."; +my $rootcmd; + +if ($< == 0) { + $rootcmd = ''; +} +else { + system("fakeroot true 2>/dev/null"); + $rootcmd = $? ? undef : 'fakeroot'; +} + +if (not defined($rootcmd)) { + plan skip_all => 'fakeroot required'; +} +else { + plan(tests => 5); +} + +system("$TOPDIR/dh_clean"); + +my $service = "debian/foo.service"; + +system("mkdir -p debian/foo debian/bar debian/baz"); +system("$rootcmd $TOPDIR/dh_installinit"); +ok(-e "debian/foo/lib/systemd/system/foo.service"); +ok(-e "debian/foo.postinst.debhelper"); +system("$TOPDIR/dh_clean"); + +system("mkdir -p debian/foo debian/bar debian/baz"); +system("DH_COMPAT=11 $rootcmd $TOPDIR/dh_installinit"); +ok(! -e "debian/foo/lib/systemd/system/foo.service"); +ok(! -e "debian/foo.postinst.debhelper"); +system("$TOPDIR/dh_clean"); + +system("mkdir -p debian/foo debian/bar debian/baz"); +system("mkdir -p debian/foo/lib/systemd/system/"); +system("cp debian/foo.service debian/foo/lib/systemd/system/"); +system("DH_COMPAT=11 $rootcmd $TOPDIR/dh_installinit"); +ok(! -e "debian/foo.postinst.debhelper"); +system("$TOPDIR/dh_clean"); + +system("$TOPDIR/dh_clean"); + +# Local Variables: +# indent-tabs-mode: t +# tab-width: 4 +# cperl-indent-level: 4 +# End: -- cgit v1.2.3 From ed2ebf6405818a57743ec4c1bd703ca238a1a634 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 15 Dec 2016 07:30:43 +0000 Subject: d/changelog: Another change by Felipe Sateler Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 91923727..9edb8a0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ debhelper (10.2.3) UNRELEASED; urgency=medium [ Felipe Sateler ] * dh_systemd_start: Fix a bug where --restart-after-upgrade with --no-start would still start the service. (Closes: #805878) + * dh_installinit: Leave the handling of debian/pkg.service and + debian/pkg.tmpfiles to dh_systemd_*. (Closes: #830208) -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 -- cgit v1.2.3 From a105aa0f136487d22de4225499c6c25e833a603b Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 26 Dec 2016 18:47:45 +0000 Subject: dh_installinit: Minor nits in doc Signed-off-by: Niels Thykier --- dh_installinit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dh_installinit b/dh_installinit index a727af42..ba7bdc49 100755 --- a/dh_installinit +++ b/dh_installinit @@ -47,13 +47,13 @@ build directory. =item debian/I.service If this exists, it is installed into lib/systemd/system/I.service in -the package build directory. Only compat levels 10 and below. +the package build directory. Only used in compat levels 10 and below. =item debian/I.tmpfile If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in the package build directory. (The tmpfiles.d mechanism is currently only used -by systemd.) Only compat levels 10 and below. +by systemd.) Only used in compat levels 10 and below. =back -- cgit v1.2.3 From cc93cec7c037c4d1137a874f66d039568a6f82d1 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 26 Dec 2016 22:35:08 +0000 Subject: dh_md5sums: Massage md5sum to avoid GNU-specific escaping Signed-off-by: Niels Thykier --- debian/changelog | 3 +++ dh_md5sums | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9edb8a0d..1b0d68b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,9 @@ debhelper (10.2.3) UNRELEASED; urgency=medium * Bump dependency on dh-strip-nondeterminism to ensure stable-backports uses a functional version. Thanks to Christoph Biedl for the report. (Closes: #843813) + * Massage md5sum output to avoid GNU-specific escaping extension + while we wait for dpkg-gendigests for a more compatible tool. + Thanks to Bernd Zeimetz for the report. (Closes: #843163) [ Felipe Sateler ] * dh_systemd_start: Fix a bug where --restart-after-upgrade with diff --git a/dh_md5sums b/dh_md5sums index b4b3c925..7e00c977 100755 --- a/dh_md5sums +++ b/dh_md5sums @@ -77,7 +77,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } my $find="find . -type f $exclude ! -regex './DEBIAN/.*' -printf '%P\\0'"; - complex_doit("(cd $tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null"); + complex_doit("(cd $tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum | " . + q{perl -pe 'if (s@^\\\\@@) { s/\\\\\\\\/\\\\/g; }' > DEBIAN/md5sums) >/dev/null}); # If the file's empty, no reason to waste inodes on it. if (-z "$tmp/DEBIAN/md5sums") { doit("rm","-f","$tmp/DEBIAN/md5sums"); @@ -89,7 +90,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { install_dir("${dbgsym_tmp}/DEBIAN"); $find = "find . -type f ! -regex './DEBIAN/.*' -printf '%P\\0'"; - complex_doit("(cd $dbgsym_tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null"); + complex_doit("(cd $dbgsym_tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum | " . + q{perl -pe 'if (s@^\\\\@@) { s/\\\\\\\\/\\\\/g; }' > DEBIAN/md5sums) >/dev/null}); # If the file's empty, no reason to waste inodes on it. if (-z "${dbgsym_tmp}/DEBIAN/md5sums") { doit('rm', '-f', "${dbgsym_tmp}/DEBIAN/md5sums"); -- cgit v1.2.3 From 55868a608e508723cc664781c2e0754a08349ee5 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 31 Dec 2016 21:30:32 +0000 Subject: Update POT and PO files Signed-off-by: Niels Thykier --- man/po4a/po/de.po | 660 +++++++++++++++++++++++++--------------------- man/po4a/po/debhelper.pot | 467 +++++++++++++++++--------------- man/po4a/po/es.po | 645 ++++++++++++++++++++++++-------------------- man/po4a/po/fr.po | 656 +++++++++++++++++++++++++-------------------- man/po4a/po/pt.po | 652 +++++++++++++++++++++++++-------------------- 5 files changed, 1703 insertions(+), 1377 deletions(-) diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index 369ac58f..c649ee59 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-10-02 06:17+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: 2016-08-27 11:57+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" @@ -53,8 +53,8 @@ msgstr "debhelper - die Debhelper-Werkzeugsammlung" #: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 #: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 #: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 -#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 -#: dh_systemd_start:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 +#: dh_systemd_start:15 msgid "SYNOPSIS" msgstr "ÜBERSICHT" @@ -81,7 +81,7 @@ msgstr "" #: dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 #: dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 #: dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 -#: dh_usrlocal:19 dh_systemd_enable:17 dh_systemd_start:18 +#: dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 msgid "DESCRIPTION" msgstr "BESCHREIBUNG" @@ -831,12 +831,12 @@ msgid "These are the available compatibility levels:" msgstr "Folgende Kompatibilitätsstufen sind verfügbar:" #. type: =item -#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:89 msgid "v5" msgstr "v5" #. type: textblock -#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:91 msgid "This is the lowest supported compatibility level." msgstr "Dies ist die unterste unterstützte Kompatibilitätsstufe." @@ -847,38 +847,47 @@ msgid "" "L." msgstr "" +#. type: textblock +#: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +#: debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +#, fuzzy +#| msgid "These files are deprecated." +msgid "This mode is deprecated." +msgstr "Diese Dateien sind veraltet." + #. type: =item -#: debhelper.pod:308 +#: debhelper.pod:310 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:310 +#: debhelper.pod:312 msgid "Changes from v5 are:" msgstr "Änderungen gegenüber v5 sind:" #. type: =item -#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 -#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 -#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 -#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 -#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 -#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 -#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 -#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 -#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 -#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 -#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 -#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 -#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 -#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 -#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 -#: debhelper-obsolete-compat.pod:106 +#: debhelper.pod:316 debhelper.pod:321 debhelper.pod:327 debhelper.pod:333 +#: debhelper.pod:348 debhelper.pod:355 debhelper.pod:359 debhelper.pod:363 +#: debhelper.pod:378 debhelper.pod:382 debhelper.pod:390 debhelper.pod:395 +#: debhelper.pod:409 debhelper.pod:414 debhelper.pod:421 debhelper.pod:426 +#: debhelper.pod:431 debhelper.pod:435 debhelper.pod:441 debhelper.pod:446 +#: debhelper.pod:451 debhelper.pod:467 debhelper.pod:472 debhelper.pod:478 +#: debhelper.pod:485 debhelper.pod:491 debhelper.pod:496 debhelper.pod:502 +#: debhelper.pod:508 debhelper.pod:518 debhelper.pod:524 debhelper.pod:547 +#: debhelper.pod:554 debhelper.pod:560 debhelper.pod:566 debhelper.pod:582 +#: debhelper.pod:587 debhelper.pod:593 debhelper.pod:597 debhelper.pod:602 +#: debhelper.pod:614 debhelper.pod:622 debhelper-obsolete-compat.pod:43 +#: debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 +#: debhelper-obsolete-compat.pod:66 debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:76 debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:101 +#: debhelper-obsolete-compat.pod:106 debhelper-obsolete-compat.pod:110 msgid "-" msgstr "-" #. type: textblock -#: debhelper.pod:316 +#: debhelper.pod:318 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -887,7 +896,7 @@ msgstr "" "für die F- und F-Skripte in umgekehrter Reiherfolge anordnen." #. type: textblock -#: debhelper.pod:321 +#: debhelper.pod:323 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -898,7 +907,7 @@ msgstr "" "man/man1> im Bauverzeichnis des Pakets entdeckt." #. type: textblock -#: debhelper.pod:327 +#: debhelper.pod:329 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -909,7 +918,7 @@ msgstr "" "sollen, wie B. Nun tut es dies." #. type: textblock -#: debhelper.pod:333 +#: debhelper.pod:335 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -919,17 +928,17 @@ msgstr "" "lautlos ab, dies zu tun." #. type: =item -#: debhelper.pod:338 +#: debhelper.pod:342 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:340 +#: debhelper.pod:344 msgid "Changes from v6 are:" msgstr "Änderungen gegenüber v6 sind:" #. type: textblock -#: debhelper.pod:346 +#: debhelper.pod:350 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -944,19 +953,19 @@ msgstr "" "tmp> installiert, ohne irgendwelche besonderen Parameter zu benötigen." #. type: textblock -#: debhelper.pod:353 +#: debhelper.pod:357 msgid "B will read F and delete files listed there." msgstr "" "B wird F lesen und die dort aufgeführten Dateien " "löschen." #. type: textblock -#: debhelper.pod:357 +#: debhelper.pod:361 msgid "B will delete toplevel F<*-stamp> files." msgstr " wird die F<*-stamp>-Dateien der obersten Ebene löschen." #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:365 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -965,17 +974,17 @@ msgstr "" "Änderungsprotokoll der Originalautoren liegt, falls keines angegeben wurde." #. type: =item -#: debhelper.pod:366 +#: debhelper.pod:372 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:368 +#: debhelper.pod:374 msgid "Changes from v7 are:" msgstr "Änderungen gegenüber v7 sind:" #. type: textblock -#: debhelper.pod:374 +#: debhelper.pod:380 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -983,7 +992,7 @@ msgstr "" "Optionen übergeben werden." #. type: textblock -#: debhelper.pod:378 +#: debhelper.pod:384 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -999,7 +1008,7 @@ msgstr "" "Pakete zum Scheitern bringen." #. type: textblock -#: debhelper.pod:386 +#: debhelper.pod:392 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -1010,7 +1019,7 @@ msgstr "" "»B«." #. type: textblock -#: debhelper.pod:391 +#: debhelper.pod:397 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1018,17 +1027,17 @@ msgstr "" "BI<*> bevorzugt Perls B gegenüber F." #. type: =item -#: debhelper.pod:395 +#: debhelper.pod:403 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:397 +#: debhelper.pod:405 msgid "Changes from v8 are:" msgstr "Änderungen gegenüber v8 sind:" #. type: textblock -#: debhelper.pod:403 +#: debhelper.pod:411 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1037,7 +1046,7 @@ msgstr "" "Verzeichnisse an Autoconf in --libdir and --libexecdir weiter." #. type: textblock -#: debhelper.pod:408 +#: debhelper.pod:416 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1051,7 +1060,7 @@ msgstr "" "Zielen zu definieren." #. type: textblock -#: debhelper.pod:415 +#: debhelper.pod:423 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1060,7 +1069,7 @@ msgstr "" "dbg«-Paketen zu verringern." #. type: textblock -#: debhelper.pod:420 +#: debhelper.pod:428 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1069,12 +1078,12 @@ msgstr "" "Autoconf benutzt wird." #. type: textblock -#: debhelper.pod:425 +#: debhelper.pod:433 msgid "B does not default to enabling --with=python-support" msgstr "Standardmäßig aktiviert B nicht --with=python-support." #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:437 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1084,7 +1093,7 @@ msgstr "" "sie nicht bereits gesetzt sind." #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:443 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1093,7 +1102,7 @@ msgstr "" "buildflags> an Perls F und F" #. type: textblock -#: debhelper.pod:440 +#: debhelper.pod:448 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1102,7 +1111,7 @@ msgstr "" "ihrer Baukennzahl basiert." #. type: textblock -#: debhelper.pod:445 +#: debhelper.pod:453 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1111,22 +1120,22 @@ msgstr "" "Ausgabe wird als Konfiguration benutzt." #. type: =item -#: debhelper.pod:450 +#: debhelper.pod:458 msgid "v10" msgstr "v10" #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:460 msgid "This is the recommended mode of operation." msgstr "Dies ist der empfohlene Betriebsmodus." #. type: textblock -#: debhelper.pod:455 +#: debhelper.pod:463 msgid "Changes from v9 are:" msgstr "Änderungen gegenüber v9 sind:" #. type: textblock -#: debhelper.pod:461 +#: debhelper.pod:469 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1135,7 +1144,7 @@ msgstr "" "Skript installieren." #. type: textblock -#: debhelper.pod:466 +#: debhelper.pod:474 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1146,7 +1155,7 @@ msgstr "" "nicht-»all« erzeugt wurden, da es binNMUs beschädigt." #. type: textblock -#: debhelper.pod:472 +#: debhelper.pod:480 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1159,7 +1168,7 @@ msgstr "" "Befehlen offenlegen, die nicht in Debhelper enthalten sind." #. type: textblock -#: debhelper.pod:479 +#: debhelper.pod:487 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1169,7 +1178,7 @@ msgstr "" "erledigt." #. type: textblock -#: debhelper.pod:485 +#: debhelper.pod:493 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1179,7 +1188,7 @@ msgstr "" "Window-Manager zu registrieren)." #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:498 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1191,7 +1200,7 @@ msgstr "" "deaktiviert werden." #. type: textblock -#: debhelper.pod:496 +#: debhelper.pod:504 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1202,7 +1211,7 @@ msgstr "" "verwenden Sie stattdessen Aufhebungsziele." #. type: textblock -#: debhelper.pod:502 +#: debhelper.pod:510 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1214,12 +1223,12 @@ msgstr "" "diesem Fall." #. type: textblock -#: debhelper.pod:506 +#: debhelper.pod:514 msgid "The main effects of this are:" msgstr "Die wichtigsten Auswirkungen davon sind:" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:520 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1231,7 +1240,7 @@ msgstr "" "ist)." #. type: textblock -#: debhelper.pod:518 +#: debhelper.pod:526 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1243,12 +1252,12 @@ msgstr "" "stattfinden, wird alles wie zuvor funktionieren." #. type: textblock -#: debhelper.pod:523 +#: debhelper.pod:531 msgid "Example of where it can go wrong:" msgstr "Beispiel, bei dem es schiefgehen kann:" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:533 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1260,7 +1269,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:528 +#: debhelper.pod:536 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1274,7 +1283,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:540 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1286,7 +1295,7 @@ msgstr "" "begrenzt, es umfasst außerdem B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:541 +#: debhelper.pod:549 msgid "" "The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1300,7 +1309,7 @@ msgstr "" "(z.B. Dateinamen in Anführungszeichen setzen)." #. type: textblock -#: debhelper.pod:548 +#: debhelper.pod:556 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1311,7 +1320,7 @@ msgstr "" "erfordern, B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:554 +#: debhelper.pod:562 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1321,7 +1330,7 @@ msgstr "" "nicht gewünscht wird." #. type: textblock -#: debhelper.pod:560 +#: debhelper.pod:568 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1331,12 +1340,12 @@ msgstr "" "gewünscht wird." #. type: =item -#: debhelper.pod:566 +#: debhelper.pod:574 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:568 +#: debhelper.pod:576 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1344,12 +1353,12 @@ msgstr "" "Verwenden Sie sie mit Vorsicht." #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:578 msgid "Changes from v10 are:" msgstr "Änderungen gegenüber v10 sind:" #. type: textblock -#: debhelper.pod:576 +#: debhelper.pod:584 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1358,12 +1367,20 @@ msgstr "" "Dateien werden weiterhin installiert." #. type: textblock -#: debhelper.pod:581 +#: debhelper.pod:589 +msgid "" +"B no longer installs F or F files, nor " +"generates maintainer scripts for those files. Use B and " +"B instead." +msgstr "" + +#. type: textblock +#: debhelper.pod:595 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "Die Option B<-s> (B<--same-arch>) wurde entfernt." #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:599 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1371,7 +1388,7 @@ msgstr "" "Warnung, es sei missbilligt." #. type: textblock -#: debhelper.pod:590 +#: debhelper.pod:604 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." @@ -1392,17 +1409,50 @@ msgstr "" "mainpackage> emuliert werden." #. type: textblock -#: debhelper.pod:598 +#: debhelper.pod:612 msgid "Please remember to check/update your doc-base files." msgstr "Bitte denken Sie daran, Ihre Doc-Base-Dateien zu prüfen/aktualisieren." +#. type: textblock +#: debhelper.pod:616 +msgid "" +"B no longer creates debian/I directories unless " +"explicitly requested (or it has to create a subdirectory in it)." +msgstr "" + +#. type: textblock +#: debhelper.pod:620 +msgid "The vast majority of all packages will be unaffected by this change." +msgstr "" + +#. type: textblock +#: debhelper.pod:624 +msgid "" +"B no longer creates a stamp (or log) file to record whether the build " +"already ran or not. This means that unless upstream's build system " +"correctly tracks this, the build will be run twice (once for the \"build\" " +"target and once for the \"binary\" target)." +msgstr "" + +#. type: textblock +#: debhelper.pod:629 +msgid "" +"On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." +msgstr "" + +#. type: textblock +#: debhelper.pod:633 +msgid "The previous behaviour can restored by using B<--with build-stamp>" +msgstr "" + #. type: =head2 -#: debhelper.pod:604 +#: debhelper.pod:639 msgid "Participating in the open beta testing of new compat levels" msgstr "Teilnahme an offenen Beta-Tests neuer Kompatibilitätsstufen" #. type: textblock -#: debhelper.pod:606 +#: debhelper.pod:641 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1412,7 +1462,7 @@ msgstr "" "Kompatibilitätsstufe auf die Zeichenkette »beta-tester« erledigt." #. type: textblock -#: debhelper.pod:610 +#: debhelper.pod:645 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1424,18 +1474,18 @@ msgstr "" "die Kompatibilitätsstufe die höchste stabile Kompatibilitätsstufe sein." #. type: textblock -#: debhelper.pod:615 +#: debhelper.pod:650 msgid "Please consider the following before opting in:" msgstr "Bitte bedenken Sie vor der Teilnahme Folgendes:" #. type: =item -#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 -#: debhelper.pod:643 +#: debhelper.pod:654 debhelper.pod:659 debhelper.pod:666 debhelper.pod:672 +#: debhelper.pod:678 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:621 +#: debhelper.pod:656 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1444,7 +1494,7 @@ msgstr "" "Paket (oder eine enthaltene Funktionalität) nicht mehr funktioniert." #. type: textblock -#: debhelper.pod:626 +#: debhelper.pod:661 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1456,7 +1506,7 @@ msgstr "" "nicht während der Beta-Phase ändert." #. type: textblock -#: debhelper.pod:633 +#: debhelper.pod:668 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1468,7 +1518,7 @@ msgstr "" "Laufenden halten." #. type: textblock -#: debhelper.pod:639 +#: debhelper.pod:674 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1479,7 +1529,7 @@ msgstr "" "nicht für Pakete empfohlen, die regulär zurückportiert werden." #. type: textblock -#: debhelper.pod:645 +#: debhelper.pod:680 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1489,14 +1539,14 @@ msgstr "" # CHECKME (english text correct?) #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:685 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" "Sollten Sie immer noch am offenen Beta-Test interessiert sein, führen Sie " "Folgendes aus:" #. type: verbatim -#: debhelper.pod:652 +#: debhelper.pod:687 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1507,12 +1557,12 @@ msgstr "" # CHECKME (english text correct?) #. type: textblock -#: debhelper.pod:654 +#: debhelper.pod:689 msgid "You will also need to ensure that debian/control contains:" msgstr "Außerdem müssen Sie sicherstellen, dass debian/control dies enthält:" #. type: verbatim -#: debhelper.pod:656 +#: debhelper.pod:691 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1522,28 +1572,28 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:658 +#: debhelper.pod:693 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" "Dadurch wird sichergestellt, dass Debhelper von der Kompatibilitätsstufe " "»beta-tester« weiß." #. type: =head1 -#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:695 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 -#: dh_systemd_enable:72 dh_systemd_start:65 +#: dh_systemd_enable:73 dh_systemd_start:66 msgid "NOTES" msgstr "ANMERKUNGEN" #. type: =head2 -#: debhelper.pod:662 +#: debhelper.pod:697 msgid "Multiple binary package support" msgstr "Unterstützung mehrerer Binärpakete" #. type: textblock -#: debhelper.pod:664 +#: debhelper.pod:699 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1562,7 +1612,7 @@ msgstr "" "Ziel »binary-indep«." #. type: textblock -#: debhelper.pod:672 +#: debhelper.pod:707 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1578,7 +1628,7 @@ msgstr "" "sind, mit nachfolgenden Ausnahmen." #. type: textblock -#: debhelper.pod:678 +#: debhelper.pod:713 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:682 +#: debhelper.pod:717 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1603,12 +1653,12 @@ msgstr "" "BuildProfileSpec>." #. type: =head2 -#: debhelper.pod:687 +#: debhelper.pod:722 msgid "Automatic generation of Debian install scripts" msgstr "Automatisches Erzeugen von Debian-Installationsskripten" #. type: textblock -#: debhelper.pod:689 +#: debhelper.pod:724 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1625,7 +1675,7 @@ msgstr "" "erzeugten Kode ersetzt." #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:731 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1634,7 +1684,7 @@ msgstr "" "hinzufügen muss, dann wird Debhelper das komplette Skript erstellen." #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:734 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1643,7 +1693,7 @@ msgstr "" "dies durch den Parameter -n deaktiviert (siehe oben)." #. type: textblock -#: debhelper.pod:702 +#: debhelper.pod:737 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1657,7 +1707,7 @@ msgstr "" "etc. gesetzt sind):" #. type: verbatim -#: debhelper.pod:707 +#: debhelper.pod:742 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1689,12 +1739,12 @@ msgstr "" "\n" #. type: =head2 -#: debhelper.pod:720 +#: debhelper.pod:755 msgid "Automatic generation of miscellaneous dependencies." msgstr "Automatisches Erzeugen verschiedener Abhängigkeiten" #. type: textblock -#: debhelper.pod:722 +#: debhelper.pod:757 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1714,7 +1764,7 @@ msgstr "" "bietet, sie zu automatisieren." #. type: textblock -#: debhelper.pod:730 +#: debhelper.pod:765 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1728,7 +1778,7 @@ msgstr "" "Debhelper findet, dass Sie sie benötigen." #. type: textblock -#: debhelper.pod:735 +#: debhelper.pod:770 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1742,12 +1792,12 @@ msgstr "" "entspricht." #. type: =head2 -#: debhelper.pod:740 +#: debhelper.pod:775 msgid "Package build directories" msgstr "Paketbauverzeichnisse" #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:777 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1757,7 +1807,7 @@ msgstr "" "debian/I ist." #. type: textblock -#: debhelper.pod:745 +#: debhelper.pod:780 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1777,12 +1827,12 @@ msgstr "" "Debhelper-Programm auswirkt." #. type: =head2 -#: debhelper.pod:753 +#: debhelper.pod:788 msgid "udebs" msgstr "Udebs" #. type: textblock -#: debhelper.pod:755 +#: debhelper.pod:790 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1800,12 +1850,12 @@ msgstr "" "übersprungen werden." #. type: =head1 -#: debhelper.pod:762 +#: debhelper.pod:797 msgid "ENVIRONMENT" msgstr "UMGEBUNGSVARIABLEN" #. type: textblock -#: debhelper.pod:764 +#: debhelper.pod:799 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1821,12 +1871,12 @@ msgstr "" "Beispiel »B«." #. type: =item -#: debhelper.pod:772 +#: debhelper.pod:807 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:774 +#: debhelper.pod:809 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1837,12 +1887,12 @@ msgstr "" "aktiviert." #. type: =item -#: debhelper.pod:777 +#: debhelper.pod:812 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:779 +#: debhelper.pod:814 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1859,12 +1909,12 @@ msgstr "" "wird diese Einstellung ignoriert." #. type: =item -#: debhelper.pod:786 +#: debhelper.pod:821 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:788 +#: debhelper.pod:823 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1873,22 +1923,22 @@ msgstr "" "werden sollte und setzt dabei jeden Wert in F außer Kraft." #. type: =item -#: debhelper.pod:791 +#: debhelper.pod:826 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:793 +#: debhelper.pod:828 msgid "Set to B<1> to enable no-act mode." msgstr "auf B<1> gesetzt, um Modus ohne Aktion zu aktivieren." #. type: =item -#: debhelper.pod:795 +#: debhelper.pod:830 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:832 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1897,7 +1947,7 @@ msgstr "" "Befehle vorangestellt." #. type: textblock -#: debhelper.pod:800 +#: debhelper.pod:835 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1907,12 +1957,12 @@ msgstr "" "DH_OPTIONS zu verwenden." #. type: =item -#: debhelper.pod:803 +#: debhelper.pod:838 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:805 +#: debhelper.pod:840 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1924,7 +1974,7 @@ msgstr "" "entspricht, B ausführen." #. type: textblock -#: debhelper.pod:809 +#: debhelper.pod:844 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1942,7 +1992,7 @@ msgstr "" "ist, wo auch immer Ihr Paket gebaut wird." #. type: textblock -#: debhelper.pod:816 +#: debhelper.pod:851 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1951,77 +2001,77 @@ msgstr "" "getrennt werden, wie in B." #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 -#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 -#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 -#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 -#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 -#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 -#: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 -#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 -#: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 -#: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 -#: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 -#: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 -#: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:244 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 +#: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 +#: dh_installcatalogs:123 dh_installchangelogs:238 dh_installcron:76 +#: dh_installdeb:215 dh_installdebconf:126 dh_installdirs:95 dh_installdocs:357 +#: dh_installemacsen:135 dh_installexamples:110 dh_installifupdown:70 +#: dh_installinfo:76 dh_installinit:331 dh_installlogcheck:79 +#: dh_installlogrotate:51 dh_installman:264 dh_installmanpages:196 +#: dh_installmenu:94 dh_installmime:61 dh_installmodules:107 dh_installpam:60 +#: dh_installppp:66 dh_installudev:99 dh_installwm:115 dh_installxfonts:90 +#: dh_link:146 dh_lintian:58 dh_listpackages:31 dh_makeshlibs:287 +#: dh_md5sums:105 dh_movefiles:159 dh_perl:154 dh_prep:61 dh_shlibdeps:153 +#: dh_strip:396 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 +#: dh_systemd_enable:264 dh_systemd_start:246 msgid "SEE ALSO" msgstr "SIEHE AUCH" #. type: =item -#: debhelper.pod:825 +#: debhelper.pod:860 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:827 +#: debhelper.pod:862 msgid "A set of example F files that use debhelper." msgstr "" "eine Zusammenstellung von F-Beispieldateien, die Debhelper " "benutzen" #. type: =item -#: debhelper.pod:829 +#: debhelper.pod:864 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:831 +#: debhelper.pod:866 msgid "Debhelper web site." msgstr "Debhelper-Website" #. type: =head1 -#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 -#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 -#: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 -#: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 -#: dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 -#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 -#: dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 -#: dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 -#: dh_installman:272 dh_installmanpages:204 dh_installmenu:106 -#: dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 -#: dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 -#: dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 -#: dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 +#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 +#: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 +#: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 +#: dh_installchangelogs:244 dh_installcron:82 dh_installdeb:221 +#: dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 +#: dh_installemacsen:142 dh_installexamples:116 dh_installifupdown:76 +#: dh_installinfo:82 dh_installlogcheck:85 dh_installlogrotate:57 +#: dh_installman:270 dh_installmanpages:202 dh_installmenu:102 +#: dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 +#: dh_installudev:105 dh_installwm:121 dh_installxfonts:96 dh_link:152 +#: dh_lintian:66 dh_listpackages:37 dh_makeshlibs:293 dh_md5sums:111 +#: dh_movefiles:165 dh_perl:160 dh_prep:67 dh_shlibdeps:159 dh_strip:402 #: dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 -#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 -#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 -#: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 -#: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 -#: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 -#: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 -#: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 -#: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 -#: dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 -#: dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 +#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 +#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 +#: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 +#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 +#: dh_installemacsen:144 dh_installexamples:118 dh_installifupdown:78 +#: dh_installinfo:84 dh_installinit:339 dh_installlogrotate:59 +#: dh_installman:272 dh_installmanpages:204 dh_installmenu:104 +#: dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 +#: dh_installudev:107 dh_installwm:123 dh_installxfonts:98 dh_link:154 +#: dh_listpackages:39 dh_makeshlibs:295 dh_md5sums:113 dh_movefiles:167 +#: dh_prep:69 dh_shlibdeps:161 dh_strip:404 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "Joey Hess " @@ -2080,13 +2130,6 @@ msgstr "" "nehmen, während für alle anderen in der Datei F aufgeführten Pakete " "debian/I genommen wird." -#. type: textblock -#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 -#, fuzzy -#| msgid "These files are deprecated." -msgid "This mode is deprecated." -msgstr "Diese Dateien sind veraltet." - #. type: =item #: debhelper-obsolete-compat.pod:30 msgid "v2" @@ -2140,17 +2183,17 @@ msgstr "" "markiert." #. type: =item -#: debhelper-obsolete-compat.pod:58 +#: debhelper-obsolete-compat.pod:60 msgid "v4" msgstr "v4" #. type: textblock -#: debhelper-obsolete-compat.pod:60 +#: debhelper-obsolete-compat.pod:62 msgid "Changes from v3 are:" msgstr "Änderungen gegenüber v3 sind:" #. type: textblock -#: debhelper-obsolete-compat.pod:66 +#: debhelper-obsolete-compat.pod:68 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." @@ -2159,7 +2202,7 @@ msgstr "" "erzeugten Abhängigkeitslinie in der Shlibs-Datei enthalten." #. type: textblock -#: debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:73 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." @@ -2168,7 +2211,7 @@ msgstr "" "abzulegen, um das Feld B<${shlibs:Depends}> zu ergänzen." #. type: textblock -#: debhelper-obsolete-compat.pod:76 +#: debhelper-obsolete-compat.pod:78 msgid "" "B will make all files in F directories and in F executable." @@ -2177,25 +2220,25 @@ msgstr "" "d> ausführbar machen." #. type: textblock -#: debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:83 msgid "B will correct existing links to conform with policy." msgstr "" "B wird bestehende Verweise korrigieren, damit sie konform mit der " "Richtlinie sind." #. type: textblock -#: debhelper-obsolete-compat.pod:89 +#: debhelper-obsolete-compat.pod:93 msgid "Changes from v4 are:" msgstr "Änderungen gegenüber v4 sind:" #. type: textblock -#: debhelper-obsolete-compat.pod:95 +#: debhelper-obsolete-compat.pod:99 msgid "Comments are ignored in debhelper config files." msgstr "Kommentare in Debhelper-Konfigurationsdateien werden ignoriert." # http://de.wikipedia.org/wiki/Debugsymbol #. type: textblock -#: debhelper-obsolete-compat.pod:99 +#: debhelper-obsolete-compat.pod:103 msgid "" "B now specifies the name of a package to put " "debugging symbols in, not the packages to take the symbols from." @@ -2205,49 +2248,49 @@ msgstr "" "werden." #. type: textblock -#: debhelper-obsolete-compat.pod:104 +#: debhelper-obsolete-compat.pod:108 #, fuzzy #| msgid "dh_installinfo - install info files" msgid "B skips installing empty files." msgstr "dh_installinfo - installiert Info-Dateien" #. type: textblock -#: debhelper-obsolete-compat.pod:108 +#: debhelper-obsolete-compat.pod:112 msgid "B errors out if wildcards expand to nothing." msgstr "" "B gibt Fehlermeldungen aus, wenn Platzhalter zu nichts " "expandieren." #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 -#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 -#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:246 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 +#: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 +#: dh_installcron:78 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 +#: dh_installdocs:359 dh_installexamples:112 dh_installifupdown:72 +#: dh_installinfo:78 dh_installinit:333 dh_installlogcheck:81 +#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 +#: dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 +#: dh_installudev:101 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:289 dh_md5sums:107 dh_movefiles:161 +#: dh_perl:156 dh_prep:63 dh_strip:398 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:248 msgid "L" msgstr "L" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 -#: dh_systemd_start:248 +#: debhelper-obsolete-compat.pod:122 dh_installinit:337 dh_systemd_enable:268 +#: dh_systemd_start:250 msgid "AUTHORS" msgstr "AUTOREN" #. type: textblock -#: debhelper-obsolete-compat.pod:120 +#: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " msgstr "Niels Thykier " #. type: textblock -#: debhelper-obsolete-compat.pod:122 +#: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" msgstr "Joey Hess" @@ -2336,7 +2379,7 @@ msgstr "" #: dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 #: dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 #: dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 -#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:55 dh_systemd_start:30 +#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:56 dh_systemd_start:31 msgid "OPTIONS" msgstr "OPTIONEN" @@ -2984,19 +3027,19 @@ msgstr "" "der letzte in der Sequenz benutzt." #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 -#: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 -#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 -#: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 -#: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 -#: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 -#: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 -#: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 -#: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 -#: dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 -#: dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 -#: dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 +#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 +#: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 +#: dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 +#: dh_installemacsen:140 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:335 dh_installlogrotate:55 +#: dh_installman:268 dh_installmanpages:200 dh_installmenu:100 +#: dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:103 dh_installwm:119 dh_installxfonts:94 dh_link:150 +#: dh_lintian:62 dh_listpackages:35 dh_makeshlibs:291 dh_md5sums:109 +#: dh_movefiles:163 dh_perl:158 dh_prep:65 dh_shlibdeps:157 dh_strip:400 +#: dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "Dieses Programm ist Teil von Debhelper." @@ -3354,15 +3397,6 @@ msgstr "" "Falls die Umgebungsvariable B B enthält, werden " "keine Tests durchgeführt." -#. type: textblock -#: dh_auto_test:51 -msgid "" -"dh_auto_test does not run the test suite when a package is being cross " -"compiled." -msgstr "" -"dh_auto_test führt die Testsuite nicht aus, wenn das Paket cross-kompiliert " -"wird." - #. type: textblock #: dh_bugfiles:5 msgid "" @@ -3397,7 +3431,7 @@ msgstr "" #: dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 #: dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 #: dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 -#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:38 +#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:39 msgid "FILES" msgstr "DATEIEN" @@ -3477,7 +3511,7 @@ msgid "F" msgstr "F" #. type: textblock -#: dh_bugfiles:135 dh_lintian:62 +#: dh_bugfiles:135 dh_lintian:60 msgid "L" msgstr "L" @@ -4365,12 +4399,12 @@ msgstr "" "installiert, auf das sich F auswirkt." #. type: =head1 -#: dh_install:303 +#: dh_install:301 msgid "LIMITATIONS" msgstr "EINSCHRÄNKUNGEN" #. type: textblock -#: dh_install:305 +#: dh_install:303 msgid "" "B cannot rename files or directories, it can only install them " "with the names they already have into wherever you want in the package build " @@ -4381,7 +4415,7 @@ msgstr "" "installieren, wo Sie es wünschen." #. type: textblock -#: dh_install:309 +#: dh_install:307 msgid "" "However, renaming can be achieved by using B with compatibility " "level 9 or later. An example debian/I.install file using B verwendet, könnte wie folgt aussehen:" #. type: verbatim -#: dh_install:313 +#: dh_install:311 #, no-wrap msgid "" " #!/usr/bin/dh-exec\n" @@ -4404,12 +4438,12 @@ msgstr "" "\n" #. type: textblock -#: dh_install:316 +#: dh_install:314 msgid "Please remember the following three things:" msgstr "Bitte vergessen Sie nicht die folgenden drei Dinge:" #. type: =item -#: dh_install:320 +#: dh_install:318 msgid "" "* The package must be using compatibility level 9 or later (see " "L)" @@ -4418,12 +4452,12 @@ msgstr "" "L)." #. type: =item -#: dh_install:322 +#: dh_install:320 msgid "* The package will need a build-dependency on dh-exec." msgstr "* Das Paket muss eine Bauabhängigkeit zu Dh-exec haben." #. type: =item -#: dh_install:324 +#: dh_install:322 msgid "* The install file must be marked as executable." msgstr "* Die Installationsdatei muss als ausführbar markiert sein." @@ -4523,12 +4557,12 @@ msgstr "" "Textes hinzugefügt werden." #. type: textblock -#: dh_installcatalogs:128 +#: dh_installcatalogs:127 msgid "F" msgstr "F" #. type: textblock -#: dh_installcatalogs:132 +#: dh_installcatalogs:131 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " @@ -4737,7 +4771,7 @@ msgstr "" #. type: =item #: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 #: dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 -#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:63 +#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:64 msgid "B<--name=>I" msgstr "B<--name=>I" @@ -5535,7 +5569,7 @@ msgstr "" "Vorgabe ist B, Alternativen umfassen B und B." #. type: textblock -#: dh_installemacsen:145 +#: dh_installemacsen:137 msgid "L L" msgstr "" "L L" @@ -5790,30 +5824,39 @@ msgstr "" "Paketbauverzeichnis installiert." #. type: =item -#: dh_installinit:47 dh_systemd_enable:42 +#: dh_installinit:47 dh_systemd_enable:43 msgid "debian/I.service" msgstr "debian/I.service" #. type: textblock -#: dh_installinit:49 dh_systemd_enable:44 +#: dh_installinit:49 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into lib/systemd/system/I." +#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " -"in the package build directory." +"in the package build directory. Only used in compat levels 10 and below." msgstr "" "Falls dies existiert, wird es in lib/systemd/system/I.service im " "Paketbauverzeichnis installiert." #. type: =item -#: dh_installinit:52 dh_systemd_enable:47 +#: dh_installinit:52 dh_systemd_enable:48 msgid "debian/I.tmpfile" msgstr "debian/I.tmpfile" #. type: textblock -#: dh_installinit:54 dh_systemd_enable:49 +#: dh_installinit:54 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " +#| "in the package build directory. (The tmpfiles.d mechanism is currently " +#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " -"used by systemd.)" +"used by systemd.) Only used in compat levels 10 and below." msgstr "" "Falls dies existiert, wird es in usr/lib/tmpfiles.d/I.conf im " "Paketbauverzeichnis installiert. (Der »tmpfiles.d«-Mechanismus wird derzeit " @@ -5893,7 +5936,7 @@ msgstr "" "F stoppt und es in F wieder startet." #. type: textblock -#: dh_installinit:92 dh_systemd_start:42 +#: dh_installinit:92 dh_systemd_start:43 msgid "" "This can be useful for daemons that should not have a possibly long downtime " "during upgrade. But you should make sure that the daemon will not get " @@ -5910,12 +5953,12 @@ msgstr "" "wenn dessen Paket zwischendurch aktualisiert wird." #. type: =item -#: dh_installinit:97 dh_systemd_start:47 +#: dh_installinit:97 dh_systemd_start:48 msgid "B<--no-restart-after-upgrade>" msgstr "B<--no-restart-after-upgrade>" #. type: textblock -#: dh_installinit:99 dh_systemd_start:49 +#: dh_installinit:99 dh_systemd_start:50 msgid "" "Undo a previous B<--restart-after-upgrade> (or the default of compat 10). " "If no other options are given, this will cause the service to be stopped in " @@ -5927,7 +5970,7 @@ msgstr "" "gestoppt und im F-Skript wieder gestartet wird." #. type: =item -#: dh_installinit:104 dh_systemd_start:54 +#: dh_installinit:104 dh_systemd_start:55 msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" @@ -5937,7 +5980,7 @@ msgid "Do not stop init script on upgrade." msgstr "stoppt das Init-Skript nicht beim Upgrade." #. type: =item -#: dh_installinit:108 dh_systemd_start:58 +#: dh_installinit:108 dh_systemd_start:59 msgid "B<--no-start>" msgstr "B<--no-start>" @@ -6054,12 +6097,12 @@ msgstr "" "F-Skripten vor der Markierung B<#DEBHELPER#> bereitgestellt werden." #. type: textblock -#: dh_installinit:353 +#: dh_installinit:341 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:355 +#: dh_installinit:343 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -6135,7 +6178,7 @@ msgstr "" "aber den angegebenen Namen an Stelle des Paketnamens." #. type: verbatim -#: dh_installlogcheck:85 +#: dh_installlogcheck:83 #, no-wrap msgid "" "This program is a part of debhelper.\n" @@ -6145,7 +6188,7 @@ msgstr "" " \n" #. type: textblock -#: dh_installlogcheck:89 +#: dh_installlogcheck:87 msgid "Jon Middleton " msgstr "Jon Middleton " @@ -6521,7 +6564,7 @@ msgid "Do not modify F/F scripts." msgstr "ändert keine F-/F-Skripte." #. type: textblock -#: dh_installmenu:100 +#: dh_installmenu:96 msgid "L L L" msgstr "L, L, L" @@ -7143,12 +7186,12 @@ msgstr "" "durchsucht, um Außerkraftsetzungen in das Quellpaket bereitzustellen." #. type: textblock -#: dh_lintian:66 +#: dh_lintian:64 msgid "L" msgstr "L" #. type: textblock -#: dh_lintian:70 +#: dh_lintian:68 msgid "Steve Robbins " msgstr "Steve Robbins " @@ -7997,7 +8040,7 @@ msgstr "" "\t\n" #. type: textblock -#: dh_shlibdeps:159 +#: dh_shlibdeps:155 msgid "L, L" msgstr "L, L" @@ -8404,7 +8447,7 @@ msgid "dh_systemd_enable - enable/disable systemd unit files" msgstr "dh_systemd_enable - aktiviert/deaktiviert Systemd-Unit-Dateien" #. type: textblock -#: dh_systemd_enable:15 +#: dh_systemd_enable:16 msgid "" "B [S>] [B<--no-enable>] [B<--" "name=>I] [S ...>]" @@ -8413,7 +8456,7 @@ msgstr "" "name=>I] [S …>]" #. type: textblock -#: dh_systemd_enable:19 +#: dh_systemd_enable:20 msgid "" "B is a debhelper program that is responsible for enabling " "and disabling systemd unit files." @@ -8422,7 +8465,7 @@ msgstr "" "Deaktivieren von Systemd-Unit-Dateien zuständig ist." #. type: textblock -#: dh_systemd_enable:22 +#: dh_systemd_enable:23 msgid "" "In the simple case, it finds all unit files installed by a package (e.g. " "bacula-fd.service) and enables them. It is not necessary that the machine " @@ -8436,7 +8479,7 @@ msgstr "" "umgeschaltet werden kann." #. type: textblock -#: dh_systemd_enable:27 +#: dh_systemd_enable:28 msgid "" "In the complex case, you can call B and " "B manually (by overwriting the debian/rules targets) and " @@ -8455,7 +8498,7 @@ msgstr "" "hat. Daher ist es nicht sinnvoll, dh_systemd_enable auszuführen." #. type: textblock -#: dh_systemd_enable:34 +#: dh_systemd_enable:35 msgid "" "For only generating blocks for specific service files, you need to pass them " "as arguments, e.g. B and " @@ -8465,13 +8508,33 @@ msgstr "" "Argumente übergeben, z.B. B und " "B." +#. type: textblock +#: dh_systemd_enable:45 +msgid "" +"If this exists, it is installed into lib/systemd/system/I.service " +"in the package build directory." +msgstr "" +"Falls dies existiert, wird es in lib/systemd/system/I.service im " +"Paketbauverzeichnis installiert." + +#. type: textblock +#: dh_systemd_enable:50 +msgid "" +"If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " +"the package build directory. (The tmpfiles.d mechanism is currently only " +"used by systemd.)" +msgstr "" +"Falls dies existiert, wird es in usr/lib/tmpfiles.d/I.conf im " +"Paketbauverzeichnis installiert. (Der »tmpfiles.d«-Mechanismus wird derzeit " +"nur von Systemd benutzt.)" + #. type: =item -#: dh_systemd_enable:59 +#: dh_systemd_enable:60 msgid "B<--no-enable>" msgstr "B<--no-enable>" #. type: textblock -#: dh_systemd_enable:61 +#: dh_systemd_enable:62 msgid "" "Just disable the service(s) on purge, but do not enable them by default." msgstr "" @@ -8479,7 +8542,7 @@ msgstr "" "aktiviert sie aber nicht standardmäßig." #. type: textblock -#: dh_systemd_enable:65 +#: dh_systemd_enable:66 msgid "" "Install the service file as I instead of the default filename, " "which is the I. When this parameter is used, " @@ -8492,7 +8555,7 @@ msgstr "" "F an Stelle der üblichen F." #. type: textblock -#: dh_systemd_enable:74 dh_systemd_start:67 +#: dh_systemd_enable:75 dh_systemd_start:68 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command (with the same arguments). Otherwise, it " @@ -8505,7 +8568,7 @@ msgstr "" "mehrere Instanzen des gleichen Textes hinzugefügt werden." #. type: textblock -#: dh_systemd_enable:79 +#: dh_systemd_enable:80 msgid "" "Note that B should be run before B. The " "default sequence in B does the right thing, this note is only relevant " @@ -8516,12 +8579,12 @@ msgstr "" "ist nur relevant, wenn Sie B manuell aufrufen." #. type: textblock -#: dh_systemd_enable:285 +#: dh_systemd_enable:266 msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:250 +#: dh_systemd_enable:270 dh_systemd_start:252 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -8532,7 +8595,7 @@ msgstr "" "dh_systemd_start - startet/stoppt oder startet Systemd-Unit-Dateien erneut" #. type: textblock -#: dh_systemd_start:16 +#: dh_systemd_start:17 msgid "" "B [S>] [B<--restart-after-upgrade>] " "[B<--no-stop-on-upgrade>] [S ...>]" @@ -8541,7 +8604,7 @@ msgstr "" "[B<--no-stop-on-upgrade>] [S …>]" #. type: textblock -#: dh_systemd_start:20 +#: dh_systemd_start:21 msgid "" "B is a debhelper program that is responsible for starting/" "stopping or restarting systemd unit files in case no corresponding sysv init " @@ -8552,7 +8615,7 @@ msgstr "" "passendes SysVinit-Skript verfügbar ist." #. type: textblock -#: dh_systemd_start:24 +#: dh_systemd_start:25 msgid "" "As with B, the unit file is stopped before upgrades and " "started afterwards (unless B<--restart-after-upgrade> is specified, in which " @@ -8567,12 +8630,12 @@ msgstr "" "in diesem Fall stoppt, startet oder neu startet." #. type: =item -#: dh_systemd_start:34 +#: dh_systemd_start:35 msgid "B<--restart-after-upgrade>" msgstr "B<--restart-after-upgrade>" #. type: textblock -#: dh_systemd_start:36 +#: dh_systemd_start:37 msgid "" "Do not stop the unit file until after the package upgrade has been " "completed. This is the default behaviour in compat 10." @@ -8581,7 +8644,7 @@ msgstr "" "wurde. Dies ist das Standardverhalten für Kompatibilitätsmodus 10." #. type: textblock -#: dh_systemd_start:39 +#: dh_systemd_start:40 msgid "" "In earlier compat levels the default was to stop the unit file in the " "F, and start it again in the F." @@ -8590,22 +8653,22 @@ msgstr "" "in F gestoppt und in F wieder gestartet wird." #. type: textblock -#: dh_systemd_start:56 +#: dh_systemd_start:57 msgid "Do not stop service on upgrade." msgstr "stoppt den Dienst nicht beim Upgrade." #. type: textblock -#: dh_systemd_start:60 +#: dh_systemd_start:61 msgid "" "Do not start the unit file after upgrades and after initial installation " "(the latter is only relevant for services without a corresponding init " "script)." msgstr "" -"die Unit-Datei nach Upgrades oder nach anfänglicher Installation nicht starten" -"(letzteres ist nur für Dienste ohne zugehöriges Init-Skript relevant)." +"die Unit-Datei nach Upgrades oder nach anfänglicher Installation nicht " +"starten(letzteres ist nur für Dienste ohne zugehöriges Init-Skript relevant)." #. type: textblock -#: dh_systemd_start:72 +#: dh_systemd_start:73 msgid "" "Note that B should be run after B so that " "it can detect corresponding SysV init scripts. The default sequence in B " @@ -8621,3 +8684,10 @@ msgstr "" #: strings-kept-translations.pod:7 msgid "This compatibility level is open for beta testing; changes may occur." msgstr "Diese Kompatibilitätsstufe ist im Beta-Test; Änderungen sind möglich." + +#~ msgid "" +#~ "dh_auto_test does not run the test suite when a package is being cross " +#~ "compiled." +#~ msgstr "" +#~ "dh_auto_test führt die Testsuite nicht aus, wenn das Paket cross-" +#~ "kompiliert wird." diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot index 2958de9a..814c6a3a 100644 --- a/man/po4a/po/debhelper.pot +++ b/man/po4a/po/debhelper.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-10-02 06:17+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgid "debhelper - the debhelper tool suite" msgstr "" #. type: =head1 -#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 dh_systemd_start:14 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 dh_systemd_start:15 msgid "SYNOPSIS" msgstr "" @@ -39,7 +39,7 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:9 dh:17 dh_auto_build:17 dh_auto_clean:18 dh_auto_configure:17 dh_auto_install:20 dh_auto_test:18 dh_bugfiles:17 dh_builddeb:17 dh_clean:17 dh_compress:19 dh_fixperms:18 dh_gconf:17 dh_gencontrol:17 dh_icons:18 dh_install:18 dh_installcatalogs:19 dh_installchangelogs:17 dh_installcron:17 dh_installdeb:17 dh_installdebconf:17 dh_installdirs:17 dh_installdocs:17 dh_installemacsen:17 dh_installexamples:17 dh_installifupdown:17 dh_installinfo:17 dh_installinit:18 dh_installlogcheck:17 dh_installlogrotate:17 dh_installman:18 dh_installmanpages:18 dh_installmenu:17 dh_installmime:17 dh_installmodules:18 dh_installpam:17 dh_installppp:17 dh_installudev:18 dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 dh_usrlocal:19 dh_systemd_enable:17 dh_systemd_start:18 +#: debhelper.pod:9 dh:17 dh_auto_build:17 dh_auto_clean:18 dh_auto_configure:17 dh_auto_install:20 dh_auto_test:18 dh_bugfiles:17 dh_builddeb:17 dh_clean:17 dh_compress:19 dh_fixperms:18 dh_gconf:17 dh_gencontrol:17 dh_icons:18 dh_install:18 dh_installcatalogs:19 dh_installchangelogs:17 dh_installcron:17 dh_installdeb:17 dh_installdebconf:17 dh_installdirs:17 dh_installdocs:17 dh_installemacsen:17 dh_installexamples:17 dh_installifupdown:17 dh_installinfo:17 dh_installinit:18 dh_installlogcheck:17 dh_installlogrotate:17 dh_installman:18 dh_installmanpages:18 dh_installmenu:17 dh_installmime:17 dh_installmodules:18 dh_installpam:17 dh_installppp:17 dh_installudev:18 dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 msgid "DESCRIPTION" msgstr "" @@ -597,12 +597,12 @@ msgid "These are the available compatibility levels:" msgstr "" #. type: =item -#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:89 msgid "v5" msgstr "" #. type: textblock -#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:91 msgid "This is the lowest supported compatibility level." msgstr "" @@ -613,30 +613,35 @@ msgid "" "L." msgstr "" +#. type: textblock +#: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +msgid "This mode is deprecated." +msgstr "" + #. type: =item -#: debhelper.pod:308 +#: debhelper.pod:310 msgid "v6" msgstr "" #. type: textblock -#: debhelper.pod:310 +#: debhelper.pod:312 msgid "Changes from v5 are:" msgstr "" #. type: =item -#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 debhelper-obsolete-compat.pod:106 +#: debhelper.pod:316 debhelper.pod:321 debhelper.pod:327 debhelper.pod:333 debhelper.pod:348 debhelper.pod:355 debhelper.pod:359 debhelper.pod:363 debhelper.pod:378 debhelper.pod:382 debhelper.pod:390 debhelper.pod:395 debhelper.pod:409 debhelper.pod:414 debhelper.pod:421 debhelper.pod:426 debhelper.pod:431 debhelper.pod:435 debhelper.pod:441 debhelper.pod:446 debhelper.pod:451 debhelper.pod:467 debhelper.pod:472 debhelper.pod:478 debhelper.pod:485 debhelper.pod:491 debhelper.pod:496 debhelper.pod:502 debhelper.pod:508 debhelper.pod:518 debhelper.pod:524 debhelper.pod:547 debhelper.pod:554 debhelper.pod:560 debhelper.pod:566 debhelper.pod:582 debhelper.pod:587 debhelper.pod:593 debhelper.pod:597 debhelper.pod:602 debhelper.pod:614 debhelper.pod:622 debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:66 debhelper-obsolete-compat.pod:71 debhelper-obsolete-compat.pod:76 debhelper-obsolete-compat.pod:81 debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:101 debhelper-obsolete-compat.pod:106 debhelper-obsolete-compat.pod:110 msgid "-" msgstr "" #. type: textblock -#: debhelper.pod:316 +#: debhelper.pod:318 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." msgstr "" #. type: textblock -#: debhelper.pod:321 +#: debhelper.pod:323 msgid "" "B will install a slave manpage link for " "F, if it sees the man page in F " @@ -644,7 +649,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:327 +#: debhelper.pod:329 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -652,24 +657,24 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:333 +#: debhelper.pod:335 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." msgstr "" #. type: =item -#: debhelper.pod:338 +#: debhelper.pod:342 msgid "v7" msgstr "" #. type: textblock -#: debhelper.pod:340 +#: debhelper.pod:344 msgid "Changes from v6 are:" msgstr "" #. type: textblock -#: debhelper.pod:346 +#: debhelper.pod:350 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -679,39 +684,39 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:353 +#: debhelper.pod:357 msgid "B will read F and delete files listed there." msgstr "" #. type: textblock -#: debhelper.pod:357 +#: debhelper.pod:361 msgid "B will delete toplevel F<*-stamp> files." msgstr "" #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:365 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." msgstr "" #. type: =item -#: debhelper.pod:366 +#: debhelper.pod:372 msgid "v8" msgstr "" #. type: textblock -#: debhelper.pod:368 +#: debhelper.pod:374 msgid "Changes from v7 are:" msgstr "" #. type: textblock -#: debhelper.pod:374 +#: debhelper.pod:380 msgid "Commands will fail rather than warning when they are passed unknown options." msgstr "" #. type: textblock -#: debhelper.pod:378 +#: debhelper.pod:384 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -721,7 +726,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:386 +#: debhelper.pod:392 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"BI<*> prefer to use Perl's B in preference to " "F." msgstr "" #. type: =item -#: debhelper.pod:395 +#: debhelper.pod:403 msgid "v9" msgstr "" #. type: textblock -#: debhelper.pod:397 +#: debhelper.pod:405 msgid "Changes from v8 are:" msgstr "" #. type: textblock -#: debhelper.pod:403 +#: debhelper.pod:411 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." msgstr "" #. type: textblock -#: debhelper.pod:408 +#: debhelper.pod:416 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -762,76 +767,76 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:415 +#: debhelper.pod:423 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." msgstr "" #. type: textblock -#: debhelper.pod:420 +#: debhelper.pod:428 msgid "" "B does not include the source package name in " "--libexecdir when using autoconf." msgstr "" #. type: textblock -#: debhelper.pod:425 +#: debhelper.pod:433 msgid "B does not default to enabling --with=python-support" msgstr "" #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:437 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." msgstr "" #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:443 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" msgstr "" #. type: textblock -#: debhelper.pod:440 +#: debhelper.pod:448 msgid "" "B puts separated debug symbols in a location based on their " "build-id." msgstr "" #. type: textblock -#: debhelper.pod:445 +#: debhelper.pod:453 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." msgstr "" #. type: =item -#: debhelper.pod:450 +#: debhelper.pod:458 msgid "v10" msgstr "" #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:460 msgid "This is the recommended mode of operation." msgstr "" #. type: textblock -#: debhelper.pod:455 +#: debhelper.pod:463 msgid "Changes from v9 are:" msgstr "" #. type: textblock -#: debhelper.pod:461 +#: debhelper.pod:469 msgid "" "B will no longer install a file named debian/I as " "an init script." msgstr "" #. type: textblock -#: debhelper.pod:466 +#: debhelper.pod:474 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -839,7 +844,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:472 +#: debhelper.pod:480 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -848,7 +853,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:479 +#: debhelper.pod:487 msgid "" "B no longer installs a maintainer-provided " "debian/I.shlibs file. This is now done by B " @@ -856,14 +861,14 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:485 +#: debhelper.pod:493 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." msgstr "" #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:498 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -871,7 +876,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:496 +#: debhelper.pod:504 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -879,7 +884,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:502 +#: debhelper.pod:510 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -887,12 +892,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:506 +#: debhelper.pod:514 msgid "The main effects of this are:" msgstr "" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:520 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -900,7 +905,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:518 +#: debhelper.pod:526 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -908,12 +913,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:523 +#: debhelper.pod:531 msgid "Example of where it can go wrong:" msgstr "" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:533 #, no-wrap msgid "" " override_dh_foo:\n" @@ -922,7 +927,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:528 +#: debhelper.pod:536 #, no-wrap msgid "" " override_dh_bar:\n" @@ -932,7 +937,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:540 msgid "" "In this case, the call to B will I include " "I, since B was run in a separate override target. " @@ -941,7 +946,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:541 +#: debhelper.pod:549 msgid "" "The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " @@ -950,7 +955,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:548 +#: debhelper.pod:556 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use " @@ -958,7 +963,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:554 +#: debhelper.pod:562 msgid "" "The B sequence is now enabled by default. Please pass " "B<--without autoreconf> to B if this is not desirable for a given " @@ -966,48 +971,56 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:560 +#: debhelper.pod:568 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." msgstr "" #. type: =item -#: debhelper.pod:566 +#: debhelper.pod:574 msgid "v11" msgstr "" #. type: textblock -#: debhelper.pod:568 +#: debhelper.pod:576 msgid "This compatibility level is still open for development; use with caution." msgstr "" #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:578 msgid "Changes from v10 are:" msgstr "" #. type: textblock -#: debhelper.pod:576 +#: debhelper.pod:584 msgid "" "B no longer installs F files. The F " "files are still installed." msgstr "" #. type: textblock -#: debhelper.pod:581 +#: debhelper.pod:589 +msgid "" +"B no longer installs F or F files, nor " +"generates maintainer scripts for those files. Use B and " +"B instead." +msgstr "" + +#. type: textblock +#: debhelper.pod:595 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "" #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:599 msgid "" "Invoking B now causes an error instead of a deprecation " "warning." msgstr "" #. type: textblock -#: debhelper.pod:590 +#: debhelper.pod:604 msgid "" "B now installs user-supplied documentation " "(e.g. debian/I.docs) into F rather than " @@ -1015,31 +1028,64 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:609 msgid "" "If you need the old behaviour, it can be emulated by using the " "B<--mainpackage> option." msgstr "" #. type: textblock -#: debhelper.pod:598 +#: debhelper.pod:612 msgid "Please remember to check/update your doc-base files." msgstr "" +#. type: textblock +#: debhelper.pod:616 +msgid "" +"B no longer creates debian/I directories unless " +"explicitly requested (or it has to create a subdirectory in it)." +msgstr "" + +#. type: textblock +#: debhelper.pod:620 +msgid "The vast majority of all packages will be unaffected by this change." +msgstr "" + +#. type: textblock +#: debhelper.pod:624 +msgid "" +"B no longer creates a stamp (or log) file to record whether the build " +"already ran or not. This means that unless upstream's build system " +"correctly tracks this, the build will be run twice (once for the \"build\" " +"target and once for the \"binary\" target)." +msgstr "" + +#. type: textblock +#: debhelper.pod:629 +msgid "" +"On the other hand, this means that rebuild without cleaning " +"(e.g. B) will behave as most people would expect." +msgstr "" + +#. type: textblock +#: debhelper.pod:633 +msgid "The previous behaviour can restored by using B<--with build-stamp>" +msgstr "" + #. type: =head2 -#: debhelper.pod:604 +#: debhelper.pod:639 msgid "Participating in the open beta testing of new compat levels" msgstr "" #. type: textblock -#: debhelper.pod:606 +#: debhelper.pod:641 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." msgstr "" #. type: textblock -#: debhelper.pod:610 +#: debhelper.pod:645 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1047,24 +1093,24 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:615 +#: debhelper.pod:650 msgid "Please consider the following before opting in:" msgstr "" #. type: =item -#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 debhelper.pod:643 +#: debhelper.pod:654 debhelper.pod:659 debhelper.pod:666 debhelper.pod:672 debhelper.pod:678 msgid "*" msgstr "" #. type: textblock -#: debhelper.pod:621 +#: debhelper.pod:656 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." msgstr "" #. type: textblock -#: debhelper.pod:626 +#: debhelper.pod:661 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1072,7 +1118,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:633 +#: debhelper.pod:668 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1080,7 +1126,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:639 +#: debhelper.pod:674 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1088,19 +1134,19 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:645 +#: debhelper.pod:680 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." msgstr "" #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:685 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" #. type: verbatim -#: debhelper.pod:652 +#: debhelper.pod:687 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1108,12 +1154,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:654 +#: debhelper.pod:689 msgid "You will also need to ensure that debian/control contains:" msgstr "" #. type: verbatim -#: debhelper.pod:656 +#: debhelper.pod:691 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1121,22 +1167,22 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:658 +#: debhelper.pod:693 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" #. type: =head1 -#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 dh_systemd_enable:72 dh_systemd_start:65 +#: debhelper.pod:695 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 dh_systemd_enable:73 dh_systemd_start:66 msgid "NOTES" msgstr "" #. type: =head2 -#: debhelper.pod:662 +#: debhelper.pod:697 msgid "Multiple binary package support" msgstr "" #. type: textblock -#: debhelper.pod:664 +#: debhelper.pod:699 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1148,7 +1194,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:672 +#: debhelper.pod:707 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, " @@ -1158,7 +1204,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:678 +#: debhelper.pod:713 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L environment variable and B fields in " @@ -1175,12 +1221,12 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:687 +#: debhelper.pod:722 msgid "Automatic generation of Debian install scripts" msgstr "" #. type: textblock -#: debhelper.pod:689 +#: debhelper.pod:724 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1191,21 +1237,21 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:731 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." msgstr "" #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:734 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." msgstr "" #. type: textblock -#: debhelper.pod:702 +#: debhelper.pod:737 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1214,7 +1260,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:707 +#: debhelper.pod:742 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1234,12 +1280,12 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:720 +#: debhelper.pod:755 msgid "Automatic generation of miscellaneous dependencies." msgstr "" #. type: textblock -#: debhelper.pod:722 +#: debhelper.pod:757 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1251,7 +1297,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:730 +#: debhelper.pod:765 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -1260,7 +1306,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:735 +#: debhelper.pod:770 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1269,19 +1315,19 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:740 +#: debhelper.pod:775 msgid "Package build directories" msgstr "" #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:777 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." msgstr "" #. type: textblock -#: debhelper.pod:745 +#: debhelper.pod:780 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B\" to the package's stanza in F. " @@ -1309,12 +1355,12 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:762 +#: debhelper.pod:797 msgid "ENVIRONMENT" msgstr "" #. type: textblock -#: debhelper.pod:764 +#: debhelper.pod:799 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1324,24 +1370,24 @@ msgid "" msgstr "" #. type: =item -#: debhelper.pod:772 +#: debhelper.pod:807 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:774 +#: debhelper.pod:809 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." msgstr "" #. type: =item -#: debhelper.pod:777 +#: debhelper.pod:812 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:779 +#: debhelper.pod:814 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1351,53 +1397,53 @@ msgid "" msgstr "" #. type: =item -#: debhelper.pod:786 +#: debhelper.pod:821 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:788 +#: debhelper.pod:823 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." msgstr "" #. type: =item -#: debhelper.pod:791 +#: debhelper.pod:826 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:793 +#: debhelper.pod:828 msgid "Set to B<1> to enable no-act mode." msgstr "" #. type: =item -#: debhelper.pod:795 +#: debhelper.pod:830 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:832 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." msgstr "" #. type: textblock -#: debhelper.pod:800 +#: debhelper.pod:835 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." msgstr "" #. type: =item -#: debhelper.pod:803 +#: debhelper.pod:838 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:805 +#: debhelper.pod:840 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1405,7 +1451,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:809 +#: debhelper.pod:844 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1416,44 +1462,44 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:816 +#: debhelper.pod:851 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" msgstr "" #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:283 dh_systemd_start:244 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 dh_installcatalogs:123 dh_installchangelogs:238 dh_installcron:76 dh_installdeb:215 dh_installdebconf:126 dh_installdirs:95 dh_installdocs:357 dh_installemacsen:135 dh_installexamples:110 dh_installifupdown:70 dh_installinfo:76 dh_installinit:331 dh_installlogcheck:79 dh_installlogrotate:51 dh_installman:264 dh_installmanpages:196 dh_installmenu:94 dh_installmime:61 dh_installmodules:107 dh_installpam:60 dh_installppp:66 dh_installudev:99 dh_installwm:115 dh_installxfonts:90 dh_link:146 dh_lintian:58 dh_listpackages:31 dh_makeshlibs:287 dh_md5sums:105 dh_movefiles:159 dh_perl:154 dh_prep:61 dh_shlibdeps:153 dh_strip:396 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 dh_systemd_enable:264 dh_systemd_start:246 msgid "SEE ALSO" msgstr "" #. type: =item -#: debhelper.pod:825 +#: debhelper.pod:860 msgid "F" msgstr "" #. type: textblock -#: debhelper.pod:827 +#: debhelper.pod:862 msgid "A set of example F files that use debhelper." msgstr "" #. type: =item -#: debhelper.pod:829 +#: debhelper.pod:864 msgid "L" msgstr "" #. type: textblock -#: debhelper.pod:831 +#: debhelper.pod:866 msgid "Debhelper web site." msgstr "" #. type: =head1 -#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:272 dh_installmanpages:204 dh_installmenu:106 dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 dh_testdir:60 dh_testroot:34 dh_usrlocal:122 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 dh_installchangelogs:244 dh_installcron:82 dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 dh_installemacsen:142 dh_installexamples:116 dh_installifupdown:76 dh_installinfo:82 dh_installlogcheck:85 dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 dh_installmenu:102 dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:105 dh_installwm:121 dh_installxfonts:96 dh_link:152 dh_lintian:66 dh_listpackages:37 dh_makeshlibs:293 dh_md5sums:111 dh_movefiles:165 dh_perl:160 dh_prep:67 dh_shlibdeps:159 dh_strip:402 dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 dh_installman:274 dh_installmanpages:206 dh_installmenu:108 dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 dh_installemacsen:144 dh_installexamples:118 dh_installifupdown:78 dh_installinfo:84 dh_installinit:339 dh_installlogrotate:59 dh_installman:272 dh_installmanpages:204 dh_installmenu:104 dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:107 dh_installwm:123 dh_installxfonts:98 dh_link:154 dh_listpackages:39 dh_makeshlibs:295 dh_md5sums:113 dh_movefiles:167 dh_prep:69 dh_shlibdeps:161 dh_strip:404 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "" @@ -1501,11 +1547,6 @@ msgid "" "file." msgstr "" -#. type: textblock -#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 -msgid "This mode is deprecated." -msgstr "" - #. type: =item #: debhelper-obsolete-compat.pod:30 msgid "v2" @@ -1551,85 +1592,85 @@ msgid "" msgstr "" #. type: =item -#: debhelper-obsolete-compat.pod:58 +#: debhelper-obsolete-compat.pod:60 msgid "v4" msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:60 +#: debhelper-obsolete-compat.pod:62 msgid "Changes from v3 are:" msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:66 +#: debhelper-obsolete-compat.pod:68 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:73 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:76 +#: debhelper-obsolete-compat.pod:78 msgid "" "B will make all files in F directories and in " "F executable." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:83 msgid "B will correct existing links to conform with policy." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:89 +#: debhelper-obsolete-compat.pod:93 msgid "Changes from v4 are:" msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:95 +#: debhelper-obsolete-compat.pod:99 msgid "Comments are ignored in debhelper config files." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:99 +#: debhelper-obsolete-compat.pod:103 msgid "" "B now specifies the name of a package to put " "debugging symbols in, not the packages to take the symbols from." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:104 +#: debhelper-obsolete-compat.pod:108 msgid "B skips installing empty files." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:108 +#: debhelper-obsolete-compat.pod:112 msgid "B errors out if wildcards expand to nothing." msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:246 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 dh_installcron:78 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 dh_installexamples:112 dh_installifupdown:72 dh_installinfo:78 dh_installinit:333 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:101 dh_installwm:117 dh_installxfonts:92 dh_link:148 dh_listpackages:33 dh_makeshlibs:289 dh_md5sums:107 dh_movefiles:161 dh_perl:156 dh_prep:63 dh_strip:398 dh_testdir:56 dh_testroot:30 dh_usrlocal:118 dh_systemd_start:248 msgid "L" msgstr "" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 dh_systemd_start:248 +#: debhelper-obsolete-compat.pod:122 dh_installinit:337 dh_systemd_enable:268 dh_systemd_start:250 msgid "AUTHORS" msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:120 +#: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:122 +#: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" msgstr "" @@ -1687,7 +1728,7 @@ msgid "" msgstr "" #. type: =head1 -#: dh:42 dh_auto_build:29 dh_auto_clean:31 dh_auto_configure:32 dh_auto_install:44 dh_auto_test:32 dh_bugfiles:51 dh_builddeb:26 dh_clean:45 dh_compress:50 dh_fixperms:33 dh_gconf:40 dh_gencontrol:35 dh_icons:31 dh_install:71 dh_installcatalogs:51 dh_installchangelogs:60 dh_installcron:41 dh_installdebconf:62 dh_installdirs:40 dh_installdocs:76 dh_installemacsen:54 dh_installexamples:33 dh_installifupdown:40 dh_installinfo:32 dh_installinit:60 dh_installlogcheck:43 dh_installlogrotate:23 dh_installman:62 dh_installmanpages:41 dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:55 dh_systemd_start:30 +#: dh:42 dh_auto_build:29 dh_auto_clean:31 dh_auto_configure:32 dh_auto_install:44 dh_auto_test:32 dh_bugfiles:51 dh_builddeb:26 dh_clean:45 dh_compress:50 dh_fixperms:33 dh_gconf:40 dh_gencontrol:35 dh_icons:31 dh_install:71 dh_installcatalogs:51 dh_installchangelogs:60 dh_installcron:41 dh_installdebconf:62 dh_installdirs:40 dh_installdocs:76 dh_installemacsen:54 dh_installexamples:33 dh_installifupdown:40 dh_installinfo:32 dh_installinit:60 dh_installlogcheck:43 dh_installlogrotate:23 dh_installman:62 dh_installmanpages:41 dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:56 dh_systemd_start:31 msgid "OPTIONS" msgstr "" @@ -2169,7 +2210,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 dh_installemacsen:140 dh_installexamples:114 dh_installifupdown:74 dh_installinfo:80 dh_installinit:335 dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 dh_installmenu:100 dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:103 dh_installwm:119 dh_installxfonts:94 dh_link:150 dh_lintian:62 dh_listpackages:35 dh_makeshlibs:291 dh_md5sums:109 dh_movefiles:163 dh_perl:158 dh_prep:65 dh_shlibdeps:157 dh_strip:400 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "" @@ -2426,13 +2467,6 @@ msgid "" "tests will be performed." msgstr "" -#. type: textblock -#: dh_auto_test:51 -msgid "" -"dh_auto_test does not run the test suite when a package is being cross " -"compiled." -msgstr "" - #. type: textblock #: dh_bugfiles:5 msgid "" @@ -2454,7 +2488,7 @@ msgid "" msgstr "" #. type: =head1 -#: dh_bugfiles:23 dh_clean:32 dh_compress:33 dh_gconf:24 dh_install:39 dh_installcatalogs:37 dh_installchangelogs:36 dh_installcron:22 dh_installdeb:23 dh_installdebconf:35 dh_installdirs:26 dh_installdocs:22 dh_installemacsen:28 dh_installexamples:23 dh_installifupdown:23 dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:38 +#: dh_bugfiles:23 dh_clean:32 dh_compress:33 dh_gconf:24 dh_install:39 dh_installcatalogs:37 dh_installchangelogs:36 dh_installcron:22 dh_installdeb:23 dh_installdebconf:35 dh_installdirs:26 dh_installdocs:22 dh_installemacsen:28 dh_installexamples:23 dh_installifupdown:23 dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:39 msgid "FILES" msgstr "" @@ -2515,7 +2549,7 @@ msgid "F" msgstr "" #. type: textblock -#: dh_bugfiles:135 dh_lintian:62 +#: dh_bugfiles:135 dh_lintian:60 msgid "L" msgstr "" @@ -3204,12 +3238,12 @@ msgid "" msgstr "" #. type: =head1 -#: dh_install:303 +#: dh_install:301 msgid "LIMITATIONS" msgstr "" #. type: textblock -#: dh_install:305 +#: dh_install:303 msgid "" "B cannot rename files or directories, it can only install them " "with the names they already have into wherever you want in the package build " @@ -3217,7 +3251,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:309 +#: dh_install:307 msgid "" "However, renaming can be achieved by using B with compatibility " "level 9 or later. An example debian/I.install file using " @@ -3225,7 +3259,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh_install:313 +#: dh_install:311 #, no-wrap msgid "" " #!/usr/bin/dh-exec\n" @@ -3234,24 +3268,24 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:316 +#: dh_install:314 msgid "Please remember the following three things:" msgstr "" #. type: =item -#: dh_install:320 +#: dh_install:318 msgid "" "* The package must be using compatibility level 9 or later (see " "L)" msgstr "" #. type: =item -#: dh_install:322 +#: dh_install:320 msgid "* The package will need a build-dependency on dh-exec." msgstr "" #. type: =item -#: dh_install:324 +#: dh_install:322 msgid "* The install file must be marked as executable." msgstr "" @@ -3327,12 +3361,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_installcatalogs:128 +#: dh_installcatalogs:127 msgid "F" msgstr "" #. type: textblock -#: dh_installcatalogs:132 +#: dh_installcatalogs:131 msgid "Adam Di Carlo " msgstr "" @@ -3500,7 +3534,7 @@ msgid "" msgstr "" #. type: =item -#: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:63 +#: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:64 msgid "B<--name=>I" msgstr "" @@ -4138,7 +4172,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_installemacsen:145 +#: dh_installemacsen:137 msgid "L L" msgstr "" @@ -4346,28 +4380,28 @@ msgid "" msgstr "" #. type: =item -#: dh_installinit:47 dh_systemd_enable:42 +#: dh_installinit:47 dh_systemd_enable:43 msgid "debian/I.service" msgstr "" #. type: textblock -#: dh_installinit:49 dh_systemd_enable:44 +#: dh_installinit:49 msgid "" "If this exists, it is installed into lib/systemd/system/I.service " -"in the package build directory." +"in the package build directory. Only used in compat levels 10 and below." msgstr "" #. type: =item -#: dh_installinit:52 dh_systemd_enable:47 +#: dh_installinit:52 dh_systemd_enable:48 msgid "debian/I.tmpfile" msgstr "" #. type: textblock -#: dh_installinit:54 dh_systemd_enable:49 +#: dh_installinit:54 msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " -"used by systemd.)" +"used by systemd.) Only used in compat levels 10 and below." msgstr "" #. type: textblock @@ -4427,7 +4461,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_installinit:92 dh_systemd_start:42 +#: dh_installinit:92 dh_systemd_start:43 msgid "" "This can be useful for daemons that should not have a possibly long downtime " "during upgrade. But you should make sure that the daemon will not get " @@ -4436,12 +4470,12 @@ msgid "" msgstr "" #. type: =item -#: dh_installinit:97 dh_systemd_start:47 +#: dh_installinit:97 dh_systemd_start:48 msgid "B<--no-restart-after-upgrade>" msgstr "" #. type: textblock -#: dh_installinit:99 dh_systemd_start:49 +#: dh_installinit:99 dh_systemd_start:50 msgid "" "Undo a previous B<--restart-after-upgrade> (or the default of compat 10). " "If no other options are given, this will cause the service to be stopped in " @@ -4449,7 +4483,7 @@ msgid "" msgstr "" #. type: =item -#: dh_installinit:104 dh_systemd_start:54 +#: dh_installinit:104 dh_systemd_start:55 msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "" @@ -4459,7 +4493,7 @@ msgid "Do not stop init script on upgrade." msgstr "" #. type: =item -#: dh_installinit:108 dh_systemd_start:58 +#: dh_installinit:108 dh_systemd_start:59 msgid "B<--no-start>" msgstr "" @@ -4546,12 +4580,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_installinit:353 +#: dh_installinit:341 msgid "Steve Langasek " msgstr "" #. type: textblock -#: dh_installinit:355 +#: dh_installinit:343 msgid "Michael Stapelberg " msgstr "" @@ -4618,7 +4652,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh_installlogcheck:85 +#: dh_installlogcheck:83 #, no-wrap msgid "" "This program is a part of debhelper.\n" @@ -4626,7 +4660,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_installlogcheck:89 +#: dh_installlogcheck:87 msgid "Jon Middleton " msgstr "" @@ -4909,7 +4943,7 @@ msgid "Do not modify F/F scripts." msgstr "" #. type: textblock -#: dh_installmenu:100 +#: dh_installmenu:96 msgid "L L L" msgstr "" @@ -5413,12 +5447,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_lintian:66 +#: dh_lintian:64 msgid "L" msgstr "" #. type: textblock -#: dh_lintian:70 +#: dh_lintian:68 msgid "Steve Robbins " msgstr "" @@ -6050,7 +6084,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_shlibdeps:159 +#: dh_shlibdeps:155 msgid "L, L" msgstr "" @@ -6365,21 +6399,21 @@ msgid "dh_systemd_enable - enable/disable systemd unit files" msgstr "" #. type: textblock -#: dh_systemd_enable:15 +#: dh_systemd_enable:16 msgid "" "B [S>] [B<--no-enable>] " "[B<--name=>I] [S ...>]" msgstr "" #. type: textblock -#: dh_systemd_enable:19 +#: dh_systemd_enable:20 msgid "" "B is a debhelper program that is responsible for enabling " "and disabling systemd unit files." msgstr "" #. type: textblock -#: dh_systemd_enable:22 +#: dh_systemd_enable:23 msgid "" "In the simple case, it finds all unit files installed by a package (e.g. " "bacula-fd.service) and enables them. It is not necessary that the machine " @@ -6389,7 +6423,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:27 +#: dh_systemd_enable:28 msgid "" "In the complex case, you can call B and " "B manually (by overwriting the debian/rules targets) and " @@ -6401,25 +6435,40 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:34 +#: dh_systemd_enable:35 msgid "" "For only generating blocks for specific service files, you need to pass them " "as arguments, e.g. B and " "B." msgstr "" +#. type: textblock +#: dh_systemd_enable:45 +msgid "" +"If this exists, it is installed into lib/systemd/system/I.service " +"in the package build directory." +msgstr "" + +#. type: textblock +#: dh_systemd_enable:50 +msgid "" +"If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " +"the package build directory. (The tmpfiles.d mechanism is currently only " +"used by systemd.)" +msgstr "" + #. type: =item -#: dh_systemd_enable:59 +#: dh_systemd_enable:60 msgid "B<--no-enable>" msgstr "" #. type: textblock -#: dh_systemd_enable:61 +#: dh_systemd_enable:62 msgid "Just disable the service(s) on purge, but do not enable them by default." msgstr "" #. type: textblock -#: dh_systemd_enable:65 +#: dh_systemd_enable:66 msgid "" "Install the service file as I instead of the default filename, " "which is the I. When this parameter is used, " @@ -6429,7 +6478,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:74 dh_systemd_start:67 +#: dh_systemd_enable:75 dh_systemd_start:68 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command (with the same arguments). Otherwise, it " @@ -6438,7 +6487,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:79 +#: dh_systemd_enable:80 msgid "" "Note that B should be run before B. The " "default sequence in B does the right thing, this note is only relevant " @@ -6446,12 +6495,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:285 +#: dh_systemd_enable:266 msgid "L, L" msgstr "" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:250 +#: dh_systemd_enable:270 dh_systemd_start:252 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" @@ -6461,14 +6510,14 @@ msgid "dh_systemd_start - start/stop/restart systemd unit files" msgstr "" #. type: textblock -#: dh_systemd_start:16 +#: dh_systemd_start:17 msgid "" "B [S>] [B<--restart-after-upgrade>] " "[B<--no-stop-on-upgrade>] [S ...>]" msgstr "" #. type: textblock -#: dh_systemd_start:20 +#: dh_systemd_start:21 msgid "" "B is a debhelper program that is responsible for " "starting/stopping or restarting systemd unit files in case no corresponding " @@ -6476,7 +6525,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_start:24 +#: dh_systemd_start:25 msgid "" "As with B, the unit file is stopped before upgrades and " "started afterwards (unless B<--restart-after-upgrade> is specified, in which " @@ -6486,31 +6535,31 @@ msgid "" msgstr "" #. type: =item -#: dh_systemd_start:34 +#: dh_systemd_start:35 msgid "B<--restart-after-upgrade>" msgstr "" #. type: textblock -#: dh_systemd_start:36 +#: dh_systemd_start:37 msgid "" "Do not stop the unit file until after the package upgrade has been " "completed. This is the default behaviour in compat 10." msgstr "" #. type: textblock -#: dh_systemd_start:39 +#: dh_systemd_start:40 msgid "" "In earlier compat levels the default was to stop the unit file in the " "F, and start it again in the F." msgstr "" #. type: textblock -#: dh_systemd_start:56 +#: dh_systemd_start:57 msgid "Do not stop service on upgrade." msgstr "" #. type: textblock -#: dh_systemd_start:60 +#: dh_systemd_start:61 msgid "" "Do not start the unit file after upgrades and after initial installation " "(the latter is only relevant for services without a corresponding init " @@ -6518,7 +6567,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_start:72 +#: dh_systemd_start:73 msgid "" "Note that B should be run after B so that " "it can detect corresponding SysV init scripts. The default sequence in B " diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po index 6bec7884..76da0d8a 100644 --- a/man/po4a/po/es.po +++ b/man/po4a/po/es.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20120609\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-02 06:17+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: 2012-08-20 11:17+0200\n" "Last-Translator: Omar Campagne \n" "Language-Team: Debian l10n Spanish \n" @@ -81,8 +81,8 @@ msgstr "debhelper - El conjunto de herramientas debhelper" #: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 #: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 #: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 -#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 -#: dh_systemd_start:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 +#: dh_systemd_start:15 msgid "SYNOPSIS" msgstr "SINOPSIS" @@ -115,7 +115,7 @@ msgstr "" #: dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 #: dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 #: dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 -#: dh_usrlocal:19 dh_systemd_enable:17 dh_systemd_start:18 +#: dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 msgid "DESCRIPTION" msgstr "DESCRIPCIÓN" @@ -940,13 +940,13 @@ msgid "These are the available compatibility levels:" msgstr "Los niveles de compatibilidad disponibles son:" #. type: =item -#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:89 msgid "v5" msgstr "v5" # type: textblock #. type: textblock -#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:91 #, fuzzy #| msgid "These are the available compatibility levels:" msgid "This is the lowest supported compatibility level." @@ -959,40 +959,48 @@ msgid "" "L." msgstr "" +# type: textblock +#. type: textblock +#: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +#: debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +msgid "This mode is deprecated." +msgstr "Este modo está obsoleto." + #. type: =item -#: debhelper.pod:308 +#: debhelper.pod:310 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:310 +#: debhelper.pod:312 msgid "Changes from v5 are:" msgstr "Los cambios desde el nivel v5 son:" # type: =item #. type: =item -#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 -#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 -#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 -#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 -#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 -#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 -#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 -#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 -#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 -#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 -#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 -#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 -#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 -#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 -#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 -#: debhelper-obsolete-compat.pod:106 +#: debhelper.pod:316 debhelper.pod:321 debhelper.pod:327 debhelper.pod:333 +#: debhelper.pod:348 debhelper.pod:355 debhelper.pod:359 debhelper.pod:363 +#: debhelper.pod:378 debhelper.pod:382 debhelper.pod:390 debhelper.pod:395 +#: debhelper.pod:409 debhelper.pod:414 debhelper.pod:421 debhelper.pod:426 +#: debhelper.pod:431 debhelper.pod:435 debhelper.pod:441 debhelper.pod:446 +#: debhelper.pod:451 debhelper.pod:467 debhelper.pod:472 debhelper.pod:478 +#: debhelper.pod:485 debhelper.pod:491 debhelper.pod:496 debhelper.pod:502 +#: debhelper.pod:508 debhelper.pod:518 debhelper.pod:524 debhelper.pod:547 +#: debhelper.pod:554 debhelper.pod:560 debhelper.pod:566 debhelper.pod:582 +#: debhelper.pod:587 debhelper.pod:593 debhelper.pod:597 debhelper.pod:602 +#: debhelper.pod:614 debhelper.pod:622 debhelper-obsolete-compat.pod:43 +#: debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 +#: debhelper-obsolete-compat.pod:66 debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:76 debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:101 +#: debhelper-obsolete-compat.pod:106 debhelper-obsolete-compat.pod:110 msgid "-" msgstr "-" # type: textblock #. type: textblock -#: debhelper.pod:316 +#: debhelper.pod:318 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -1002,7 +1010,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:321 +#: debhelper.pod:323 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -1014,7 +1022,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:327 +#: debhelper.pod:329 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -1026,7 +1034,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:333 +#: debhelper.pod:335 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -1036,18 +1044,18 @@ msgstr "" "anteriores simplemente rechazaba hacerlo, de forma silenciosa." #. type: =item -#: debhelper.pod:338 +#: debhelper.pod:342 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:340 +#: debhelper.pod:344 msgid "Changes from v6 are:" msgstr "Los cambios desde el nivel v6 son:" # type: textblock #. type: textblock -#: debhelper.pod:346 +#: debhelper.pod:350 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -1063,20 +1071,20 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:353 +#: debhelper.pod:357 msgid "B will read F and delete files listed there." msgstr "" "B leerá F y eliminará los ficheros ahí listados." # type: textblock #. type: textblock -#: debhelper.pod:357 +#: debhelper.pod:361 msgid "B will delete toplevel F<*-stamp> files." msgstr "B eliminará ficheros F<*-stamp> del nivel superior." # type: textblock #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:365 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -1085,17 +1093,17 @@ msgstr "" "cambios de la fuente original si no se especifica ninguno." #. type: =item -#: debhelper.pod:366 +#: debhelper.pod:372 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:368 +#: debhelper.pod:374 msgid "Changes from v7 are:" msgstr "Los cambios desde el nivel v7 son:" #. type: textblock -#: debhelper.pod:374 +#: debhelper.pod:380 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -1103,7 +1111,7 @@ msgstr "" "opciones desconocidas." #. type: textblock -#: debhelper.pod:378 +#: debhelper.pod:384 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -1119,7 +1127,7 @@ msgstr "" "paquetes." #. type: textblock -#: debhelper.pod:386 +#: debhelper.pod:392 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -1130,7 +1138,7 @@ msgstr "" "B, no B." #. type: textblock -#: debhelper.pod:391 +#: debhelper.pod:397 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1139,17 +1147,17 @@ msgstr "" "preferencia a un fichero F." #. type: =item -#: debhelper.pod:395 +#: debhelper.pod:403 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:397 +#: debhelper.pod:405 msgid "Changes from v8 are:" msgstr "Los cambios desde el nivel v8 son:" #. type: textblock -#: debhelper.pod:403 +#: debhelper.pod:411 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1158,7 +1166,7 @@ msgstr "" "multiarquitectura a autoconf en «--libdir» y «--libexecdir»." #. type: textblock -#: debhelper.pod:408 +#: debhelper.pod:416 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1172,7 +1180,7 @@ msgstr "" "sobre otros objetivos." #. type: textblock -#: debhelper.pod:415 +#: debhelper.pod:423 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1181,7 +1189,7 @@ msgstr "" "reducir el tamaño de los paquetes -dbg." #. type: textblock -#: debhelper.pod:420 +#: debhelper.pod:428 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1190,12 +1198,12 @@ msgstr "" "libexecdir» al utilizar autoconf." #. type: textblock -#: debhelper.pod:425 +#: debhelper.pod:433 msgid "B does not default to enabling --with=python-support" msgstr "B no activa «--with=python-support» de forma predeterminada." #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:437 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1204,7 +1212,7 @@ msgstr "" "entorno listados en B, a menos que ya estén definidas." #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:443 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1213,7 +1221,7 @@ msgstr "" "LDFLAGS a ficheros de Perl F y F" #. type: textblock -#: debhelper.pod:440 +#: debhelper.pod:448 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1222,7 +1230,7 @@ msgstr "" "build-id." #. type: textblock -#: debhelper.pod:445 +#: debhelper.pod:453 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1231,30 +1239,30 @@ msgstr "" "debhelper y su salida." #. type: =item -#: debhelper.pod:450 +#: debhelper.pod:458 msgid "v10" msgstr "v10" # type: textblock #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:460 msgid "This is the recommended mode of operation." msgstr "Este es el modo de operación aconsejado." #. type: textblock -#: debhelper.pod:455 +#: debhelper.pod:463 msgid "Changes from v9 are:" msgstr "Los cambios desde el nivel v9 son:" #. type: textblock -#: debhelper.pod:461 +#: debhelper.pod:469 msgid "" "B will no longer install a file named debian/I as " "an init script." msgstr "" #. type: textblock -#: debhelper.pod:466 +#: debhelper.pod:474 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1262,7 +1270,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:472 +#: debhelper.pod:480 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1271,21 +1279,21 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:479 +#: debhelper.pod:487 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." msgstr "" #. type: textblock -#: debhelper.pod:485 +#: debhelper.pod:493 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." msgstr "" #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:498 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1293,7 +1301,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:496 +#: debhelper.pod:504 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1301,7 +1309,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:502 +#: debhelper.pod:510 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1309,12 +1317,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:506 +#: debhelper.pod:514 msgid "The main effects of this are:" msgstr "" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:520 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1322,7 +1330,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:518 +#: debhelper.pod:526 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1330,12 +1338,12 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:523 +#: debhelper.pod:531 msgid "Example of where it can go wrong:" msgstr "" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:533 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1344,7 +1352,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:528 +#: debhelper.pod:536 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1354,7 +1362,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:540 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1362,7 +1370,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:541 +#: debhelper.pod:549 msgid "" "The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1371,7 +1379,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:548 +#: debhelper.pod:556 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1379,28 +1387,28 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:554 +#: debhelper.pod:562 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" msgstr "" #. type: textblock -#: debhelper.pod:560 +#: debhelper.pod:568 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." msgstr "" #. type: =item -#: debhelper.pod:566 +#: debhelper.pod:574 #, fuzzy #| msgid "v1" msgid "v11" msgstr "v1" #. type: textblock -#: debhelper.pod:568 +#: debhelper.pod:576 #, fuzzy #| msgid "" #| "This compatibility level is still open for development; use with caution." @@ -1411,35 +1419,43 @@ msgstr "" "precaución." #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:578 #, fuzzy #| msgid "Changes from v3 are:" msgid "Changes from v10 are:" msgstr "Los cambios desde el nivel v3 son:" #. type: textblock -#: debhelper.pod:576 +#: debhelper.pod:584 msgid "" "B no longer installs F files. The F " "files are still installed." msgstr "" +#. type: textblock +#: debhelper.pod:589 +msgid "" +"B no longer installs F or F files, nor " +"generates maintainer scripts for those files. Use B and " +"B instead." +msgstr "" + # type: =item #. type: textblock -#: debhelper.pod:581 +#: debhelper.pod:595 #, fuzzy #| msgid "B<-s>, B<--same-arch>" msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "B<-s>, B<--same-arch>" #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:599 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" #. type: textblock -#: debhelper.pod:590 +#: debhelper.pod:604 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." msgstr "" #. type: textblock -#: debhelper.pod:598 +#: debhelper.pod:612 msgid "Please remember to check/update your doc-base files." msgstr "" +#. type: textblock +#: debhelper.pod:616 +msgid "" +"B no longer creates debian/I directories unless " +"explicitly requested (or it has to create a subdirectory in it)." +msgstr "" + +#. type: textblock +#: debhelper.pod:620 +msgid "The vast majority of all packages will be unaffected by this change." +msgstr "" + +#. type: textblock +#: debhelper.pod:624 +msgid "" +"B no longer creates a stamp (or log) file to record whether the build " +"already ran or not. This means that unless upstream's build system " +"correctly tracks this, the build will be run twice (once for the \"build\" " +"target and once for the \"binary\" target)." +msgstr "" + +#. type: textblock +#: debhelper.pod:629 +msgid "" +"On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." +msgstr "" + +#. type: textblock +#: debhelper.pod:633 +msgid "The previous behaviour can restored by using B<--with build-stamp>" +msgstr "" + #. type: =head2 -#: debhelper.pod:604 +#: debhelper.pod:639 msgid "Participating in the open beta testing of new compat levels" msgstr "" #. type: textblock -#: debhelper.pod:606 +#: debhelper.pod:641 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." msgstr "" #. type: textblock -#: debhelper.pod:610 +#: debhelper.pod:645 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1479,25 +1528,25 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:615 +#: debhelper.pod:650 msgid "Please consider the following before opting in:" msgstr "" #. type: =item -#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 -#: debhelper.pod:643 +#: debhelper.pod:654 debhelper.pod:659 debhelper.pod:666 debhelper.pod:672 +#: debhelper.pod:678 msgid "*" msgstr "" #. type: textblock -#: debhelper.pod:621 +#: debhelper.pod:656 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." msgstr "" #. type: textblock -#: debhelper.pod:626 +#: debhelper.pod:661 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1505,7 +1554,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:633 +#: debhelper.pod:668 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1513,7 +1562,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:639 +#: debhelper.pod:674 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1521,20 +1570,20 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:645 +#: debhelper.pod:680 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." msgstr "" #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:685 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:652 +#: debhelper.pod:687 #, fuzzy, no-wrap #| msgid "" #| " % echo 9 > debian/compat\n" @@ -1547,13 +1596,13 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:654 +#: debhelper.pod:689 msgid "You will also need to ensure that debian/control contains:" msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:656 +#: debhelper.pod:691 #, fuzzy, no-wrap #| msgid "" #| " Build-Depends: debhelper (>= 9)\n" @@ -1566,29 +1615,29 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:658 +#: debhelper.pod:693 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:695 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 -#: dh_systemd_enable:72 dh_systemd_start:65 +#: dh_systemd_enable:73 dh_systemd_start:66 msgid "NOTES" msgstr "NOTAS" # type: =head2 #. type: =head2 -#: debhelper.pod:662 +#: debhelper.pod:697 msgid "Multiple binary package support" msgstr "Compatibilidad con varios paquetes binarios" # type: textblock #. type: textblock -#: debhelper.pod:664 +#: debhelper.pod:699 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1609,7 +1658,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:672 +#: debhelper.pod:707 #, fuzzy #| msgid "" #| "To facilitate this, as well as give you more control over which packages " @@ -1631,7 +1680,7 @@ msgstr "" "los paquetes listados en el fichero de control." #. type: textblock -#: debhelper.pod:678 +#: debhelper.pod:713 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L environment variable and B fields in " @@ -1649,13 +1698,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:687 +#: debhelper.pod:722 msgid "Automatic generation of Debian install scripts" msgstr "Generación automática de los scripts de instalación de Debian" # type: textblock #. type: textblock -#: debhelper.pod:689 +#: debhelper.pod:724 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1673,7 +1722,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:731 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1683,7 +1732,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:734 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1693,7 +1742,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:702 +#: debhelper.pod:737 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1706,7 +1755,7 @@ msgstr "" "caso comprobé que $1, $2, etc se definen con la orden «set»):" #. type: verbatim -#: debhelper.pod:707 +#: debhelper.pod:742 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1726,12 +1775,12 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:720 +#: debhelper.pod:755 msgid "Automatic generation of miscellaneous dependencies." msgstr "Generación automática de diversas dependencias." #. type: textblock -#: debhelper.pod:722 +#: debhelper.pod:757 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1751,7 +1800,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:730 +#: debhelper.pod:765 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1766,7 +1815,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:735 +#: debhelper.pod:770 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1780,13 +1829,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:740 +#: debhelper.pod:775 msgid "Package build directories" msgstr "Directorios de construcción del paquete" # type: textblock #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:777 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1797,7 +1846,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:745 +#: debhelper.pod:780 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1817,13 +1866,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:753 +#: debhelper.pod:788 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:755 +#: debhelper.pod:790 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1842,12 +1891,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:762 +#: debhelper.pod:797 msgid "ENVIRONMENT" msgstr "ENTORNO" #. type: textblock -#: debhelper.pod:764 +#: debhelper.pod:799 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1858,13 +1907,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:772 +#: debhelper.pod:807 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:774 +#: debhelper.pod:809 #, fuzzy #| msgid "" #| "Set to B<1> to enable verbose mode. Debhelper will output every command " @@ -1879,14 +1928,14 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:777 +#: debhelper.pod:812 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:779 +#: debhelper.pod:814 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1897,13 +1946,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:786 +#: debhelper.pod:821 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:788 +#: debhelper.pod:823 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1913,25 +1962,25 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:791 +#: debhelper.pod:826 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:793 +#: debhelper.pod:828 msgid "Set to B<1> to enable no-act mode." msgstr "Defina como B<1> para habilitar el modo no-act." # type: =item #. type: =item -#: debhelper.pod:795 +#: debhelper.pod:830 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:832 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1940,7 +1989,7 @@ msgstr "" "de órdenes de todas las órdenes de debhelper." #. type: textblock -#: debhelper.pod:800 +#: debhelper.pod:835 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1950,13 +1999,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:803 +#: debhelper.pod:838 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:805 +#: debhelper.pod:840 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1968,7 +2017,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:809 +#: debhelper.pod:844 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1986,7 +2035,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:816 +#: debhelper.pod:851 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1996,39 +2045,39 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 -#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 -#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 -#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 -#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 -#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 -#: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 -#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 -#: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 -#: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 -#: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 -#: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 -#: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:244 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 +#: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 +#: dh_installcatalogs:123 dh_installchangelogs:238 dh_installcron:76 +#: dh_installdeb:215 dh_installdebconf:126 dh_installdirs:95 dh_installdocs:357 +#: dh_installemacsen:135 dh_installexamples:110 dh_installifupdown:70 +#: dh_installinfo:76 dh_installinit:331 dh_installlogcheck:79 +#: dh_installlogrotate:51 dh_installman:264 dh_installmanpages:196 +#: dh_installmenu:94 dh_installmime:61 dh_installmodules:107 dh_installpam:60 +#: dh_installppp:66 dh_installudev:99 dh_installwm:115 dh_installxfonts:90 +#: dh_link:146 dh_lintian:58 dh_listpackages:31 dh_makeshlibs:287 +#: dh_md5sums:105 dh_movefiles:159 dh_perl:154 dh_prep:61 dh_shlibdeps:153 +#: dh_strip:396 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 +#: dh_systemd_enable:264 dh_systemd_start:246 msgid "SEE ALSO" msgstr "VÉASE TAMBIÉN" # type: =item #. type: =item -#: debhelper.pod:825 +#: debhelper.pod:860 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:827 +#: debhelper.pod:862 msgid "A set of example F files that use debhelper." msgstr "Varios ficheros de ejemplo F que utilizan debhelper." # type: =item #. type: =item -#: debhelper.pod:829 +#: debhelper.pod:864 #, fuzzy #| msgid "L" msgid "L" @@ -2036,43 +2085,43 @@ msgstr "L" # type: textblock #. type: textblock -#: debhelper.pod:831 +#: debhelper.pod:866 msgid "Debhelper web site." msgstr "Sitio web de Debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 -#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 -#: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 -#: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 -#: dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 -#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 -#: dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 -#: dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 -#: dh_installman:272 dh_installmanpages:204 dh_installmenu:106 -#: dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 -#: dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 -#: dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 -#: dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 +#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 +#: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 +#: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 +#: dh_installchangelogs:244 dh_installcron:82 dh_installdeb:221 +#: dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 +#: dh_installemacsen:142 dh_installexamples:116 dh_installifupdown:76 +#: dh_installinfo:82 dh_installlogcheck:85 dh_installlogrotate:57 +#: dh_installman:270 dh_installmanpages:202 dh_installmenu:102 +#: dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 +#: dh_installudev:105 dh_installwm:121 dh_installxfonts:96 dh_link:152 +#: dh_lintian:66 dh_listpackages:37 dh_makeshlibs:293 dh_md5sums:111 +#: dh_movefiles:165 dh_perl:160 dh_prep:67 dh_shlibdeps:159 dh_strip:402 #: dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "AUTOR" # type: textblock #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 -#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 -#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 -#: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 -#: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 -#: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 -#: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 -#: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 -#: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 -#: dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 -#: dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 +#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 +#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 +#: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 +#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 +#: dh_installemacsen:144 dh_installexamples:118 dh_installifupdown:78 +#: dh_installinfo:84 dh_installinit:339 dh_installlogrotate:59 +#: dh_installman:272 dh_installmanpages:204 dh_installmenu:104 +#: dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 +#: dh_installudev:107 dh_installwm:123 dh_installxfonts:98 dh_link:154 +#: dh_listpackages:39 dh_makeshlibs:295 dh_md5sums:113 dh_movefiles:167 +#: dh_prep:69 dh_shlibdeps:161 dh_strip:404 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "Joey Hess " @@ -2127,12 +2176,6 @@ msgstr "" "árbol de directorios del paquete, y «debian/I» para el resto de " "paquetes listados en el fichero F." -# type: textblock -#. type: textblock -#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 -msgid "This mode is deprecated." -msgstr "Este modo está obsoleto." - #. type: =item #: debhelper-obsolete-compat.pod:30 msgid "v2" @@ -2191,12 +2234,12 @@ msgstr "" "conffiles." #. type: =item -#: debhelper-obsolete-compat.pod:58 +#: debhelper-obsolete-compat.pod:60 msgid "v4" msgstr "v4" #. type: textblock -#: debhelper-obsolete-compat.pod:60 +#: debhelper-obsolete-compat.pod:62 #, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v3 are:" @@ -2204,7 +2247,7 @@ msgstr "Los cambios desde el nivel v5 son:" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:66 +#: debhelper-obsolete-compat.pod:68 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." @@ -2214,7 +2257,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:73 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." @@ -2224,7 +2267,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:76 +#: debhelper-obsolete-compat.pod:78 msgid "" "B will make all files in F directories and in F executable." @@ -2234,27 +2277,27 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:83 msgid "B will correct existing links to conform with policy." msgstr "" "B corregirá los enlaces existentes para ajustarse a las normas de " "Debian." #. type: textblock -#: debhelper-obsolete-compat.pod:89 +#: debhelper-obsolete-compat.pod:93 msgid "Changes from v4 are:" msgstr "Los cambios desde el nivel v4 son:" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:95 +#: debhelper-obsolete-compat.pod:99 msgid "Comments are ignored in debhelper config files." msgstr "" "Se ignoran los comentarios en los ficheros de configuración de debhelper." # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:99 +#: debhelper-obsolete-compat.pod:103 msgid "" "B now specifies the name of a package to put " "debugging symbols in, not the packages to take the symbols from." @@ -2265,13 +2308,13 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:104 +#: debhelper-obsolete-compat.pod:108 msgid "B skips installing empty files." msgstr "B omite la instalación de ficheros vacíos." # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:108 +#: debhelper-obsolete-compat.pod:112 msgid "B errors out if wildcards expand to nothing." msgstr "" "B devuelve un error si los comodines se expanden a un valor " @@ -2279,36 +2322,36 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 -#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 -#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:246 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 +#: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 +#: dh_installcron:78 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 +#: dh_installdocs:359 dh_installexamples:112 dh_installifupdown:72 +#: dh_installinfo:78 dh_installinit:333 dh_installlogcheck:81 +#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 +#: dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 +#: dh_installudev:101 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:289 dh_md5sums:107 dh_movefiles:161 +#: dh_perl:156 dh_prep:63 dh_strip:398 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:248 msgid "L" msgstr "L" # type: =head1 #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 -#: dh_systemd_start:248 +#: debhelper-obsolete-compat.pod:122 dh_installinit:337 dh_systemd_enable:268 +#: dh_systemd_start:250 msgid "AUTHORS" msgstr "AUTORES" #. type: textblock -#: debhelper-obsolete-compat.pod:120 +#: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:122 +#: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" msgstr "" @@ -2408,7 +2451,7 @@ msgstr "" #: dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 #: dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 #: dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 -#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:55 dh_systemd_start:30 +#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:56 dh_systemd_start:31 msgid "OPTIONS" msgstr "OPCIONES" @@ -3075,19 +3118,19 @@ msgstr "" # type: textblock #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 -#: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 -#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 -#: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 -#: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 -#: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 -#: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 -#: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 -#: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 -#: dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 -#: dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 -#: dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 +#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 +#: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 +#: dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 +#: dh_installemacsen:140 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:335 dh_installlogrotate:55 +#: dh_installman:268 dh_installmanpages:200 dh_installmenu:100 +#: dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:103 dh_installwm:119 dh_installxfonts:94 dh_link:150 +#: dh_lintian:62 dh_listpackages:35 dh_makeshlibs:291 dh_md5sums:109 +#: dh_movefiles:163 dh_perl:158 dh_prep:65 dh_shlibdeps:157 dh_strip:400 +#: dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "Este programa es parte de debhelper." @@ -3450,13 +3493,6 @@ msgstr "" "No se realizará ninguna prueba si la variable de entorno " "B contiene B." -#. type: textblock -#: dh_auto_test:51 -msgid "" -"dh_auto_test does not run the test suite when a package is being cross " -"compiled." -msgstr "" - # type: textblock #. type: textblock #: dh_bugfiles:5 @@ -3494,7 +3530,7 @@ msgstr "" #: dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 #: dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 #: dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 -#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:38 +#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:39 msgid "FILES" msgstr "FICHEROS" @@ -3575,7 +3611,7 @@ msgstr "F" # type: textblock #. type: textblock -#: dh_bugfiles:135 dh_lintian:62 +#: dh_bugfiles:135 dh_lintian:60 msgid "L" msgstr "L" @@ -4567,13 +4603,13 @@ msgstr "" # type: =head1 #. type: =head1 -#: dh_install:303 +#: dh_install:301 msgid "LIMITATIONS" msgstr "LIMITACIONES" # type: verbatim #. type: textblock -#: dh_install:305 +#: dh_install:303 #, fuzzy #| msgid "" #| "B cannot rename files or directories, it can only install " @@ -4592,7 +4628,7 @@ msgstr "" " \n" #. type: textblock -#: dh_install:309 +#: dh_install:307 msgid "" "However, renaming can be achieved by using B with compatibility " "level 9 or later. An example debian/I.install file using B)" msgstr "" #. type: =item -#: dh_install:322 +#: dh_install:320 msgid "* The package will need a build-dependency on dh-exec." msgstr "" #. type: =item -#: dh_install:324 +#: dh_install:322 msgid "* The install file must be marked as executable." msgstr "" @@ -4743,13 +4779,13 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installcatalogs:128 +#: dh_installcatalogs:127 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: dh_installcatalogs:132 +#: dh_installcatalogs:131 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " @@ -4971,7 +5007,7 @@ msgstr "" #. type: =item #: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 #: dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 -#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:63 +#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:64 msgid "B<--name=>I" msgstr "B<--name=>I" @@ -5808,7 +5844,7 @@ msgstr "" "omisión es B, las alternativas son B y B." #. type: textblock -#: dh_installemacsen:145 +#: dh_installemacsen:137 msgid "L L" msgstr "" @@ -6094,7 +6130,7 @@ msgstr "" "construcción del paquete." #. type: =item -#: dh_installinit:47 dh_systemd_enable:42 +#: dh_installinit:47 dh_systemd_enable:43 #, fuzzy #| msgid "debian/I.mime" msgid "debian/I.service" @@ -6102,20 +6138,20 @@ msgstr "debian/I.mime" # type: textblock #. type: textblock -#: dh_installinit:49 dh_systemd_enable:44 +#: dh_installinit:49 #, fuzzy #| msgid "" #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " -"in the package build directory." +"in the package build directory. Only used in compat levels 10 and below." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." #. type: =item -#: dh_installinit:52 dh_systemd_enable:47 +#: dh_installinit:52 dh_systemd_enable:48 #, fuzzy #| msgid "debian/I.files" msgid "debian/I.tmpfile" @@ -6123,7 +6159,7 @@ msgstr "debian/I.files" # type: textblock #. type: textblock -#: dh_installinit:54 dh_systemd_enable:49 +#: dh_installinit:54 #, fuzzy #| msgid "" #| "If this exists, it is installed into etc/init/I.conf in the " @@ -6131,7 +6167,7 @@ msgstr "debian/I.files" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " -"used by systemd.)" +"used by systemd.) Only used in compat levels 10 and below." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -6226,7 +6262,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installinit:92 dh_systemd_start:42 +#: dh_installinit:92 dh_systemd_start:43 msgid "" "This can be useful for daemons that should not have a possibly long downtime " "during upgrade. But you should make sure that the daemon will not get " @@ -6240,14 +6276,14 @@ msgstr "" # type: =item #. type: =item -#: dh_installinit:97 dh_systemd_start:47 +#: dh_installinit:97 dh_systemd_start:48 #, fuzzy #| msgid "B<-R>, B<--restart-after-upgrade>" msgid "B<--no-restart-after-upgrade>" msgstr "B<-R>, B<--restart-after-upgrade>" #. type: textblock -#: dh_installinit:99 dh_systemd_start:49 +#: dh_installinit:99 dh_systemd_start:50 msgid "" "Undo a previous B<--restart-after-upgrade> (or the default of compat 10). " "If no other options are given, this will cause the service to be stopped in " @@ -6256,7 +6292,7 @@ msgstr "" # type: =item #. type: =item -#: dh_installinit:104 dh_systemd_start:54 +#: dh_installinit:104 dh_systemd_start:55 msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" @@ -6268,7 +6304,7 @@ msgstr "No detiene el script de init durante una actualización." # type: =item #. type: =item -#: dh_installinit:108 dh_systemd_start:58 +#: dh_installinit:108 dh_systemd_start:59 msgid "B<--no-start>" msgstr "B<--no-start>" @@ -6396,12 +6432,12 @@ msgstr "" "del comodín B<#DEBHELPER#>." #. type: textblock -#: dh_installinit:353 +#: dh_installinit:341 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:355 +#: dh_installinit:343 msgid "Michael Stapelberg " msgstr "" @@ -6483,7 +6519,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: dh_installlogcheck:85 +#: dh_installlogcheck:83 #, no-wrap msgid "" "This program is a part of debhelper.\n" @@ -6494,7 +6530,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installlogcheck:89 +#: dh_installlogcheck:87 msgid "Jon Middleton " msgstr "Jon Middleton " @@ -6908,7 +6944,7 @@ msgstr "No modifica los scripts F/F." # type: textblock #. type: textblock -#: dh_installmenu:100 +#: dh_installmenu:96 msgid "L L L" msgstr "L L L" @@ -7629,13 +7665,13 @@ msgstr "" "anulaciones («overrides») para el paquete fuente." #. type: textblock -#: dh_lintian:66 +#: dh_lintian:64 msgid "L" msgstr "L" # type: textblock #. type: textblock -#: dh_lintian:70 +#: dh_lintian:68 msgid "Steve Robbins " msgstr "Steve Robbins " @@ -8550,7 +8586,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_shlibdeps:159 +#: dh_shlibdeps:155 msgid "L, L" msgstr "L, L" @@ -8972,7 +9008,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:15 +#: dh_systemd_enable:16 #, fuzzy #| msgid "" #| "B [S>] [B<-A>] [B<-X>I] " @@ -8986,7 +9022,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:19 +#: dh_systemd_enable:20 #, fuzzy #| msgid "" #| "B is a debhelper program that is responsible for " @@ -8999,7 +9035,7 @@ msgstr "" "ficheros de reglas de B." #. type: textblock -#: dh_systemd_enable:22 +#: dh_systemd_enable:23 msgid "" "In the simple case, it finds all unit files installed by a package (e.g. " "bacula-fd.service) and enables them. It is not necessary that the machine " @@ -9008,7 +9044,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:27 +#: dh_systemd_enable:28 msgid "" "In the complex case, you can call B and " "B manually (by overwriting the debian/rules targets) and " @@ -9020,30 +9056,59 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:34 +#: dh_systemd_enable:35 msgid "" "For only generating blocks for specific service files, you need to pass them " "as arguments, e.g. B and " "B." msgstr "" +# type: textblock +#. type: textblock +#: dh_systemd_enable:45 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into etc/init/I.conf in the " +#| "package build directory." +msgid "" +"If this exists, it is installed into lib/systemd/system/I.service " +"in the package build directory." +msgstr "" +"Si existe, se instala en «etc/init/I.conf» en el directorio de " +"construcción del paquete." + +# type: textblock +#. type: textblock +#: dh_systemd_enable:50 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into etc/init/I.conf in the " +#| "package build directory." +msgid "" +"If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " +"the package build directory. (The tmpfiles.d mechanism is currently only " +"used by systemd.)" +msgstr "" +"Si existe, se instala en «etc/init/I.conf» en el directorio de " +"construcción del paquete." + # type: =item #. type: =item -#: dh_systemd_enable:59 +#: dh_systemd_enable:60 #, fuzzy #| msgid "B<--no-act>" msgid "B<--no-enable>" msgstr "B<--no-act>" #. type: textblock -#: dh_systemd_enable:61 +#: dh_systemd_enable:62 msgid "" "Just disable the service(s) on purge, but do not enable them by default." msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:65 +#: dh_systemd_enable:66 #, fuzzy #| msgid "" #| "Install the init script (and default file) as well as upstart job file " @@ -9069,7 +9134,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:74 dh_systemd_start:67 +#: dh_systemd_enable:75 dh_systemd_start:68 #, fuzzy #| msgid "" #| "Note that this command is not idempotent. L should be called " @@ -9086,7 +9151,7 @@ msgstr "" "desarrollador contengan partes duplicadas." #. type: textblock -#: dh_systemd_enable:79 +#: dh_systemd_enable:80 msgid "" "Note that B should be run before B. The " "default sequence in B does the right thing, this note is only relevant " @@ -9094,12 +9159,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_enable:285 +#: dh_systemd_enable:266 msgid "L, L" msgstr "" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:250 +#: dh_systemd_enable:270 dh_systemd_start:252 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" @@ -9110,7 +9175,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:16 +#: dh_systemd_start:17 #, fuzzy #| msgid "" #| "B [S>] [B<-A>] [B<-X>I] " @@ -9124,7 +9189,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:20 +#: dh_systemd_start:21 #, fuzzy #| msgid "" #| "B is a debhelper program that is responsible for installing " @@ -9139,7 +9204,7 @@ msgstr "" "esquemas de GConf." #. type: textblock -#: dh_systemd_start:24 +#: dh_systemd_start:25 msgid "" "As with B, the unit file is stopped before upgrades and " "started afterwards (unless B<--restart-after-upgrade> is specified, in which " @@ -9150,7 +9215,7 @@ msgstr "" # type: =item #. type: =item -#: dh_systemd_start:34 +#: dh_systemd_start:35 #, fuzzy #| msgid "B<-R>, B<--restart-after-upgrade>" msgid "B<--restart-after-upgrade>" @@ -9158,7 +9223,7 @@ msgstr "B<-R>, B<--restart-after-upgrade>" # type: textblock #. type: textblock -#: dh_systemd_start:36 +#: dh_systemd_start:37 #, fuzzy #| msgid "" #| "Do not stop the init script until after the package upgrade has been " @@ -9174,7 +9239,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:39 +#: dh_systemd_start:40 #, fuzzy #| msgid "" #| "Do not stop the init script until after the package upgrade has been " @@ -9190,14 +9255,14 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:56 +#: dh_systemd_start:57 #, fuzzy #| msgid "Do not stop init script on upgrade." msgid "Do not stop service on upgrade." msgstr "No detiene el script de init durante una actualización." #. type: textblock -#: dh_systemd_start:60 +#: dh_systemd_start:61 msgid "" "Do not start the unit file after upgrades and after initial installation " "(the latter is only relevant for services without a corresponding init " @@ -9205,7 +9270,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_systemd_start:72 +#: dh_systemd_start:73 msgid "" "Note that B should be run after B so that " "it can detect corresponding SysV init scripts. The default sequence in B " diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index 25c2b26a..dc5f73ca 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2016-10-02 06:17+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: 2016-08-31 13:18+0200\n" "Last-Translator: Baptiste Jammet \n" "Language-Team: French \n" @@ -55,8 +55,8 @@ msgstr "debhelper - Ensemble d'outils regroupés sous le nom de debhelper" #: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 #: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 #: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 -#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 -#: dh_systemd_start:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 +#: dh_systemd_start:15 msgid "SYNOPSIS" msgstr "SYNOPSIS" @@ -85,7 +85,7 @@ msgstr "" #: dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 #: dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 #: dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 -#: dh_usrlocal:19 dh_systemd_enable:17 dh_systemd_start:18 +#: dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 msgid "DESCRIPTION" msgstr "DESCRIPTION" @@ -897,13 +897,13 @@ msgid "These are the available compatibility levels:" msgstr "Les niveaux de compatibilité sont les suivants :" #. type: =item -#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:89 msgid "v5" msgstr "v5" # type: textblock #. type: textblock -#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:91 msgid "This is the lowest supported compatibility level." msgstr "C'est le niveau de compatibilité le plus bas pris en charge." @@ -914,41 +914,49 @@ msgid "" "L." msgstr "" +# type: textblock +#. type: textblock +#: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +#: debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +msgid "This mode is deprecated." +msgstr "Ce mode est déconseillé." + #. type: =item -#: debhelper.pod:308 +#: debhelper.pod:310 msgid "v6" msgstr "v6" # type: textblock #. type: textblock -#: debhelper.pod:310 +#: debhelper.pod:312 msgid "Changes from v5 are:" msgstr "Les changements par rapport à la version 5 sont :" # type: =item #. type: =item -#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 -#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 -#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 -#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 -#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 -#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 -#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 -#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 -#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 -#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 -#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 -#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 -#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 -#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 -#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 -#: debhelper-obsolete-compat.pod:106 +#: debhelper.pod:316 debhelper.pod:321 debhelper.pod:327 debhelper.pod:333 +#: debhelper.pod:348 debhelper.pod:355 debhelper.pod:359 debhelper.pod:363 +#: debhelper.pod:378 debhelper.pod:382 debhelper.pod:390 debhelper.pod:395 +#: debhelper.pod:409 debhelper.pod:414 debhelper.pod:421 debhelper.pod:426 +#: debhelper.pod:431 debhelper.pod:435 debhelper.pod:441 debhelper.pod:446 +#: debhelper.pod:451 debhelper.pod:467 debhelper.pod:472 debhelper.pod:478 +#: debhelper.pod:485 debhelper.pod:491 debhelper.pod:496 debhelper.pod:502 +#: debhelper.pod:508 debhelper.pod:518 debhelper.pod:524 debhelper.pod:547 +#: debhelper.pod:554 debhelper.pod:560 debhelper.pod:566 debhelper.pod:582 +#: debhelper.pod:587 debhelper.pod:593 debhelper.pod:597 debhelper.pod:602 +#: debhelper.pod:614 debhelper.pod:622 debhelper-obsolete-compat.pod:43 +#: debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 +#: debhelper-obsolete-compat.pod:66 debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:76 debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:101 +#: debhelper-obsolete-compat.pod:106 debhelper-obsolete-compat.pod:110 msgid "-" msgstr "-" # type: textblock #. type: textblock -#: debhelper.pod:316 +#: debhelper.pod:318 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -958,7 +966,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:321 +#: debhelper.pod:323 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -970,7 +978,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:327 +#: debhelper.pod:329 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -982,7 +990,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:333 +#: debhelper.pod:335 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -992,19 +1000,19 @@ msgstr "" "de le faire." #. type: =item -#: debhelper.pod:338 +#: debhelper.pod:342 msgid "v7" msgstr "v7" # type: textblock #. type: textblock -#: debhelper.pod:340 +#: debhelper.pod:344 msgid "Changes from v6 are:" msgstr "Les changements par rapport à la version 6 sont :" # type: textblock #. type: textblock -#: debhelper.pod:346 +#: debhelper.pod:350 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -1020,7 +1028,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:353 +#: debhelper.pod:357 msgid "B will read F and delete files listed there." msgstr "" "B lit le répertoire F et supprime les fichiers qui y " @@ -1028,13 +1036,13 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:357 +#: debhelper.pod:361 msgid "B will delete toplevel F<*-stamp> files." msgstr "B supprime les fichiers F<*-stamp>." # type: textblock #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:365 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -1043,18 +1051,18 @@ msgstr "" "amont si rien n'est indiqué." #. type: =item -#: debhelper.pod:366 +#: debhelper.pod:372 msgid "v8" msgstr "v8" # type: textblock #. type: textblock -#: debhelper.pod:368 +#: debhelper.pod:374 msgid "Changes from v7 are:" msgstr "Les changements par rapport à la version 7 sont :" #. type: textblock -#: debhelper.pod:374 +#: debhelper.pod:380 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -1062,7 +1070,7 @@ msgstr "" "recevront des options inconnues." #. type: textblock -#: debhelper.pod:378 +#: debhelper.pod:384 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -1079,7 +1087,7 @@ msgstr "" "certains paquets." #. type: textblock -#: debhelper.pod:386 +#: debhelper.pod:392 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -1090,7 +1098,7 @@ msgstr "" "faut écrire « B », et non « B »" #. type: textblock -#: debhelper.pod:391 +#: debhelper.pod:397 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1099,18 +1107,18 @@ msgstr "" "F." #. type: =item -#: debhelper.pod:395 +#: debhelper.pod:403 msgid "v9" msgstr "v9" # type: textblock #. type: textblock -#: debhelper.pod:397 +#: debhelper.pod:405 msgid "Changes from v8 are:" msgstr "Les changements par rapport à la version 8 sont :" #. type: textblock -#: debhelper.pod:403 +#: debhelper.pod:411 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1120,7 +1128,7 @@ msgstr "" "libexecdir>." #. type: textblock -#: debhelper.pod:408 +#: debhelper.pod:416 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1134,7 +1142,7 @@ msgstr "" "les autres cibles." #. type: textblock -#: debhelper.pod:415 +#: debhelper.pod:423 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1143,7 +1151,7 @@ msgstr "" "la taille d'installation des paquets -dbg." #. type: textblock -#: debhelper.pod:420 +#: debhelper.pod:428 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1152,12 +1160,12 @@ msgstr "" "libexecdir> en utilisant B." #. type: textblock -#: debhelper.pod:425 +#: debhelper.pod:433 msgid "B does not default to enabling --with=python-support" msgstr "B n'active pas B<--with=python-support> par défaut." #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:437 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1167,7 +1175,7 @@ msgstr "" "sont déjà configurées." #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:443 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1176,7 +1184,7 @@ msgstr "" "buildflags> à F et F de Perl." #. type: textblock -#: debhelper.pod:440 +#: debhelper.pod:448 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1185,7 +1193,7 @@ msgstr "" "fonction de leur identifiant de construction (build-id)." #. type: textblock -#: debhelper.pod:445 +#: debhelper.pod:453 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1194,24 +1202,24 @@ msgstr "" "sortie est utilisée comme configuration." #. type: =item -#: debhelper.pod:450 +#: debhelper.pod:458 msgid "v10" msgstr "v10" # type: textblock #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:460 msgid "This is the recommended mode of operation." msgstr "C'est la version dont l'usage est recommandé." # type: textblock #. type: textblock -#: debhelper.pod:455 +#: debhelper.pod:463 msgid "Changes from v9 are:" msgstr "Les changements par rapport à la version 9 sont :" #. type: textblock -#: debhelper.pod:461 +#: debhelper.pod:469 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1220,7 +1228,7 @@ msgstr "" "script d'initialisation." #. type: textblock -#: debhelper.pod:466 +#: debhelper.pod:474 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1232,7 +1240,7 @@ msgstr "" "responsable)." #. type: textblock -#: debhelper.pod:472 +#: debhelper.pod:480 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1246,7 +1254,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:479 +#: debhelper.pod:487 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1256,7 +1264,7 @@ msgstr "" "B." #. type: textblock -#: debhelper.pod:485 +#: debhelper.pod:493 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1266,7 +1274,7 @@ msgstr "" "manager)." #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:498 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1278,7 +1286,7 @@ msgstr "" "parallel>." #. type: textblock -#: debhelper.pod:496 +#: debhelper.pod:504 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1289,7 +1297,7 @@ msgstr "" "cibles de réécritures à la place." #. type: textblock -#: debhelper.pod:502 +#: debhelper.pod:510 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1301,12 +1309,12 @@ msgstr "" "cas." #. type: textblock -#: debhelper.pod:506 +#: debhelper.pod:514 msgid "The main effects of this are:" msgstr "Les principales conséquences de cela sont :" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:520 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1317,7 +1325,7 @@ msgstr "" "(sans avoir à refaire un cycle complet de « clean & rebuild »)" #. type: textblock -#: debhelper.pod:518 +#: debhelper.pod:526 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1329,12 +1337,12 @@ msgstr "" "fonctionnera comme avant." #. type: textblock -#: debhelper.pod:523 +#: debhelper.pod:531 msgid "Example of where it can go wrong:" msgstr "Exemple de ce qui pourrait mal se passer :" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:533 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1346,7 +1354,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:528 +#: debhelper.pod:536 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1360,7 +1368,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:540 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1372,7 +1380,7 @@ msgstr "" "B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:541 +#: debhelper.pod:549 msgid "" "The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1386,7 +1394,7 @@ msgstr "" "de fichiers de guillemets)." #. type: textblock -#: debhelper.pod:548 +#: debhelper.pod:556 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1397,7 +1405,7 @@ msgstr "" "utiliser l'option B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:554 +#: debhelper.pod:562 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1407,7 +1415,7 @@ msgstr "" "certains paquets." #. type: textblock -#: debhelper.pod:560 +#: debhelper.pod:568 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1417,12 +1425,12 @@ msgstr "" "paquets." #. type: =item -#: debhelper.pod:566 +#: debhelper.pod:574 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:568 +#: debhelper.pod:576 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1431,12 +1439,12 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:578 msgid "Changes from v10 are:" msgstr "Les changements par rapport à la version 10 sont :" #. type: textblock -#: debhelper.pod:576 +#: debhelper.pod:584 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1444,14 +1452,22 @@ msgstr "" "B n'installe plus de fichier de menu. Les fichiers F sont toujours installés." +#. type: textblock +#: debhelper.pod:589 +msgid "" +"B no longer installs F or F files, nor " +"generates maintainer scripts for those files. Use B and " +"B instead." +msgstr "" + # type: =item #. type: textblock -#: debhelper.pod:581 +#: debhelper.pod:595 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "L'option B<-s> (B<--same-arch>) est supprimée." #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:599 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1459,7 +1475,7 @@ msgstr "" "l'avertissement d'obsolescence." #. type: textblock -#: debhelper.pod:590 +#: debhelper.pod:604 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F option." @@ -1480,17 +1496,50 @@ msgstr "" "utilisant l'option B<--mainpackage>." #. type: textblock -#: debhelper.pod:598 +#: debhelper.pod:612 msgid "Please remember to check/update your doc-base files." msgstr "Veuillez vérifier et mettre à jour vos fichiers doc-base." +#. type: textblock +#: debhelper.pod:616 +msgid "" +"B no longer creates debian/I directories unless " +"explicitly requested (or it has to create a subdirectory in it)." +msgstr "" + +#. type: textblock +#: debhelper.pod:620 +msgid "The vast majority of all packages will be unaffected by this change." +msgstr "" + +#. type: textblock +#: debhelper.pod:624 +msgid "" +"B no longer creates a stamp (or log) file to record whether the build " +"already ran or not. This means that unless upstream's build system " +"correctly tracks this, the build will be run twice (once for the \"build\" " +"target and once for the \"binary\" target)." +msgstr "" + +#. type: textblock +#: debhelper.pod:629 +msgid "" +"On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." +msgstr "" + +#. type: textblock +#: debhelper.pod:633 +msgid "The previous behaviour can restored by using B<--with build-stamp>" +msgstr "" + #. type: =head2 -#: debhelper.pod:604 +#: debhelper.pod:639 msgid "Participating in the open beta testing of new compat levels" msgstr "Participation au test des nouveaux modes de compatibilité" #. type: textblock -#: debhelper.pod:606 +#: debhelper.pod:641 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1500,7 +1549,7 @@ msgstr "" "« beta-tester »." #. type: textblock -#: debhelper.pod:610 +#: debhelper.pod:645 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1511,18 +1560,18 @@ msgstr "" "« open beta », le mode de compatibilité sera le mode stable le plus élevé." #. type: textblock -#: debhelper.pod:615 +#: debhelper.pod:650 msgid "Please consider the following before opting in:" msgstr "Veuillez vous souvenir de ces remarques avant de choisir :" #. type: =item -#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 -#: debhelper.pod:643 +#: debhelper.pod:654 debhelper.pod:659 debhelper.pod:666 debhelper.pod:672 +#: debhelper.pod:678 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:621 +#: debhelper.pod:656 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1531,7 +1580,7 @@ msgstr "" "fonctionnement d'un paquet (ou d'une des fonctionnalités)." #. type: textblock -#: debhelper.pod:626 +#: debhelper.pod:661 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1543,7 +1592,7 @@ msgstr "" "phase." #. type: textblock -#: debhelper.pod:633 +#: debhelper.pod:668 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1555,7 +1604,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:639 +#: debhelper.pod:674 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1566,7 +1615,7 @@ msgstr "" "pas recommandé pour les paquets souvent rétroportés." #. type: textblock -#: debhelper.pod:645 +#: debhelper.pod:680 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1575,7 +1624,7 @@ msgstr "" "compatibilité de votre paquet à une version stable." #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:685 msgid "Should you still be interested in the open beta testing, please run:" msgstr "" "Si vous êtes toujours intéressé par le test « open beta », veuillez exécuter " @@ -1583,7 +1632,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: debhelper.pod:652 +#: debhelper.pod:687 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1593,14 +1642,14 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:654 +#: debhelper.pod:689 msgid "You will also need to ensure that debian/control contains:" msgstr "" "Vous devrez aussi vous assurer que votre fichier debian/control contient :" # type: verbatim #. type: verbatim -#: debhelper.pod:656 +#: debhelper.pod:691 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1610,29 +1659,29 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:658 +#: debhelper.pod:693 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "Pour vous assurer que debhelper connaît le mode « beta-tester »." # type: =head1 #. type: =head1 -#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:695 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 -#: dh_systemd_enable:72 dh_systemd_start:65 +#: dh_systemd_enable:73 dh_systemd_start:66 msgid "NOTES" msgstr "REMARQUES" # type: =head2 #. type: =head2 -#: debhelper.pod:662 +#: debhelper.pod:697 msgid "Multiple binary package support" msgstr "Prise en charge de plusieurs paquets binaires" # type: textblock #. type: textblock -#: debhelper.pod:664 +#: debhelper.pod:699 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1652,7 +1701,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:672 +#: debhelper.pod:707 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1667,7 +1716,7 @@ msgstr "" "paquets énumérés dans le fichier de contrôle, avec les exceptions ci-dessous." #. type: textblock -#: debhelper.pod:678 +#: debhelper.pod:713 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:682 +#: debhelper.pod:717 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1693,13 +1742,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:687 +#: debhelper.pod:722 msgid "Automatic generation of Debian install scripts" msgstr "Génération automatique des scripts Debian d’installation" # type: textblock #. type: textblock -#: debhelper.pod:689 +#: debhelper.pod:724 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1717,7 +1766,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:731 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1727,7 +1776,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:734 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1738,7 +1787,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:702 +#: debhelper.pod:737 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1752,7 +1801,7 @@ msgstr "" "la commande set) :" #. type: verbatim -#: debhelper.pod:707 +#: debhelper.pod:742 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1785,13 +1834,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:720 +#: debhelper.pod:755 msgid "Automatic generation of miscellaneous dependencies." msgstr "Génération automatique des diverses dépendances." # type: textblock #. type: textblock -#: debhelper.pod:722 +#: debhelper.pod:757 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1811,7 +1860,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:730 +#: debhelper.pod:765 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1826,7 +1875,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:735 +#: debhelper.pod:770 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1840,13 +1889,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:740 +#: debhelper.pod:775 msgid "Package build directories" msgstr "Répertoires de construction du paquet" # type: textblock #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:777 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1857,7 +1906,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:745 +#: debhelper.pod:780 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1877,13 +1926,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: debhelper.pod:753 +#: debhelper.pod:788 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:755 +#: debhelper.pod:790 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1902,12 +1951,12 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:762 +#: debhelper.pod:797 msgid "ENVIRONMENT" msgstr "VARIABLES D'ENVIRONNEMENT" #. type: textblock -#: debhelper.pod:764 +#: debhelper.pod:799 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1924,13 +1973,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:772 +#: debhelper.pod:807 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:774 +#: debhelper.pod:809 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1941,12 +1990,12 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:777 +#: debhelper.pod:812 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:779 +#: debhelper.pod:814 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1964,13 +2013,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:786 +#: debhelper.pod:821 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:788 +#: debhelper.pod:823 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1981,25 +2030,25 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:791 +#: debhelper.pod:826 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:793 +#: debhelper.pod:828 msgid "Set to B<1> to enable no-act mode." msgstr "Mettre cette variable à B<1> pour activer le mode simulation (no-act)." # type: =item #. type: =item -#: debhelper.pod:795 +#: debhelper.pod:830 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:832 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -2008,7 +2057,7 @@ msgstr "" "les commandes debhelper." #. type: textblock -#: debhelper.pod:800 +#: debhelper.pod:835 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -2018,13 +2067,13 @@ msgstr "" # type: =item #. type: =item -#: debhelper.pod:803 +#: debhelper.pod:838 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:805 +#: debhelper.pod:840 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -2037,7 +2086,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:809 +#: debhelper.pod:844 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -2056,7 +2105,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper.pod:816 +#: debhelper.pod:851 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -2066,82 +2115,82 @@ msgstr "" # type: =head1 #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 -#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 -#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 -#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 -#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 -#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 -#: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 -#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 -#: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 -#: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 -#: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 -#: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 -#: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:244 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 +#: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 +#: dh_installcatalogs:123 dh_installchangelogs:238 dh_installcron:76 +#: dh_installdeb:215 dh_installdebconf:126 dh_installdirs:95 dh_installdocs:357 +#: dh_installemacsen:135 dh_installexamples:110 dh_installifupdown:70 +#: dh_installinfo:76 dh_installinit:331 dh_installlogcheck:79 +#: dh_installlogrotate:51 dh_installman:264 dh_installmanpages:196 +#: dh_installmenu:94 dh_installmime:61 dh_installmodules:107 dh_installpam:60 +#: dh_installppp:66 dh_installudev:99 dh_installwm:115 dh_installxfonts:90 +#: dh_link:146 dh_lintian:58 dh_listpackages:31 dh_makeshlibs:287 +#: dh_md5sums:105 dh_movefiles:159 dh_perl:154 dh_prep:61 dh_shlibdeps:153 +#: dh_strip:396 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 +#: dh_systemd_enable:264 dh_systemd_start:246 msgid "SEE ALSO" msgstr "VOIR AUSSI" # type: =item #. type: =item -#: debhelper.pod:825 +#: debhelper.pod:860 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:827 +#: debhelper.pod:862 msgid "A set of example F files that use debhelper." msgstr "" "Un ensemble d'exemples de fichiers F qui utilisent debhelper." # type: =item #. type: =item -#: debhelper.pod:829 +#: debhelper.pod:864 msgid "L" msgstr "L" # type: textblock #. type: textblock -#: debhelper.pod:831 +#: debhelper.pod:866 msgid "Debhelper web site." msgstr "Le site internet de debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 -#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 -#: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 -#: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 -#: dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 -#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 -#: dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 -#: dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 -#: dh_installman:272 dh_installmanpages:204 dh_installmenu:106 -#: dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 -#: dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 -#: dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 -#: dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 +#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 +#: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 +#: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 +#: dh_installchangelogs:244 dh_installcron:82 dh_installdeb:221 +#: dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 +#: dh_installemacsen:142 dh_installexamples:116 dh_installifupdown:76 +#: dh_installinfo:82 dh_installlogcheck:85 dh_installlogrotate:57 +#: dh_installman:270 dh_installmanpages:202 dh_installmenu:102 +#: dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 +#: dh_installudev:105 dh_installwm:121 dh_installxfonts:96 dh_link:152 +#: dh_lintian:66 dh_listpackages:37 dh_makeshlibs:293 dh_md5sums:111 +#: dh_movefiles:165 dh_perl:160 dh_prep:67 dh_shlibdeps:159 dh_strip:402 #: dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "AUTEUR" # type: textblock #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 -#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 -#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 -#: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 -#: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 -#: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 -#: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 -#: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 -#: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 -#: dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 -#: dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 +#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 +#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 +#: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 +#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 +#: dh_installemacsen:144 dh_installexamples:118 dh_installifupdown:78 +#: dh_installinfo:84 dh_installinit:339 dh_installlogrotate:59 +#: dh_installman:272 dh_installmanpages:204 dh_installmenu:104 +#: dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 +#: dh_installudev:107 dh_installwm:123 dh_installxfonts:98 dh_link:154 +#: dh_listpackages:39 dh_makeshlibs:295 dh_md5sums:113 dh_movefiles:167 +#: dh_prep:69 dh_shlibdeps:161 dh_strip:404 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "Joey Hess " @@ -2202,12 +2251,6 @@ msgstr "" "l'arborescence du premier paquet binaire énuméré dans le fichier F " "et « debian/I » pour tous les autres." -# type: textblock -#. type: textblock -#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 -msgid "This mode is deprecated." -msgstr "Ce mode est déconseillé." - #. type: =item #: debhelper-obsolete-compat.pod:30 msgid "v2" @@ -2267,13 +2310,13 @@ msgstr "" "comme un fichier de configuration." #. type: =item -#: debhelper-obsolete-compat.pod:58 +#: debhelper-obsolete-compat.pod:60 msgid "v4" msgstr "v4" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:60 +#: debhelper-obsolete-compat.pod:62 #, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v3 are:" @@ -2281,7 +2324,7 @@ msgstr "Les changements par rapport à la version 5 sont :" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:66 +#: debhelper-obsolete-compat.pod:68 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." @@ -2291,7 +2334,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:73 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." @@ -2301,7 +2344,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:76 +#: debhelper-obsolete-compat.pod:78 msgid "" "B will make all files in F directories and in F executable." @@ -2311,7 +2354,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:83 msgid "B will correct existing links to conform with policy." msgstr "" "B corrigera les liens existants pour les rendre conformes à la " @@ -2319,13 +2362,13 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:89 +#: debhelper-obsolete-compat.pod:93 msgid "Changes from v4 are:" msgstr "Les changements par rapport à la version 4 sont :" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:95 +#: debhelper-obsolete-compat.pod:99 msgid "Comments are ignored in debhelper config files." msgstr "" "Les commentaires sont ignorés dans les fichiers de configuration de " @@ -2333,7 +2376,7 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:99 +#: debhelper-obsolete-compat.pod:103 msgid "" "B now specifies the name of a package to put " "debugging symbols in, not the packages to take the symbols from." @@ -2344,13 +2387,13 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:104 +#: debhelper-obsolete-compat.pod:108 msgid "B skips installing empty files." msgstr "B saute l'installation des fichiers vides." # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:108 +#: debhelper-obsolete-compat.pod:112 msgid "B errors out if wildcards expand to nothing." msgstr "" "B génère des erreurs si les jokers (wildcards) ne correspondent " @@ -2358,36 +2401,36 @@ msgstr "" # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 -#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 -#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:246 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 +#: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 +#: dh_installcron:78 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 +#: dh_installdocs:359 dh_installexamples:112 dh_installifupdown:72 +#: dh_installinfo:78 dh_installinit:333 dh_installlogcheck:81 +#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 +#: dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 +#: dh_installudev:101 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:289 dh_md5sums:107 dh_movefiles:161 +#: dh_perl:156 dh_prep:63 dh_strip:398 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:248 msgid "L" msgstr "L" # type: =head1 #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 -#: dh_systemd_start:248 +#: debhelper-obsolete-compat.pod:122 dh_installinit:337 dh_systemd_enable:268 +#: dh_systemd_start:250 msgid "AUTHORS" msgstr "AUTEURS" #. type: textblock -#: debhelper-obsolete-compat.pod:120 +#: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:122 +#: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" msgstr "" @@ -2482,7 +2525,7 @@ msgstr "" #: dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 #: dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 #: dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 -#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:55 dh_systemd_start:30 +#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:56 dh_systemd_start:31 msgid "OPTIONS" msgstr "OPTIONS" @@ -3177,19 +3220,19 @@ msgstr "" # type: textblock #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 -#: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 -#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 -#: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 -#: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 -#: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 -#: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 -#: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 -#: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 -#: dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 -#: dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 -#: dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 +#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 +#: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 +#: dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 +#: dh_installemacsen:140 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:335 dh_installlogrotate:55 +#: dh_installman:268 dh_installmanpages:200 dh_installmenu:100 +#: dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:103 dh_installwm:119 dh_installxfonts:94 dh_link:150 +#: dh_lintian:62 dh_listpackages:35 dh_makeshlibs:291 dh_md5sums:109 +#: dh_movefiles:163 dh_perl:158 dh_prep:65 dh_shlibdeps:157 dh_strip:400 +#: dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "Ce programme fait partie de debhelper." @@ -3583,15 +3626,6 @@ msgstr "" "Si la variable d'environnement B contient B, " "aucun test ne sera exécuté." -#. type: textblock -#: dh_auto_test:51 -msgid "" -"dh_auto_test does not run the test suite when a package is being cross " -"compiled." -msgstr "" -"B n'exécute pas le jeu de tests lorsqu'un paquet est compilé " -"de façon croisée (« cross-compile »)." - # type: textblock #. type: textblock #: dh_bugfiles:5 @@ -3631,7 +3665,7 @@ msgstr "" #: dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 #: dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 #: dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 -#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:38 +#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:39 msgid "FILES" msgstr "FICHIERS" @@ -3720,7 +3754,7 @@ msgstr "F" # type: textblock #. type: textblock -#: dh_bugfiles:135 dh_lintian:62 +#: dh_bugfiles:135 dh_lintian:60 msgid "L" msgstr "L" @@ -4707,13 +4741,13 @@ msgstr "" # type: =head1 #. type: =head1 -#: dh_install:303 +#: dh_install:301 msgid "LIMITATIONS" msgstr "LIMITES" # type: verbatim #. type: textblock -#: dh_install:305 +#: dh_install:303 msgid "" "B cannot rename files or directories, it can only install them " "with the names they already have into wherever you want in the package build " @@ -4724,7 +4758,7 @@ msgstr "" "mais avec les noms qu'ils possèdent déjà." #. type: textblock -#: dh_install:309 +#: dh_install:307 msgid "" "However, renaming can be achieved by using B with compatibility " "level 9 or later. An example debian/I.install file using B.install utilisant B ressemblerait à :" #. type: verbatim -#: dh_install:313 +#: dh_install:311 #, no-wrap msgid "" " #!/usr/bin/dh-exec\n" @@ -4747,12 +4781,12 @@ msgstr "" "\n" #. type: textblock -#: dh_install:316 +#: dh_install:314 msgid "Please remember the following three things:" msgstr "Veuillez vous souvenir de ces trois remarques :" #. type: =item -#: dh_install:320 +#: dh_install:318 msgid "" "* The package must be using compatibility level 9 or later (see " "L)" @@ -4761,12 +4795,12 @@ msgstr "" "L) ;" #. type: =item -#: dh_install:322 +#: dh_install:320 msgid "* The package will need a build-dependency on dh-exec." msgstr "* Le paquet doit contenir une dépendance de construction sur dh_exec ;" #. type: =item -#: dh_install:324 +#: dh_install:322 msgid "* The install file must be marked as executable." msgstr "* Le fichier install doit être marqué comme exécutable." @@ -4880,13 +4914,13 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installcatalogs:128 +#: dh_installcatalogs:127 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: dh_installcatalogs:132 +#: dh_installcatalogs:131 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " @@ -5120,7 +5154,7 @@ msgstr "" #. type: =item #: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 #: dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 -#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:63 +#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:64 msgid "B<--name=>I" msgstr "B<--name=>I" @@ -6013,7 +6047,7 @@ msgstr "" "B et B." #. type: textblock -#: dh_installemacsen:145 +#: dh_installemacsen:137 msgid "L L" msgstr "" "L L" @@ -6302,33 +6336,42 @@ msgstr "" # type: =item #. type: =item -#: dh_installinit:47 dh_systemd_enable:42 +#: dh_installinit:47 dh_systemd_enable:43 msgid "debian/I.service" msgstr "debian/I.service" # type: textblock #. type: textblock -#: dh_installinit:49 dh_systemd_enable:44 +#: dh_installinit:49 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into lib/systemd/system/I." +#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " -"in the package build directory." +"in the package build directory. Only used in compat levels 10 and below." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " "sous lib/systemd/system/I.service." # type: =item #. type: =item -#: dh_installinit:52 dh_systemd_enable:47 +#: dh_installinit:52 dh_systemd_enable:48 msgid "debian/I.tmpfile" msgstr "debian/I.tmpfile" # type: textblock #. type: textblock -#: dh_installinit:54 dh_systemd_enable:49 +#: dh_installinit:54 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " +#| "in the package build directory. (The tmpfiles.d mechanism is currently " +#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " -"used by systemd.)" +"used by systemd.) Only used in compat levels 10 and below." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " "sous usr/lib/tmpfiles.d/I.conf (les mécanismes tmpfiles.d ne sont " @@ -6417,7 +6460,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installinit:92 dh_systemd_start:42 +#: dh_installinit:92 dh_systemd_start:43 msgid "" "This can be useful for daemons that should not have a possibly long downtime " "during upgrade. But you should make sure that the daemon will not get " @@ -6431,12 +6474,12 @@ msgstr "" # type: =item #. type: =item -#: dh_installinit:97 dh_systemd_start:47 +#: dh_installinit:97 dh_systemd_start:48 msgid "B<--no-restart-after-upgrade>" msgstr "B<--no-restart-after-upgrade>" #. type: textblock -#: dh_installinit:99 dh_systemd_start:49 +#: dh_installinit:99 dh_systemd_start:50 msgid "" "Undo a previous B<--restart-after-upgrade> (or the default of compat 10). " "If no other options are given, this will cause the service to be stopped in " @@ -6448,7 +6491,7 @@ msgstr "" # type: =item #. type: =item -#: dh_installinit:104 dh_systemd_start:54 +#: dh_installinit:104 dh_systemd_start:55 msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" @@ -6460,7 +6503,7 @@ msgstr "N'arrête pas le script init lors d'une mise à jour." # type: =item #. type: =item -#: dh_installinit:108 dh_systemd_start:58 +#: dh_installinit:108 dh_systemd_start:59 msgid "B<--no-start>" msgstr "B<--no-start>" @@ -6586,12 +6629,12 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installinit:353 +#: dh_installinit:341 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:355 +#: dh_installinit:343 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -6680,7 +6723,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: dh_installlogcheck:85 +#: dh_installlogcheck:83 #, no-wrap msgid "" "This program is a part of debhelper.\n" @@ -6691,7 +6734,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installlogcheck:89 +#: dh_installlogcheck:87 msgid "Jon Middleton " msgstr "Jon Middleton " @@ -7117,7 +7160,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_installmenu:100 +#: dh_installmenu:96 msgid "L L L" msgstr "L L L" @@ -7847,13 +7890,13 @@ msgstr "" # type: textblock #. type: textblock -#: dh_lintian:66 +#: dh_lintian:64 msgid "L" msgstr "L" # type: textblock #. type: textblock -#: dh_lintian:70 +#: dh_lintian:68 msgid "Steve Robbins " msgstr "Steve Robbins " @@ -8783,7 +8826,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_shlibdeps:159 +#: dh_shlibdeps:155 msgid "L, L" msgstr "L, L" @@ -9233,7 +9276,7 @@ msgstr "dh_systemd_enable - Activer ou désactiver les fichiers unit de systemd" # type: textblock #. type: textblock -#: dh_systemd_enable:15 +#: dh_systemd_enable:16 msgid "" "B [S>] [B<--no-enable>] [B<--" "name=>I] [S ...>]" @@ -9243,7 +9286,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:19 +#: dh_systemd_enable:20 msgid "" "B is a debhelper program that is responsible for enabling " "and disabling systemd unit files." @@ -9252,7 +9295,7 @@ msgstr "" "l'activation et la désactivation des fichiers unit de systemd." #. type: textblock -#: dh_systemd_enable:22 +#: dh_systemd_enable:23 msgid "" "In the simple case, it finds all unit files installed by a package (e.g. " "bacula-fd.service) and enables them. It is not necessary that the machine " @@ -9266,7 +9309,7 @@ msgstr "" "de sysvinit à systemd, et réciproquement." #. type: textblock -#: dh_systemd_enable:27 +#: dh_systemd_enable:28 msgid "" "In the complex case, you can call B and " "B manually (by overwriting the debian/rules targets) and " @@ -9285,7 +9328,7 @@ msgstr "" "inutile." #. type: textblock -#: dh_systemd_enable:34 +#: dh_systemd_enable:35 msgid "" "For only generating blocks for specific service files, you need to pass them " "as arguments, e.g. B and " @@ -9295,14 +9338,36 @@ msgstr "" "vous devez les passer comme arguments. Par exemple B et B." +# type: textblock +#. type: textblock +#: dh_systemd_enable:45 +msgid "" +"If this exists, it is installed into lib/systemd/system/I.service " +"in the package build directory." +msgstr "" +"S'il existe, il est installé dans le répertoire de construction du paquet, " +"sous lib/systemd/system/I.service." + +# type: textblock +#. type: textblock +#: dh_systemd_enable:50 +msgid "" +"If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " +"the package build directory. (The tmpfiles.d mechanism is currently only " +"used by systemd.)" +msgstr "" +"S'il existe, il est installé dans le répertoire de construction du paquet, " +"sous usr/lib/tmpfiles.d/I.conf (les mécanismes tmpfiles.d ne sont " +"pour l'instant utilisés que par systemd)." + # type: =item #. type: =item -#: dh_systemd_enable:59 +#: dh_systemd_enable:60 msgid "B<--no-enable>" msgstr "B<--no-enable>" #. type: textblock -#: dh_systemd_enable:61 +#: dh_systemd_enable:62 msgid "" "Just disable the service(s) on purge, but do not enable them by default." msgstr "" @@ -9311,7 +9376,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:65 +#: dh_systemd_enable:66 msgid "" "Install the service file as I instead of the default filename, " "which is the I. When this parameter is used, " @@ -9325,7 +9390,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_enable:74 dh_systemd_start:67 +#: dh_systemd_enable:75 dh_systemd_start:68 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command (with the same arguments). Otherwise, it " @@ -9338,7 +9403,7 @@ msgstr "" "scripts de maintenance du paquet." #. type: textblock -#: dh_systemd_enable:79 +#: dh_systemd_enable:80 msgid "" "Note that B should be run before B. The " "default sequence in B does the right thing, this note is only relevant " @@ -9349,12 +9414,12 @@ msgstr "" "n'est valable que lorsque B est appelé manuellement." #. type: textblock -#: dh_systemd_enable:285 +#: dh_systemd_enable:266 msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:250 +#: dh_systemd_enable:270 dh_systemd_start:252 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -9366,7 +9431,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:16 +#: dh_systemd_start:17 msgid "" "B [S>] [B<--restart-after-upgrade>] " "[B<--no-stop-on-upgrade>] [S ...>]" @@ -9376,7 +9441,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:20 +#: dh_systemd_start:21 msgid "" "B is a debhelper program that is responsible for starting/" "stopping or restarting systemd unit files in case no corresponding sysv init " @@ -9387,7 +9452,7 @@ msgstr "" "aucun script d'init SysV n'est disponible." #. type: textblock -#: dh_systemd_start:24 +#: dh_systemd_start:25 msgid "" "As with B, the unit file is stopped before upgrades and " "started afterwards (unless B<--restart-after-upgrade> is specified, in which " @@ -9404,13 +9469,13 @@ msgstr "" # type: =item #. type: =item -#: dh_systemd_start:34 +#: dh_systemd_start:35 msgid "B<--restart-after-upgrade>" msgstr "B<--restart-after-upgrade>" # type: textblock #. type: textblock -#: dh_systemd_start:36 +#: dh_systemd_start:37 msgid "" "Do not stop the unit file until after the package upgrade has been " "completed. This is the default behaviour in compat 10." @@ -9420,7 +9485,7 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:39 +#: dh_systemd_start:40 msgid "" "In earlier compat levels the default was to stop the unit file in the " "F, and start it again in the F." @@ -9431,12 +9496,12 @@ msgstr "" # type: textblock #. type: textblock -#: dh_systemd_start:56 +#: dh_systemd_start:57 msgid "Do not stop service on upgrade." msgstr "N'arrête pas le service lors d'une mise à jour." #. type: textblock -#: dh_systemd_start:60 +#: dh_systemd_start:61 msgid "" "Do not start the unit file after upgrades and after initial installation " "(the latter is only relevant for services without a corresponding init " @@ -9447,7 +9512,7 @@ msgstr "" "n'ayant pas de script init correspondant)." #. type: textblock -#: dh_systemd_start:72 +#: dh_systemd_start:73 msgid "" "Note that B should be run after B so that " "it can detect corresponding SysV init scripts. The default sequence in B " @@ -9466,6 +9531,13 @@ msgstr "" "Ce niveau de compatibilité est en phase de test ; des changements peuvent " "encore survenir." +#~ msgid "" +#~ "dh_auto_test does not run the test suite when a package is being cross " +#~ "compiled." +#~ msgstr "" +#~ "B n'exécute pas le jeu de tests lorsqu'un paquet est " +#~ "compilé de façon croisée (« cross-compile »)." + # type: textblock #~ msgid "" #~ "This used to be a smarter version of the B<-a> flag, but the B<-a> flag " diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index 45644d89..ee35453e 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20160814+unreleased\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-10-02 06:17+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: 2016-08-25 11:59+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -54,8 +54,8 @@ msgstr "debhelper - a suite de ferramentas debhelper" #: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 #: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 #: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 -#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:13 -#: dh_systemd_start:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 +#: dh_systemd_start:15 msgid "SYNOPSIS" msgstr "RESUMO" @@ -82,7 +82,7 @@ msgstr "" #: dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 #: dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 #: dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 -#: dh_usrlocal:19 dh_systemd_enable:17 dh_systemd_start:18 +#: dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 msgid "DESCRIPTION" msgstr "DESCRIÇÃO" @@ -822,12 +822,12 @@ msgid "These are the available compatibility levels:" msgstr "Estes são os níveis de compatibilidade disponíveis:" #. type: =item -#: debhelper.pod:301 debhelper-obsolete-compat.pod:85 +#: debhelper.pod:301 debhelper-obsolete-compat.pod:89 msgid "v5" msgstr "v5" #. type: textblock -#: debhelper.pod:303 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:303 debhelper-obsolete-compat.pod:91 msgid "This is the lowest supported compatibility level." msgstr "Este é o nível de compatibilidade mais baixo suportado." @@ -838,38 +838,45 @@ msgid "" "L." msgstr "" +#. type: textblock +#: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 +#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 +#: debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +msgid "This mode is deprecated." +msgstr "Este modo está descontinuado." + #. type: =item -#: debhelper.pod:308 +#: debhelper.pod:310 msgid "v6" msgstr "v6" #. type: textblock -#: debhelper.pod:310 +#: debhelper.pod:312 msgid "Changes from v5 are:" msgstr "As alterações a partir de v5 são:" #. type: =item -#: debhelper.pod:314 debhelper.pod:319 debhelper.pod:325 debhelper.pod:331 -#: debhelper.pod:344 debhelper.pod:351 debhelper.pod:355 debhelper.pod:359 -#: debhelper.pod:372 debhelper.pod:376 debhelper.pod:384 debhelper.pod:389 -#: debhelper.pod:401 debhelper.pod:406 debhelper.pod:413 debhelper.pod:418 -#: debhelper.pod:423 debhelper.pod:427 debhelper.pod:433 debhelper.pod:438 -#: debhelper.pod:443 debhelper.pod:459 debhelper.pod:464 debhelper.pod:470 -#: debhelper.pod:477 debhelper.pod:483 debhelper.pod:488 debhelper.pod:494 -#: debhelper.pod:500 debhelper.pod:510 debhelper.pod:516 debhelper.pod:539 -#: debhelper.pod:546 debhelper.pod:552 debhelper.pod:558 debhelper.pod:574 -#: debhelper.pod:579 debhelper.pod:583 debhelper.pod:588 -#: debhelper-obsolete-compat.pod:43 debhelper-obsolete-compat.pod:48 -#: debhelper-obsolete-compat.pod:52 debhelper-obsolete-compat.pod:64 -#: debhelper-obsolete-compat.pod:69 debhelper-obsolete-compat.pod:74 -#: debhelper-obsolete-compat.pod:79 debhelper-obsolete-compat.pod:93 -#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:102 -#: debhelper-obsolete-compat.pod:106 +#: debhelper.pod:316 debhelper.pod:321 debhelper.pod:327 debhelper.pod:333 +#: debhelper.pod:348 debhelper.pod:355 debhelper.pod:359 debhelper.pod:363 +#: debhelper.pod:378 debhelper.pod:382 debhelper.pod:390 debhelper.pod:395 +#: debhelper.pod:409 debhelper.pod:414 debhelper.pod:421 debhelper.pod:426 +#: debhelper.pod:431 debhelper.pod:435 debhelper.pod:441 debhelper.pod:446 +#: debhelper.pod:451 debhelper.pod:467 debhelper.pod:472 debhelper.pod:478 +#: debhelper.pod:485 debhelper.pod:491 debhelper.pod:496 debhelper.pod:502 +#: debhelper.pod:508 debhelper.pod:518 debhelper.pod:524 debhelper.pod:547 +#: debhelper.pod:554 debhelper.pod:560 debhelper.pod:566 debhelper.pod:582 +#: debhelper.pod:587 debhelper.pod:593 debhelper.pod:597 debhelper.pod:602 +#: debhelper.pod:614 debhelper.pod:622 debhelper-obsolete-compat.pod:43 +#: debhelper-obsolete-compat.pod:48 debhelper-obsolete-compat.pod:52 +#: debhelper-obsolete-compat.pod:66 debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:76 debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:97 debhelper-obsolete-compat.pod:101 +#: debhelper-obsolete-compat.pod:106 debhelper-obsolete-compat.pod:110 msgid "-" msgstr "-" #. type: textblock -#: debhelper.pod:316 +#: debhelper.pod:318 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." @@ -878,7 +885,7 @@ msgstr "" "fragmentos em ordem reversa para os scripts F e F." #. type: textblock -#: debhelper.pod:321 +#: debhelper.pod:323 msgid "" "B will install a slave manpage link for F, if it sees the man page in F in the package build " @@ -889,7 +896,7 @@ msgstr "" "compilação do pacote." #. type: textblock -#: debhelper.pod:327 +#: debhelper.pod:329 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -900,7 +907,7 @@ msgstr "" "como B. Mas agora fá-lo." #. type: textblock -#: debhelper.pod:333 +#: debhelper.pod:335 msgid "" "B allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." @@ -910,17 +917,17 @@ msgstr "" "se em silêncio a fazer isto." #. type: =item -#: debhelper.pod:338 +#: debhelper.pod:342 msgid "v7" msgstr "v7" #. type: textblock -#: debhelper.pod:340 +#: debhelper.pod:344 msgid "Changes from v6 are:" msgstr "As alterações a partir de v6 são:" #. type: textblock -#: debhelper.pod:346 +#: debhelper.pod:350 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -935,17 +942,17 @@ msgstr "" "nenhuns parâmetros especiais." #. type: textblock -#: debhelper.pod:353 +#: debhelper.pod:357 msgid "B will read F and delete files listed there." msgstr "B irá ler F e apagar os ficheiros listados lá." #. type: textblock -#: debhelper.pod:357 +#: debhelper.pod:361 msgid "B will delete toplevel F<*-stamp> files." msgstr "B irá apagar ficheiros F<*-stamp> do nível de topo." #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:365 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." @@ -954,17 +961,17 @@ msgstr "" "alterações da origem se nenhum for especificado." #. type: =item -#: debhelper.pod:366 +#: debhelper.pod:372 msgid "v8" msgstr "v8" #. type: textblock -#: debhelper.pod:368 +#: debhelper.pod:374 msgid "Changes from v7 are:" msgstr "As alterações a partir de v7 são:" #. type: textblock -#: debhelper.pod:374 +#: debhelper.pod:380 msgid "" "Commands will fail rather than warning when they are passed unknown options." msgstr "" @@ -972,7 +979,7 @@ msgstr "" "opções desconhecidas." #. type: textblock -#: debhelper.pod:378 +#: debhelper.pod:384 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -988,7 +995,7 @@ msgstr "" "pacotes falhem a compilar." #. type: textblock -#: debhelper.pod:386 +#: debhelper.pod:392 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"B" @@ -999,7 +1006,7 @@ msgstr "" "--foo>\", e não \"B" #. type: textblock -#: debhelper.pod:391 +#: debhelper.pod:397 msgid "" "BI<*> prefer to use Perl's B in preference to " "F." @@ -1008,17 +1015,17 @@ msgstr "" "F." #. type: =item -#: debhelper.pod:395 +#: debhelper.pod:403 msgid "v9" msgstr "v9" #. type: textblock -#: debhelper.pod:397 +#: debhelper.pod:405 msgid "Changes from v8 are:" msgstr "As alterações a partir de v8 são:" #. type: textblock -#: debhelper.pod:403 +#: debhelper.pod:411 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." @@ -1027,7 +1034,7 @@ msgstr "" "directórios de multi-arquitectura ao autoconf em --libdir e --libexecdir." #. type: textblock -#: debhelper.pod:408 +#: debhelper.pod:416 msgid "" "dh is aware of the usual dependencies between targets in debian/rules. So, " "\"dh binary\" will run any build, build-arch, build-indep, install, etc " @@ -1041,7 +1048,7 @@ msgstr "" "explícitas em outras metas." #. type: textblock -#: debhelper.pod:415 +#: debhelper.pod:423 msgid "" "B compresses debugging symbol files to reduce the installed size " "of -dbg packages." @@ -1050,7 +1057,7 @@ msgstr "" "tamanho instalado dos pacotes -dbg." #. type: textblock -#: debhelper.pod:420 +#: debhelper.pod:428 msgid "" "B does not include the source package name in --" "libexecdir when using autoconf." @@ -1059,12 +1066,12 @@ msgstr "" "quando usa autoconf." #. type: textblock -#: debhelper.pod:425 +#: debhelper.pod:433 msgid "B does not default to enabling --with=python-support" msgstr "B não tem por predefinição a activação de --with=python-support" #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:437 msgid "" "All of the BI<*> debhelper programs and B set environment " "variables listed by B, unless they are already set." @@ -1074,7 +1081,7 @@ msgstr "" "definidas." #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:443 msgid "" "B passes B CFLAGS, CPPFLAGS, and LDFLAGS " "to perl F and F" @@ -1083,7 +1090,7 @@ msgstr "" "para F e F de perl." #. type: textblock -#: debhelper.pod:440 +#: debhelper.pod:448 msgid "" "B puts separated debug symbols in a location based on their build-" "id." @@ -1092,7 +1099,7 @@ msgstr "" "seu build-id." #. type: textblock -#: debhelper.pod:445 +#: debhelper.pod:453 msgid "" "Executable debhelper config files are run and their output used as the " "configuration." @@ -1101,22 +1108,22 @@ msgstr "" "resultados usados como configuração." #. type: =item -#: debhelper.pod:450 +#: debhelper.pod:458 msgid "v10" msgstr "v10" #. type: textblock -#: debhelper.pod:452 +#: debhelper.pod:460 msgid "This is the recommended mode of operation." msgstr "Este é o modo de operação recomendado." #. type: textblock -#: debhelper.pod:455 +#: debhelper.pod:463 msgid "Changes from v9 are:" msgstr "As alterações a partir de v9 são:" #. type: textblock -#: debhelper.pod:461 +#: debhelper.pod:469 msgid "" "B will no longer install a file named debian/I as " "an init script." @@ -1125,7 +1132,7 @@ msgstr "" "como um script de iniciação (init)." #. type: textblock -#: debhelper.pod:466 +#: debhelper.pod:474 msgid "" "B will error out if it detects links created with --link-doc " "between packages of architecture \"all\" and non-\"all\" as it breaks " @@ -1136,7 +1143,7 @@ msgstr "" "binNMUs." #. type: textblock -#: debhelper.pod:472 +#: debhelper.pod:480 msgid "" "B no longer creates the package build directory when skipping running " "debhelper commands. This will not affect packages that only build with " @@ -1149,7 +1156,7 @@ msgstr "" "incluídos no debhelper." #. type: textblock -#: debhelper.pod:479 +#: debhelper.pod:487 msgid "" "B no longer installs a maintainer-provided debian/I." "shlibs file. This is now done by B instead." @@ -1159,7 +1166,7 @@ msgstr "" "B." #. type: textblock -#: debhelper.pod:485 +#: debhelper.pod:493 msgid "" "B refuses to create a broken package if no man page can be " "found (required to register for the x-window-manager alternative)." @@ -1169,7 +1176,7 @@ msgstr "" "window-manager)." #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:498 msgid "" "Debhelper will default to B<--parallel> for all buildsystems that support " "parallel building. This can be disabled by using either B<--no-parallel> or " @@ -1180,7 +1187,7 @@ msgstr "" "usando B<--no-parallel> ou passando B<--max-parallel> com o valor de 1." #. type: textblock -#: debhelper.pod:496 +#: debhelper.pod:504 msgid "" "The B command will not accept any of the deprecated \"manual sequence " "control\" parameters (B<--before>, B<--after>, etc.). Please use override " @@ -1191,7 +1198,7 @@ msgstr "" "utilize metas de sobreposição em vez destes." #. type: textblock -#: debhelper.pod:502 +#: debhelper.pod:510 msgid "" "The B command will no longer use log files to track which commands have " "been run. The B command I keeps track of whether it already ran " @@ -1202,12 +1209,12 @@ msgstr "" "a sequência de \"compilação\" e salta-a se já o fez." #. type: textblock -#: debhelper.pod:506 +#: debhelper.pod:514 msgid "The main effects of this are:" msgstr "Os principais efeitos disto são:" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:520 msgid "" "With this, it is now easier to debug the I or/and I " "sequences because they can now trivially be re-run (without having to do a " @@ -1218,7 +1225,7 @@ msgstr "" "fazer um ciclo de \"limpar e recompilar\" completo." #. type: textblock -#: debhelper.pod:518 +#: debhelper.pod:526 msgid "" "The main caveat is that B now only keeps track of what happened in a " "single override target. When all the calls to a given B command " @@ -1230,12 +1237,12 @@ msgstr "" "funcionar como dantes." #. type: textblock -#: debhelper.pod:523 +#: debhelper.pod:531 msgid "Example of where it can go wrong:" msgstr "Exemplo de onde pode falhar:" #. type: verbatim -#: debhelper.pod:525 +#: debhelper.pod:533 #, no-wrap msgid "" " override_dh_foo:\n" @@ -1247,7 +1254,7 @@ msgstr "" "\n" #. type: verbatim -#: debhelper.pod:528 +#: debhelper.pod:536 #, no-wrap msgid "" " override_dh_bar:\n" @@ -1261,7 +1268,7 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:540 msgid "" "In this case, the call to B will I include I, since B was run in a separate override target. This " @@ -1273,7 +1280,7 @@ msgstr "" "B<-a>, B<-i>, etc." #. type: textblock -#: debhelper.pod:541 +#: debhelper.pod:549 msgid "" "The B command now shell-escapes the lines in the " "F config file. This was the original intent but it did not " @@ -1286,7 +1293,7 @@ msgstr "" "de shell\" incompleto (ex. ao mencionar nomes de ficheiros)." #. type: textblock -#: debhelper.pod:548 +#: debhelper.pod:556 msgid "" "The B command now defaults to B<--restart-after-upgrade>. " "For packages needing the previous behaviour, please use B<--no-restart-after-" @@ -1297,7 +1304,7 @@ msgstr "" "B<--no-restart-after-upgrade>." #. type: textblock -#: debhelper.pod:554 +#: debhelper.pod:562 msgid "" "The B sequence is now enabled by default. Please pass B<--" "without autoreconf> to B if this is not desirable for a given package" @@ -1307,7 +1314,7 @@ msgstr "" "determinado pacote" #. type: textblock -#: debhelper.pod:560 +#: debhelper.pod:568 msgid "" "The B sequence is now enabled by default. Please pass B<--without " "systemd> to B if this is not desirable for a given package." @@ -1317,12 +1324,12 @@ msgstr "" "pacote." #. type: =item -#: debhelper.pod:566 +#: debhelper.pod:574 msgid "v11" msgstr "v11" #. type: textblock -#: debhelper.pod:568 +#: debhelper.pod:576 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -1330,12 +1337,12 @@ msgstr "" "cuidado." #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:578 msgid "Changes from v10 are:" msgstr "As alterações a partir de v10 são:" #. type: textblock -#: debhelper.pod:576 +#: debhelper.pod:584 msgid "" "B no longer installs F files. The F " "files are still installed." @@ -1344,12 +1351,20 @@ msgstr "" "method> continuam a ser instalados." #. type: textblock -#: debhelper.pod:581 +#: debhelper.pod:589 +msgid "" +"B no longer installs F or F files, nor " +"generates maintainer scripts for those files. Use B and " +"B instead." +msgstr "" + +#. type: textblock +#: debhelper.pod:595 msgid "The B<-s> (B<--same-arch>) option is removed." msgstr "A opção B<-s> (B<--same-arch>) foi removida." #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:599 msgid "" "Invoking B now causes an error instead of a deprecation warning." msgstr "" @@ -1357,7 +1372,7 @@ msgstr "" "descontinuação." #. type: textblock -#: debhelper.pod:590 +#: debhelper.pod:604 msgid "" "B now installs user-supplied documentation (e.g. debian/" "I.docs) into F rather than F por predefinição como recomendado por Debian Policy 3.9.7." #. type: textblock -#: debhelper.pod:595 +#: debhelper.pod:609 msgid "" "If you need the old behaviour, it can be emulated by using the B<--" "mainpackage> option." @@ -1377,18 +1392,51 @@ msgstr "" "opção B<--mainpackage>." #. type: textblock -#: debhelper.pod:598 +#: debhelper.pod:612 msgid "Please remember to check/update your doc-base files." msgstr "" "Por favor lembre-se de verificar/actualizar os seus ficheiros doc-base." +#. type: textblock +#: debhelper.pod:616 +msgid "" +"B no longer creates debian/I directories unless " +"explicitly requested (or it has to create a subdirectory in it)." +msgstr "" + +#. type: textblock +#: debhelper.pod:620 +msgid "The vast majority of all packages will be unaffected by this change." +msgstr "" + +#. type: textblock +#: debhelper.pod:624 +msgid "" +"B no longer creates a stamp (or log) file to record whether the build " +"already ran or not. This means that unless upstream's build system " +"correctly tracks this, the build will be run twice (once for the \"build\" " +"target and once for the \"binary\" target)." +msgstr "" + +#. type: textblock +#: debhelper.pod:629 +msgid "" +"On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." +msgstr "" + +#. type: textblock +#: debhelper.pod:633 +msgid "The previous behaviour can restored by using B<--with build-stamp>" +msgstr "" + #. type: =head2 -#: debhelper.pod:604 +#: debhelper.pod:639 msgid "Participating in the open beta testing of new compat levels" msgstr "Participar no teste beta aberto dos novos níveis de compatibilidade" #. type: textblock -#: debhelper.pod:606 +#: debhelper.pod:641 msgid "" "It is possible to opt-in to the open beta testing of new compat levels. " "This is done by setting the compat level to the string \"beta-tester\"." @@ -1398,7 +1446,7 @@ msgstr "" "string \"beta-tester\"." #. type: textblock -#: debhelper.pod:610 +#: debhelper.pod:645 msgid "" "Packages using this compat level will automatically be upgraded to the " "highest compatibility level in open beta. In periods without any open beta " @@ -1410,18 +1458,18 @@ msgstr "" "o nível de compatibilidade estável mais alto." #. type: textblock -#: debhelper.pod:615 +#: debhelper.pod:650 msgid "Please consider the following before opting in:" msgstr "Por favor considere o seguinte antes de decidir como optar:" #. type: =item -#: debhelper.pod:619 debhelper.pod:624 debhelper.pod:631 debhelper.pod:637 -#: debhelper.pod:643 +#: debhelper.pod:654 debhelper.pod:659 debhelper.pod:666 debhelper.pod:672 +#: debhelper.pod:678 msgid "*" msgstr "*" #. type: textblock -#: debhelper.pod:621 +#: debhelper.pod:656 msgid "" "The automatic upgrade in compatibility level may cause the package (or a " "feature in it) to stop functioning." @@ -1430,7 +1478,7 @@ msgstr "" "pacote (ou alguma funcionalidade nele) deixe de funcionar." #. type: textblock -#: debhelper.pod:626 +#: debhelper.pod:661 msgid "" "Compatibility levels in open beta are still subject to change. We will try " "to keep the changes to a minimal once the beta starts. However, there are " @@ -1442,7 +1490,7 @@ msgstr "" "altere durante o beta." #. type: textblock -#: debhelper.pod:633 +#: debhelper.pod:668 msgid "" "We will notify you via debian-devel@lists.debian.org before we start a new " "open beta compat level. However, once the beta starts we expect that you " @@ -1454,7 +1502,7 @@ msgstr "" "debhelper." #. type: textblock -#: debhelper.pod:639 +#: debhelper.pod:674 msgid "" "The \"beta-tester\" compatibility version in unstable and testing will often " "be different than the one in stable-backports. Accordingly, it is not " @@ -1465,7 +1513,7 @@ msgstr "" "recomendada para pacotes que sejam colocados em backport regularmente." #. type: textblock -#: debhelper.pod:645 +#: debhelper.pod:680 msgid "" "You can always opt-out of the beta by resetting the compatibility level of " "your package to a stable version." @@ -1474,12 +1522,12 @@ msgstr "" "pacote para uma versão estável." #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:685 msgid "Should you still be interested in the open beta testing, please run:" msgstr "Caso esteja ainda interessado no teste beta aberto, por favor execute:" #. type: verbatim -#: debhelper.pod:652 +#: debhelper.pod:687 #, no-wrap msgid "" " % echo beta-tester > debian/compat\n" @@ -1489,12 +1537,12 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:654 +#: debhelper.pod:689 msgid "You will also need to ensure that debian/control contains:" msgstr "Você também precisa assegurar que debian/control tem:" #. type: verbatim -#: debhelper.pod:656 +#: debhelper.pod:691 #, no-wrap msgid "" " Build-Depends: debhelper (>= 9.20160815~)\n" @@ -1504,28 +1552,28 @@ msgstr "" "\n" #. type: textblock -#: debhelper.pod:658 +#: debhelper.pod:693 msgid "To ensure that debhelper knows about the \"beta-tester\" compat level." msgstr "" "Para assegurar que o debhelper sabe acerca do nível de compatibilidade " "\"beta-tester\"." #. type: =head1 -#: debhelper.pod:660 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 +#: debhelper.pod:695 dh_auto_test:46 dh_installcatalogs:62 dh_installdocs:136 #: dh_installemacsen:73 dh_installexamples:54 dh_installinit:159 #: dh_installman:83 dh_installmodules:55 dh_installudev:49 dh_installwm:55 #: dh_installxfonts:38 dh_movefiles:65 dh_strip:117 dh_usrlocal:49 -#: dh_systemd_enable:72 dh_systemd_start:65 +#: dh_systemd_enable:73 dh_systemd_start:66 msgid "NOTES" msgstr "NOTAS" #. type: =head2 -#: debhelper.pod:662 +#: debhelper.pod:697 msgid "Multiple binary package support" msgstr "Suporte a pacotes de múltiplos binários" #. type: textblock -#: debhelper.pod:664 +#: debhelper.pod:699 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -1544,7 +1592,7 @@ msgstr "" "independentes de arquitectura na meta F binary-indep." #. type: textblock -#: debhelper.pod:672 +#: debhelper.pod:707 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -1560,7 +1608,7 @@ msgstr "" "excepções em baixo." #. type: textblock -#: debhelper.pod:678 +#: debhelper.pod:713 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:682 +#: debhelper.pod:717 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -1584,12 +1632,12 @@ msgstr "" "política proposta em L." #. type: =head2 -#: debhelper.pod:687 +#: debhelper.pod:722 msgid "Automatic generation of Debian install scripts" msgstr "Geração automática de scripts de instalação Debian" #. type: textblock -#: debhelper.pod:689 +#: debhelper.pod:724 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -1606,7 +1654,7 @@ msgstr "" "auto-gerado quando você correr o B." #. type: textblock -#: debhelper.pod:696 +#: debhelper.pod:731 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -1615,7 +1663,7 @@ msgstr "" "então o debhelper irá criar o script completo." #. type: textblock -#: debhelper.pod:699 +#: debhelper.pod:734 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -1624,7 +1672,7 @@ msgstr "" "permitem que o seja desactivado pelo parâmetro -n (ver em cima)." #. type: textblock -#: debhelper.pod:702 +#: debhelper.pod:737 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a Perl script. If you would like to embed it into a Perl script, here " @@ -1637,7 +1685,7 @@ msgstr "" "definidos com o comando \"set\"):" #. type: verbatim -#: debhelper.pod:707 +#: debhelper.pod:742 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -1669,12 +1717,12 @@ msgstr "" "\n" #. type: =head2 -#: debhelper.pod:720 +#: debhelper.pod:755 msgid "Automatic generation of miscellaneous dependencies." msgstr "Geração automática de dependências variadas." #. type: textblock -#: debhelper.pod:722 +#: debhelper.pod:757 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -1693,7 +1741,7 @@ msgstr "" "debhelper oferece um modo de automatizar isto." #. type: textblock -#: debhelper.pod:730 +#: debhelper.pod:765 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -1707,7 +1755,7 @@ msgstr "" "que você precisa." #. type: textblock -#: debhelper.pod:735 +#: debhelper.pod:770 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -1720,12 +1768,12 @@ msgstr "" "corresponderem à realidade." #. type: =head2 -#: debhelper.pod:740 +#: debhelper.pod:775 msgid "Package build directories" msgstr "Directórios de compilação de pacotes" #. type: textblock -#: debhelper.pod:742 +#: debhelper.pod:777 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -1735,7 +1783,7 @@ msgstr "" "I." #. type: textblock -#: debhelper.pod:745 +#: debhelper.pod:780 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -1754,13 +1802,13 @@ msgstr "" "programa debhelper irá actuar." #. type: =head2 -#: debhelper.pod:753 +#: debhelper.pod:788 msgid "udebs" msgstr "udebs" # FIXME : a udeb #. type: textblock -#: debhelper.pod:755 +#: debhelper.pod:790 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -1777,12 +1825,12 @@ msgstr "" "F, F, F, e F, etc." #. type: =head1 -#: debhelper.pod:762 +#: debhelper.pod:797 msgid "ENVIRONMENT" msgstr "AMBIENTE" #. type: textblock -#: debhelper.pod:764 +#: debhelper.pod:799 msgid "" "The following environment variables can influence the behavior of " "debhelper. It is important to note that these must be actual environment " @@ -1798,12 +1846,12 @@ msgstr "" "DH_VERBOSE>\"" #. type: =item -#: debhelper.pod:772 +#: debhelper.pod:807 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:774 +#: debhelper.pod:809 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs. Also enables verbose build logs for some build systems like autoconf." @@ -1813,12 +1861,12 @@ msgstr "" "detalhados para alguns sistemas de compilação como o autoconf." #. type: =item -#: debhelper.pod:777 +#: debhelper.pod:812 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:779 +#: debhelper.pod:814 msgid "" "Set to B<1> to enable quiet mode. Debhelper will not output commands calling " "the upstream build system nor will dh print which subcommands are called and " @@ -1835,12 +1883,12 @@ msgstr "" "definido." #. type: =item -#: debhelper.pod:786 +#: debhelper.pod:821 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:788 +#: debhelper.pod:823 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." @@ -1849,22 +1897,22 @@ msgstr "" "correr, sobrepondo qualquer valor em F." #. type: =item -#: debhelper.pod:791 +#: debhelper.pod:826 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:793 +#: debhelper.pod:828 msgid "Set to B<1> to enable no-act mode." msgstr "Defina para B<1> para activar o modo no-act." #. type: =item -#: debhelper.pod:795 +#: debhelper.pod:830 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:797 +#: debhelper.pod:832 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands." @@ -1873,7 +1921,7 @@ msgstr "" "comandos de todos os comandos do debhelper." #. type: textblock -#: debhelper.pod:800 +#: debhelper.pod:835 msgid "" "When using L, it can be passed options that will be passed on to each " "debhelper command, which is generally better than using DH_OPTIONS." @@ -1882,12 +1930,12 @@ msgstr "" "comando do debhelper, o que é geralmente melhor do que usar DH_OPTIONS." #. type: =item -#: debhelper.pod:803 +#: debhelper.pod:838 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:805 +#: debhelper.pod:840 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1899,7 +1947,7 @@ msgstr "" "sua árvore de compilação do pacote." #. type: textblock -#: debhelper.pod:809 +#: debhelper.pod:844 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1917,7 +1965,7 @@ msgstr "" "seu é compilado." #. type: textblock -#: debhelper.pod:816 +#: debhelper.pod:851 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -1926,75 +1974,75 @@ msgstr "" "B" #. type: =head1 -#: debhelper.pod:821 debhelper-obsolete-compat.pod:114 dh:1064 dh_auto_build:48 -#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:63 -#: dh_bugfiles:131 dh_builddeb:194 dh_clean:175 dh_compress:252 dh_fixperms:148 -#: dh_gconf:98 dh_gencontrol:174 dh_icons:73 dh_install:328 -#: dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:80 -#: dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 dh_installdocs:359 -#: dh_installemacsen:143 dh_installexamples:112 dh_installifupdown:72 -#: dh_installinfo:78 dh_installinit:343 dh_installlogcheck:81 -#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 -#: dh_installmenu:98 dh_installmime:65 dh_installmodules:109 dh_installpam:62 -#: dh_installppp:68 dh_installudev:102 dh_installwm:115 dh_installxfonts:90 -#: dh_link:146 dh_lintian:60 dh_listpackages:31 dh_makeshlibs:292 -#: dh_md5sums:109 dh_movefiles:161 dh_perl:154 dh_prep:61 dh_shlibdeps:157 -#: dh_strip:398 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 -#: dh_systemd_enable:283 dh_systemd_start:244 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 +#: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 +#: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 +#: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 +#: dh_installcatalogs:123 dh_installchangelogs:238 dh_installcron:76 +#: dh_installdeb:215 dh_installdebconf:126 dh_installdirs:95 dh_installdocs:357 +#: dh_installemacsen:135 dh_installexamples:110 dh_installifupdown:70 +#: dh_installinfo:76 dh_installinit:331 dh_installlogcheck:79 +#: dh_installlogrotate:51 dh_installman:264 dh_installmanpages:196 +#: dh_installmenu:94 dh_installmime:61 dh_installmodules:107 dh_installpam:60 +#: dh_installppp:66 dh_installudev:99 dh_installwm:115 dh_installxfonts:90 +#: dh_link:146 dh_lintian:58 dh_listpackages:31 dh_makeshlibs:287 +#: dh_md5sums:105 dh_movefiles:159 dh_perl:154 dh_prep:61 dh_shlibdeps:153 +#: dh_strip:396 dh_testdir:54 dh_testroot:28 dh_usrlocal:116 +#: dh_systemd_enable:264 dh_systemd_start:246 msgid "SEE ALSO" msgstr "VEJA TAMBÉM" #. type: =item -#: debhelper.pod:825 +#: debhelper.pod:860 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:827 +#: debhelper.pod:862 msgid "A set of example F files that use debhelper." msgstr "Um conjunto de ficheiros F exemplo que usam debhelper." #. type: =item -#: debhelper.pod:829 +#: debhelper.pod:864 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:831 +#: debhelper.pod:866 msgid "Debhelper web site." msgstr "Sítio web do debhelper." #. type: =head1 -#: debhelper.pod:835 dh:1070 dh_auto_build:54 dh_auto_clean:57 -#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:69 dh_bugfiles:139 -#: dh_builddeb:200 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 -#: dh_gencontrol:180 dh_icons:79 dh_install:334 dh_installcatalogs:130 -#: dh_installchangelogs:247 dh_installcron:86 dh_installdeb:223 -#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 -#: dh_installemacsen:150 dh_installexamples:118 dh_installifupdown:78 -#: dh_installinfo:84 dh_installlogcheck:87 dh_installlogrotate:59 -#: dh_installman:272 dh_installmanpages:204 dh_installmenu:106 -#: dh_installmime:71 dh_installmodules:115 dh_installpam:68 dh_installppp:74 -#: dh_installudev:108 dh_installwm:121 dh_installxfonts:96 dh_link:152 -#: dh_lintian:68 dh_listpackages:37 dh_makeshlibs:298 dh_md5sums:115 -#: dh_movefiles:167 dh_perl:160 dh_prep:67 dh_shlibdeps:163 dh_strip:404 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 +#: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 +#: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 +#: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 +#: dh_installchangelogs:244 dh_installcron:82 dh_installdeb:221 +#: dh_installdebconf:132 dh_installdirs:101 dh_installdocs:363 +#: dh_installemacsen:142 dh_installexamples:116 dh_installifupdown:76 +#: dh_installinfo:82 dh_installlogcheck:85 dh_installlogrotate:57 +#: dh_installman:270 dh_installmanpages:202 dh_installmenu:102 +#: dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 +#: dh_installudev:105 dh_installwm:121 dh_installxfonts:96 dh_link:152 +#: dh_lintian:66 dh_listpackages:37 dh_makeshlibs:293 dh_md5sums:111 +#: dh_movefiles:165 dh_perl:160 dh_prep:67 dh_shlibdeps:159 dh_strip:402 #: dh_testdir:60 dh_testroot:34 dh_usrlocal:122 msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:837 dh:1072 dh_auto_build:56 dh_auto_clean:59 -#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:71 dh_builddeb:202 -#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:182 -#: dh_install:336 dh_installchangelogs:249 dh_installcron:88 dh_installdeb:225 -#: dh_installdebconf:136 dh_installdirs:105 dh_installdocs:367 -#: dh_installemacsen:152 dh_installexamples:120 dh_installifupdown:80 -#: dh_installinfo:86 dh_installinit:351 dh_installlogrotate:61 -#: dh_installman:274 dh_installmanpages:206 dh_installmenu:108 -#: dh_installmime:73 dh_installmodules:117 dh_installpam:70 dh_installppp:76 -#: dh_installudev:110 dh_installwm:123 dh_installxfonts:98 dh_link:154 -#: dh_listpackages:39 dh_makeshlibs:300 dh_md5sums:117 dh_movefiles:169 -#: dh_prep:69 dh_shlibdeps:165 dh_strip:406 dh_testdir:62 dh_testroot:36 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 +#: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 +#: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 +#: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 +#: dh_installdebconf:134 dh_installdirs:103 dh_installdocs:365 +#: dh_installemacsen:144 dh_installexamples:118 dh_installifupdown:78 +#: dh_installinfo:84 dh_installinit:339 dh_installlogrotate:59 +#: dh_installman:272 dh_installmanpages:204 dh_installmenu:104 +#: dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 +#: dh_installudev:107 dh_installwm:123 dh_installxfonts:98 dh_link:154 +#: dh_listpackages:39 dh_makeshlibs:295 dh_md5sums:113 dh_movefiles:167 +#: dh_prep:69 dh_shlibdeps:161 dh_strip:404 dh_testdir:62 dh_testroot:36 msgid "Joey Hess " msgstr "Joey Hess " @@ -2055,11 +2103,6 @@ msgstr "" "ficheiro de controle, enquanto usa debian/I para todos os outros " "pacotes listados no ficheiro F." -#. type: textblock -#: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 -msgid "This mode is deprecated." -msgstr "Este modo está descontinuado." - #. type: =item #: debhelper-obsolete-compat.pod:30 msgid "v2" @@ -2113,19 +2156,19 @@ msgstr "" "(ficheiro de configuração) pelo B." #. type: =item -#: debhelper-obsolete-compat.pod:58 +#: debhelper-obsolete-compat.pod:60 msgid "v4" msgstr "v4" #. type: textblock -#: debhelper-obsolete-compat.pod:60 +#: debhelper-obsolete-compat.pod:62 #, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v3 are:" msgstr "As alterações a partir de v5 são:" #. type: textblock -#: debhelper-obsolete-compat.pod:66 +#: debhelper-obsolete-compat.pod:68 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." @@ -2134,7 +2177,7 @@ msgstr "" "linha de dependência gerada no ficheiro shlibs." #. type: textblock -#: debhelper-obsolete-compat.pod:71 +#: debhelper-obsolete-compat.pod:73 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." @@ -2143,7 +2186,7 @@ msgstr "" "para suplementar o campo B<${shlibs:Depends}>." #. type: textblock -#: debhelper-obsolete-compat.pod:76 +#: debhelper-obsolete-compat.pod:78 msgid "" "B will make all files in F directories and in F executable." @@ -2152,25 +2195,25 @@ msgstr "" "F e em F." #. type: textblock -#: debhelper-obsolete-compat.pod:81 +#: debhelper-obsolete-compat.pod:83 msgid "B will correct existing links to conform with policy." msgstr "" "B irá corrigir os links existentes para ficarem em conformidade com " "a politica." #. type: textblock -#: debhelper-obsolete-compat.pod:89 +#: debhelper-obsolete-compat.pod:93 msgid "Changes from v4 are:" msgstr "As alterações a partir de v4 são:" #. type: textblock -#: debhelper-obsolete-compat.pod:95 +#: debhelper-obsolete-compat.pod:99 msgid "Comments are ignored in debhelper config files." msgstr "Comentários são ignorados nos ficheiros de configuração do debhelper." # http://de.wikipedia.org/wiki/Debugsymbol #. type: textblock -#: debhelper-obsolete-compat.pod:99 +#: debhelper-obsolete-compat.pod:103 msgid "" "B now specifies the name of a package to put " "debugging symbols in, not the packages to take the symbols from." @@ -2179,46 +2222,46 @@ msgstr "" "símbolos de depuração, e não os pacotes de onde tirar os símbolos." #. type: textblock -#: debhelper-obsolete-compat.pod:104 +#: debhelper-obsolete-compat.pod:108 msgid "B skips installing empty files." msgstr "B evita a instalação de ficheiros vazios." #. type: textblock -#: debhelper-obsolete-compat.pod:108 +#: debhelper-obsolete-compat.pod:112 msgid "B errors out if wildcards expand to nothing." msgstr "" "B resulta em erro se as \"wildcards\" expandirem para nada." #. type: textblock -#: debhelper-obsolete-compat.pod:116 dh:1066 dh_auto_build:50 dh_auto_clean:53 -#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:65 dh_builddeb:196 -#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:176 -#: dh_install:330 dh_installcatalogs:126 dh_installchangelogs:243 -#: dh_installcron:82 dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 -#: dh_installdocs:361 dh_installexamples:114 dh_installifupdown:74 -#: dh_installinfo:80 dh_installinit:345 dh_installlogcheck:83 -#: dh_installlogrotate:55 dh_installman:268 dh_installmanpages:200 -#: dh_installmime:67 dh_installmodules:111 dh_installpam:64 dh_installppp:70 -#: dh_installudev:104 dh_installwm:117 dh_installxfonts:92 dh_link:148 -#: dh_listpackages:33 dh_makeshlibs:294 dh_md5sums:111 dh_movefiles:163 -#: dh_perl:156 dh_prep:63 dh_strip:400 dh_testdir:56 dh_testroot:30 -#: dh_usrlocal:118 dh_systemd_start:246 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 +#: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 +#: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 +#: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 +#: dh_installcron:78 dh_installdeb:217 dh_installdebconf:128 dh_installdirs:97 +#: dh_installdocs:359 dh_installexamples:112 dh_installifupdown:72 +#: dh_installinfo:78 dh_installinit:333 dh_installlogcheck:81 +#: dh_installlogrotate:53 dh_installman:266 dh_installmanpages:198 +#: dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 +#: dh_installudev:101 dh_installwm:117 dh_installxfonts:92 dh_link:148 +#: dh_listpackages:33 dh_makeshlibs:289 dh_md5sums:107 dh_movefiles:161 +#: dh_perl:156 dh_prep:63 dh_strip:398 dh_testdir:56 dh_testroot:30 +#: dh_usrlocal:118 dh_systemd_start:248 msgid "L" msgstr "L" #. type: =head1 -#: debhelper-obsolete-compat.pod:118 dh_installinit:349 dh_systemd_enable:287 -#: dh_systemd_start:248 +#: debhelper-obsolete-compat.pod:122 dh_installinit:337 dh_systemd_enable:268 +#: dh_systemd_start:250 msgid "AUTHORS" msgstr "AUTORES" #. type: textblock -#: debhelper-obsolete-compat.pod:120 +#: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:122 +#: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" msgstr "" @@ -2306,7 +2349,7 @@ msgstr "" #: dh_installmenu:45 dh_installmodules:39 dh_installpam:32 dh_installppp:36 #: dh_installudev:33 dh_installwm:35 dh_link:54 dh_makeshlibs:50 dh_md5sums:29 #: dh_movefiles:39 dh_perl:32 dh_prep:27 dh_shlibdeps:27 dh_strip:36 -#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:55 dh_systemd_start:30 +#: dh_testdir:24 dh_usrlocal:39 dh_systemd_enable:56 dh_systemd_start:31 msgid "OPTIONS" msgstr "OPÇÕES" @@ -2946,19 +2989,19 @@ msgstr "" "sequência." #. type: textblock -#: dh:1068 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 -#: dh_auto_install:97 dh_auto_test:67 dh_bugfiles:137 dh_builddeb:198 -#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:178 -#: dh_icons:77 dh_install:332 dh_installchangelogs:245 dh_installcron:84 -#: dh_installdeb:221 dh_installdebconf:132 dh_installdirs:101 -#: dh_installdocs:363 dh_installemacsen:148 dh_installexamples:116 -#: dh_installifupdown:76 dh_installinfo:82 dh_installinit:347 -#: dh_installlogrotate:57 dh_installman:270 dh_installmanpages:202 -#: dh_installmenu:104 dh_installmime:69 dh_installmodules:113 dh_installpam:66 -#: dh_installppp:72 dh_installudev:106 dh_installwm:119 dh_installxfonts:94 -#: dh_link:150 dh_lintian:64 dh_listpackages:35 dh_makeshlibs:296 -#: dh_md5sums:113 dh_movefiles:165 dh_perl:158 dh_prep:65 dh_shlibdeps:161 -#: dh_strip:402 dh_testdir:58 dh_testroot:32 dh_usrlocal:120 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 +#: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 +#: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 +#: dh_installdeb:219 dh_installdebconf:130 dh_installdirs:99 dh_installdocs:361 +#: dh_installemacsen:140 dh_installexamples:114 dh_installifupdown:74 +#: dh_installinfo:80 dh_installinit:335 dh_installlogrotate:55 +#: dh_installman:268 dh_installmanpages:200 dh_installmenu:100 +#: dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 +#: dh_installudev:103 dh_installwm:119 dh_installxfonts:94 dh_link:150 +#: dh_lintian:62 dh_listpackages:35 dh_makeshlibs:291 dh_md5sums:109 +#: dh_movefiles:163 dh_perl:158 dh_prep:65 dh_shlibdeps:157 dh_strip:400 +#: dh_testdir:58 dh_testroot:32 dh_usrlocal:120 msgid "This program is a part of debhelper." msgstr "Este programa é parte do debhelper." @@ -3308,15 +3351,6 @@ msgstr "" "Se a variável de ambiente B conter B, nenhum " "teste será executado." -#. type: textblock -#: dh_auto_test:51 -msgid "" -"dh_auto_test does not run the test suite when a package is being cross " -"compiled." -msgstr "" -"dh_auto_test não corre a suite de teste quando um pacote é compilado em " -"cruzamento." - #. type: textblock #: dh_bugfiles:5 msgid "" @@ -3351,7 +3385,7 @@ msgstr "" #: dh_installinfo:22 dh_installinit:28 dh_installlogcheck:22 dh_installman:52 #: dh_installmenu:26 dh_installmime:22 dh_installmodules:29 dh_installpam:22 #: dh_installppp:22 dh_installudev:23 dh_installwm:25 dh_link:42 dh_lintian:22 -#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:38 +#: dh_makeshlibs:27 dh_movefiles:27 dh_systemd_enable:39 msgid "FILES" msgstr "FICHEIROS" @@ -3429,7 +3463,7 @@ msgid "F" msgstr "F" #. type: textblock -#: dh_bugfiles:135 dh_lintian:62 +#: dh_bugfiles:135 dh_lintian:60 msgid "L" msgstr "L" @@ -4308,12 +4342,12 @@ msgstr "" "ficheiros serão instalados no primeiro pacote em que o F actua." #. type: =head1 -#: dh_install:303 +#: dh_install:301 msgid "LIMITATIONS" msgstr "LIMITAÇÕES" #. type: textblock -#: dh_install:305 +#: dh_install:303 msgid "" "B cannot rename files or directories, it can only install them " "with the names they already have into wherever you want in the package build " @@ -4324,7 +4358,7 @@ msgstr "" "compilação do pacote." #. type: textblock -#: dh_install:309 +#: dh_install:307 msgid "" "However, renaming can be achieved by using B with compatibility " "level 9 or later. An example debian/I.install file using B poderá ser parecer com:" #. type: verbatim -#: dh_install:313 +#: dh_install:311 #, no-wrap msgid "" " #!/usr/bin/dh-exec\n" @@ -4347,12 +4381,12 @@ msgstr "" "\n" #. type: textblock -#: dh_install:316 +#: dh_install:314 msgid "Please remember the following three things:" msgstr "Por favor lembre-se das três coisas seguintes:" #. type: =item -#: dh_install:320 +#: dh_install:318 msgid "" "* The package must be using compatibility level 9 or later (see " "L)" @@ -4361,12 +4395,12 @@ msgstr "" "L)" #. type: =item -#: dh_install:322 +#: dh_install:320 msgid "* The package will need a build-dependency on dh-exec." msgstr "* O pacote irá precisar de uma dependência de compilação em dh-exec." #. type: =item -#: dh_install:324 +#: dh_install:322 msgid "* The install file must be marked as executable." msgstr "* O ficheiro install tem de ser marcado como executável." @@ -4466,12 +4500,12 @@ msgstr "" "instâncias do mesmo texto a ser adicionado aos scripts do mantenedor." #. type: textblock -#: dh_installcatalogs:128 +#: dh_installcatalogs:127 msgid "F" msgstr "F" #. type: textblock -#: dh_installcatalogs:132 +#: dh_installcatalogs:131 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " @@ -4682,7 +4716,7 @@ msgstr "" #. type: =item #: dh_installcron:45 dh_installifupdown:44 dh_installinit:129 #: dh_installlogcheck:47 dh_installlogrotate:27 dh_installmodules:47 -#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:63 +#: dh_installpam:36 dh_installppp:40 dh_installudev:37 dh_systemd_enable:64 msgid "B<--name=>I" msgstr "B<--name=>I" @@ -5478,7 +5512,7 @@ msgstr "" "predefinição é B, as alternativas incluem B e B." #. type: textblock -#: dh_installemacsen:145 +#: dh_installemacsen:137 msgid "L L" msgstr "" "L L" @@ -5734,30 +5768,39 @@ msgstr "" "compilação do pacote." #. type: =item -#: dh_installinit:47 dh_systemd_enable:42 +#: dh_installinit:47 dh_systemd_enable:43 msgid "debian/I.service" msgstr "debian/I.service" #. type: textblock -#: dh_installinit:49 dh_systemd_enable:44 +#: dh_installinit:49 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into lib/systemd/system/I." +#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " -"in the package build directory." +"in the package build directory. Only used in compat levels 10 and below." msgstr "" "Se isto existir, é instalado em lib/systemd/system/I.service no " "directório de compilação do pacote." #. type: =item -#: dh_installinit:52 dh_systemd_enable:47 +#: dh_installinit:52 dh_systemd_enable:48 msgid "debian/I.tmpfile" msgstr "debian/I.tmpfile" #. type: textblock -#: dh_installinit:54 dh_systemd_enable:49 +#: dh_installinit:54 +#, fuzzy +#| msgid "" +#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " +#| "in the package build directory. (The tmpfiles.d mechanism is currently " +#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " -"used by systemd.)" +"used by systemd.) Only used in compat levels 10 and below." msgstr "" "Se isto existir, é instalado em usr/lib/tmpfiles.d/I.conf no " "directório de compilação do pacote. (Actualmente o mecanismo tmpfiles.d é " @@ -5837,7 +5880,7 @@ msgstr "" "em F, e depois arrancá-lo de novo no F." #. type: textblock -#: dh_installinit:92 dh_systemd_start:42 +#: dh_installinit:92 dh_systemd_start:43 msgid "" "This can be useful for daemons that should not have a possibly long downtime " "during upgrade. But you should make sure that the daemon will not get " @@ -5850,12 +5893,12 @@ msgstr "" "actualizado enquanto ele está a correr antes de usar esta opção." #. type: =item -#: dh_installinit:97 dh_systemd_start:47 +#: dh_installinit:97 dh_systemd_start:48 msgid "B<--no-restart-after-upgrade>" msgstr "B<--no-restart-after-upgrade>" #. type: textblock -#: dh_installinit:99 dh_systemd_start:49 +#: dh_installinit:99 dh_systemd_start:50 msgid "" "Undo a previous B<--restart-after-upgrade> (or the default of compat 10). " "If no other options are given, this will cause the service to be stopped in " @@ -5867,7 +5910,7 @@ msgstr "" "F." #. type: =item -#: dh_installinit:104 dh_systemd_start:54 +#: dh_installinit:104 dh_systemd_start:55 msgid "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" msgstr "B<-r>, B<--no-stop-on-upgrade>, B<--no-restart-on-upgrade>" @@ -5877,7 +5920,7 @@ msgid "Do not stop init script on upgrade." msgstr "Não pára o script de iniciação durante uma actualização." #. type: =item -#: dh_installinit:108 dh_systemd_start:58 +#: dh_installinit:108 dh_systemd_start:59 msgid "B<--no-start>" msgstr "B<--no-start>" @@ -5993,12 +6036,12 @@ msgstr "" "F, antes do símbolo B<#DEBHELPER#>." #. type: textblock -#: dh_installinit:353 +#: dh_installinit:341 msgid "Steve Langasek " msgstr "Steve Langasek " #. type: textblock -#: dh_installinit:355 +#: dh_installinit:343 msgid "Michael Stapelberg " msgstr "Michael Stapelberg " @@ -6073,7 +6116,7 @@ msgstr "" "especificado em vez daquele do pacote." #. type: verbatim -#: dh_installlogcheck:85 +#: dh_installlogcheck:83 #, no-wrap msgid "" "This program is a part of debhelper.\n" @@ -6083,7 +6126,7 @@ msgstr "" " \n" #. type: textblock -#: dh_installlogcheck:89 +#: dh_installlogcheck:87 msgid "Jon Middleton " msgstr "Jon Middleton " @@ -6454,7 +6497,7 @@ msgid "Do not modify F/F scripts." msgstr "Não modifique os scripts F/F." #. type: textblock -#: dh_installmenu:100 +#: dh_installmenu:96 msgid "L L L" msgstr "L L L" @@ -7089,12 +7132,12 @@ msgstr "" "disponibilizar sobreposições para o pacote fonte." #. type: textblock -#: dh_lintian:66 +#: dh_lintian:64 msgid "L" msgstr "L" #. type: textblock -#: dh_lintian:70 +#: dh_lintian:68 msgid "Steve Robbins " msgstr "Steve Robbins " @@ -7932,7 +7975,7 @@ msgstr "" "\t\n" #. type: textblock -#: dh_shlibdeps:159 +#: dh_shlibdeps:155 msgid "L, L" msgstr "L, L" @@ -8335,7 +8378,7 @@ msgid "dh_systemd_enable - enable/disable systemd unit files" msgstr "dh_systemd_enable - activa/desactiva ficheiros unit do systemd" #. type: textblock -#: dh_systemd_enable:15 +#: dh_systemd_enable:16 msgid "" "B [S>] [B<--no-enable>] [B<--" "name=>I] [S ...>]" @@ -8344,7 +8387,7 @@ msgstr "" "name=>I] [S ...>]" #. type: textblock -#: dh_systemd_enable:19 +#: dh_systemd_enable:20 msgid "" "B is a debhelper program that is responsible for enabling " "and disabling systemd unit files." @@ -8353,7 +8396,7 @@ msgstr "" "desactivar ficheiros unit do systemd." #. type: textblock -#: dh_systemd_enable:22 +#: dh_systemd_enable:23 msgid "" "In the simple case, it finds all unit files installed by a package (e.g. " "bacula-fd.service) and enables them. It is not necessary that the machine " @@ -8367,7 +8410,7 @@ msgstr "" "sysvinit para systemd e vice-versa." #. type: textblock -#: dh_systemd_enable:27 +#: dh_systemd_enable:28 msgid "" "In the complex case, you can call B and " "B manually (by overwriting the debian/rules targets) and " @@ -8386,7 +8429,7 @@ msgstr "" "Assim sendo, correr dh_systemd_enable não faz qualquer sentido." #. type: textblock -#: dh_systemd_enable:34 +#: dh_systemd_enable:35 msgid "" "For only generating blocks for specific service files, you need to pass them " "as arguments, e.g. B and " @@ -8396,13 +8439,33 @@ msgstr "" "de passá-los como argumentos, exemplos B e " "B." +#. type: textblock +#: dh_systemd_enable:45 +msgid "" +"If this exists, it is installed into lib/systemd/system/I.service " +"in the package build directory." +msgstr "" +"Se isto existir, é instalado em lib/systemd/system/I.service no " +"directório de compilação do pacote." + +#. type: textblock +#: dh_systemd_enable:50 +msgid "" +"If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " +"the package build directory. (The tmpfiles.d mechanism is currently only " +"used by systemd.)" +msgstr "" +"Se isto existir, é instalado em usr/lib/tmpfiles.d/I.conf no " +"directório de compilação do pacote. (Actualmente o mecanismo tmpfiles.d é " +"usado apenas pelo systemd.)" + #. type: =item -#: dh_systemd_enable:59 +#: dh_systemd_enable:60 msgid "B<--no-enable>" msgstr "B<--no-enable>" #. type: textblock -#: dh_systemd_enable:61 +#: dh_systemd_enable:62 msgid "" "Just disable the service(s) on purge, but do not enable them by default." msgstr "" @@ -8410,7 +8473,7 @@ msgstr "" "predefinição." #. type: textblock -#: dh_systemd_enable:65 +#: dh_systemd_enable:66 msgid "" "Install the service file as I instead of the default filename, " "which is the I. When this parameter is used, " @@ -8423,7 +8486,7 @@ msgstr "" "pacote.nome.serviço> em vez do habitual F." #. type: textblock -#: dh_systemd_enable:74 dh_systemd_start:67 +#: dh_systemd_enable:75 dh_systemd_start:68 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command (with the same arguments). Otherwise, it " @@ -8436,7 +8499,7 @@ msgstr "" "do mantenedor." #. type: textblock -#: dh_systemd_enable:79 +#: dh_systemd_enable:80 msgid "" "Note that B should be run before B. The " "default sequence in B does the right thing, this note is only relevant " @@ -8447,12 +8510,12 @@ msgstr "" "quando você está a chamar B manualmente." #. type: textblock -#: dh_systemd_enable:285 +#: dh_systemd_enable:266 msgid "L, L" msgstr "L, L" #. type: textblock -#: dh_systemd_enable:289 dh_systemd_start:250 +#: dh_systemd_enable:270 dh_systemd_start:252 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -8463,7 +8526,7 @@ msgstr "" "dh_systemd_start - faz start/stop/restart aos ficheiros unit do systemd" #. type: textblock -#: dh_systemd_start:16 +#: dh_systemd_start:17 msgid "" "B [S>] [B<--restart-after-upgrade>] " "[B<--no-stop-on-upgrade>] [S ...>]" @@ -8472,7 +8535,7 @@ msgstr "" "[B<--no-stop-on-upgrade>] [S ...>]" #. type: textblock -#: dh_systemd_start:20 +#: dh_systemd_start:21 msgid "" "B is a debhelper program that is responsible for starting/" "stopping or restarting systemd unit files in case no corresponding sysv init " @@ -8483,7 +8546,7 @@ msgstr "" "nenhum script sysv init correspondente." #. type: textblock -#: dh_systemd_start:24 +#: dh_systemd_start:25 msgid "" "As with B, the unit file is stopped before upgrades and " "started afterwards (unless B<--restart-after-upgrade> is specified, in which " @@ -8498,12 +8561,12 @@ msgstr "" "correspondente porque invoke-rc.d executa o stop/start/restart nesse caso." #. type: =item -#: dh_systemd_start:34 +#: dh_systemd_start:35 msgid "B<--restart-after-upgrade>" msgstr "B<--restart-after-upgrade>" #. type: textblock -#: dh_systemd_start:36 +#: dh_systemd_start:37 msgid "" "Do not stop the unit file until after the package upgrade has been " "completed. This is the default behaviour in compat 10." @@ -8512,7 +8575,7 @@ msgstr "" "Este é o comportamento predefinido no nível de compatibilidade 10." #. type: textblock -#: dh_systemd_start:39 +#: dh_systemd_start:40 msgid "" "In earlier compat levels the default was to stop the unit file in the " "F, and start it again in the F." @@ -8521,12 +8584,12 @@ msgstr "" "unit no F, e arrancá-lo de novo no F.t>." #. type: textblock -#: dh_systemd_start:56 +#: dh_systemd_start:57 msgid "Do not stop service on upgrade." msgstr "Não pára o serviço durante uma actualização." #. type: textblock -#: dh_systemd_start:60 +#: dh_systemd_start:61 msgid "" "Do not start the unit file after upgrades and after initial installation " "(the latter is only relevant for services without a corresponding init " @@ -8537,7 +8600,7 @@ msgstr "" "correspondente)." #. type: textblock -#: dh_systemd_start:72 +#: dh_systemd_start:73 msgid "" "Note that B should be run after B so that " "it can detect corresponding SysV init scripts. The default sequence in B " @@ -8556,6 +8619,13 @@ msgstr "" "Este nível de compatibilidade está aberto para testes beta: podem ocorrer " "alterações." +#~ msgid "" +#~ "dh_auto_test does not run the test suite when a package is being cross " +#~ "compiled." +#~ msgstr "" +#~ "dh_auto_test não corre a suite de teste quando um pacote é compilado em " +#~ "cruzamento." + #~ msgid "" #~ "This used to be a smarter version of the B<-a> flag, but the B<-a> flag " #~ "is now equally smart." -- cgit v1.2.3 From 8fc7122449929beb14394d9a218eb2632a65aab7 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 31 Dec 2016 21:32:35 +0000 Subject: Release debhelper/10.2.3 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1b0d68b3..0b1d0fa2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debhelper (10.2.3) UNRELEASED; urgency=medium +debhelper (10.2.3) unstable; urgency=medium [ Axel Beckert ] * Fix wrong German translation of dh_systemd_start man page. Thanks to @@ -22,7 +22,7 @@ debhelper (10.2.3) UNRELEASED; urgency=medium * dh_installinit: Leave the handling of debian/pkg.service and debian/pkg.tmpfiles to dh_systemd_*. (Closes: #830208) - -- Axel Beckert Sat, 08 Oct 2016 13:37:56 +0200 + -- Niels Thykier Sat, 31 Dec 2016 21:27:54 +0000 debhelper (10.2.2) unstable; urgency=medium -- cgit v1.2.3 From b3644a6af58f09f5c9709f97be79cfb43b3ed4a8 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 12 Jan 2017 07:02:46 +0000 Subject: d/changelog: Document missing change in 10.2.3 Signed-off-by: Niels Thykier --- debian/changelog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0b1d0fa2..0ad2f449 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (10.2.4) UNRELEASED; urgency=medium + + * d/changelog: Add missing changelog entry in 10.2.3 for a + compat 11 change. + + -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 + debhelper (10.2.3) unstable; urgency=medium [ Axel Beckert ] @@ -15,6 +22,8 @@ debhelper (10.2.3) unstable; urgency=medium * Massage md5sum output to avoid GNU-specific escaping extension while we wait for dpkg-gendigests for a more compatible tool. Thanks to Bernd Zeimetz for the report. (Closes: #843163) + * In compat 11, dh will now skip creating a stamp file unless the + package explicitly requests it with "--with build-stamp". [ Felipe Sateler ] * dh_systemd_start: Fix a bug where --restart-after-upgrade with -- cgit v1.2.3 From 8ce63b49a1c6b44e7ebe9a92c2a1681f409d84a7 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 12 Jan 2017 07:03:56 +0000 Subject: dh: Show when running the create-stamp "command" Signed-off-by: Niels Thykier --- debian/changelog | 1 + dh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0ad2f449..6d201dba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ debhelper (10.2.4) UNRELEASED; urgency=medium * d/changelog: Add missing changelog entry in 10.2.3 for a compat 11 change. + * dh: Show when the "create-stamp" "command" is being run. -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 diff --git a/dh b/dh index 87eae9d8..bfa3ab65 100755 --- a/dh +++ b/dh @@ -725,6 +725,8 @@ foreach my $i (0..$stoppoint) { } if (my $stamp_file = stamp_target($command)) { my %seen; + print " create-stamp ".escape_shell($stamp_file)."\n"; + next if $dh{NO_ACT}; open(my $fd, '+>>', $stamp_file) or error("open($stamp_file, rw) failed: $!"); # Seek to the beginning -- cgit v1.2.3 From b1dc48313174ed4d0dfe14af2b698c26bb742cf3 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 17 Jan 2017 20:10:34 +0000 Subject: dh: Avoid repeating added build commands after "dh_auto_test" This fixes a bug, where dh would replay a command added to the "build", "build-arch" or "build-indep" sequences (via --with $ADD_ON) in the binary sequences. Signed-off-by: Niels Thykier --- debian/changelog | 4 ++++ dh | 13 ++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6d201dba..b06f19d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,10 @@ debhelper (10.2.4) UNRELEASED; urgency=medium * d/changelog: Add missing changelog entry in 10.2.3 for a compat 11 change. * dh: Show when the "create-stamp" "command" is being run. + * dh: Fix a bug where dh would repeat part of the build sequence + when an add-on modified the build sequence after "dh_auto_test". + Thanks to Sean Whitton for reporting the issue. + (Closes: #851071) -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 diff --git a/dh b/dh index bfa3ab65..0783e8d6 100755 --- a/dh +++ b/dh @@ -647,12 +647,23 @@ if ( -f $build_stamp_file) { close($fd); } +# Lazy cache of the result of optimize_sequence on the "build" +# sequence +my $optimized_build_seq; foreach my $package (@packages) { my @log; if (compat(9)) { @log = load_log($package, \%logged); } elsif (exists($stamp_file{$package})) { - @log = @bd; + if (not defined($optimized_build_seq)) { + # Expand "build" so we can accurately filter out + # everything (admittedly, it is bit of an over + # approximation) + # Related bug: #851071 + my @seq = optimize_sequence(@{$sequences{'build'}}); + $optimized_build_seq = \@seq; + } + @log = @{$optimized_build_seq}; # We do not need %logged in compat 10 } if ($dh{AFTER}) { -- cgit v1.2.3 From 5c74f89c86b81e36734e7a39706e28d37a1886bf Mon Sep 17 00:00:00 2001 From: Américo Monteiro Date: Tue, 17 Jan 2017 20:20:06 +0000 Subject: Updated Portuguese translation of documentation Signed-off-by: Niels Thykier --- man/po4a/po/pt.po | 74 ++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 49 insertions(+), 25 deletions(-) diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index ee35453e..4b708777 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -2,15 +2,15 @@ # Copyright (C) 2014 The debhelper's copyright holder. # This file is distributed under the same license as the debhelper package. # -# Américo Monteiro , 2014 - 2016. +# Américo Monteiro , 2014 - 2017. msgid "" msgstr "" -"Project-Id-Version: debhelper 9.20160814+unreleased\n" +"Project-Id-Version: debhelper 10.2.3\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" "POT-Creation-Date: 2016-12-31 21:29+0000\n" -"PO-Revision-Date: 2016-08-25 11:59+0100\n" +"PO-Revision-Date: 2017-01-12 22:28+0000\n" "Last-Translator: Américo Monteiro \n" -"Language-Team: Portuguese \n" +"Language-Team: Portuguese <>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -837,6 +837,8 @@ msgid "" "If you are upgrading from an earlier compatibility level, please review " "L." msgstr "" +"Se você está a actualizar a partir de um nível de compatibilidade anterior, " +"por favor reveja L." #. type: textblock #: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 @@ -1357,6 +1359,9 @@ msgid "" "generates maintainer scripts for those files. Use B and " "B instead." msgstr "" +"B já não instala ficheiros F ou F, nem " +"gera scripts do mantenedor para esses ficheiros, Use B " +"e B em vez deste." #. type: textblock #: debhelper.pod:595 @@ -1403,11 +1408,13 @@ msgid "" "B no longer creates debian/I directories unless " "explicitly requested (or it has to create a subdirectory in it)." msgstr "" +"B já não cria directórios debian/I a menos que " +"tal seja explicitamente pedido (ou se tiver de criar um sub-directório nele)." #. type: textblock #: debhelper.pod:620 msgid "The vast majority of all packages will be unaffected by this change." -msgstr "" +msgstr "A grande maioria dos pacotes não serão afectados por esta alteração." #. type: textblock #: debhelper.pod:624 @@ -1417,6 +1424,10 @@ msgid "" "correctly tracks this, the build will be run twice (once for the \"build\" " "target and once for the \"binary\" target)." msgstr "" +"B já não cria um ficheiro stamp (ou log) para gravar se a compilação " +"já correu ou não. Isto significa que a menos que o sistema de compilação " +"do autor (upstream) actual acompanhe isto, a compilação irá correr duas " +"vezes (uma vez para o alvo \"build\" e outra para o alvo \"binary\")." #. type: textblock #: debhelper.pod:629 @@ -1424,11 +1435,15 @@ msgid "" "On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." msgstr "" +"Por outro lado, isto significa que recompilar sem limpar (ex. B) irá ter o comportamento que a maioria das pessoas iriam " +"esperar." #. type: textblock #: debhelper.pod:633 msgid "The previous behaviour can restored by using B<--with build-stamp>" msgstr "" +"O comportamento anterior pode ser restaurado ao usar B<--with build-stamp>" #. type: =head2 #: debhelper.pod:639 @@ -2050,6 +2065,8 @@ msgstr "Joey Hess " #: debhelper-obsolete-compat.pod:3 msgid "debhelper-obsolete-compat - List of no longer supported compat levels" msgstr "" +"debhelper-obsolete-compat - Lista dos níveis de compatibilidade não mais " +"suportados" #. type: textblock #: debhelper-obsolete-compat.pod:7 @@ -2059,35 +2076,40 @@ msgid "" "and to assist people upgrading from a non-supported compat level to a " "supported level." msgstr "" +"Este documento contém o guião de actualização a partir de todos os níveis " +"de compatibilidade que já não são suportados. Consequentemente é " +"principalmente para objectivos históricos e para ajudar pessoas a " +"actualizarem a partir de um nível de compatibilidade não suportado para " +"um nível suportado." #. type: textblock #: debhelper-obsolete-compat.pod:12 -#, fuzzy #| msgid "" #| "* The package must be using compatibility level 9 or later (see " #| "L)" msgid "For upgrades from supported compat levels, please see L." msgstr "" -"* O pacote tem se usar nível de compatibilidade 9 ou superior veja " -"L)" +"Para actualizações a partir de níveis de compatibilidade suportados, por " +"favor veja L." #. type: =head1 #: debhelper-obsolete-compat.pod:14 msgid "UPGRADE LIST FOR COMPAT LEVELS" -msgstr "" +msgstr "ACTUALIZAÇÃO DE LISTA PARA NÍVEIS DE COMPATIBILIDADE" #. type: textblock #: debhelper-obsolete-compat.pod:16 msgid "" "The following is the list of now obsolete compat levels and their changes." msgstr "" +"O seguinte é a lista dos níveis de compatibilidade agora obsoletos e as " +"suas alterações." #. type: =item #: debhelper-obsolete-compat.pod:21 -#, fuzzy #| msgid "v10" msgid "v1" -msgstr "v10" +msgstr "v1" #. type: textblock #: debhelper-obsolete-compat.pod:23 @@ -2162,10 +2184,9 @@ msgstr "v4" #. type: textblock #: debhelper-obsolete-compat.pod:62 -#, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v3 are:" -msgstr "As alterações a partir de v5 são:" +msgstr "As alterações a partir de v3 são:" #. type: textblock #: debhelper-obsolete-compat.pod:68 @@ -2258,17 +2279,17 @@ msgstr "AUTORES" #. type: textblock #: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " -msgstr "" +msgstr "Niels Thykier " #. type: textblock #: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" -msgstr "" +msgstr "Joey Hess" #. type: textblock #: dh:5 msgid "dh - debhelper command sequencer" -msgstr "dh - sequênciador de comandos do debhelper" +msgstr "dh - sequenciador de comandos do debhelper" #. type: textblock #: dh:15 @@ -3567,7 +3588,8 @@ msgstr "" #: dh_clean:19 #, no-wrap msgid "" -"B is a debhelper program that is responsible for cleaning up after a\n" +"B is a debhelper program that is responsible for cleaning up after " +"a\n" "package is built. It removes the package build directories, and removes some\n" "other files including F, and any detritus left behind by other\n" "debhelper commands. It also removes common files that should not appear in a\n" @@ -5774,7 +5796,6 @@ msgstr "debian/I.service" #. type: textblock #: dh_installinit:49 -#, fuzzy #| msgid "" #| "If this exists, it is installed into lib/systemd/system/I." #| "service in the package build directory." @@ -5783,7 +5804,8 @@ msgid "" "in the package build directory. Only used in compat levels 10 and below." msgstr "" "Se isto existir, é instalado em lib/systemd/system/I.service no " -"directório de compilação do pacote." +"directório de compilação do pacote. Apenas usado nos níveis de " +"compatibilidade 10 e inferiores." #. type: =item #: dh_installinit:52 dh_systemd_enable:48 @@ -5792,7 +5814,6 @@ msgstr "debian/I.tmpfile" #. type: textblock #: dh_installinit:54 -#, fuzzy #| msgid "" #| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " #| "in the package build directory. (The tmpfiles.d mechanism is currently " @@ -5804,7 +5825,8 @@ msgid "" msgstr "" "Se isto existir, é instalado em usr/lib/tmpfiles.d/I.conf no " "directório de compilação do pacote. (Actualmente o mecanismo tmpfiles.d é " -"usado apenas pelo systemd.)" +"usado apenas pelo systemd.) Apenas usado nos níveis de compatibilidade " +"10 e inferiores." #. type: textblock #: dh_installinit:66 @@ -7441,7 +7463,6 @@ msgstr "" #. type: textblock #: dh_md5sums:20 -#, fuzzy #| msgid "" #| "B is a debhelper program that is responsible for generating a " #| "F file, which lists the md5sums of each file in the " @@ -7454,7 +7475,8 @@ msgid "" msgstr "" "B é um programa debhelper que é responsável por gerar um " "ficheiro F o qual lista os md5sums de cada ficheiro no " -"pacote. Estes ficheiros são usados pelo pacote B." +"pacote. Estes ficheiros são usados por B ou pelo programa " +"L." #. type: textblock #: dh_md5sums:24 @@ -8176,10 +8198,12 @@ msgstr "" #: dh_strip:98 #, no-wrap msgid "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " +"2.1-3~)'\n" "\n" msgstr "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " +"2.1-3~)'\n" "\n" #. type: =item -- cgit v1.2.3 From b07dc70fa32f9ff6f59b84b6019128fcbb583b30 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 17 Jan 2017 20:23:11 +0000 Subject: Add changelog entry and let po4a refresh the po file Signed-off-by: Niels Thykier --- debian/changelog | 5 ++++ man/po4a/po/pt.po | 70 ++++++++++++++++++++----------------------------------- 2 files changed, 30 insertions(+), 45 deletions(-) diff --git a/debian/changelog b/debian/changelog index b06f19d1..3b76cf72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ debhelper (10.2.4) UNRELEASED; urgency=medium + [ Niels Thykier ] * d/changelog: Add missing changelog entry in 10.2.3 for a compat 11 change. * dh: Show when the "create-stamp" "command" is being run. @@ -8,6 +9,10 @@ debhelper (10.2.4) UNRELEASED; urgency=medium Thanks to Sean Whitton for reporting the issue. (Closes: #851071) + [ Translations ] + * Update Portuguese translation (Américo Monteiro) + (Closes: #851207) + -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 debhelper (10.2.3) unstable; urgency=medium diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index 4b708777..553a15b7 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 10.2.3\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2016-12-31 21:29+0000\n" +"POT-Creation-Date: 2017-01-17 20:20+0000\n" "PO-Revision-Date: 2017-01-12 22:28+0000\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese <>\n" @@ -1360,8 +1360,8 @@ msgid "" "B instead." msgstr "" "B já não instala ficheiros F ou F, nem " -"gera scripts do mantenedor para esses ficheiros, Use B " -"e B em vez deste." +"gera scripts do mantenedor para esses ficheiros, Use B e " +"B em vez deste." #. type: textblock #: debhelper.pod:595 @@ -1408,8 +1408,8 @@ msgid "" "B no longer creates debian/I directories unless " "explicitly requested (or it has to create a subdirectory in it)." msgstr "" -"B já não cria directórios debian/I a menos que " -"tal seja explicitamente pedido (ou se tiver de criar um sub-directório nele)." +"B já não cria directórios debian/I a menos que tal " +"seja explicitamente pedido (ou se tiver de criar um sub-directório nele)." #. type: textblock #: debhelper.pod:620 @@ -1424,10 +1424,10 @@ msgid "" "correctly tracks this, the build will be run twice (once for the \"build\" " "target and once for the \"binary\" target)." msgstr "" -"B já não cria um ficheiro stamp (ou log) para gravar se a compilação " -"já correu ou não. Isto significa que a menos que o sistema de compilação " -"do autor (upstream) actual acompanhe isto, a compilação irá correr duas " -"vezes (uma vez para o alvo \"build\" e outra para o alvo \"binary\")." +"B já não cria um ficheiro stamp (ou log) para gravar se a compilação já " +"correu ou não. Isto significa que a menos que o sistema de compilação do " +"autor (upstream) actual acompanhe isto, a compilação irá correr duas vezes " +"(uma vez para o alvo \"build\" e outra para o alvo \"binary\")." #. type: textblock #: debhelper.pod:629 @@ -1989,7 +1989,7 @@ msgstr "" "B" #. type: =head1 -#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1076 dh_auto_build:48 #: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 #: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 #: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 @@ -2028,7 +2028,7 @@ msgid "Debhelper web site." msgstr "Sítio web do debhelper." #. type: =head1 -#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:870 dh:1082 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 #: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 @@ -2046,7 +2046,7 @@ msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:872 dh:1084 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 #: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 @@ -2076,17 +2076,13 @@ msgid "" "and to assist people upgrading from a non-supported compat level to a " "supported level." msgstr "" -"Este documento contém o guião de actualização a partir de todos os níveis " -"de compatibilidade que já não são suportados. Consequentemente é " -"principalmente para objectivos históricos e para ajudar pessoas a " -"actualizarem a partir de um nível de compatibilidade não suportado para " -"um nível suportado." +"Este documento contém o guião de actualização a partir de todos os níveis de " +"compatibilidade que já não são suportados. Consequentemente é principalmente " +"para objectivos históricos e para ajudar pessoas a actualizarem a partir de " +"um nível de compatibilidade não suportado para um nível suportado." #. type: textblock #: debhelper-obsolete-compat.pod:12 -#| msgid "" -#| "* The package must be using compatibility level 9 or later (see " -#| "L)" msgid "For upgrades from supported compat levels, please see L." msgstr "" "Para actualizações a partir de níveis de compatibilidade suportados, por " @@ -2102,12 +2098,11 @@ msgstr "ACTUALIZAÇÃO DE LISTA PARA NÍVEIS DE COMPATIBILIDADE" msgid "" "The following is the list of now obsolete compat levels and their changes." msgstr "" -"O seguinte é a lista dos níveis de compatibilidade agora obsoletos e as " -"suas alterações." +"O seguinte é a lista dos níveis de compatibilidade agora obsoletos e as suas " +"alterações." #. type: =item #: debhelper-obsolete-compat.pod:21 -#| msgid "v10" msgid "v1" msgstr "v1" @@ -2184,7 +2179,6 @@ msgstr "v4" #. type: textblock #: debhelper-obsolete-compat.pod:62 -#| msgid "Changes from v5 are:" msgid "Changes from v3 are:" msgstr "As alterações a partir de v3 são:" @@ -2254,7 +2248,7 @@ msgstr "" "B resulta em erro se as \"wildcards\" expandirem para nada." #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 +#: debhelper-obsolete-compat.pod:120 dh:1078 dh_auto_build:50 dh_auto_clean:53 #: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 #: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 #: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 @@ -3010,7 +3004,7 @@ msgstr "" "sequência." #. type: textblock -#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh:1080 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 #: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 #: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 #: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 @@ -3588,8 +3582,7 @@ msgstr "" #: dh_clean:19 #, no-wrap msgid "" -"B is a debhelper program that is responsible for cleaning up after " -"a\n" +"B is a debhelper program that is responsible for cleaning up after a\n" "package is built. It removes the package build directories, and removes some\n" "other files including F, and any detritus left behind by other\n" "debhelper commands. It also removes common files that should not appear in a\n" @@ -5796,9 +5789,6 @@ msgstr "debian/I.service" #. type: textblock #: dh_installinit:49 -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I." -#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " "in the package build directory. Only used in compat levels 10 and below." @@ -5814,10 +5804,6 @@ msgstr "debian/I.tmpfile" #. type: textblock #: dh_installinit:54 -#| msgid "" -#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " -#| "in the package build directory. (The tmpfiles.d mechanism is currently " -#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " @@ -5825,8 +5811,8 @@ msgid "" msgstr "" "Se isto existir, é instalado em usr/lib/tmpfiles.d/I.conf no " "directório de compilação do pacote. (Actualmente o mecanismo tmpfiles.d é " -"usado apenas pelo systemd.) Apenas usado nos níveis de compatibilidade " -"10 e inferiores." +"usado apenas pelo systemd.) Apenas usado nos níveis de compatibilidade 10 e " +"inferiores." #. type: textblock #: dh_installinit:66 @@ -7463,10 +7449,6 @@ msgstr "" #. type: textblock #: dh_md5sums:20 -#| msgid "" -#| "B is a debhelper program that is responsible for generating a " -#| "F file, which lists the md5sums of each file in the " -#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " @@ -8198,12 +8180,10 @@ msgstr "" #: dh_strip:98 #, no-wrap msgid "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " -"2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" "\n" msgstr "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " -"2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" "\n" #. type: =item -- cgit v1.2.3 From 57c5aaad9b2ff21fe4b1341be73b800aa37e4b17 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Wed, 18 Jan 2017 11:43:00 +0000 Subject: dh-systemd: install mount units in /lib/systemd/system Currently dh_systemd_enable installs mount units in /usr/lib/system which is very likely a typo. The systemd package installs its own mount units in /lib/systemd/system so make dh-systemd install them there as well. Signed-off-by: Niels Thykier --- debian/changelog | 4 ++++ dh_systemd_enable | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3b76cf72..c66c5172 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,10 @@ debhelper (10.2.4) UNRELEASED; urgency=medium Thanks to Sean Whitton for reporting the issue. (Closes: #851071) + [ Luca Boccassi ] + * dh_systemd_enable: Correct installation for "mount" units. + (Closes: #851744) + [ Translations ] * Update Portuguese translation (Américo Monteiro) (Closes: #851207) diff --git a/dh_systemd_enable b/dh_systemd_enable index 09093f0c..360392e6 100755 --- a/dh_systemd_enable +++ b/dh_systemd_enable @@ -176,7 +176,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $mount=pkgfile($package,"mount"); if ($mount ne '') { - my $path="$tmpdir/usr/lib/system"; + my $path="$tmpdir/lib/systemd/system"; install_dir($path); install_file($mount, "$path/$script.mount"); } -- cgit v1.2.3 From 81aad1935a7162498720e0ba4c288f89f95bf28f Mon Sep 17 00:00:00 2001 From: Baptiste Jammet Date: Mon, 23 Jan 2017 18:22:56 +0000 Subject: Updated French translation of documentation Signed-off-by: Niels Thykier --- debian/changelog | 2 ++ man/po4a/add.fr | 16 ++++++----- man/po4a/po/fr.po | 84 +++++++++++++++++++++++++++++++++++++------------------ 3 files changed, 68 insertions(+), 34 deletions(-) diff --git a/debian/changelog b/debian/changelog index c66c5172..a4ad89a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ debhelper (10.2.4) UNRELEASED; urgency=medium [ Translations ] * Update Portuguese translation (Américo Monteiro) (Closes: #851207) + * Update French translation (Baptiste Jammet) + (Closes: #852211) -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 diff --git a/man/po4a/add.fr b/man/po4a/add.fr index 5608967e..534e9083 100644 --- a/man/po4a/add.fr +++ b/man/po4a/add.fr @@ -2,14 +2,16 @@ PO4A-HEADER:mode=after;position=AUTEUR;beginboundary=\=head1 =head1 TRADUCTION -Valéry Perrin le 17 septembre 2005. Dernière mise à jour le 3 avril 2011. +Cette traduction est maintenue à l'aide de l'outil po4a + par l'équipe francophone de traduction +de Debian. -L'équipe de traduction a fait le maximum pour réaliser une adaptation française de qualité. +Veuillez signaler toute erreur de traduction en écrivant à + ou par un rapport de bogue sur le paquet +debhelper. -Cette traduction est gérée dynamiquement par po4a. Certains paragraphes peuvent, éventuellement, apparaître en anglais. Ils correspondent à des modifications ou des ajouts récents du mainteneur, non encore incorporés dans la traduction française. - -La version originale anglaise de ce document est toujours consultable via la commande S. - -N'hésitez pas à signaler à l'auteur ou au traducteur, selon le cas, toute erreur dans cette page de manuel. +Vous pouvez toujours avoir accès à la version anglaise de ce document en +utilisant la commande « man -L C
 ». =cut + diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index dc5f73ca..4cc94358 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -1,12 +1,12 @@ # Translation of debhelper manpages to French # Valery Perrin , 2005, 2006, 2010, 2011. # David Prévot , 2012-2014. -# Baptiste Jammet , 2015, 2016. +# Baptiste Jammet , 2015, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" "POT-Creation-Date: 2016-12-31 21:29+0000\n" -"PO-Revision-Date: 2016-08-31 13:18+0200\n" +"PO-Revision-Date: 2017-01-11 21:37+0100\n" "Last-Translator: Baptiste Jammet \n" "Language-Team: French \n" "Language: fr\n" @@ -913,6 +913,8 @@ msgid "" "If you are upgrading from an earlier compatibility level, please review " "L." msgstr "" +"Si vous mettez à jour depuis un niveau de compatibilité antérieur, veuillez " +"consulter L." # type: textblock #. type: textblock @@ -1459,6 +1461,9 @@ msgid "" "generates maintainer scripts for those files. Use B and " "B instead." msgstr "" +"B n'installe plus de fichiers F ou F, ni ne " +"crée de scripts de maintenance pour ces fichiers. Utilisez B<" +"dh_systemd_enable> et B à la place." # type: =item #. type: textblock @@ -1506,11 +1511,14 @@ msgid "" "B no longer creates debian/I directories unless " "explicitly requested (or it has to create a subdirectory in it)." msgstr "" +"B ne crée plus les répertoires debian/I sans qu'on le " +"lui demande explicitement (ou il doit créer un sous-répertoire à l'intérieur)." #. type: textblock #: debhelper.pod:620 msgid "The vast majority of all packages will be unaffected by this change." msgstr "" +"La grande majorité des paquets ne seront pas affectés par ce changement." #. type: textblock #: debhelper.pod:624 @@ -1520,6 +1528,10 @@ msgid "" "correctly tracks this, the build will be run twice (once for the \"build\" " "target and once for the \"binary\" target)." msgstr "" +"B ne crée plus de fichier témoin (ou de journal) pour savoir si la " +"construction a déjà eu lieu. Cela signifie que, sauf si le système de " +"construction amont s'en occupe, celle-ci sera effectuée deux fois (une " +"première pour la cible « build », une seconde pour la cible « binary »)." #. type: textblock #: debhelper.pod:629 @@ -1527,11 +1539,15 @@ msgid "" "On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." msgstr "" +"D'un autre côté, cela signifie que la reconstruction sans nettoyage " +"(« clean », par exemple B) se comportera comme attendu." #. type: textblock #: debhelper.pod:633 msgid "The previous behaviour can restored by using B<--with build-stamp>" msgstr "" +"Le comportement précédent peut être retrouvé en utilisant B<--with " +"build-stamp>" #. type: =head2 #: debhelper.pod:639 @@ -1825,7 +1841,8 @@ msgstr "" " my $exit_code = ($? >> 8) & 0xff;\n" " my $signal = $? & 0x7f;\n" " if ($exit_code) {\n" -" die(\"Le script debhelper a échoué avec le code d'erreur : ${exit_code}\");\n" +" die(\"Le script debhelper a échoué avec le code d'erreur : " +"${exit_code}\");\n" " } else {\n" " die(\"Le script debhelper a été tué par le signal : ${signal}\");\n" " }\n" @@ -2198,6 +2215,8 @@ msgstr "Joey Hess " #: debhelper-obsolete-compat.pod:3 msgid "debhelper-obsolete-compat - List of no longer supported compat levels" msgstr "" +"debhelper-obsolete-compat - Liste les niveaux de compatibilité qui ne sont " +"plus pris en charge" #. type: textblock #: debhelper-obsolete-compat.pod:7 @@ -2207,35 +2226,39 @@ msgid "" "and to assist people upgrading from a non-supported compat level to a " "supported level." msgstr "" +"Ce document contient les instructions de mise à jour depuis les niveaux de " +"compatibilité qui ne sont plus pris en charge. Ainsi, il existe surtout pour " +"des raisons historiques, et pour ceux qui voudraient faire une mise à jour " +"depuis un niveau de compatibilité qui n'est plus pris en charge." #. type: textblock #: debhelper-obsolete-compat.pod:12 -#, fuzzy #| msgid "" #| "* The package must be using compatibility level 9 or later (see " #| "L)" msgid "For upgrades from supported compat levels, please see L." msgstr "" -"* Le paquet doit utiliser le niveau de compatibilité 9 ou supérieur (voir " -"L) ;" +"Pour les mises à jour depuis un niveau de compatibilité encore pris en " +"charge, veuillez consulter L." #. type: =head1 #: debhelper-obsolete-compat.pod:14 msgid "UPGRADE LIST FOR COMPAT LEVELS" -msgstr "" +msgstr "LISTE CHRONOLOGIQUE DES NIVEAUX DE COMPATIBILITÉ" #. type: textblock #: debhelper-obsolete-compat.pod:16 msgid "" "The following is the list of now obsolete compat levels and their changes." msgstr "" +"La liste suivante répertorie les niveaux de compatibilité qui ne sont plus " +"pris en charge, ainsi que les changements de l'un à l'autre." #. type: =item #: debhelper-obsolete-compat.pod:21 -#, fuzzy #| msgid "v10" msgid "v1" -msgstr "v10" +msgstr "v1" # type: textblock #. type: textblock @@ -2317,10 +2340,9 @@ msgstr "v4" # type: textblock #. type: textblock #: debhelper-obsolete-compat.pod:62 -#, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v3 are:" -msgstr "Les changements par rapport à la version 5 sont :" +msgstr "Les changements par rapport à la version 3 sont :" # type: textblock #. type: textblock @@ -2427,12 +2449,12 @@ msgstr "AUTEURS" #. type: textblock #: debhelper-obsolete-compat.pod:124 msgid "Niels Thykier " -msgstr "" +msgstr "Niels Thykier " #. type: textblock #: debhelper-obsolete-compat.pod:126 msgid "Joey Hess" -msgstr "" +msgstr "Joey Hess" # type: textblock #. type: textblock @@ -3870,7 +3892,8 @@ msgstr "" #: dh_clean:19 #, no-wrap msgid "" -"B is a debhelper program that is responsible for cleaning up after a\n" +"B is a debhelper program that is responsible for cleaning up after " +"a\n" "package is built. It removes the package build directories, and removes some\n" "other files including F, and any detritus left behind by other\n" "debhelper commands. It also removes common files that should not appear in a\n" @@ -3878,9 +3901,12 @@ msgid "" " #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp\n" "\n" msgstr "" -"B est le programme de la suite debhelper chargé du nettoyage, après\n" -"la construction du paquet. Il supprime les répertoires de construction, ainsi que\n" -"d'autres fichiers y compris F. Il supprime aussi tous les résidus laissés\n" +"B est le programme de la suite debhelper chargé du nettoyage, " +"après\n" +"la construction du paquet. Il supprime les répertoires de construction, ainsi " +"que\n" +"d'autres fichiers y compris F. Il supprime aussi tous les " +"résidus laissés\n" "par les autres commandes de debhelper, ainsi que les dossiers communs qui ne\n" "doivent pas apparaître dans un diff Debian :\n" "#*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp\n" @@ -6343,7 +6369,6 @@ msgstr "debian/I.service" # type: textblock #. type: textblock #: dh_installinit:49 -#, fuzzy #| msgid "" #| "If this exists, it is installed into lib/systemd/system/I." #| "service in the package build directory." @@ -6352,7 +6377,8 @@ msgid "" "in the package build directory. Only used in compat levels 10 and below." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous lib/systemd/system/I.service." +"sous lib/systemd/system/I.service. Cela n'est utilisé que dans les " +"modes de compatibilité 10 et inférieurs." # type: =item #. type: =item @@ -6363,7 +6389,6 @@ msgstr "debian/I.tmpfile" # type: textblock #. type: textblock #: dh_installinit:54 -#, fuzzy #| msgid "" #| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " #| "in the package build directory. (The tmpfiles.d mechanism is currently " @@ -6375,7 +6400,8 @@ msgid "" msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " "sous usr/lib/tmpfiles.d/I.conf (les mécanismes tmpfiles.d ne sont " -"pour l'instant utilisés que par systemd)." +"pour l'instant utilisés que par systemd). Cela n'est utilisé que dans les " +"modes de compatibilité 10 et inférieurs." # type: textblock #. type: textblock @@ -8167,7 +8193,8 @@ msgid "" " libfoobar 1 libfoobar1\n" "\n" msgstr "" -"En admettant que le paquet s'appelle F, cette commande produit un fichier\n" +"En admettant que le paquet s'appelle F, cette commande produit un " +"fichier\n" "shlibs tel que :\n" "libtoto 1 libtoto1\n" "\n" @@ -8188,7 +8215,8 @@ msgid "" " libfoobar 1 libfoobar1 (>= 1.1)\n" "\n" msgstr "" -"En admettant que la version actuelle du paquet soit 1.1-3, cette commande produit un fichier shlibs tel que :\n" +"En admettant que la version actuelle du paquet soit 1.1-3, cette commande " +"produit un fichier shlibs tel que :\n" " libtoto 1 libtoto1 (>= 1.1)\n" "\n" @@ -8230,7 +8258,6 @@ msgstr "" # type: textblock #. type: textblock #: dh_md5sums:20 -#, fuzzy #| msgid "" #| "B is a debhelper program that is responsible for generating a " #| "F file, which lists the md5sums of each file in the " @@ -8243,7 +8270,8 @@ msgid "" msgstr "" "B est le programme de la suite debhelper chargé de produire un " "fichier F indiquant la somme md5 de chacun des fichiers du " -"paquet. Ces fichiers sont habituellement exploités par le paquet B." +"paquet. Ces fichiers sont habituellement exploités par B ou le " +"programme L." # type: textblock #. type: textblock @@ -9043,10 +9071,12 @@ msgstr "" #: dh_strip:98 #, no-wrap msgid "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " +"2.1-3~)'\n" "\n" msgstr "" -" dh_strip --dbgsym-migration='libtoto-tools-dbg (<< 2.1-3~), libtoto2-dbg (<< 2.1-3~)'\n" +" dh_strip --dbgsym-migration='libtoto-tools-dbg (<< 2.1-3~), libtoto2-dbg (<" +"< 2.1-3~)'\n" "\n" # type: =item -- cgit v1.2.3 From 7b90b1d4a64e5141f4df10459a45c7a823191505 Mon Sep 17 00:00:00 2001 From: Chris Leick Date: Mon, 23 Jan 2017 18:25:03 +0000 Subject: Update German translations of documentation Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- man/po4a/po/de.po | 70 +++++++++++++++++++++++++++++++------------------------ 2 files changed, 41 insertions(+), 33 deletions(-) diff --git a/debian/changelog b/debian/changelog index a4ad89a5..c2a3624b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,8 +16,8 @@ debhelper (10.2.4) UNRELEASED; urgency=medium [ Translations ] * Update Portuguese translation (Américo Monteiro) (Closes: #851207) - * Update French translation (Baptiste Jammet) - (Closes: #852211) + * Update French translation (Baptiste Jammet) (Closes: #852211) + * Update German translation (Chris Leick) (Closes: #851962) -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po index c649ee59..47bd2184 100644 --- a/man/po4a/po/de.po +++ b/man/po4a/po/de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: debhelper 9.20160814\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" "POT-Creation-Date: 2016-12-31 21:29+0000\n" -"PO-Revision-Date: 2016-08-27 11:57+0100\n" +"PO-Revision-Date: 2017-01-18 20:01+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" "Language: de\n" @@ -846,15 +846,15 @@ msgid "" "If you are upgrading from an earlier compatibility level, please review " "L." msgstr "" +"Falls Sie ein Upgrade von einer vorhergehenden Kompatibilitätsstufe " +"durchführen, überprüfen Sie bitte L." #. type: textblock #: debhelper.pod:308 debhelper.pod:340 debhelper.pod:370 debhelper.pod:401 #: debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 #: debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 -#, fuzzy -#| msgid "These files are deprecated." msgid "This mode is deprecated." -msgstr "Diese Dateien sind veraltet." +msgstr "Dieser Modus ist missbilligt." #. type: =item #: debhelper.pod:310 @@ -1373,6 +1373,9 @@ msgid "" "generates maintainer scripts for those files. Use B and " "B instead." msgstr "" +"B installiert keine F- oder F-Dateien mehr. " +"Es erstellt auch keine Betreuerskripte dafür. Verwenden Sie stattdessen " +"B und B." #. type: textblock #: debhelper.pod:595 @@ -1419,11 +1422,15 @@ msgid "" "B no longer creates debian/I directories unless " "explicitly requested (or it has to create a subdirectory in it)." msgstr "" +"B erstellt keine debian/I-Verzeichnisse mehr, es sei " +"denn, dies wird ausdrücklich verlangt (oder es muss ein Unterverzeichnis " +"darin erstellt werden)." #. type: textblock #: debhelper.pod:620 msgid "The vast majority of all packages will be unaffected by this change." msgstr "" +"Die große Mehrheit aller Pakete wird von dieser Änderung nicht betroffen sein." #. type: textblock #: debhelper.pod:624 @@ -1433,6 +1440,11 @@ msgid "" "correctly tracks this, the build will be run twice (once for the \"build\" " "target and once for the \"binary\" target)." msgstr "" +"B erstellt keine Stempel- (oder Protokoll-) Dateien mehr, um " +"aufzuzeichnen, ob das Bauen bereits lief oder nicht. Falls das Bausystem der " +"Ursprungsautoren dies nicht korrekt verfolgt, bedeutet dies, dass das Bauen " +"zweimal laufen wird (einmal für das Ziel »build« und einmal für das Ziel " +"»binary«)." #. type: textblock #: debhelper.pod:629 @@ -1440,11 +1452,17 @@ msgid "" "On the other hand, this means that rebuild without cleaning (e.g. B) will behave as most people would expect." msgstr "" +"Andererseits bedeutet dies, dass sich erneutes Bauen ohne aufzuräumen (z.B. " +"B) so verhält, wie es die meisten Leute erwarten " +"würden." #. type: textblock #: debhelper.pod:633 +# FIXME s/can restored/can be restored/ msgid "The previous behaviour can restored by using B<--with build-stamp>" msgstr "" +"Das vorherige Verhalten kann mittels B<--with build-stamp> wieder hergestellt " +"werden." #. type: =head2 #: debhelper.pod:639 @@ -2079,6 +2097,8 @@ msgstr "Joey Hess " #: debhelper-obsolete-compat.pod:3 msgid "debhelper-obsolete-compat - List of no longer supported compat levels" msgstr "" +"debhelper-obsolete-compat - Liste nicht mehr unterstützter " +"Kompatibilitätsstufen" #. type: textblock #: debhelper-obsolete-compat.pod:7 @@ -2088,28 +2108,30 @@ msgid "" "and to assist people upgrading from a non-supported compat level to a " "supported level." msgstr "" +"Dieses Dokument enthält die Upgrade-Richtlinien aller Kompatibilitätsstufen, " +"die nicht mehr unterstützt werden. Dementsprechend dient es meistens " +"historischen Zwecken und hilft Leuten beim Upgrade von einer nicht " +"unterstützten Kompatibilitätsstufe auf eine unterstützte Stufe." #. type: textblock #: debhelper-obsolete-compat.pod:12 -#, fuzzy -#| msgid "" -#| "* The package must be using compatibility level 9 or later (see " -#| "L)" msgid "For upgrades from supported compat levels, please see L." msgstr "" -"* Das Paket muss Kompatibilitätsstufe 9 oder höher verwenden (siehe " -"L)." +"Für Upgrades von unterstützten Kompatibilitätsstufen lesen Sie bitte " +"L." #. type: =head1 #: debhelper-obsolete-compat.pod:14 msgid "UPGRADE LIST FOR COMPAT LEVELS" -msgstr "" +msgstr "UPGRADE-LISTE FÜR KOMPATIBILITÄTSSTUFEN" #. type: textblock #: debhelper-obsolete-compat.pod:16 msgid "" "The following is the list of now obsolete compat levels and their changes." msgstr "" +"Es folgt die Liste der nun überflüssigen Kompatibilitätsstufen und ihrer " +"Änderungen." #. type: =item #: debhelper-obsolete-compat.pod:21 @@ -2249,10 +2271,8 @@ msgstr "" #. type: textblock #: debhelper-obsolete-compat.pod:108 -#, fuzzy -#| msgid "dh_installinfo - install info files" msgid "B skips installing empty files." -msgstr "dh_installinfo - installiert Info-Dateien" +msgstr "B überspringt die Installation leerer Dateien" #. type: textblock #: debhelper-obsolete-compat.pod:112 @@ -5830,16 +5850,13 @@ msgstr "debian/I.service" #. type: textblock #: dh_installinit:49 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I." -#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " "in the package build directory. Only used in compat levels 10 and below." msgstr "" "Falls dies existiert, wird es in lib/systemd/system/I.service im " -"Paketbauverzeichnis installiert." +"Paketbauverzeichnis installiert. Nur in Kompatibilitätsstufen 10 und darunter " +"benutzt." #. type: =item #: dh_installinit:52 dh_systemd_enable:48 @@ -5848,11 +5865,6 @@ msgstr "debian/I.tmpfile" #. type: textblock #: dh_installinit:54 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " -#| "in the package build directory. (The tmpfiles.d mechanism is currently " -#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " @@ -5860,7 +5872,7 @@ msgid "" msgstr "" "Falls dies existiert, wird es in usr/lib/tmpfiles.d/I.conf im " "Paketbauverzeichnis installiert. (Der »tmpfiles.d«-Mechanismus wird derzeit " -"nur von Systemd benutzt.)" +"nur von Systemd benutzt.) Nur in Kompatibilitätsstufe 10 und darunter." #. type: textblock #: dh_installinit:66 @@ -7496,11 +7508,6 @@ msgstr "" #. type: textblock #: dh_md5sums:20 -#, fuzzy -#| msgid "" -#| "B is a debhelper program that is responsible for generating a " -#| "F file, which lists the md5sums of each file in the " -#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " @@ -7509,7 +7516,8 @@ msgid "" msgstr "" "B ist ein Debhelper-Programm, das für das Erzeugen einer " "F-Datei zuständig ist, die die Md5-Prüfsummen jeder Datei im " -"Paket auflistet. Diese Dateien werden vom Paket B benutzt." +"Paket auflistet. Diese Dateien werden von B oder dem Programm " +"L benutzt." #. type: textblock #: dh_md5sums:24 -- cgit v1.2.3 From bfe6b3d62356229f3979ecb053defbb62edb2ac7 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 23 Jan 2017 20:27:13 +0000 Subject: Refresh po files Signed-off-by: Niels Thykier --- man/po4a/po/fr.po | 65 ++++++++++++++++++------------------------------------- man/po4a/po/pt.po | 12 +++++----- 2 files changed, 27 insertions(+), 50 deletions(-) diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po index 4cc94358..388f1788 100644 --- a/man/po4a/po/fr.po +++ b/man/po4a/po/fr.po @@ -1461,9 +1461,9 @@ msgid "" "generates maintainer scripts for those files. Use B and " "B instead." msgstr "" -"B n'installe plus de fichiers F ou F, ni ne " -"crée de scripts de maintenance pour ces fichiers. Utilisez B<" -"dh_systemd_enable> et B à la place." +"B n'installe plus de fichiers F ou F, ni " +"ne crée de scripts de maintenance pour ces fichiers. Utilisez " +"B et B à la place." # type: =item #. type: textblock @@ -1511,8 +1511,9 @@ msgid "" "B no longer creates debian/I directories unless " "explicitly requested (or it has to create a subdirectory in it)." msgstr "" -"B ne crée plus les répertoires debian/I sans qu'on le " -"lui demande explicitement (ou il doit créer un sous-répertoire à l'intérieur)." +"B ne crée plus les répertoires debian/I sans qu'on " +"le lui demande explicitement (ou il doit créer un sous-répertoire à " +"l'intérieur)." #. type: textblock #: debhelper.pod:620 @@ -1540,14 +1541,15 @@ msgid "" "buildpackage -nc>) will behave as most people would expect." msgstr "" "D'un autre côté, cela signifie que la reconstruction sans nettoyage " -"(« clean », par exemple B) se comportera comme attendu." +"(« clean », par exemple B) se comportera comme " +"attendu." #. type: textblock #: debhelper.pod:633 msgid "The previous behaviour can restored by using B<--with build-stamp>" msgstr "" -"Le comportement précédent peut être retrouvé en utilisant B<--with " -"build-stamp>" +"Le comportement précédent peut être retrouvé en utilisant B<--with build-" +"stamp>" #. type: =head2 #: debhelper.pod:639 @@ -1841,8 +1843,7 @@ msgstr "" " my $exit_code = ($? >> 8) & 0xff;\n" " my $signal = $? & 0x7f;\n" " if ($exit_code) {\n" -" die(\"Le script debhelper a échoué avec le code d'erreur : " -"${exit_code}\");\n" +" die(\"Le script debhelper a échoué avec le code d'erreur : ${exit_code}\");\n" " } else {\n" " die(\"Le script debhelper a été tué par le signal : ${signal}\");\n" " }\n" @@ -2233,9 +2234,6 @@ msgstr "" #. type: textblock #: debhelper-obsolete-compat.pod:12 -#| msgid "" -#| "* The package must be using compatibility level 9 or later (see " -#| "L)" msgid "For upgrades from supported compat levels, please see L." msgstr "" "Pour les mises à jour depuis un niveau de compatibilité encore pris en " @@ -2256,7 +2254,6 @@ msgstr "" #. type: =item #: debhelper-obsolete-compat.pod:21 -#| msgid "v10" msgid "v1" msgstr "v1" @@ -2340,7 +2337,6 @@ msgstr "v4" # type: textblock #. type: textblock #: debhelper-obsolete-compat.pod:62 -#| msgid "Changes from v5 are:" msgid "Changes from v3 are:" msgstr "Les changements par rapport à la version 3 sont :" @@ -3892,8 +3888,7 @@ msgstr "" #: dh_clean:19 #, no-wrap msgid "" -"B is a debhelper program that is responsible for cleaning up after " -"a\n" +"B is a debhelper program that is responsible for cleaning up after a\n" "package is built. It removes the package build directories, and removes some\n" "other files including F, and any detritus left behind by other\n" "debhelper commands. It also removes common files that should not appear in a\n" @@ -3901,12 +3896,9 @@ msgid "" " #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp\n" "\n" msgstr "" -"B est le programme de la suite debhelper chargé du nettoyage, " -"après\n" -"la construction du paquet. Il supprime les répertoires de construction, ainsi " -"que\n" -"d'autres fichiers y compris F. Il supprime aussi tous les " -"résidus laissés\n" +"B est le programme de la suite debhelper chargé du nettoyage, après\n" +"la construction du paquet. Il supprime les répertoires de construction, ainsi que\n" +"d'autres fichiers y compris F. Il supprime aussi tous les résidus laissés\n" "par les autres commandes de debhelper, ainsi que les dossiers communs qui ne\n" "doivent pas apparaître dans un diff Debian :\n" "#*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp\n" @@ -6369,9 +6361,6 @@ msgstr "debian/I.service" # type: textblock #. type: textblock #: dh_installinit:49 -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I." -#| "service in the package build directory." msgid "" "If this exists, it is installed into lib/systemd/system/I.service " "in the package build directory. Only used in compat levels 10 and below." @@ -6389,10 +6378,6 @@ msgstr "debian/I.tmpfile" # type: textblock #. type: textblock #: dh_installinit:54 -#| msgid "" -#| "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf " -#| "in the package build directory. (The tmpfiles.d mechanism is currently " -#| "only used by systemd.)" msgid "" "If this exists, it is installed into usr/lib/tmpfiles.d/I.conf in " "the package build directory. (The tmpfiles.d mechanism is currently only " @@ -8193,8 +8178,7 @@ msgid "" " libfoobar 1 libfoobar1\n" "\n" msgstr "" -"En admettant que le paquet s'appelle F, cette commande produit un " -"fichier\n" +"En admettant que le paquet s'appelle F, cette commande produit un fichier\n" "shlibs tel que :\n" "libtoto 1 libtoto1\n" "\n" @@ -8215,8 +8199,7 @@ msgid "" " libfoobar 1 libfoobar1 (>= 1.1)\n" "\n" msgstr "" -"En admettant que la version actuelle du paquet soit 1.1-3, cette commande " -"produit un fichier shlibs tel que :\n" +"En admettant que la version actuelle du paquet soit 1.1-3, cette commande produit un fichier shlibs tel que :\n" " libtoto 1 libtoto1 (>= 1.1)\n" "\n" @@ -8258,10 +8241,6 @@ msgstr "" # type: textblock #. type: textblock #: dh_md5sums:20 -#| msgid "" -#| "B is a debhelper program that is responsible for generating a " -#| "F file, which lists the md5sums of each file in the " -#| "package. These files are used by the B package." msgid "" "B is a debhelper program that is responsible for generating a " "F file, which lists the md5sums of each file in the " @@ -8270,8 +8249,8 @@ msgid "" msgstr "" "B est le programme de la suite debhelper chargé de produire un " "fichier F indiquant la somme md5 de chacun des fichiers du " -"paquet. Ces fichiers sont habituellement exploités par B ou le " -"programme L." +"paquet. Ces fichiers sont habituellement exploités par B ou " +"le programme L." # type: textblock #. type: textblock @@ -9071,12 +9050,10 @@ msgstr "" #: dh_strip:98 #, no-wrap msgid "" -" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< " -"2.1-3~)'\n" +" dh_strip --dbgsym-migration='libfoo-tools-dbg (<< 2.1-3~), libfoo2-dbg (<< 2.1-3~)'\n" "\n" msgstr "" -" dh_strip --dbgsym-migration='libtoto-tools-dbg (<< 2.1-3~), libtoto2-dbg (<" -"< 2.1-3~)'\n" +" dh_strip --dbgsym-migration='libtoto-tools-dbg (<< 2.1-3~), libtoto2-dbg (<< 2.1-3~)'\n" "\n" # type: =item diff --git a/man/po4a/po/pt.po b/man/po4a/po/pt.po index 553a15b7..01502eaf 100644 --- a/man/po4a/po/pt.po +++ b/man/po4a/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 10.2.3\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2017-01-17 20:20+0000\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" "PO-Revision-Date: 2017-01-12 22:28+0000\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese <>\n" @@ -1989,7 +1989,7 @@ msgstr "" "B" #. type: =head1 -#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1076 dh_auto_build:48 +#: debhelper.pod:856 debhelper-obsolete-compat.pod:118 dh:1063 dh_auto_build:48 #: dh_auto_clean:51 dh_auto_configure:53 dh_auto_install:93 dh_auto_test:60 #: dh_bugfiles:131 dh_builddeb:192 dh_clean:175 dh_compress:252 dh_fixperms:148 #: dh_gconf:98 dh_gencontrol:167 dh_icons:73 dh_install:326 @@ -2028,7 +2028,7 @@ msgid "Debhelper web site." msgstr "Sítio web do debhelper." #. type: =head1 -#: debhelper.pod:870 dh:1082 dh_auto_build:54 dh_auto_clean:57 +#: debhelper.pod:870 dh:1069 dh_auto_build:54 dh_auto_clean:57 #: dh_auto_configure:59 dh_auto_install:99 dh_auto_test:66 dh_bugfiles:139 #: dh_builddeb:198 dh_clean:181 dh_compress:258 dh_fixperms:154 dh_gconf:104 #: dh_gencontrol:173 dh_icons:79 dh_install:332 dh_installcatalogs:129 @@ -2046,7 +2046,7 @@ msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:872 dh:1084 dh_auto_build:56 dh_auto_clean:59 +#: debhelper.pod:872 dh:1071 dh_auto_build:56 dh_auto_clean:59 #: dh_auto_configure:61 dh_auto_install:101 dh_auto_test:68 dh_builddeb:200 #: dh_clean:183 dh_compress:260 dh_fixperms:156 dh_gencontrol:175 #: dh_install:334 dh_installchangelogs:246 dh_installcron:84 dh_installdeb:223 @@ -2248,7 +2248,7 @@ msgstr "" "B resulta em erro se as \"wildcards\" expandirem para nada." #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:1078 dh_auto_build:50 dh_auto_clean:53 +#: debhelper-obsolete-compat.pod:120 dh:1065 dh_auto_build:50 dh_auto_clean:53 #: dh_auto_configure:55 dh_auto_install:95 dh_auto_test:62 dh_builddeb:194 #: dh_clean:177 dh_compress:254 dh_fixperms:150 dh_gconf:100 dh_gencontrol:169 #: dh_install:328 dh_installcatalogs:125 dh_installchangelogs:240 @@ -3004,7 +3004,7 @@ msgstr "" "sequência." #. type: textblock -#: dh:1080 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 +#: dh:1067 dh_auto_build:52 dh_auto_clean:55 dh_auto_configure:57 #: dh_auto_install:97 dh_auto_test:64 dh_bugfiles:137 dh_builddeb:196 #: dh_clean:179 dh_compress:256 dh_fixperms:152 dh_gconf:102 dh_gencontrol:171 #: dh_icons:77 dh_install:330 dh_installchangelogs:242 dh_installcron:80 -- cgit v1.2.3 From 3ffcedab84c85fbaa978136b759697e7cabcd945 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 23 Jan 2017 20:30:25 +0000 Subject: Release debhelper/10.2.4 into unstable Signed-off-by: Niels Thykier --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index c2a3624b..81099dc4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debhelper (10.2.4) UNRELEASED; urgency=medium +debhelper (10.2.4) unstable; urgency=medium [ Niels Thykier ] * d/changelog: Add missing changelog entry in 10.2.3 for a @@ -19,7 +19,7 @@ debhelper (10.2.4) UNRELEASED; urgency=medium * Update French translation (Baptiste Jammet) (Closes: #852211) * Update German translation (Chris Leick) (Closes: #851962) - -- Niels Thykier Thu, 12 Jan 2017 07:00:19 +0000 + -- Niels Thykier Mon, 23 Jan 2017 20:28:37 +0000 debhelper (10.2.3) unstable; urgency=medium -- cgit v1.2.3 From 5f85b5fb74ad64d17ecf1ab087914792a01b637c Mon Sep 17 00:00:00 2001 From: Hideki Yamane Date: Wed, 25 Jan 2017 20:46:45 +0000 Subject: Add Japanese translations of documentation Signed-off-by: Niels Thykier --- debian/changelog | 7 + man/po4a/po/ja.po | 8551 +++++++++++++++++++++++++++++++++++++++++++++++++++++ man/po4a/po4a.cfg | 3 +- 3 files changed, 8560 insertions(+), 1 deletion(-) create mode 100644 man/po4a/po/ja.po diff --git a/debian/changelog b/debian/changelog index 81099dc4..c21d717b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (10.2.5) UNRELEASED; urgency=medium + + [ Translations ] + * Add Japanese translation (Hideki Yamane) (Closes: #852520) + + -- Niels Thykier Wed, 25 Jan 2017 20:38:48 +0000 + debhelper (10.2.4) unstable; urgency=medium [ Niels Thykier ] diff --git a/man/po4a/po/ja.po b/man/po4a/po/ja.po new file mode 100644 index 00000000..61d4ef53 --- /dev/null +++ b/man/po4a/po/ja.po @@ -0,0 +1,8551 @@ +# Copyright (C) 2013-2014 Debian JP Project +# This file is distributed under the same license as the debhelper package. +# Takahide Nojima , 2012. +# Hideki Yamane , 2012-2014, 2016 +# +msgid "" +msgstr "" +"Project-Id-Version: debhelper 9.20141107\n" +"POT-Creation-Date: 2016-12-31 21:29+0000\n" +"PO-Revision-Date: 2016-09-17 20:45+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Debian JP Project \n" +"Language: Japanease\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Last-Reviewer: Hideki Yamane \n" + +#. type: =head1 +#: debhelper.pod:1 debhelper-obsolete-compat.pod:1 dh:3 dh_auto_build:3 +#: dh_auto_clean:3 dh_auto_configure:3 dh_auto_install:3 dh_auto_test:3 +#: dh_bugfiles:3 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_fixperms:3 +#: dh_gconf:3 dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs:3 +#: dh_installchangelogs:3 dh_installcron:3 dh_installdeb:3 dh_installdebconf:3 +#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 +#: dh_installlogrotate:3 dh_installman:3 dh_installmanpages:3 dh_installmenu:3 +#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_installppp:3 +#: dh_installudev:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_lintian:3 +#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 +#: dh_prep:3 dh_shlibdeps:3 dh_strip:3 dh_testdir:3 dh_testroot:3 dh_usrlocal:3 +#: dh_systemd_enable:3 dh_systemd_start:3 +msgid "NAME" +msgstr "名前" + +#. type: textblock +#: debhelper.pod:3 +msgid "debhelper - the debhelper tool suite" +msgstr "debhelper - debhelper 関連ツール群" + +#. type: =head1 +#: debhelper.pod:5 debhelper-obsolete-compat.pod:5 dh:13 dh_auto_build:13 +#: dh_auto_clean:14 dh_auto_configure:13 dh_auto_install:16 dh_auto_test:14 +#: dh_bugfiles:13 dh_builddeb:13 dh_clean:13 dh_compress:15 dh_fixperms:14 +#: dh_gconf:13 dh_gencontrol:13 dh_icons:14 dh_install:14 dh_installcatalogs:15 +#: dh_installchangelogs:13 dh_installcron:13 dh_installdeb:13 +#: dh_installdebconf:13 dh_installdirs:13 dh_installdocs:13 +#: dh_installemacsen:13 dh_installexamples:13 dh_installifupdown:13 +#: dh_installinfo:13 dh_installinit:14 dh_installlogcheck:13 +#: dh_installlogrotate:13 dh_installman:14 dh_installmanpages:14 +#: dh_installmenu:13 dh_installmime:13 dh_installmodules:14 dh_installpam:13 +#: dh_installppp:13 dh_installudev:14 dh_installwm:13 dh_installxfonts:13 +#: dh_link:14 dh_lintian:13 dh_listpackages:13 dh_makeshlibs:13 dh_md5sums:14 +#: dh_movefiles:13 dh_perl:15 dh_prep:13 dh_shlibdeps:14 dh_strip:14 +#: dh_testdir:13 dh_testroot:7 dh_usrlocal:15 dh_systemd_enable:14 +#: dh_systemd_start:15 +msgid "SYNOPSIS" +msgstr "書式" + +#. type: textblock +#: debhelper.pod:7 +msgid "" +"BI<*> [B<-v>] [B<-a>] [B<-i>] [B<--no-act>] [B<-p>I] [B<-" +"N>I] [B<-P>I]" +msgstr "" +"BI<*> [B<-v>] [B<-a>] [B<-i>] [B<--no-act>] [B<-p>I] [B<-" +"N>I] [B<-P>I]" + +#. type: =head1 +#: debhelper.pod:9 dh:17 dh_auto_build:17 dh_auto_clean:18 dh_auto_configure:17 +#: dh_auto_install:20 dh_auto_test:18 dh_bugfiles:17 dh_builddeb:17 dh_clean:17 +#: dh_compress:19 dh_fixperms:18 dh_gconf:17 dh_gencontrol:17 dh_icons:18 +#: dh_install:18 dh_installcatalogs:19 dh_installchangelogs:17 +#: dh_installcron:17 dh_installdeb:17 dh_installdebconf:17 dh_installdirs:17 +#: dh_installdocs:17 dh_installemacsen:17 dh_installexamples:17 +#: dh_installifupdown:17 dh_installinfo:17 dh_installinit:18 +#: dh_installlogcheck:17 dh_installlogrotate:17 dh_installman:18 +#: dh_installmanpages:18 dh_installmenu:17 dh_installmime:17 +#: dh_installmodules:18 dh_installpam:17 dh_installppp:17 dh_installudev:18 +#: dh_installwm:17 dh_installxfonts:17 dh_link:18 dh_lintian:17 +#: dh_listpackages:17 dh_makeshlibs:17 dh_md5sums:18 dh_movefiles:17 dh_perl:19 +#: dh_prep:17 dh_shlibdeps:18 dh_strip:18 dh_testdir:17 dh_testroot:11 +#: dh_usrlocal:19 dh_systemd_enable:18 dh_systemd_start:19 +msgid "DESCRIPTION" +msgstr "説明" + +#. type: textblock +#: debhelper.pod:11 +msgid "" +"Debhelper is used to help you build a Debian package. The philosophy behind " +"debhelper is to provide a collection of small, simple, and easily understood " +"tools that are used in F to automate various common aspects of " +"building a package. This means less work for you, the packager. It also, to " +"some degree means that these tools can be changed if Debian policy changes, " +"and packages that use them will require only a rebuild to comply with the " +"new policy." +msgstr "" +"debhelper は、Debian パッケージのビルドを容易にするために使われます。" +"debhelper の根底にある考えは「パッケージビルド時の各種の共通的な作業を自動化" +"するために F で用いられている、小さく単純で、容易に理解可能な" +"ツールをまとめて提供すること」です。つまり、あなた=パッケージを作成する人の" +"負担を減らします。さらに、Debian ポリシーが変わった場合にはこのツール群を多少" +"変更さえすれば、debhelper を使っているパッケージが新しいポリシーに適合するの" +"に必要になるのは、再ビルドだけになります。" + +#. type: textblock +#: debhelper.pod:19 +msgid "" +"A typical F file that uses debhelper will call several " +"debhelper commands in sequence, or use L to automate this process. " +"Examples of rules files that use debhelper are in F" +msgstr "" +"debhelper を利用している典型的な F ファイルは、複数の " +"debhelper コマンドを順番に呼び出しているか、L を使って一連の処理を自動" +"化しています。debhelper を使った rules ファイルの例は F にあります。" + +# maint-guide -> maint-guide-ja +#. type: textblock +#: debhelper.pod:23 +msgid "" +"To create a new Debian package using debhelper, you can just copy one of the " +"sample rules files and edit it by hand. Or you can try the B " +"package, which contains a L command that partially " +"automates the process. For a more gentle introduction, the B " +"Debian package contains a tutorial about making your first package using " +"debhelper." +msgstr "" +"debhelper を使って Debian パッケージを作成するには、サンプルの rules ファイル" +"のどれかをコピーして手で修正するだけです。あるいは B パッケージを利" +"用してみてください。このパッケージには部分的に作業を自動化してくれる " +"L コマンドが含まれています。よりやさしい案内については、" +"B パッケージに debhelper を使って初めてパッケージを作る人向け" +"のチュートリアルが含まれています。" + +#. type: =head1 +#: debhelper.pod:29 +msgid "DEBHELPER COMMANDS" +msgstr "DEBHELPER コマンド" + +#. type: textblock +#: debhelper.pod:31 +msgid "" +"Here is the list of debhelper commands you can use. See their man pages for " +"additional documentation." +msgstr "" +"以下が利用可能な debhelper コマンドの一覧です。詳細は、各コマンド付属の man " +"ページを参照してください。" + +#. type: textblock +#: debhelper.pod:36 +msgid "#LIST#" +msgstr "#LIST#" + +#. type: =head2 +#: debhelper.pod:40 +msgid "Deprecated Commands" +msgstr "廃止されたコマンド一覧" + +#. type: textblock +#: debhelper.pod:42 +msgid "A few debhelper commands are deprecated and should not be used." +msgstr "廃止されており、使うべきでない debhelper コマンド一覧" + +#. type: textblock +#: debhelper.pod:46 +msgid "#LIST_DEPRECATED#" +msgstr "#LIST_DEPRECATED#" + +#. type: =head2 +#: debhelper.pod:50 +msgid "Other Commands" +msgstr "他のコマンド" + +#. type: textblock +#: debhelper.pod:52 +msgid "" +"If a program's name starts with B, and the program is not on the above " +"lists, then it is not part of the debhelper package, but it should still " +"work like the other programs described on this page." +msgstr "" +"プログラムの名前が B で始まり、先のリストにないものは、debhelper パッ" +"ケージ付属のプログラムではありません。しかし、このような名前を持つコマンド" +"は、このページに記述されている他のプログラムのように動作するべきです。" + +#. type: =head1 +#: debhelper.pod:56 +msgid "DEBHELPER CONFIG FILES" +msgstr "DEBHELPER 設定ファイル" + +#. type: textblock +#: debhelper.pod:58 +msgid "" +"Many debhelper commands make use of files in F to control what they " +"do. Besides the common F and F, which are " +"in all packages, not just those using debhelper, some additional files can " +"be used to configure the behavior of specific debhelper commands. These " +"files are typically named debian/I.foo (where I of course, " +"is replaced with the package that is being acted on)." +msgstr "" +"debhelper のコマンドの多くは、どのように動作するかについて F ディレ" +"クトリ以下にあるファイルを用います。共通の F や F はすべてのパッケージに存在していますが、これに加えて特定の " +"debhelper コマンドの動作を制御できる追加ファイルがあります。これらのファイル" +"は、大抵 debian/I.foo というファイル名です (もちろん、I は" +"処理しようとしているパッケージ名に変えてください)。" + +#. type: textblock +#: debhelper.pod:65 +msgid "" +"For example, B uses files named F to " +"list the documentation files it will install. See the man pages of " +"individual commands for details about the names and formats of the files " +"they use. Generally, these files will list files to act on, one file per " +"line. Some programs in debhelper use pairs of files and destinations or " +"slightly more complicated formats." +msgstr "" +"例えば、B では、インストールするドキュメントの一覧を得るのに " +"F という名前のファイルを利用します。各コマンドが使うファ" +"イルの名前とフォーマットについては、詳細はコマンドの man ページを参照してくだ" +"さい。大抵、これらのファイルでは1行ごとに処理するファイルを1つずつ列挙しま" +"す。いくつかの debhelper プログラムでは、ファイルと宛先の組み合わせや、もう" +"少々複雑なフォーマットなどを使います。" + +#. type: textblock +#: debhelper.pod:72 +msgid "" +"Note for the first (or only) binary package listed in F, " +"debhelper will use F when there's no F file." +msgstr "" +"F に記載されている最初の (あるいは唯一の) バイナリパッケージ" +"は、debhelper は F ファイルが無い場合には F " +"ファイルを利用します。" + +#. type: textblock +#: debhelper.pod:76 +msgid "" +"In some rare cases, you may want to have different versions of these files " +"for different architectures or OSes. If files named debian/I.foo." +"I or debian/I.foo.I exist, where I and I are " +"the same as the output of \"B\" / " +"\"B\", then they will be used in " +"preference to other, more general files." +msgstr "" +"稀ではありますが、これらのファイルを、異なるアーキテクチャ/異なる OS 用にそ" +"れぞれ用意したい場合があります。ファイル名が debian/I.foo.I " +"や、debian/I.foo.I のものが存在すると、\"B\" / \"B\" でそれぞれ指" +"定した I と I を含むものが、通常のファイルよりも優先的に使われま" +"す。" + +#. type: textblock +#: debhelper.pod:83 +msgid "" +"Mostly, these config files are used to specify lists of various types of " +"files. Documentation or example files to install, files to move, and so on. " +"When appropriate, in cases like these, you can use standard shell wildcard " +"characters (B and B<*> and B<[>I<..>B<]> character classes) in the " +"files. You can also put comments in these files; lines beginning with B<#> " +"are ignored." +msgstr "" +"多くの場合、これらの設定ファイルは、いろいろな種類のファイルを列挙して指定す" +"るのに使われます。例えばインストールすべきドキュメントやサンプルファイルで" +"あったり、移動すべきファイルだったり等となります。シェルのワイルドカード文字" +"列 (B, B<*> 及び B<[>I<..>B<]> 文字クラス) をファイルに含める事ができ、状" +"況次第ではこちらが望ましい事もあります。また、行頭がB <#> で始まる行は無視さ" +"れる事を利用して、コメントを記載できます。" + +#. type: textblock +#: debhelper.pod:90 +msgid "" +"The syntax of these files is intentionally kept very simple to make them " +"easy to read, understand, and modify. If you prefer power and complexity, " +"you can make the file executable, and write a program that outputs whatever " +"content is appropriate for a given situation. When you do so, the output is " +"not further processed to expand wildcards or strip comments." +msgstr "" +"これらファイルの文法は、読解・修正しやすいよう、意図的にシンプルにしてありま" +"す。もし、さらに強力で複雑な事をしたければ、これらのファイルに実行権限を付与" +"し、状況にあった出力をするプログラムを作成してください。ただし、この場合の出" +"力結果では、後の処理でワイルドカードは展開されず、コメントも取り除かれない事" +"に気をつけてください。" + +#. type: =head1 +#: debhelper.pod:96 +msgid "SHARED DEBHELPER OPTIONS" +msgstr "DEBHELPER 間で共有されるオプション" + +#. type: textblock +#: debhelper.pod:98 +msgid "" +"The following command line options are supported by all debhelper programs." +msgstr "" +"以下のコマンドラインオプションは、全ての debhelper プログラムでサポートされて" +"います。" + +#. type: =item +#: debhelper.pod:102 +msgid "B<-v>, B<--verbose>" +msgstr "B<-v>, B<--verbose>" + +#. type: textblock +#: debhelper.pod:104 +msgid "" +"Verbose mode: show all commands that modify the package build directory." +msgstr "" +"冗長出力モード。パッケージビルドディレクトリを変更するようなコマンドを全て表" +"示します。" + +#. type: =item +#: debhelper.pod:106 dh:67 +msgid "B<--no-act>" +msgstr "B<--no-act>" + +#. type: textblock +#: debhelper.pod:108 +msgid "" +"Do not really do anything. If used with -v, the result is that the command " +"will output what it would have done." +msgstr "" +"実際の処理を行いません。-v オプションと併用すると、コマンドがどのような処理を" +"行うかが出力されます。" + +#. type: =item +#: debhelper.pod:111 +msgid "B<-a>, B<--arch>" +msgstr "B<-a>, B<--arch>" + +#. type: textblock +#: debhelper.pod:113 +msgid "" +"Act on architecture dependent packages that should be built for the " +"B architecture." +msgstr "" +"アーキテクチャ依存パッケージを、B アーテキクチャ向けにビルドす" +"るように動作します。" + +#. type: =item +#: debhelper.pod:116 +msgid "B<-i>, B<--indep>" +msgstr "B<-i>, B<--indep>" + +#. type: textblock +#: debhelper.pod:118 +msgid "Act on all architecture independent packages." +msgstr "全てのアーキテクチャ非依存パッケージに対して処理を行います。" + +#. type: =item +#: debhelper.pod:120 +msgid "B<-p>I, B<--package=>I" +msgstr "B<-p>I, B<--package=>I" + +#. type: textblock +#: debhelper.pod:122 +msgid "" +"Act on the package named I. This option may be specified multiple " +"times to make debhelper operate on a given set of packages." +msgstr "" +"I で指定されたパッケージに対して処理を行います。複数のパッケージを " +"debhelper に処理させる際には、繰り返し列挙して指定してください。" + +#. type: =item +#: debhelper.pod:125 +msgid "B<-s>, B<--same-arch>" +msgstr "B<-s>, B<--same-arch>" + +#. type: textblock +#: debhelper.pod:127 +msgid "Deprecated alias of B<-a>." +msgstr "廃止された B<-a> のエイリアスです。" + +#. type: =item +#: debhelper.pod:129 +msgid "B<-N>I, B<--no-package=>I" +msgstr "B<-N>I, B<--no-package=>I" + +#. type: textblock +#: debhelper.pod:131 +msgid "" +"Do not act on the specified package even if an B<-a>, B<-i>, or B<-p> option " +"lists the package as one that should be acted on." +msgstr "" +"B<-a>, B<-i>, B<-p> オプションで処理すべきパッケージとして対象としていても、" +"指定されているパッケージについては処理を行わないようにします。" + +#. type: =item +#: debhelper.pod:134 +msgid "B<--remaining-packages>" +msgstr "B<--remaining-packages>" + +#. type: textblock +#: debhelper.pod:136 +msgid "" +"Do not act on the packages which have already been acted on by this " +"debhelper command earlier (i.e. if the command is present in the package " +"debhelper log). For example, if you need to call the command with special " +"options only for a couple of binary packages, pass this option to the last " +"call of the command to process the rest of packages with default settings." +msgstr "" +"この debhelper コマンドにより、すでに処理済のパッケージについては処理をしない" +"ようにします (つまり、debhelper のログにコマンドの記録があるものは処理しな" +"い)。例えば、いくつかのバイナリパッケージだけに対して特別なオプション付きでコ" +"マンドを呼び出し、残りのパッケージに対しては本オプションをつけてコマンドを呼" +"び出し、デフォルト設定による処理を行うという事ができます。" + +#. type: =item +#: debhelper.pod:142 +msgid "B<--ignore=>I" +msgstr "B<--ignore=>I" + +#. type: textblock +#: debhelper.pod:144 +msgid "" +"Ignore the specified file. This can be used if F contains a " +"debhelper config file that a debhelper command should not act on. Note that " +"F, F, and F can't be " +"ignored, but then, there should never be a reason to ignore those files." +msgstr "" +"特定のファイルを無視します。F 以下に実際には debhelper コマンドが実" +"行しては困るような debhelper 設定ファイルがあるような時に利用できます。ただ、" +"F, F, F は無視する事ができま" +"せん。これは動作の都合上、これらのファイルを無視するわけにはいかないからで" +"す。" + +#. type: textblock +#: debhelper.pod:149 +msgid "" +"For example, if upstream ships a F that you don't want " +"B to install, use B<--ignore=debian/init>" +msgstr "" +"例えば、開発元 (upstream) が F を提供しているが B " +"でインストールして欲しくは無い場合、B<--ignore=debian/init> を使うことになり" +"ます。" + +#. type: =item +#: debhelper.pod:152 +msgid "B<-P>I, B<--tmpdir=>I" +msgstr "B<-P>I, B<--tmpdir=>I" + +#. type: textblock +#: debhelper.pod:154 +msgid "" +"Use I for package build directory. The default is debian/I" +msgstr "" +"I をパッケージビルドディレクトリとして利用します。デフォルトでは " +"debian/I ディレクトリが使われます。" + +#. type: =item +#: debhelper.pod:156 +msgid "B<--mainpackage=>I" +msgstr "B<--mainpackage=>I" + +#. type: textblock +#: debhelper.pod:158 +msgid "" +"This little-used option changes the package which debhelper considers the " +"\"main package\", that is, the first one listed in F, and " +"the one for which F files can be used instead of the usual " +"F files." +msgstr "" +"このあまり使われないオプションは、debhelper コマンドが \"main package\" とみ" +"なすパッケージ、つまり、F の最初に記載されたパッケージを変更" +"するものです。これにより、通常の F ファイルではなく " +"F ファイルが使われるようになります。" + +#. type: =item +#: debhelper.pod:163 +msgid "B<-O=>I