diff -Nru debhelper-13.5.2/autoscripts/postinst-icons debhelper-13.3.4/autoscripts/postinst-icons --- debhelper-13.5.2/autoscripts/postinst-icons 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-icons 2020-07-17 16:52:19.000000000 +0000 @@ -1,5 +1,5 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if command -v update-icon-caches >/dev/null; then + if which update-icon-caches >/dev/null 2>&1 ; then update-icon-caches #DIRLIST# fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-init debhelper-13.3.4/autoscripts/postinst-init --- debhelper-13.5.2/autoscripts/postinst-init 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-init 2020-07-17 16:52:19.000000000 +0000 @@ -1,6 +1,6 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ] && [ -x "/etc/init.d/#SCRIPT#" ]; then + if [ -x "/etc/init.d/#SCRIPT#" ]; then update-rc.d #SCRIPT# #INITPARMS# >/dev/null - invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# restart || #ERROR_HANDLER# + invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# start || #ERROR_HANDLER# fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-init-restart debhelper-13.3.4/autoscripts/postinst-init-restart --- debhelper-13.5.2/autoscripts/postinst-init-restart 1970-01-01 00:00:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-init-restart 2020-07-17 16:52:19.000000000 +0000 @@ -0,0 +1,11 @@ +if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then + if [ -x "/etc/init.d/#SCRIPT#" ]; then + update-rc.d #SCRIPT# #INITPARMS# >/dev/null + if [ -n "$2" ]; then + _dh_action=restart + else + _dh_action=start + fi + invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# $_dh_action || #ERROR_HANDLER# + fi +fi diff -Nru debhelper-13.5.2/autoscripts/postinst-init-tmpfiles debhelper-13.3.4/autoscripts/postinst-init-tmpfiles --- debhelper-13.5.2/autoscripts/postinst-init-tmpfiles 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-init-tmpfiles 2020-07-17 16:52:19.000000000 +0000 @@ -1,7 +1,7 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. - if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ] ; then + if [ -d /run/systemd/system ] ; then systemd-tmpfiles --create #TMPFILES# >/dev/null || true fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-menu debhelper-13.3.4/autoscripts/postinst-menu --- debhelper-13.5.2/autoscripts/postinst-menu 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-menu 2017-07-10 18:48:25.000000000 +0000 @@ -1,3 +1,3 @@ -if [ "$1" = "configure" ] && [ -x "`command -v update-menus`" ]; then +if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then update-menus fi diff -Nru debhelper-13.5.2/autoscripts/postinst-menu-method debhelper-13.3.4/autoscripts/postinst-menu-method --- debhelper-13.5.2/autoscripts/postinst-menu-method 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-menu-method 2014-11-16 15:43:09.000000000 +0000 @@ -1,7 +1,7 @@ inst=/etc/menu-methods/#PACKAGE# if [ -f $inst ]; then chmod a+x $inst - if [ -x "`command -v update-menus`" ]; then + if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-systemd-restartnostart debhelper-13.3.4/autoscripts/postinst-systemd-restartnostart --- debhelper-13.5.2/autoscripts/postinst-systemd-restartnostart 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-systemd-restartnostart 2020-07-17 16:52:19.000000000 +0000 @@ -1,5 +1,5 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then + if [ -d /run/systemd/system ]; then systemctl --system daemon-reload >/dev/null || true if [ -n "$2" ]; then deb-systemd-invoke #RESTART_ACTION# #UNITFILES# >/dev/null || true diff -Nru debhelper-13.5.2/autoscripts/postinst-systemd-start debhelper-13.3.4/autoscripts/postinst-systemd-start --- debhelper-13.5.2/autoscripts/postinst-systemd-start 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-systemd-start 2020-07-17 16:52:19.000000000 +0000 @@ -1,6 +1,6 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then + if [ -d /run/systemd/system ]; then systemctl --system daemon-reload >/dev/null || true - deb-systemd-invoke restart #UNITFILES# >/dev/null || true + deb-systemd-invoke start #UNITFILES# >/dev/null || true fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-systemd-user-dont-enable debhelper-13.3.4/autoscripts/postinst-systemd-user-dont-enable --- debhelper-13.5.2/autoscripts/postinst-systemd-user-dont-enable 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-systemd-user-dont-enable 2020-07-17 16:52:19.000000000 +0000 @@ -1,17 +1,15 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ]; then - if deb-systemd-helper --user debian-installed #UNITFILE# ; then - # This will only remove masks created by d-s-h on package removal. - deb-systemd-helper --user unmask #UNITFILE# >/dev/null || true + if deb-systemd-helper --user debian-installed #UNITFILE# ; then + # This will only remove masks created by d-s-h on package removal. + deb-systemd-helper --user unmask #UNITFILE# >/dev/null || true - if deb-systemd-helper --quiet --user was-enabled #UNITFILE# ; then - # Create new symlinks, if any. - deb-systemd-helper --user enable #UNITFILE# >/dev/null || true - fi + if deb-systemd-helper --quiet --user was-enabled #UNITFILE# ; then + # Create new symlinks, if any. + deb-systemd-helper --user enable #UNITFILE# >/dev/null || true fi - - # Update the statefile to add new symlinks (if any), which need to be cleaned - # up on purge. Also remove old symlinks. - deb-systemd-helper --user update-state #UNITFILE# >/dev/null || true fi + + # Update the statefile to add new symlinks (if any), which need to be cleaned + # up on purge. Also remove old symlinks. + deb-systemd-helper --user update-state #UNITFILE# >/dev/null || true fi diff -Nru debhelper-13.5.2/autoscripts/postinst-systemd-user-enable debhelper-13.3.4/autoscripts/postinst-systemd-user-enable --- debhelper-13.5.2/autoscripts/postinst-systemd-user-enable 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-systemd-user-enable 2020-07-17 16:52:19.000000000 +0000 @@ -1,17 +1,15 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ] ; then - # This will only remove masks created by d-s-h on package removal. - deb-systemd-helper --user unmask #UNITFILE# >/dev/null || true + # This will only remove masks created by d-s-h on package removal. + deb-systemd-helper --user unmask #UNITFILE# >/dev/null || true - # was-enabled defaults to true, so new installations run enable. - if deb-systemd-helper --quiet --user was-enabled #UNITFILE# ; then - # Enables the unit on first installation, creates new - # symlinks on upgrades if the unit file has changed. - deb-systemd-helper --user enable #UNITFILE# >/dev/null || true - else - # Update the statefile to add new symlinks (if any), which need to be - # cleaned up on purge. Also remove old symlinks. - deb-systemd-helper --user update-state #UNITFILE# >/dev/null || true - fi + # was-enabled defaults to true, so new installations run enable. + if deb-systemd-helper --quiet --user was-enabled #UNITFILE# ; then + # Enables the unit on first installation, creates new + # symlinks on upgrades if the unit file has changed. + deb-systemd-helper --user enable #UNITFILE# >/dev/null || true + else + # Update the statefile to add new symlinks (if any), which need to be + # cleaned up on purge. Also remove old symlinks. + deb-systemd-helper --user update-state #UNITFILE# >/dev/null || true fi fi diff -Nru debhelper-13.5.2/autoscripts/postinst-sysusers debhelper-13.3.4/autoscripts/postinst-sysusers --- debhelper-13.5.2/autoscripts/postinst-sysusers 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-sysusers 2021-01-08 20:00:03.000000000 +0000 @@ -1,5 +1,3 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - if [ -z "${DPKG_ROOT:-}" ] ; then - systemd-sysusers #CONFILE_BASENAME# - fi + systemd-sysusers #CONFILE_BASENAME# fi diff -Nru debhelper-13.5.2/autoscripts/postinst-xfonts debhelper-13.3.4/autoscripts/postinst-xfonts --- debhelper-13.5.2/autoscripts/postinst-xfonts 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postinst-xfonts 2014-11-16 15:43:09.000000000 +0000 @@ -1,3 +1,3 @@ -if command -v update-fonts-dir >/dev/null; then +if which update-fonts-dir >/dev/null 2>&1; then #CMDS# fi diff -Nru debhelper-13.5.2/autoscripts/postrm-icons debhelper-13.3.4/autoscripts/postrm-icons --- debhelper-13.5.2/autoscripts/postrm-icons 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-icons 2014-11-16 15:43:09.000000000 +0000 @@ -1,3 +1,3 @@ -if command -v update-icon-caches >/dev/null; then +if which update-icon-caches >/dev/null 2>&1 ; then update-icon-caches #DIRLIST# fi diff -Nru debhelper-13.5.2/autoscripts/postrm-init debhelper-13.3.4/autoscripts/postrm-init --- debhelper-13.5.2/autoscripts/postrm-init 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-init 2020-07-17 16:52:19.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = "purge" ] ; then +if [ "$1" = "purge" ] ; then update-rc.d #SCRIPT# remove >/dev/null fi diff -Nru debhelper-13.5.2/autoscripts/postrm-menu debhelper-13.3.4/autoscripts/postrm-menu --- debhelper-13.5.2/autoscripts/postrm-menu 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-menu 2017-07-10 18:48:25.000000000 +0000 @@ -1 +1 @@ -if [ -x "`command -v update-menus`" ]; then update-menus ; fi +if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi diff -Nru debhelper-13.5.2/autoscripts/postrm-menu-method debhelper-13.3.4/autoscripts/postrm-menu-method --- debhelper-13.5.2/autoscripts/postrm-menu-method 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-menu-method 2014-11-16 15:43:09.000000000 +0000 @@ -1,3 +1,3 @@ inst=/etc/menu-methods/#PACKAGE# if [ "$1" = "remove" ] && [ -f "$inst" ]; then chmod a-x $inst ; fi -if [ -x "`command -v update-menus`" ]; then update-menus ; fi +if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi diff -Nru debhelper-13.5.2/autoscripts/postrm-systemd-reload-only debhelper-13.3.4/autoscripts/postrm-systemd-reload-only --- debhelper-13.5.2/autoscripts/postrm-systemd-reload-only 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-systemd-reload-only 2021-01-08 20:00:03.000000000 +0000 @@ -1,3 +1,3 @@ -if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then +if [ -d /run/systemd/system ] && [ "$1" = remove ]; then systemctl --system daemon-reload >/dev/null || true fi diff -Nru debhelper-13.5.2/autoscripts/postrm-systemd-user debhelper-13.3.4/autoscripts/postrm-systemd-user --- debhelper-13.5.2/autoscripts/postrm-systemd-user 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-systemd-user 2020-07-17 16:52:19.000000000 +0000 @@ -1,11 +1,11 @@ if [ "$1" = "remove" ]; then - if [ -z "${DPKG_ROOT:-}" ] && [ -x "/usr/bin/deb-systemd-helper" ] ; then + if [ -x "/usr/bin/deb-systemd-helper" ] ; then deb-systemd-helper --user mask #UNITFILES# >/dev/null || true fi fi if [ "$1" = "purge" ]; then - if [ -z "${DPKG_ROOT:-}" ] && [ -x "/usr/bin/deb-systemd-helper" ] ; then + if [ -x "/usr/bin/deb-systemd-helper" ] ; then deb-systemd-helper --user purge #UNITFILES# >/dev/null || true deb-systemd-helper --user unmask #UNITFILES# >/dev/null || true fi diff -Nru debhelper-13.5.2/autoscripts/postrm-ucf debhelper-13.3.4/autoscripts/postrm-ucf --- debhelper-13.5.2/autoscripts/postrm-ucf 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-ucf 2017-07-29 18:08:37.000000000 +0000 @@ -3,10 +3,10 @@ rm -f "#UCFDEST#$ext" done - if [ -x "`command -v ucf`" ]; then + if [ -x "`which ucf 2>/dev/null`" ]; then ucf --purge "#UCFDEST#" fi - if [ -x "`command -v ucfr`" ]; then + if [ -x "`which ucfr 2>/dev/null`" ]; then ucfr --purge #PACKAGE# "#UCFDEST#" fi fi diff -Nru debhelper-13.5.2/autoscripts/postrm-xfonts debhelper-13.3.4/autoscripts/postrm-xfonts --- debhelper-13.5.2/autoscripts/postrm-xfonts 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/postrm-xfonts 2017-07-10 18:48:25.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -x "`command -v update-fonts-dir`" ]; then +if [ -x "`which update-fonts-dir 2>/dev/null`" ]; then #CMDS# fi diff -Nru debhelper-13.5.2/autoscripts/prerm-init debhelper-13.3.4/autoscripts/prerm-init --- debhelper-13.5.2/autoscripts/prerm-init 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/prerm-init 2020-07-17 16:52:19.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -z "${DPKG_ROOT:-}" ] && [ -x "/etc/init.d/#SCRIPT#" ]; then +if [ -x "/etc/init.d/#SCRIPT#" ]; then invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# stop || #ERROR_HANDLER# fi diff -Nru debhelper-13.5.2/autoscripts/prerm-init-norestart debhelper-13.3.4/autoscripts/prerm-init-norestart --- debhelper-13.5.2/autoscripts/prerm-init-norestart 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/prerm-init-norestart 2020-07-17 16:52:19.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = remove ] && [ -x "/etc/init.d/#SCRIPT#" ] ; then +if [ -x "/etc/init.d/#SCRIPT#" ] && [ "$1" = remove ]; then invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# stop || #ERROR_HANDLER# fi diff -Nru debhelper-13.5.2/autoscripts/prerm-systemd debhelper-13.3.4/autoscripts/prerm-systemd --- debhelper-13.5.2/autoscripts/prerm-systemd 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/prerm-systemd 2020-07-17 16:52:19.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then +if [ -d /run/systemd/system ]; then deb-systemd-invoke stop #UNITFILES# >/dev/null || true fi diff -Nru debhelper-13.5.2/autoscripts/prerm-systemd-restart debhelper-13.3.4/autoscripts/prerm-systemd-restart --- debhelper-13.5.2/autoscripts/prerm-systemd-restart 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/autoscripts/prerm-systemd-restart 2020-07-17 16:52:19.000000000 +0000 @@ -1,3 +1,3 @@ -if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = remove ] && [ -d /run/systemd/system ] ; then +if [ -d /run/systemd/system ] && [ "$1" = remove ]; then deb-systemd-invoke stop #UNITFILES# >/dev/null || true fi diff -Nru debhelper-13.5.2/debhelper.pod debhelper-13.3.4/debhelper.pod --- debhelper-13.5.2/debhelper.pod 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/debhelper.pod 2021-02-22 18:51:45.000000000 +0000 @@ -1056,12 +1056,10 @@ =item - -B: - -The B tool would no longer installs the maintainer provided -F file as it was deemed unnecessary. However, the -B from dpkg/1.20 made the file relevant again and -B now installs it again in compat levels 12+. +The B tool no longer installs the maintainer provided +F file. The file has mostly been obsolete since +compatibility level 3, where B began to automatically +compute the resulting F control file. =item - @@ -1248,52 +1246,6 @@ The tool B is now included in the default sequence. -=item - - -Use of the B command in override and hook targets now causes -an error. The B command has been a no-op for years and was -removed in debhelper 13.4. - -=item - - -The B sequencer will warn if the B addon is implicitly activated to -warn maintainers of the pending compat 15 change in B. - -Maintainers are urged to either explicitly activate the B addon to -preserve the existing behaviour (e.g., by adding B to -Build-Depends), or explicitly passing B<--destdir> to B if used and -then passing B<--without single-binary> to B (the latter to silence the warning). - -The rationale for this change to avoid "surprises" when adding a second binary package -later. Previously, debhelper would silently change behaviour often resulting in empty -binary packages being uploaded to the archive by mistake. With the new behaviour, -the B addon will detect the mismatch and warn the maintainer of what is -about to happen. - -=back - -=item v15 - -This compatibility level is still open for development; use with caution. - -Changes from v14 are: - -=over 8 - -=item - - -The B tool no longer defaults to B<< --destdir=debian/I >> -for source packages only producing a single binary. If this behaviour is wanted, -the package should explicitly activate the B dh addon (e.g., by adding -B to B) or pass B<--destdir> to -B. - -The rationale for this change to avoid "surprises" when adding a second binary package -later. Previously, debhelper would silently change behaviour often resulting in empty -binary packages being uploaded to the archive by mistake. With the new behaviour, -the B addon will detect the mismatch and warn the maintainer of what is -about to happen. - =back =back diff -Nru debhelper-13.5.2/debian/changelog debhelper-13.3.4/debian/changelog --- debhelper-13.5.2/debian/changelog 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/debian/changelog 2021-04-03 15:14:12.000000000 +0000 @@ -1,192 +1,8 @@ -debhelper (13.5.2) focal; urgency=medium +debhelper (13.3.4-ubuntu1) focal; urgency=medium - * Backport from sid + * Backport from sid no changes - -- Nouibat Taha Fri, 24 Sep 2021 16:04:27 +0100 - -debhelper (13.5.2) unstable; urgency=medium - - [ Niels Thykier ] - * dh_installsystemd: Revert change to deploy systemd files into - usr/lib/systemd. (Closes: #993316, #993759) - * dh_installinit: Ditto. - * dh_systemd_enable: Ditto. - * dh_systemd_start: Ditto. - * SequencerUtil.pm: Remove duplicate "-a" option to some commands. - Thanks to Christoph Berg for reporting the issue. - (Closes: #971761) - * dh_installdeb: Revert the change to rewrite `rm_conffiles` into - `remove-on-upgrade` due to it causing bugs in non-trivial cases. - (Closes: #994919) - - [ Christoph Berg ] - * dh_installtmpfiles: Add missing option name in POD documentation. - - -- Niels Thykier Thu, 23 Sep 2021 16:44:25 +0000 - -debhelper (13.5.1) unstable; urgency=medium - - [ Paul Wise ] - * cmake.pm: make it possible to override dh provided ctest arguments - - [ Niels Thykier ] - * cmake.pm: Add missing import which broke cmake related builds. - Thanks to Boyuan Yang for reporting the issue. - (Closes: #993345) - - -- Niels Thykier Tue, 31 Aug 2021 05:43:35 +0000 - -debhelper (13.5) unstable; urgency=medium - - * dh_installdeb: Install debian/conffiles in compat 12+ again - (undoing the compat 12 change saying dh_installdeb would ignore - this file). The file can now be using for the activating the - `remove-on-upgrade` feature from dpkg 1.20. - * dh_installdeb: Automatically rewrite `rm_conffiles` into the - new `remove-on-upgrade` feature from dpkg when possible. - * cmake.pm: Pass `ARGS+=--verbose` to make when running tests - in the cmake+make variant except when "terse" is in - DEB_BUILD_OPTIONS. Thanks to Paul Wise for the suggestion. - (Closes: #992623) - * python_support.pm: Remove obsolete dh addon. It did nothing - but warn and nothing used it anymore. - * dh: Document debhelper provided dh addon sequences. - * single_binary.pm: New dh addon ("single-binary") that explicitly - activates the "single binary" work flow, where dh_auto_install - uses debian/ as default --destdir when there is only a - single binary package. It will error out if used in a - source package building multiple binary packages. - * dh: Activate "single-binary" addon by default in compat levels - up to and including compat 14 when the source package only lists - one binary package in debian/control. In compat 14, emit a warning - when this happens implicitly requesting users to explicitly enable - or disable the addon for single binary source packages to avoid - surprises in compat 15. - * dh_auto_install: In compat 15, remove special-case default for - --destdir for single binary source packages. If the previous - default is desired, please use the "single-binary" dh addon or - explicitly pass --destdir to dh_auto_install. - (Closes: #971432) - * debian/control: Provide dh-sequence-single-binary. - * debhelper.pod: Document the dh_auto_install will change behaviour - in compat 15 for single binary packages and dh will warning about - that in compat 14. - * dh_assistant: New tool for assisting third-party tools. At the - moment, it primarily supports introspection related features but - will hopefully be extended to support more use cases. - (Closes: #984900) - - -- Niels Thykier Mon, 30 Aug 2021 19:50:42 +0000 - -debhelper (13.4.1) unstable; urgency=medium - - [ Clint Adams ] - * autoscripts/*: Replace `which` with `command -v`. - - [ Simon McVittie ] - * dh_installsystemd: Only merge /lib/systemd/system into /usr - for now. (Closes: #992554) - * dh_systemd_enable: Ditto. - - [ Johannes Schauer Marin Rodrigues ] - * autoscripts/postinst-init-nostart: Call invoke-rc.d when - a non-empty DPKG_ROOT is used. (Closes: #992556) - - -- Niels Thykier Sat, 21 Aug 2021 09:01:00 +0000 - -debhelper (13.4+nmu1) unstable; urgency=high - - [ Sean Whitton ] - * Non-maintainer upload. - * Replace "use v5.28" with "use v5.24" in Dh_Lib.pm. - The change to "use v5.28" in 13.4 broke the test to distinguish 0755 - from "0755" in the reset_perm_and_owner function, breaking builds. - Thanks Adrian Bunk and Ansgar for help isolating the problem. - - [ Niels Thykier ] - * debian/changelog: Correct bug number in the 13.4 entry. - - -- Sean Whitton Tue, 17 Aug 2021 13:34:02 -0700 - -debhelper (13.4) unstable; urgency=medium - - [ Dimitri John Ledkov ] - * dh_dwz: run in parallel across packages. (Closes: !47) - - [ Andrej Shadura ] - * Dh_Buildsystems.pm: Add bmake and mkcmake as third-party - build systems. (Closes: !46) - - [ Guillem Jover ] - * Dh_Buildsystems.pm: Add golang as a third-party build - system. (Closes: #981106) - - [ Niels Thykier ] - * autoscripts/*: Add support for DPKG_ROOT in systemd, tmpusers, - sysusers and init related snippets. Based on an initial patch - from Helmut Grohne. (Closes: #983566) - * autoscripts/*: Reorder conditions in some scripts to avoid - doing a redundant stat call when a script parameter can decide - to skip it. - * dh_gconf: Remove the command as it does nothing. - (Closes: #908845) - * doc/TODO: Remove reference to dh_gconf. - * root_sequence.pm: Remove dh_gconf from root sequence and declare - it as obsolete (causing errors from compat 14 if still referenced - in hook targets). - * man/po4a/po4a.cfg: Remove dh_gconf from translations. - * AddonAPI.pm: The declare_command_obsolete command now accepts an - "$error_compat" parameter to enable addons to choose which compat - level that will trigger an error (though it must be minimum 13). - * doc/PROGRAMMING: Update docs to reflect API change. - * debhelper.pod: Document that referencing dh_gconf in hook targets - will cause an error in compat 14. - * dh_fixperms: Correct permissions of files beneath usr/libexec to - be executable. (Closes: #980325) - * dh_installtmpfiles: Only register tmpfiles ending with ".conf" as - tmpfiles in /usr/lib/tmpfiles.d and /etc/tmpfiles.d. This ensures - that dh_installtmpfiles gracefully copes with e.g. README files - provided by systemd upstream. (Closes: #986329) - * dh_installsystemd: Ditto (but only relevant in compat 12 or - earlier) - * cmake.pm: Pass -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF to cmake in - addition to -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON as the - former is intended to replace the latter. Thanks to Raul Tambre - for reporting the issue. (Closes: #988973) - * Dh_Lib.pm: Bump version requirement to v5.28 to reflect the actual - requirements (the code was using v5.28 features). Thanks to - Sérgio Basto for reporting the issue. - * dh_missing: Ditto. - * autoscripts/postinst-init,autoscripts/postinst-systemd-start: Use - "restart" instead of "start" when starting the services. This - ensures a smooth transition from --restart-after-upgrade to - --no-restart-after-upgrade in dh_installinit and dh_installsystemd. - Thanks to Ryan Tandy for reporting the issue. - (Closes: #989155) - * dh_installsystemd: Remove usage of autoscripts/postinst-systemd-restart - * dh_installinit: Remove usage of autoscripts/postinst-init-restart - * autoscripts/autoscripts/postinst-systemd-restart: Removed. - * autoscripts/postinst-init-restart: Removed - * dh_installsystemd: Prefer /usr/lib/systemd/ to /lib/systemd. - (Closes: #987989) - * dh_systemd_enable: Ditto. - * dh_systemd_start: Ditto. - * dh_installinit: Ditto. - * dh_installsystemd: Merge /lib/systemd into /usr/lib/systemd if both - are present in the package staging directory (preferring the latter - in case of conflicts). (Closes: #987989) - * dh_systemd_enable: Ditto. - - [ Dominic Hargreaves ] - * perl_build.pm,perl_makemaker.pm: Make debhelper use the same perl - as it runs under (via Perl's $^X variable) when invoking the - upstream build system. (Closes: !40, #966396) - - [ Axel Beckert ] - * Always generate unique doc-base file names based on package name and - document ID. (Closes: #980903) - - -- Niels Thykier Tue, 17 Aug 2021 16:32:34 +0000 + -- private devacom Sat, 03 Apr 2021 16:14:12 +0100 debhelper (13.3.4) unstable; urgency=medium diff -Nru debhelper-13.5.2/debian/compat debhelper-13.3.4/debian/compat --- debhelper-13.5.2/debian/compat 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/debian/compat 2020-07-17 16:52:19.000000000 +0000 @@ -1 +1 @@ -15 +14 diff -Nru debhelper-13.5.2/debian/control debhelper-13.3.4/debian/control --- debhelper-13.5.2/debian/control 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/debian/control 2021-02-09 20:52:03.000000000 +0000 @@ -53,7 +53,6 @@ dh-sequence-dwz, dh-sequence-elf-tools, dh-sequence-installinitramfs, - dh-sequence-single-binary, dh-sequence-systemd, Multi-Arch: foreign Description: helper programs for debian/rules diff -Nru debhelper-13.5.2/debian/rules debhelper-13.3.4/debian/rules --- debhelper-13.5.2/debian/rules 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/debian/rules 2020-09-12 14:41:49.000000000 +0000 @@ -15,7 +15,7 @@ ./run dh $@ --without autoreconf --with build-stamp # Disable as they are unneeded (and we can then be sure debhelper -# builds without needing autotools-dev, dh-strip-nondeterminism etc.) +# builds without needing autotools-dev, dh-strip-nondetermism etc.) override_dh_update_autotools_config override_dh_strip_nondeterminism: execute_before_dh_install: diff -Nru debhelper-13.5.2/debian/source/options debhelper-13.3.4/debian/source/options --- debhelper-13.5.2/debian/source/options 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/debian/source/options 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -tar-ignore -tar-ignore=debhelper/.idea diff -Nru debhelper-13.5.2/dh debhelper-13.3.4/dh --- debhelper-13.5.2/dh 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh 2021-01-08 20:00:03.000000000 +0000 @@ -421,80 +421,6 @@ execute_after_dh_fixperms-arch: chmod 4755 debian/foo/usr/bin/foo -=head1 DEBHELPER PROVIDED DH ADDONS - -The primary purpose of B addons is to provide easy integration with -third-party provided features for debhelper. However, debhelper itself -also provide a few sequences that can be useful in some cases. These -are documented in this list: - -=over 4 - -=item build-stamp - -A special addon for controlling whether B (in compat 10 or later) -will create stamp files to tell whether the build target has been run -successfully. See L for more details. - -This addon is active by default but can disabled by using -B - -=item dwz (obsolete) - -Adds L to the sequence in compat level 11 or below. Obsolete -in compat 12 or later. - -=item elf-tools - -This addon adds tools related to ELF files to the sequence such as -L and L - -This addon is I active by default for architecture -specific packages - that is, it is skipped for arch:all packages. -In the special case where you need these tools to work on arch:all -packages, you can use B<--with elf-tools> to activate it -unconditionally. - -=item installinitramfs (obsolete) - -Adds L to the sequence in compat level 11 or below. -Obsolete in compat 12 or later. - -=item root-sequence (internal) - -This is reserved for internal usage. - -=item single-binary - -A special-purpose addon that makes debhelper run in "single binary" mode. - -When active, it will pass B<< --destdir=debian/I/ >> to -L. This makes every file "installed" by the upstream -build system part of the (only) binary package by default without having -to use other helpers such as L. - -The addon will refuse to activate when the source package lists 2 or more -binary packages in F as a precaution. - -Before compat 15. this behaviour was the default when there was only a single -binary package listed in F. In compat 15 and later, this -addon must explicitly be activated for this feature to work. - -The rationale for requiring this as an explicit choice is that if it is -implicit then debhelper will silently change behaviour on adding a new -binary package. This has caused many RC bugs when maintainers renamed -a binary and added transitional packages with the intention of supporting -seamless upgrades. The result would often be two empty binary packages that -were uploaded to archive with users frustrated as their "upgrade" removed -their programs. - -=item systemd (obsolete) - -Adds L and L to the sequence in -compat level 10 or below. Obsolete in compat 11 or later. - -=back - =head1 INTERNALS If you're curious about B's internals, here's how it works under the hood. diff -Nru debhelper-13.5.2/dh_assistant debhelper-13.3.4/dh_assistant --- debhelper-13.5.2/dh_assistant 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_assistant 1970-01-01 00:00:00.000000000 +0000 @@ -1,313 +0,0 @@ -#!/usr/bin/perl - -=head1 NAME - -dh_assistant - tool for supporting debhelper tools and provide introspection - -=cut - -use strict; -use warnings; -use Debian::Debhelper::Dh_Lib; -use JSON::PP (); - -=head1 SYNOPSIS - -B B> [S>] - -=head1 DESCRIPTION - -B is a debhelper program that provides introspection into the -debhelper stack to assist third-party tools (e.g. linters) or third-party -debhelper implementations not using the debhelper script API (e.g., because -they are not written in Perl). - -=head1 COMMANDS - -The B supports the following commands: - -=over 4 - -=item supported-compat-levels (JSON, CRFA) - -B: B B - -Outputs information about which compat levels, this build of debhelper knows -about. - -This command accepts no options or arguments. - -=item which-build-system (JSON) - -B: B B [S>] [S>] - -Output information about which build system would be used for a particular build step. The build step -must be one of B, B, B, B or B and must be the first argument -after B when provided. If omitted, it defaults to B as it is the -most reliable step to use auto-detection on in a clean source directory. Note that build steps do not -always agree when using auto-detection - particularly if the B step has not been run. - -Additionally, the B step can also provide "surprising" results for builds that rely on -a separate build directory. In such cases, debhelper will return the first build system that -uses a separate build directory rather than the one build system that B would detect. -This is generally a cosmetic issue as both build systems are all basically a glorified -B and more precise detection is functionally irrelevant as far as debhelper is -concerned. - -The option accepts all debhelper build system arguments - i.e., options you can pass to all of -the B commands plus (for the B step) the B<--destdir> option. These options -affect the output and auto-detection in various ways. Passing B<-S> or B<--buildsystem> -overrides the auto-detection (as it does for B) but it still provides introspection -into the chosen build system. - -Things that are useful to know about the output: - -=over 4 - -=item * - -The key B is the build system that would be used by debhelper for the given -step (with the given options, debhelper compat level, environment variables and the given -working directory). When B<-S> and B<--buildsystem> are omitted, this is the result of -debhelper's auto-detection logic. - -The value is valid as a parameter for the B<--buildsystem> option. - -The special value B is used to denote that no build system would be used. This value -is not present in B<--list> parameter for the B commands, but since debhelper/12.9 -the value is accepted for the B<--buildsystem> option. - -Note that auto-detection is subject to limitations in regards to third-party build systems. -While debhelper I support auto-detecting some third-party build systems, they must be -installed for the detection to work. If they are not installed, the detection logic silently -skips that build system (often resulting in B being B in the output). - -=item * - -The B and B values serve different but related purposes. The -B generally mirrors the B<--builddirectory> option where as B -is the output directory that debhelper will use. Therefore the former will often be null -when B<--builddirectory> has not been passed while the latter will generally not be null -(except when B is B). - -=item * - -The B (B<--destdir>) is undefined for all build steps except the B build -step (will be output as null or absent). For the same reason, B<--destdir> should only be -passed for B build step. - -Note that if not specified, this value is current null by default. - -=item * - -The B value is subject to B. Notably, if that does not include -the B keyword, then B field in the output will always be 1. - -=item * - -Most fields in the output I be null. Particular if there is no build system is detected -(or when B<--buildsystem=none>). Additionally, many of the fields can be null even if there -is a build system if the build system does not use/set/define that variable. - -=back - - -=back - -=head2 COMMAND TAGS - -Most commands have one or more of the following "tags" associated with them. Their -meaning is defined here. - -=over 4 - -=item JSON - -The command provides JSON output. See L for details. - -=item CRFA - -I - -Most commands must be run inside a source package root directory (a directory -containing F) because debhelper will need the package metadata -to lookup the information. Any command with this tag are exempt from this -requirement and is expected to work regardless of where they are run. - -=back - -=head1 JSON OUTPUT - -Most commands uses JSON format as output. Consumers need to be aware that: - -=over 4 - -=item * - -Additional keys may be added at any time. For backwards compatibility, the absence -of a key should in general be interpreted as null unless another default is documented -or would be "obvious" for that case. - -=item * - -Many keys can be null/undefined in special cases. As an example, some information may -be unavailable when this command is run directly from the debhelper source (git repository). - -=back - -The output will be prettified when stdout is detected as a terminal. If -you need to pipe the output to a pager/file (etc.) and still want it -prettified, please use an external JSON formatter. An example of this: - - dh_assistant supported-compat-levels | python3 -m json.tool | less - -=cut - -my $JSON_ENCODER = JSON::PP->new->utf8; - -# Prettify if we think the user is reading this. -$JSON_ENCODER = $JSON_ENCODER->pretty->space_before(0)->canonical if -t STDOUT; - -# We never use the log file for this tool -inhibit_log(); - -my %COMMANDS = ( - 'help' => \&_do_help, - '-h' => \&_do_help, - '--help' => \&_do_help, - 'supported-compat-levels' => \&supported_compat_levels, - 'which-build-system' => \&which_build_system, -); - -my ($COMMAND) = shift(@ARGV); -for my $arg (@ARGV) { - if ($arg eq '--help' or $arg eq '-h') { - $COMMAND = 'help'; - last; - } -} - - -sub _do_help { - my $me = basename($0); - print <<"EOF"; -${me}: Tool for supporting debhelper tools and provide introspection - -Usage: ${me} [... addition arguments or options ...] - -The following commands are available: - help Show this help - supported-compat-levels Output information about supported compat levels (JSON, CRFA) - which-build-system Determine which build system will be used (JSON) - - -Command tags: - - * JSON The command provides JSON output. - * CRFA Command does not need to be run from a package source directory - (Mnemonic "Can be Run From Anywhere") - - -Its primary purpose is to provide support for third-party debhelper implementations -not using the debhelper script API or provide introspection for third-party tools -(e.g., linters). Unless stated otherwise, commands must be run inside a source -package root directory - that is, the directory containing "debian/control". - -Most commands use JSON output. When stdout is a TTY, the JSON will be prettified. -See the manpage if you want formatting in other cases. -EOF - return; -} - -sub _assert_debian_control_exists { - return if -f 'debian/control'; - require Cwd; - my $cwd = Cwd::getcwd(); - warning("$cwd does not look like a package source directory (expected $cwd/debian/control to exist and be a file)"); - error("$COMMAND must be run inside a package source directory"); - return; -} - -sub _output { - my ($kvpairs) = @_; - print $JSON_ENCODER->encode($kvpairs); - return; -} - -sub supported_compat_levels { - if (@ARGV) { - error("$COMMAND: No arguments supported (please remove everything after the command)"); - } - my %compat_levels = ( - 'MIN_COMPAT_LEVEL' => Debian::Debhelper::Dh_Lib::MIN_COMPAT_LEVEL, - 'LOWEST_NON_DEPRECATED_COMPAT_LEVEL' => Debian::Debhelper::Dh_Lib::LOWEST_NON_DEPRECATED_COMPAT_LEVEL, - 'LOWEST_VIRTUAL_DEBHELPER_COMPAT_LEVEL' => Debian::Debhelper::Dh_Lib::LOWEST_VIRTUAL_DEBHELPER_COMPAT_LEVEL, - 'MAX_COMPAT_LEVEL' => Debian::Debhelper::Dh_Lib::MAX_COMPAT_LEVEL, - 'HIGHEST_STABLE_COMPAT_LEVEL' => Debian::Debhelper::Dh_Lib::HIGHEST_STABLE_COMPAT_LEVEL, - 'MIN_COMPAT_LEVEL_NOT_SCHEDULED_FOR_REMOVAL' => Debian::Debhelper::Dh_Lib::MIN_COMPAT_LEVEL_NOT_SCHEDULED_FOR_REMOVAL, - ); - _output(\%compat_levels); - return; -} - -sub which_build_system { - my ($opt_buildsys, $destdir); - my $first_argv = @ARGV ? $ARGV[0] : ''; - my %options = ( - # Emulate dh_auto_install's --destdir - "destdir=s" => \$destdir, - ); - _assert_debian_control_exists(); - require Debian::Debhelper::Dh_Buildsystems; - Debian::Debhelper::Dh_Buildsystems::buildsystems_init(options => \%options); - my @non_options = grep { !m/^-/ } @ARGV; - my $step = @non_options ? $non_options[0] : 'configure'; - if (@non_options && $first_argv =~ m/^-/) { - error("$COMMAND: If the build step is provided, it must be before any options"); - } - if (@non_options > 1) { - error("$COMMAND: At most one positional argument is supported"); - } - if (defined($destdir) and $step ne 'install') { - warning("$COMMAND: --destdir is not defined for build step \"$step\". Ignoring option") - } - { - no warnings qw(once); - $opt_buildsys = $Debian::Debhelper::Dh_Buildsystems::opt_buildsys; - } - my $build_system = Debian::Debhelper::Dh_Buildsystems::load_buildsystem($opt_buildsys, $step); - my %result = ( - 'build-system' => defined($build_system) ? $build_system->NAME : 'none', - 'for-build-step' => $step, - 'source-directory' => defined($build_system) ? $build_system->get_sourcedir : undef, - 'build-directory' => defined($build_system) ? $build_system->get_builddir : undef, - 'dest-directory' => defined($build_system) ? $destdir : undef, - 'buildpath' => defined($build_system) ? $build_system->get_buildpath : undef, - 'parallel' => defined($build_system) ? $build_system->get_parallel : undef, - 'upstream-arguments' => $dh{U_PARAMS}, - ); - _output(\%result); - return; -} - -if (not defined($COMMAND)) { - error('Usage: ' . basename($0) . ' '); -} -my $handler = $COMMANDS{$COMMAND}; -if (not defined($handler)) { - warning("Arguments/options must not be the first argument (except for --help)") - if $COMMAND =~ m/^-/; - error("Unknown command: $COMMAND"); -} - -$handler->(); - -=head1 SEE ALSO - -L - -This program is a part of debhelper. - -=cut - -1; diff -Nru debhelper-13.5.2/dh_auto_install debhelper-13.3.4/dh_auto_install --- debhelper-13.5.2/dh_auto_install 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_auto_install 2021-01-26 20:57:12.000000000 +0000 @@ -29,17 +29,11 @@ it is used. Note that the Ant build system does not support installation, so B will not install files built using Ant. -In compat 15 or later, B will use F as the default -B<--destdir> and should be moved from there to the appropriate package build -directory using L or similar tools. Though if the B -addon for L is activated, then it will pass an explicit -B<< --destdir=debian/I/ >> to B. - -For earlier compat levels then unless B<--destdir> option is -specified, the files are installed into debian/I/ if there is only one -binary package. In the multiple binary package case, the files are instead -installed into F, and should be moved from there to the -appropriate package build directory using L or similar tools. +Unless B<--destdir> option is specified, the files are installed into +debian/I/ if there is only one binary package. In the multiple binary +package case, the files are instead installed into F, and should be +moved from there to the appropriate package build directory using +L. B is used to tell make where to install the files. If the Makefile was generated by MakeMaker from a F, it will @@ -82,7 +76,7 @@ # If destdir is not specified, determine it automatically if (!$destdir) { my @allpackages=getpackages(); - if (@allpackages > 1 or not compat(14)) { + if (@allpackages > 1) { $destdir="debian/tmp"; } else { diff -Nru debhelper-13.5.2/dh_dwz debhelper-13.3.4/dh_dwz --- debhelper-13.5.2/dh_dwz 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_dwz 2020-07-17 16:52:19.000000000 +0000 @@ -110,8 +110,7 @@ return; } -on_items_in_parallel(\@{$dh{DOPACKAGES}}, sub { -foreach my $package (@_) { +for my $package (@{$dh{DOPACKAGES}}) { my $tmp = tmpdir($package); next if not -d $tmp; @@ -157,7 +156,7 @@ # Make new hardlink. doit('ln', '-f', $target, $hardlink); } -}}); +} =head1 SEE ALSO diff -Nru debhelper-13.5.2/dh_fixperms debhelper-13.3.4/dh_fixperms --- debhelper-13.5.2/dh_fixperms 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_fixperms 2020-07-17 16:52:19.000000000 +0000 @@ -61,7 +61,7 @@ my $vendorlib = substr $Config{vendorlib}, 1; my $vendorarch = substr $Config{vendorarch}, 1; my @executable_files_dirs = ( - qw{usr/bin bin usr/sbin sbin usr/games usr/libexec etc/init.d}, + qw{usr/bin bin usr/sbin sbin usr/games etc/init.d}, ); my @mode_0644_patterns = ( # Libraries and related files diff -Nru debhelper-13.5.2/dh_gconf debhelper-13.3.4/dh_gconf --- debhelper-13.5.2/dh_gconf 1970-01-01 00:00:00.000000000 +0000 +++ debhelper-13.3.4/dh_gconf 2020-07-17 16:52:19.000000000 +0000 @@ -0,0 +1,116 @@ +#!/usr/bin/perl + +=head1 NAME + +dh_gconf - install GConf defaults files and register schemas (deprecated) + +=cut + +use strict; +use warnings; +use Debian::Debhelper::Dh_Lib; + +our $VERSION = DH_BUILTIN_VERSION; + +=head1 SYNOPSIS + +B [S>] [B<--priority=>I] + +=head1 DESCRIPTION + +B is a debhelper program that is responsible for installing GConf +defaults files and registering GConf schemas. + +An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>. + +=head1 FILES + +=over 4 + +=item debian/I.gconf-defaults + +Installed into F in the package build +directory, with I replaced by the package name. + +=item debian/I.gconf-mandatory + +Installed into F in the package build +directory, with I replaced by the package name. + +=back + +=head1 OPTIONS + +=over 4 + +=item B<--priority> I + +Use I (which should be a 2-digit number) as the defaults +priority instead of B<10>. Higher values than ten can be used by +derived distributions (B<20>), CDD distributions (B<50>), or site-specific +packages (B<90>). + +=back + +=cut + +init(options => { + "priority=s" => \$dh{PRIORITY}, +}); + +warning("Please migrate to dh_installgsettings; gconf + dh_gconf is scheduled for removal."); + +my $priority=10; +if (defined $dh{PRIORITY}) { + $priority=$dh{PRIORITY}; +} + +# PROMISE: DH NOOP WITHOUT gconf-mandatory gconf-defaults tmp(etc/gconf/schemas) tmp(usr/share/gconf/schemas) cli-options() + +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + + my $mandatory = pkgfile($package, "gconf-mandatory"); + if ($mandatory ne '') { + install_dir("$tmp/usr/share/gconf/mandatory"); + install_file($mandatory, + "$tmp/usr/share/gconf/mandatory/${priority}_$package"); + } + my $defaults = pkgfile($package,"gconf-defaults"); + if ($defaults ne '') { + install_dir("$tmp/usr/share/gconf/defaults"); + install_file($defaults, "$tmp/usr/share/gconf/defaults/${priority}_$package"); + } + + my $old_schemas_dir = "$tmp/etc/gconf/schemas"; + my $new_schemas_dir = "$tmp/usr/share/gconf/schemas"; + + # Migrate schemas from /etc/gconf/schemas to /usr/share/gconf/schemas + if (-d $old_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); + } + + if (-d "$new_schemas_dir") { + # Get a list of the schemas + my $schemas = qx_cmd('find', $new_schemas_dir, '-type', 'f', '-name', '*.schemas', + '-printf', '%P'); + if ($schemas ne '') { + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1-2)"); + } + } +} + +=head1 SEE ALSO + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Ross Burton +Josselin Mouette + +=cut diff -Nru debhelper-13.5.2/dh_installdeb debhelper-13.3.4/dh_installdeb --- debhelper-13.5.2/dh_installdeb 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_installdeb 2020-07-17 16:52:19.000000000 +0000 @@ -56,13 +56,13 @@ =item I.conffiles -This file will be installed into the F directory. The -provided file will be enriched by debhelper to include all the -B auto-detected by debhelper (the maintainer should -not list there as debhelper assumes it should handle that part). - -This file is primarily useful for using "special" entries such as -the B<< remove-on-upgrade >> feature from dpkg. +Historically, this file was needed to manually mark files files as +conffiles. However, it has become de facto obsolete since debhelper +automatically computed which files should be marked as conffiles. + +In compatibility level up and including 11, this control file will be +installed into the F directory. In compatibility level 12 and +later, the file is silently ignored. =item I.maintscript @@ -92,13 +92,6 @@ validation is enabled as a warning since compat 10 and as a hard error in compat 12. -Where possible, B may choose to rewrite some or all -of the entries into equivalent features supported in dpkg without -relying on maintainer scripts at its sole discretion (examples -include rewriting B into dpkg's B). -The minimum requirement for activating this feature is that debhelper -runs in compat 10 or later. - Supports substitution variables in compat 13 and later as documented in L. @@ -256,7 +249,6 @@ } my $maintscriptfile=pkgfile($package, "maintscript"); - my @special_conffiles_entries; if ($maintscriptfile) { if (compat(9)) { foreach my $line (filedoublearray($maintscriptfile)) { @@ -285,28 +277,20 @@ if (my $validator = $maintscript_validator{$cmd}) { $validator->($package, @{$line}); } - if (0) { # Disabled for now: #994919 + #994903 - my $current_conffile = $line->[1]; - push(@special_conffiles_entries, "remove-on-upgrade ${current_conffile}"); - addsubstvar($package, "misc:Pre-Depends", "dpkg (>= 1.20.6~)"); - next; - } push(@params, escape_shell(@{$line}) ); } - if (@params) { - foreach my $script (qw{postinst preinst prerm postrm}) { - my $subst = sub { - my @res; - chomp; - for my $param (@params) { - my $line = $_; - $line =~ s{#PARAMS#}{$param}g; - push(@res, $line); - } - $_ = join("\n", @res) . "\n"; - }; - autoscript($package, $script, "maintscript-helper", $subst); - } + foreach my $script (qw{postinst preinst prerm postrm}) { + my $subst = sub { + my @res; + chomp; + for my $param (@params) { + my $line = $_; + $line =~ s{#PARAMS#}{$param}g; + push(@res, $line); + } + $_ = join("\n", @res) . "\n"; + }; + autoscript($package, $script, "maintscript-helper", $subst); } } } @@ -320,7 +304,7 @@ # Install non-executable files my @non_exec_files; # Removed in compat 12. - push(@non_exec_files, 'conffiles'); + push(@non_exec_files, 'conffiles') if compat(11); # In compat 10, we let dh_makeshlibs handle "shlibs". push(@non_exec_files, 'shlibs') if compat(9); foreach my $file (@non_exec_files) { @@ -331,13 +315,6 @@ } install_triggers($package, $tmp); - if (@special_conffiles_entries) { - open(my $fd, '>>', "$tmp/DEBIAN/conffiles"); - for my $line (@special_conffiles_entries) { - print {$fd} "${line}\n"; - } - close($fd); - } # Automatic conffiles registration: If it is in /etc, it is a # conffile. @@ -347,10 +324,9 @@ if (-z "$tmp/DEBIAN/conffiles") { rm_files("$tmp/DEBIAN/conffiles"); } - } - - if ( -f "$tmp/DEBIAN/conffiles") { - reset_perm_and_owner(0644, "$tmp/DEBIAN/conffiles"); + else { + reset_perm_and_owner(0644, "$tmp/DEBIAN/conffiles"); + } } } diff -Nru debhelper-13.5.2/dh_installdocs debhelper-13.3.4/dh_installdocs --- debhelper-13.5.2/dh_installdocs 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_installdocs 2021-02-03 17:09:24.000000000 +0000 @@ -424,13 +424,30 @@ if (%doc_ids) { install_dir("$tmp/usr/share/doc-base/"); } + # check for duplicate document ids + my %used_doc_ids; + for my $fn (keys %doc_ids) { + $used_doc_ids{$doc_ids{$fn}}++; + } foreach my $fn (keys %doc_ids) { - # To avoid issues with duplicated document IDs, we will always - # install to usr/share/doc-base/. instead - # of just usr/share/doc-base/ or just - # usr/share/doc-base/. See #525821 and #980903. - install_file("debian/$fn", - "$tmp/usr/share/doc-base/$package.$doc_ids{$fn}"); + # if this document ID is duplicated, we will install + # to usr/share/doc-base/packagename instead of + # usr/share/doc-base/doc_id. To allow for multiple + # conflicting doc-bases in a single package, we will + # install to usr/share/doc-base/packagename-extrabits + # if the doc-base file is + # packagename.doc-base.extrabits + if ($used_doc_ids{$doc_ids{$fn}} > 1) { + my $fn_no_docbase = $fn; + $fn_no_docbase =~ s/\.doc-base(?:\.(.*))?/ + if (defined $1 and length $1) {"-$1"} else {''}/xe; + install_file("debian/$fn", + "$tmp/usr/share/doc-base/$fn_no_docbase"); + } + else { + install_file("debian/$fn", + "$tmp/usr/share/doc-base/$doc_ids{$fn}"); + } } } diff -Nru debhelper-13.5.2/dh_installinit debhelper-13.3.4/dh_installinit --- debhelper-13.5.2/dh_installinit 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_installinit 2020-07-17 16:52:19.000000000 +0000 @@ -64,7 +64,7 @@ =item debian/I.service -If this exists, it is installed into F<< lib/systemd/system/I.service >> in +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. =item debian/I.tmpfile @@ -370,7 +370,7 @@ if ($dh{RESTART_AFTER_UPGRADE}) { # update-rc.d, and restart (or # start if new install) script - autoscript($package, 'postinst', 'postinst-init', + autoscript($package, 'postinst', 'postinst-init-restart', { 'SCRIPT' => $script, 'INITPARMS' => $params, 'ERROR_HANDLER' => $dh{ERROR_HANDLER}, 'INVOKE_RCD_PARAMS' => $update_rcd_params, diff -Nru debhelper-13.5.2/dh_installsystemd debhelper-13.3.4/dh_installsystemd --- debhelper-13.5.2/dh_installsystemd 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_installsystemd 2020-07-17 16:52:20.000000000 +0000 @@ -253,12 +253,12 @@ my @installed; return unless -d $lib_systemd_system; - opendir(my $dh, $lib_systemd_system) or error("Cannot opendir($lib_systemd_system): $!"); + opendir(my $dh, "$lib_systemd_system") or error("Cannot opendir($lib_systemd_system): $!"); foreach my $name (readdir($dh)) { my $path = "$lib_systemd_system/$name"; - next unless -l $path or -f _; - if (-l _) { + next unless -f $path; + if (-l "$path") { my $dest = basename(readlink($path)); $aliases->{$dest} //= [ ]; push @{$aliases->{$dest}}, $name; @@ -312,7 +312,7 @@ find({ wanted => sub { my $name = $File::Find::name; - return if not -f $name or not $name =~ m{[.]conf$}; + return unless -f $name; push(@tmpfiles, basename($name)); }, no_chdir => 1, }, @dirs) if @dirs; @@ -419,7 +419,8 @@ $snippet = 'postinst-systemd-restartnostart'; $replace->{RESTART_ACTION} = 'try-restart'; } else { - $snippet = 'postinst-systemd-start'; + $snippet = 'postinst-systemd-restart'; + $replace->{RESTART_ACTION} = 'restart'; } autoscript($package, 'postinst', $snippet, $replace, \%options); } elsif (!$dh{NO_START}) { diff -Nru debhelper-13.5.2/dh_installtmpfiles debhelper-13.3.4/dh_installtmpfiles --- debhelper-13.5.2/dh_installtmpfiles 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_installtmpfiles 2020-07-17 16:52:20.000000000 +0000 @@ -24,7 +24,7 @@ (e.g. for systemd-tmpfiles). It also finds the tmpfiles.d configuration files installed by a package -and generates F code blocks for activating the tmpfiles.d +and generates F code blocks for activting the tmpfiles.d configuration when the package is installed. These snippets are added to the maintainer scripts by L. @@ -33,8 +33,6 @@ =over 4 -=item B<--name=>I - This option controls both a prefix used for lookng up maintainer provided tmpfiles.d configuration files (those mentioned in the L section) and also the base name used for the installed version of the file. @@ -111,7 +109,7 @@ find({ wanted => sub { my $name = $File::Find::name; - return if not -f $name or not $name =~ m{[.]conf$}; + return unless -f $name; push(@tmpfiles, basename($name)); }, no_chdir => 1, }, @dirs) if @dirs; diff -Nru debhelper-13.5.2/dh_missing debhelper-13.3.4/dh_missing --- debhelper-13.5.2/dh_missing 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_missing 2021-01-08 20:00:03.000000000 +0000 @@ -6,7 +6,7 @@ =cut -use v5.28; +use v5.24; use warnings; use Debian::Debhelper::Dh_Lib; diff -Nru debhelper-13.5.2/dh_systemd_enable debhelper-13.3.4/dh_systemd_enable --- debhelper-13.5.2/dh_systemd_enable 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_systemd_enable 2020-07-17 16:52:20.000000000 +0000 @@ -44,8 +44,8 @@ =item debian/I.service, debian/I@.service -If this exists, it is installed into F<< lib/systemd/system/I.service >> (or -F<< lib/systemd/system/I@.service >>) in the package build directory. +If this exists, it is installed into lib/systemd/system/I.service (or +lib/systemd/system/I@.service) in the package build directory. =item debian/I.tmpfile @@ -55,28 +55,28 @@ =item debian/I.target, debian/I@.target -If this exists, it is installed into F<< lib/systemd/system/I.target >> (or -F<< lib/systemd/system/I@.target >>) in the package build directory. +If this exists, it is installed into lib/systemd/system/I.target (or +lib/systemd/system/I@.target) in the package build directory. =item debian/I.socket, debian/I@.socket -If this exists, it is installed into F<< lib/systemd/system/I.socket >> (or -F<< lib/systemd/system/I@.socket >>) in the package build directory. +If this exists, it is installed into lib/systemd/system/I.socket (or +lib/systemd/system/I@.socket) in the package build directory. =item debian/I.mount -If this exists, it is installed into F<< lib/systemd/system/I.mount >> +If this exists, it is installed into lib/systemd/system/I.mount in the package build directory. =item debian/I.path, debian/I@.path -If this exists, it is installed into F<< lib/systemd/system/I.path >> (or -F<< lib/systemd/system/I@.path >>) in the package build directory. +If this exists, it is installed into lib/systemd/system/I.path (or +lib/systemd/system/I@.path) in the package build directory. =item debian/I.timer, debian/I@.timer -If this exists, it is installed into F<< lib/systemd/system/I.timer >> (or -F<< lib/systemd/system/I@.timer >>) in the package build directory. +If this exists, it is installed into lib/systemd/system/I.timer (or +lib/systemd/system/I@.timer) in the package build directory. =back diff -Nru debhelper-13.5.2/dh_systemd_start debhelper-13.3.4/dh_systemd_start --- debhelper-13.5.2/dh_systemd_start 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/dh_systemd_start 2020-07-17 16:52:20.000000000 +0000 @@ -246,7 +246,8 @@ $snippet = 'postinst-systemd-restartnostart'; $restart_action = 'try-restart'; } else { - $snippet = 'postinst-systemd-start'; + $snippet = 'postinst-systemd-restart'; + $restart_action = 'restart'; } $sd_autoscript->("postinst", $snippet, $restart_action); } elsif (!$dh{NO_START}) { diff -Nru debhelper-13.5.2/doc/PROGRAMMING debhelper-13.3.4/doc/PROGRAMMING --- debhelper-13.5.2/doc/PROGRAMMING 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/doc/PROGRAMMING 2021-01-08 20:00:03.000000000 +0000 @@ -474,17 +474,11 @@ Cannot be used in "arch-only"/"indep-only" mode. -declare_command_obsolete([$error_compat, ]$command) +declare_command_obsolete($command) Declare $command as obsolete, which make dh warn about leftover override / hook targets. Note that $command MUST NOT be present in the sequence! - The $error_compat parameter defines the compat level where - referencing this command via a hook target will become an error. - This must be at least 13 (which is the default if omitted). - Be careful with using already closed compat levels as error compat - for new commands as it will cause FTBFS. - Cannot be used in "arch-only"/"indep-only" mode. diff -Nru debhelper-13.5.2/doc/TODO debhelper-13.3.4/doc/TODO --- debhelper-13.5.2/doc/TODO 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/doc/TODO 2017-07-29 18:08:38.000000000 +0000 @@ -15,6 +15,9 @@ a string are not used in debhelper itself, but have been left in the library in case other things use them. Deprecate and remove. * debian/compress files +* deprecate dh_gconf for dh_installgsettings (stuff should be migrating + away from gconf, and then I can just remove it -- have not added warning + or depreaction docs yet) Also, grep the entire archive for all dh_* command lines, and check to see what other switches are not being used, and maybe remove diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/cmake.pm debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/cmake.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/cmake.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/cmake.pm 2021-01-10 16:59:46.000000000 +0000 @@ -8,7 +8,7 @@ use strict; use warnings; -use Debian::Debhelper::Dh_Lib qw(%dh compat dpkg_architecture_value error is_cross_compiling get_buildoption); +use Debian::Debhelper::Dh_Lib qw(%dh compat dpkg_architecture_value error is_cross_compiling); use parent qw(Debian::Debhelper::Buildsystem); my @STANDARD_CMAKE_FLAGS = qw( @@ -17,7 +17,6 @@ -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON - -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON ); @@ -171,8 +170,7 @@ # -j1). So in order to simulate unlimited parallel, allow to fork a huge # number of threads instead. my $parallel = ($this->get_parallel() > 0) ? $this->get_parallel() : 999; - unshift(@_, "ARGS+=-j$parallel"); - unshift(@_, "ARGS+=--verbose") if not get_buildoption("terse"); + push(@_, "ARGS+=-j$parallel"); } return $this->SUPER::test(@_); } diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/perl_build.pm debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/perl_build.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/perl_build.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/perl_build.pm 2021-01-08 20:00:03.000000000 +0000 @@ -41,7 +41,7 @@ warning("cross Config.pm does not exist (missing build dependency on perl-xs-dev?)"); } } - $this->doit_in_sourcedir(\%options, $^X, @_); + $this->doit_in_sourcedir(\%options, "perl", @_); } sub new { diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/perl_makemaker.pm debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/perl_makemaker.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Buildsystem/perl_makemaker.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Buildsystem/perl_makemaker.pm 2020-07-17 16:52:20.000000000 +0000 @@ -72,7 +72,7 @@ push @perl_flags, $cross_flag if is_cross_compiling() and defined $cross_flag; - $this->doit_in_sourcedir($^X, @perl_flags, "Makefile.PL", "INSTALLDIRS=vendor", + $this->doit_in_sourcedir("perl", @perl_flags, "Makefile.PL", "INSTALLDIRS=vendor", # if perl_build is not tested first, need to pass packlist # option to handle fallthrough case (compat(7) ? "create_packlist=0" : ()), diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/DH/AddonAPI.pm debhelper-13.3.4/lib/Debian/Debhelper/DH/AddonAPI.pm --- debhelper-13.5.2/lib/Debian/Debhelper/DH/AddonAPI.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/DH/AddonAPI.pm 2020-07-17 16:52:20.000000000 +0000 @@ -210,17 +210,9 @@ } sub declare_command_obsolete { - my ($error_compat, $command) = @_; - if (not defined($command) and defined($error_compat)) { - # Backwards compat - originally this only accepted one command. - $command = $error_compat; - $error_compat = 13; - } - if ($error_compat < 13) { - error("Minimum error compat is 13 (got ${error_compat} for command: ${command})"); - } + my ($command) = @_; _assert_not_conditional_sequence_addon('declare_command_obsolete'); - $Debian::Debhelper::DH::SequenceState::obsolete_command{$command} = [$DH_INTERNAL_ADDON_NAME, $error_compat]; + $Debian::Debhelper::DH::SequenceState::obsolete_command{$command} = $DH_INTERNAL_ADDON_NAME; return 1; } diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Dh_Buildsystems.pm debhelper-13.3.4/lib/Debian/Debhelper/Dh_Buildsystems.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Dh_Buildsystems.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Dh_Buildsystems.pm 2021-01-08 20:00:03.000000000 +0000 @@ -38,13 +38,9 @@ our @THIRD_PARTY_BUILDSYSTEMS = ( 'maven', 'gradle', - 'mkcmake', - 'bmake', - 'golang', ); -# Visible for dh_assistant's sake; not API for external tools! -our $opt_buildsys; +my $opt_buildsys; my $opt_sourcedir; my $opt_builddir; my $opt_list; diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Dh_Lib.pm debhelper-13.3.4/lib/Debian/Debhelper/Dh_Lib.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Dh_Lib.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Dh_Lib.pm 2021-01-08 20:00:03.000000000 +0000 @@ -25,7 +25,7 @@ # relations for. 'LOWEST_VIRTUAL_DEBHELPER_COMPAT_LEVEL' => 9, # Highest compat level permitted - 'MAX_COMPAT_LEVEL' => 15, + 'MAX_COMPAT_LEVEL' => 14, # Magic value for xargs 'XARGS_INSERT_PARAMS_HERE' => \'', #'# Hi emacs. # Magic value for debhelper tools to request "current version" @@ -528,8 +528,6 @@ my (@cmd) = @_; my $options = ref($cmd[0]) ? shift(@cmd) : {}; my $cmd_line = escape_shell(@cmd); - use Carp qw(confess); - confess("??") if ref($options) ne 'HASH'; if (defined(my $update_env = $options->{update_env})) { my $need_env = 0; my @params; diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Sequence/python_support.pm debhelper-13.3.4/lib/Debian/Debhelper/Sequence/python_support.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Sequence/python_support.pm 1970-01-01 00:00:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Sequence/python_support.pm 2020-07-17 16:52:20.000000000 +0000 @@ -0,0 +1,10 @@ +#!/usr/bin/perl +# Obsolete debhelper sequence file for python-support + +use warnings; +use strict; +use Debian::Debhelper::Dh_Lib qw(deprecated_functionality); + +deprecated_functionality('python_support sequence does nothing as dh_pysupport is no longer available', 11); + +1 diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Sequence/root_sequence.pm debhelper-13.3.4/lib/Debian/Debhelper/Sequence/root_sequence.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Sequence/root_sequence.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Sequence/root_sequence.pm 2021-01-08 20:00:03.000000000 +0000 @@ -11,8 +11,7 @@ }; my @obsolete_command = ( - [13, $include_if_compat_X_or_newer->(11, 'dh_systemd_enable', 'dh_systemd_start')], - [14, 'dh_gconf'], + $include_if_compat_X_or_newer->(11, 'dh_systemd_enable', 'dh_systemd_start'), ); my @commands_controlled_by_deb_build_options = ( @@ -69,6 +68,7 @@ dh_bugfiles dh_ucf dh_lintian + dh_gconf dh_icons dh_perl dh_usrlocal @@ -99,11 +99,8 @@ dh_clean }); -for my $obsolete_command_spec (@obsolete_command) { - my ($error_compat, @cmds) = @{$obsolete_command_spec}; - for my $command (@cmds) { - declare_command_obsolete($error_compat, $command); - } +for my $command (@obsolete_command) { + declare_command_obsolete($command); } for my $entry (@commands_controlled_by_deb_build_options) { diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/Sequence/single_binary.pm debhelper-13.3.4/lib/Debian/Debhelper/Sequence/single_binary.pm --- debhelper-13.5.2/lib/Debian/Debhelper/Sequence/single_binary.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/Sequence/single_binary.pm 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -use strict; -use warnings; - -use Debian::Debhelper::Dh_Lib qw(getpackages error warning tmpdir); -use Debian::Debhelper::SequencerUtil; - -my @packages = getpackages(); -my $pkg = $packages[0]; -my $tmp = tmpdir($pkg); -if (@packages != 1) { - warning('Detected multiple binary packages (Package paragraphs) in debian/control, which is incompatible'); - warning('with the single-binary dh add-on.'); - warning(); - warning('Please:'); - warning(' 1) Remove the single-binary add-on ("dh-sequence-single-binary" in Build-Depends)'); - warning(' 2) Update the packaging to cope with dh_auto_install using \"debian/tmp\" as default dest dir'); - warning(" (Previously, it would probably have used \"${tmp}\")"); - warning(' 3) Add Breaks/Replaces if you are moving existing files into a new package.'); - warning(' 4) Double check that the resulting binaries have content.'); - warning(); - warning("IF YOU ARE ADDING A TRANSITIONAL PACKAGE: Then you probably want to pass --destdir=${tmp} to"); - warning(' dh_auto_install. Most likely you will need Breaks + Replaces as renaming a package counts as'); - warning(' moving files between two packages.'); - warning(); - warning('IF YOU ARE "SPLITTING" THE CONTENT INTO MULTIPLE PACKAGES: Then remember to install the content'); - warning(" into them (by creating debian/${pkg}.install, etc.). Also remember to add Breaks + Replaces if"); - warning(' you are moving files from one package into another.'); - warning(); - error("The single-binary add-on cannot be used for source packages that build multiple binary packages."); -} - -add_command_options('dh_auto_install', "--destdir=${tmp}/"); - -1; diff -Nru debhelper-13.5.2/lib/Debian/Debhelper/SequencerUtil.pm debhelper-13.3.4/lib/Debian/Debhelper/SequencerUtil.pm --- debhelper-13.5.2/lib/Debian/Debhelper/SequencerUtil.pm 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/lib/Debian/Debhelper/SequencerUtil.pm 2021-01-10 17:31:39.000000000 +0000 @@ -353,7 +353,6 @@ my $sequence_type = sequence_type($sequence_name); my %addon_constraints = %{ Debian::Debhelper::Dh_Lib::bd_dh_sequences() }; - my %explicitly_managed; # Inject elf-tools early as other addons rely on their presence and it historically # has been considered a part of the "core" sequence. @@ -419,42 +418,15 @@ error("Invalid request to load the sequence \"root-sequence\": Do not reference it directly"); } if ($request =~ s/^[+]//) { - # Normalize "_" to "-" in the name. - $request =~ tr/_/-/; $flush_disable_cache->() if %disabled_addons; - $explicitly_managed{$request} = 1; push(@enabled_addons, $request) if not $enabled{$request}++; } elsif ($request =~ s/^-//) { - # Normalize "_" to "-" in the name. - $request =~ tr/_/-/; - $explicitly_managed{$request} = 1; $disabled_addons{$request} = 1; } else { error("Internal error: Invalid add-on request: $request (Missing +/- prefix)"); } } - if (compat(14, 1) && getpackages() == 1 && !exists($explicitly_managed{'single-binary'})) { - if (not compat(13, 1)) { - warning("Implicitly activating single-binary dh addon for backwards compatibility. In compat 14+,"); - warning("this fallback will *not* happen automatically and dh_auto_install will instead use a"); - warning("different default for --destdir, which can cause the source to produce an empty binary package"); - warning(); - warning('To keep the existing behaviour, please activate the single-binary addon explicitly.'); - warning('This can be done by adding "dh-sequence-single-binary" to Build-Depends or passing'); - warning('--with=single-binary to dh.'); - warning(); - warning('If you have solved this issue differently (e.g., by passing --destdir explicitly to'); - warning('dh_auto_install or not using dh_auto_install at all) and want to silence this warning'); - warning('without activating the addon, you can do that by passing --without=single-binary to dh'); - warning('to explicitly acknowledge the change.'); - warning(); - warning('Please see the description of the "single-binary" in "man dh" for more details of what'); - warning('it does and why this is changing from implicit behaviour to explicitly opt-in.'); - } - push(@enabled_addons, 'single-binary'); - } - $flush_disable_cache->() if %disabled_addons; return map { { @@ -480,30 +452,25 @@ sub check_for_obsolete_commands { my ($full_sequence) = @_; - my ($found_obsolete_targets, $min_compat); + my ($found_obsolete_targets); for my $command (@{$full_sequence}) { if (exists($Debian::Debhelper::DH::SequenceState::obsolete_command{$command})) { - my $addon_name = $Debian::Debhelper::DH::SequenceState::obsolete_command{$command}[1]; + my $addon_name = $Debian::Debhelper::DH::SequenceState::obsolete_command{$command}; error("The addon ${addon_name} claimed that $command was obsolete, but it is not!?"); } } for my $command (sort(keys(%Debian::Debhelper::DH::SequenceState::obsolete_command))) { - my ($addon_name, $error_compat) = @{$Debian::Debhelper::DH::SequenceState::obsolete_command{$command}}; - $addon_name = 'debhelper' if $addon_name eq 'root-sequence'; for my $prefix (qw(execute_before_ execute_after_ override_)) { for my $suffix ('', '-arch', '-indep') { my $target = "${prefix}${command}${suffix}"; if (defined(rules_explicit_target($target))) { $found_obsolete_targets = 1; - $min_compat //= $error_compat; - $min_compat = $error_compat if $error_compat < $min_compat; - warning("The target ${target} references a now obsolete command and will not be run!" - . " (Marked by ${addon_name}, will be an error in compat $error_compat)"); + warning("The target ${target} references a now obsolete command and will not be run!"); } } } } - if ($found_obsolete_targets and not compat($min_compat - 1)) { + if ($found_obsolete_targets and not compat(12)) { error("Aborting due to left over override/hook targets for now removed commands."); } return; @@ -753,7 +720,7 @@ push(@cmd_options, @{$command_opts->{$command}}) if exists($command_opts->{$command}); push(@cmd_options, @opts); - run_sequence_command_and_exit_on_failure($command, _remove_dup_pkg_options(@cmd_options)); + run_sequence_command_and_exit_on_failure($command, @cmd_options); } } @@ -761,25 +728,6 @@ } } -sub _remove_dup_pkg_options { - my (@options) = @_; - my @filtered_options; - my $arch = 0; - my $indep = 0; - for my $option (@options) { - if ($option eq '-a' or $option eq '--arch') { - next if $arch; - $arch = 1; - } - if ($option eq '-i' or $option eq '--indep') { - next if $indep; - $indep = 1; - } - push(@filtered_options, $option); - } - return @filtered_options; -} - sub _stamp_target { my ($command) = @_; diff -Nru debhelper-13.5.2/man/po4a/po/debhelper.pot debhelper-13.3.4/man/po4a/po/debhelper.pot --- debhelper-13.5.2/man/po4a/po/debhelper.pot 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po/debhelper.pot 2021-03-06 09:53:10.000000000 +0000 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2021-09-24 16:06+0100\n" +"POT-Creation-Date: 2021-02-22 09:37+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,20 @@ "Content-Transfer-Encoding: 8bit\n" #. type: =head1 -#: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms: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:5 dh_installemacsen:3 dh_installexamples:5 dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs: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:5 dh_usrlocal:5 dh_systemd_enable:3 dh_systemd_start:3 +#: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz: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:5 dh_installemacsen:3 dh_installexamples:5 +#: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs: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:5 dh_usrlocal:5 dh_systemd_enable:3 +#: dh_systemd_start:3 msgid "NAME" msgstr "" @@ -27,7 +40,21 @@ msgstr "" #. type: =head1 -#: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 dh_installinfo:15 dh_installinit:16 dh_installinitramfs:15 dh_installlogcheck:15 dh_installlogrotate:15 dh_installman:16 dh_installmanpages:16 dh_installmenu:15 dh_installmime:15 dh_installmodules:16 dh_installpam:15 dh_installppp:15 dh_installudev:15 dh_installwm:15 dh_installxfonts:15 dh_link:16 dh_lintian:15 dh_listpackages:15 dh_makeshlibs:15 dh_md5sums:16 dh_movefiles:15 dh_perl:17 dh_prep:15 dh_shlibdeps:17 dh_strip:16 dh_testdir:15 dh_testroot:9 dh_usrlocal:19 dh_systemd_enable:16 dh_systemd_start:17 +#: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 +#: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 +#: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 +#: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 +#: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 +#: dh_installinfo:15 dh_installinit:16 dh_installinitramfs:15 +#: dh_installlogcheck:15 dh_installlogrotate:15 dh_installman:16 +#: dh_installmanpages:16 dh_installmenu:15 dh_installmime:15 +#: dh_installmodules:16 dh_installpam:15 dh_installppp:15 dh_installudev:15 +#: dh_installwm:15 dh_installxfonts:15 dh_link:16 dh_lintian:15 +#: dh_listpackages:15 dh_makeshlibs:15 dh_md5sums:16 dh_movefiles:15 dh_perl:17 +#: dh_prep:15 dh_shlibdeps:17 dh_strip:16 dh_testdir:15 dh_testroot:9 +#: dh_usrlocal:19 dh_systemd_enable:16 dh_systemd_start:17 msgid "SYNOPSIS" msgstr "" @@ -39,7 +66,21 @@ msgstr "" #. type: =head1 -#: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 dh_installinfo:19 dh_installinit:20 dh_installinitramfs:19 dh_installlogcheck:19 dh_installlogrotate:19 dh_installman:20 dh_installmanpages:20 dh_installmenu:19 dh_installmime:19 dh_installmodules:20 dh_installpam:19 dh_installppp:19 dh_installudev:19 dh_installwm:19 dh_installxfonts:19 dh_link:20 dh_lintian:19 dh_listpackages:19 dh_makeshlibs:19 dh_md5sums:20 dh_movefiles:19 dh_perl:21 dh_prep:19 dh_shlibdeps:21 dh_strip:20 dh_testdir:19 dh_testroot:13 dh_usrlocal:23 dh_systemd_enable:20 dh_systemd_start:21 +#: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 +#: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 +#: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 +#: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 +#: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 +#: dh_installinfo:19 dh_installinit:20 dh_installinitramfs:19 +#: dh_installlogcheck:19 dh_installlogrotate:19 dh_installman:20 +#: dh_installmanpages:20 dh_installmenu:19 dh_installmime:19 +#: dh_installmodules:20 dh_installpam:19 dh_installppp:19 dh_installudev:19 +#: dh_installwm:19 dh_installxfonts:19 dh_link:20 dh_lintian:19 +#: dh_listpackages:19 dh_makeshlibs:19 dh_md5sums:20 dh_movefiles:19 dh_perl:21 +#: dh_prep:19 dh_shlibdeps:21 dh_strip:20 dh_testdir:19 dh_testroot:13 +#: dh_usrlocal:23 dh_systemd_enable:20 dh_systemd_start:21 msgid "DESCRIPTION" msgstr "" @@ -209,7 +250,10 @@ msgstr "" #. type: =item -#: debhelper.pod:111 debhelper.pod:115 debhelper.pod:119 debhelper.pod:123 debhelper.pod:127 debhelper.pod:131 debhelper.pod:135 debhelper.pod:139 debhelper.pod:143 debhelper.pod:147 debhelper.pod:151 debhelper.pod:155 debhelper.pod:159 debhelper.pod:247 debhelper.pod:252 +#: debhelper.pod:111 debhelper.pod:115 debhelper.pod:119 debhelper.pod:123 +#: debhelper.pod:127 debhelper.pod:131 debhelper.pod:135 debhelper.pod:139 +#: debhelper.pod:143 debhelper.pod:147 debhelper.pod:151 debhelper.pod:155 +#: debhelper.pod:159 debhelper.pod:247 debhelper.pod:252 msgid "*" msgstr "" @@ -637,7 +681,9 @@ msgstr "" #. type: =item -#: debhelper.pod:349 dh_compress:56 dh_dwz:56 dh_installchangelogs:83 dh_installdocs:109 dh_installexamples:80 dh_link:78 dh_makeshlibs:154 dh_md5sums:40 dh_shlibdeps:34 dh_strip:42 +#: debhelper.pod:349 dh_compress:56 dh_dwz:56 dh_installchangelogs:83 +#: dh_installdocs:109 dh_installexamples:80 dh_link:78 dh_makeshlibs:154 +#: dh_md5sums:40 dh_shlibdeps:34 dh_strip:42 msgid "B<-X>I, B<--exclude=>I" msgstr "" @@ -650,7 +696,9 @@ msgstr "" #. type: =item -#: debhelper.pod:355 dh_bugfiles:57 dh_compress:63 dh_installdirs:49 dh_installdocs:104 dh_installexamples:48 dh_installinfo:45 dh_installman:90 dh_installwm:55 dh_link:73 +#: debhelper.pod:355 dh_bugfiles:57 dh_compress:63 dh_installdirs:49 +#: dh_installdocs:104 dh_installexamples:48 dh_installinfo:45 dh_installman:90 +#: dh_installwm:55 dh_link:73 msgid "B<-A>, B<--all>" msgstr "" @@ -996,7 +1044,10 @@ msgstr "" #. type: textblock -#: debhelper.pod:531 debhelper.pod:563 debhelper.pod:593 debhelper.pod:624 debhelper.pod:685 debhelper-obsolete-compat.pod:28 debhelper-obsolete-compat.pod:35 debhelper-obsolete-compat.pod:58 debhelper-obsolete-compat.pod:87 +#: debhelper.pod:531 debhelper.pod:563 debhelper.pod:593 debhelper.pod:624 +#: debhelper.pod:685 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 "" @@ -1011,7 +1062,33 @@ msgstr "" #. type: =item -#: debhelper.pod:539 debhelper.pod:544 debhelper.pod:550 debhelper.pod:556 debhelper.pod:571 debhelper.pod:578 debhelper.pod:582 debhelper.pod:586 debhelper.pod:601 debhelper.pod:605 debhelper.pod:613 debhelper.pod:618 debhelper.pod:632 debhelper.pod:637 debhelper.pod:644 debhelper.pod:649 debhelper.pod:654 debhelper.pod:662 debhelper.pod:668 debhelper.pod:673 debhelper.pod:678 debhelper.pod:693 debhelper.pod:698 debhelper.pod:704 debhelper.pod:710 debhelper.pod:715 debhelper.pod:721 debhelper.pod:730 debhelper.pod:740 debhelper.pod:746 debhelper.pod:769 debhelper.pod:776 debhelper.pod:782 debhelper.pod:788 debhelper.pod:794 debhelper.pod:823 debhelper.pod:829 debhelper.pod:841 debhelper.pod:849 debhelper.pod:855 debhelper.pod:860 debhelper.pod:865 debhelper.pod:870 debhelper.pod:878 debhelper.pod:888 debhelper.pod:898 debhelper.pod:905 debhelper.pod:917 debhelper.pod:922 debhelper.pod:950 debhelper.pod:967 debhelper.pod:977 debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 debhelper.pod:1283 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 dh_testroot:36 dh_testroot:41 dh_testroot:46 +#: debhelper.pod:539 debhelper.pod:544 debhelper.pod:550 debhelper.pod:556 +#: debhelper.pod:571 debhelper.pod:578 debhelper.pod:582 debhelper.pod:586 +#: debhelper.pod:601 debhelper.pod:605 debhelper.pod:613 debhelper.pod:618 +#: debhelper.pod:632 debhelper.pod:637 debhelper.pod:644 debhelper.pod:649 +#: debhelper.pod:654 debhelper.pod:662 debhelper.pod:668 debhelper.pod:673 +#: debhelper.pod:678 debhelper.pod:693 debhelper.pod:698 debhelper.pod:704 +#: debhelper.pod:710 debhelper.pod:715 debhelper.pod:721 debhelper.pod:730 +#: debhelper.pod:740 debhelper.pod:746 debhelper.pod:769 debhelper.pod:776 +#: debhelper.pod:782 debhelper.pod:788 debhelper.pod:794 debhelper.pod:823 +#: debhelper.pod:829 debhelper.pod:841 debhelper.pod:849 debhelper.pod:855 +#: debhelper.pod:860 debhelper.pod:865 debhelper.pod:870 debhelper.pod:878 +#: debhelper.pod:888 debhelper.pod:898 debhelper.pod:905 debhelper.pod:917 +#: debhelper.pod:922 debhelper.pod:950 debhelper.pod:967 debhelper.pod:977 +#: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 +#: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 +#: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 +#: dh_testroot:36 dh_testroot:41 dh_testroot:46 msgid "-" msgstr "" @@ -1745,20 +1822,15 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the " -"B from dpkg/1.20 made the file relevant again and " -"B now installs it again in compat levels 12+." +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -1767,7 +1839,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with " "B<--no-start>) then you will probably need one for B as " @@ -1775,7 +1847,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists " @@ -1784,7 +1856,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -1794,36 +1866,36 @@ msgstr "" #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." msgstr "" #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the " "third-party build system B instead." msgstr "" #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 msgid "v13" msgstr "" #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "" #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 msgid "Changes from v12 are:" msgstr "" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -1832,7 +1904,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -1841,7 +1913,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default " @@ -1851,7 +1923,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -1859,7 +1931,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -1870,7 +1942,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -1878,12 +1950,12 @@ msgstr "" #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F " @@ -1891,7 +1963,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -1899,7 +1971,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -1908,7 +1980,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -1917,7 +1989,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -1926,14 +1998,14 @@ msgstr "" #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." msgstr "" #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -1944,7 +2016,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -1953,7 +2025,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -1961,7 +2033,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -1970,7 +2042,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes " "B<-DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up " @@ -1979,7 +2051,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -1987,22 +2059,22 @@ msgstr "" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 msgid "v14" msgstr "" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 msgid "This compatibility level is still open for development; use with caution." msgstr "" #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 msgid "Changes from v13 are:" msgstr "" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and " "B<-DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2010,7 +2082,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 msgid "" "This can cause issues with running binaries directly from the build " "directories as they might now require a manually set B. If " @@ -2022,78 +2094,27 @@ msgstr "" #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 msgid "The tool B is now included in the default sequence." msgstr "" -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding " -"B to Build-Depends), or explicitly passing " -"B<--destdir> to B if used and then passing B<--without " -"single-binary> to B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -msgid "v15" -msgstr "" - -#. type: textblock -#: debhelper.pod:1279 -msgid "Changes from v14 are:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< " -"--destdir=debian/I >> for source packages only producing a single " -"binary. If this behaviour is wanted, the package should explicitly activate " -"the B dh addon (e.g., by adding B " -"to B) or pass B<--destdir> to B." -msgstr "" - #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 dh_installinit:205 dh_installinitramfs:60 dh_installman:131 dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 dh_movefiles:67 dh_strip:119 dh_usrlocal:60 dh_systemd_enable:104 dh_systemd_start:68 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 +#: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 +#: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 +#: dh_movefiles:67 dh_strip:119 dh_usrlocal:60 dh_systemd_enable:104 +#: dh_systemd_start:68 msgid "NOTES" msgstr "" #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "" #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2105,7 +2126,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 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>, " @@ -2115,7 +2136,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 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 " @@ -2132,12 +2153,12 @@ msgstr "" #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -2147,19 +2168,19 @@ msgstr "" #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." msgstr "" #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -2167,39 +2188,39 @@ msgstr "" #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 msgid "-N I / --no-package I" msgstr "" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "" #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 msgid "-p I / --package I" msgstr "" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "" #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." msgstr "" #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 msgid "Automatic generation of Debian install scripts" msgstr "" #. type: textblock -#: debhelper.pod:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -2210,21 +2231,21 @@ msgstr "" #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 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:1372 +#: debhelper.pod:1324 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:1375 +#: debhelper.pod:1327 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 " @@ -2233,7 +2254,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -2253,12 +2274,12 @@ msgstr "" #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "" #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -2270,7 +2291,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -2279,7 +2300,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -2288,19 +2309,19 @@ msgstr "" #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "" #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 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:1418 +#: debhelper.pod:1370 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. " @@ -2328,19 +2349,19 @@ msgstr "" #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." msgstr "" #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 msgid "" "It is important to note that these must be actual environment variables in " "order to affect the behaviour of debhelper (not simply F " @@ -2349,24 +2370,24 @@ msgstr "" #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 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:1452 +#: debhelper.pod:1404 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -2376,12 +2397,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value specified via Build-Depends on debhelper-compat or via " @@ -2389,22 +2410,22 @@ msgstr "" #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 msgid "Set to B<1> to enable no-act mode." msgstr "" #. type: =item -#: debhelper.pod:1471 +#: debhelper.pod:1423 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -2413,19 +2434,19 @@ msgstr "" #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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:1481 +#: debhelper.pod:1433 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -2433,7 +2454,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -2444,19 +2465,19 @@ msgstr "" #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" msgstr "" #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -2465,7 +2486,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -2474,12 +2495,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -2487,7 +2508,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -2497,12 +2518,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -2510,7 +2531,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -2518,14 +2539,14 @@ msgstr "" #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" msgstr "" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -2537,12 +2558,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -2553,7 +2574,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -2561,19 +2582,19 @@ msgstr "" #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." msgstr "" #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -2583,19 +2604,19 @@ msgstr "" #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see " "e.g. L). The debhelper tool suite silently ignores it." msgstr "" #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -2603,29 +2624,29 @@ msgstr "" #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." msgstr "" #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -2633,24 +2654,24 @@ msgstr "" #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." msgstr "" #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I and L." msgstr "" #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." msgstr "" #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -2691,17 +2712,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "" #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -2710,43 +2731,43 @@ msgstr "" #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." msgstr "" #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" msgstr "" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." msgstr "" #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "" #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -2755,7 +2776,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -2763,12 +2784,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -2777,17 +2798,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "" #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "" #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -2795,37 +2816,76 @@ msgstr "" #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 +#: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 +#: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 +#: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 +#: dh_installmodules:109 dh_installpam:62 dh_installppp:68 dh_installudev:102 +#: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 +#: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 +#: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "" #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "" #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 msgid "A set of example F files that use debhelper." msgstr "" #. type: =item -#: debhelper.pod:1675 +#: debhelper.pod:1627 msgid "L" msgstr "" #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "" #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 dh_installwm:140 dh_installxfonts:98 dh_link:174 dh_listpackages:42 dh_makeshlibs:464 dh_md5sums:126 dh_movefiles:169 dh_prep:78 dh_shlibdeps:212 dh_strip:443 dh_testdir:70 dh_testroot:101 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 +#: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 +#: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 +#: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 +#: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 +#: dh_installmodules:117 dh_installpam:70 dh_installppp:76 dh_installudev:110 +#: dh_installwm:140 dh_installxfonts:98 dh_link:174 dh_listpackages:42 +#: dh_makeshlibs:464 dh_md5sums:126 dh_movefiles:169 dh_prep:78 +#: dh_shlibdeps:212 dh_strip:443 dh_testdir:70 dh_testroot:101 msgid "Joey Hess " msgstr "" @@ -2981,17 +3041,30 @@ msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "" #. type: =head1 -#: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 dh_systemd_start:283 +#: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "" @@ -3356,7 +3429,19 @@ msgstr "" #. type: =head1 -#: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 dh_installman:86 dh_installmanpages:43 dh_installmenu:44 dh_installmodules:41 dh_installpam:34 dh_installppp:38 dh_installudev:34 dh_installwm:41 dh_link:69 dh_makeshlibs:67 dh_md5sums:31 dh_movefiles:41 dh_perl:34 dh_prep:29 dh_shlibdeps:30 dh_strip:38 dh_testdir:26 dh_usrlocal:50 dh_systemd_enable:83 dh_systemd_start:33 +#: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 +#: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 +#: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 +#: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 +#: dh_installman:86 dh_installmanpages:43 dh_installmenu:44 +#: dh_installmodules:41 dh_installpam:34 dh_installppp:38 dh_installudev:34 +#: dh_installwm:41 dh_link:69 dh_makeshlibs:67 dh_md5sums:31 dh_movefiles:41 +#: dh_perl:34 dh_prep:29 dh_shlibdeps:30 dh_strip:38 dh_testdir:26 +#: dh_usrlocal:50 dh_systemd_enable:83 dh_systemd_start:33 msgid "OPTIONS" msgstr "" @@ -3456,7 +3541,8 @@ msgstr "" #. type: =head1 -#: dh:279 dh_install:332 dh_installdocs:191 dh_installman:117 dh_link:91 dh_makeshlibs:185 dh_shlibdeps:78 +#: dh:279 dh_install:332 dh_installdocs:191 dh_installman:117 dh_link:91 +#: dh_makeshlibs:185 dh_shlibdeps:78 msgid "EXAMPLES" msgstr "" @@ -3753,165 +3839,18 @@ #. type: =head1 #: dh:424 -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." msgstr "" #. type: textblock -#: dh:502 +#: dh:428 msgid "" "In compat 10 (or later), B creates a stamp file " "F after the build step(s) are complete to " @@ -3922,7 +3861,7 @@ msgstr "" #. type: textblock -#: dh:510 +#: dh:436 msgid "" "Inside an override target, B commands will create a log file " "F to keep track of which packages the " @@ -3931,7 +3870,7 @@ msgstr "" #. type: textblock -#: dh:515 +#: dh:441 msgid "" "In compat 9 or earlier, each debhelper command will record when it's " "successfully run in F. (Which B " @@ -3940,7 +3879,7 @@ msgstr "" #. type: textblock -#: dh:520 +#: dh:446 msgid "" "Each time B is run (in compat 9 or earlier), it examines the log, and " "finds the last logged command that is in the specified sequence. It then " @@ -3948,14 +3887,14 @@ msgstr "" #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." msgstr "" #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -3964,7 +3903,7 @@ msgstr "" #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -3974,7 +3913,20 @@ msgstr "" #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 dh_installwm:136 dh_installxfonts:94 dh_link:170 dh_lintian:64 dh_listpackages:38 dh_makeshlibs:460 dh_md5sums:122 dh_movefiles:165 dh_perl:178 dh_prep:74 dh_shlibdeps:208 dh_strip:439 dh_testdir:66 dh_testroot:97 dh_usrlocal:140 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 +#: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 +#: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 +#: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 +#: dh_installmodules:113 dh_installpam:66 dh_installppp:72 dh_installudev:106 +#: dh_installwm:136 dh_installxfonts:94 dh_link:170 dh_lintian:64 +#: dh_listpackages:38 dh_makeshlibs:460 dh_md5sums:122 dh_movefiles:165 +#: dh_perl:178 dh_prep:74 dh_shlibdeps:208 dh_strip:439 dh_testdir:66 +#: dh_testroot:97 dh_usrlocal:140 msgid "This program is a part of debhelper." msgstr "" @@ -4009,14 +3961,17 @@ msgstr "" #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 dh_auto_test:36 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 +#: dh_auto_test:36 msgid "" "See L> for a list of common build " "system selection and control options." msgstr "" #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 +#: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 +#: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" msgstr "" @@ -4142,33 +4097,23 @@ #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." +"Unless B<--destdir> option is specified, the files are installed into " +"debian/I/ if there is only one binary package. In the multiple " +"binary package case, the files are instead installed into F, " +"and should be moved from there to the appropriate package build directory " +"using L." msgstr "" #. type: textblock #: dh_auto_install:38 msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." -msgstr "" - -#. type: textblock -#: dh_auto_install:44 -msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " "B too, since such Makefiles need that." msgstr "" #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -4176,12 +4121,12 @@ msgstr "" #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "" #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -4189,7 +4134,7 @@ msgstr "" #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -4262,7 +4207,15 @@ msgstr "" #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 dh_installinfo:28 dh_installinit:41 dh_installinitramfs:30 dh_installlogcheck:24 dh_installman:73 dh_installmenu:28 dh_installmime:24 dh_installmodules:31 dh_installpam:24 dh_installppp:24 dh_installudev:24 dh_installwm:28 dh_link:46 dh_lintian:24 dh_makeshlibs:44 dh_movefiles:29 dh_systemd_enable:41 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 +#: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 +#: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 +#: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 +#: dh_installinfo:28 dh_installinit:41 dh_installinitramfs:30 +#: dh_installlogcheck:24 dh_installman:73 dh_installmenu:28 dh_installmime:24 +#: dh_installmodules:31 dh_installpam:24 dh_installppp:24 dh_installudev:24 +#: dh_installwm:28 dh_link:46 dh_lintian:24 dh_makeshlibs:44 dh_movefiles:29 +#: dh_systemd_enable:41 msgid "FILES" msgstr "" @@ -4461,7 +4414,9 @@ msgstr "" #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 dh_installman:81 dh_installwm:36 dh_link:64 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 +#: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 +#: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" "Supports substitution variables in compat 13 and later as documented in " "L." @@ -4595,7 +4550,8 @@ msgstr "" #. type: =item -#: dh_compress:68 dh_installdocs:184 dh_installexamples:85 dh_installinfo:60 dh_installmanpages:47 dh_movefiles:58 dh_testdir:30 +#: dh_compress:68 dh_installdocs:184 dh_installexamples:85 dh_installinfo:60 +#: dh_installmanpages:47 dh_movefiles:58 dh_testdir:30 msgid "I ..." msgstr "" @@ -4765,6 +4721,71 @@ msgstr "" #. type: textblock +#: dh_gconf:5 +msgid "dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" + +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "" + +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" + +#. type: textblock +#: dh_gconf:24 +msgid "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "" + +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "" + +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" + +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "" + +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" + +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "" + +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" + +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "" + +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "" @@ -4848,7 +4869,9 @@ msgstr "" #. type: =item -#: dh_icons:37 dh_installcatalogs:60 dh_installdebconf:68 dh_installemacsen:60 dh_installinit:82 dh_installinitramfs:47 dh_installmenu:48 dh_installmodules:45 dh_installwm:51 dh_makeshlibs:147 dh_usrlocal:54 +#: dh_icons:37 dh_installcatalogs:60 dh_installdebconf:68 dh_installemacsen:60 +#: dh_installinit:82 dh_installinitramfs:47 dh_installmenu:48 +#: dh_installmodules:45 dh_installwm:51 dh_makeshlibs:147 dh_usrlocal:54 msgid "B<-n>, B<--no-scripts>" msgstr "" @@ -4980,7 +5003,8 @@ msgstr "" #. type: =item -#: dh_install:91 dh_installdirs:62 dh_installdocs:114 dh_installexamples:53 dh_installinfo:50 dh_installman:100 dh_movefiles:45 +#: dh_install:91 dh_installdirs:62 dh_installdocs:114 dh_installexamples:53 +#: dh_installinfo:50 dh_installman:100 dh_movefiles:45 msgid "B<--sourcedir=>I" msgstr "" @@ -5196,7 +5220,8 @@ msgstr "" #. type: textblock -#: dh_installcatalogs:69 dh_installemacsen:77 dh_installinit:207 dh_installmodules:59 dh_installudev:52 dh_installwm:68 dh_usrlocal:62 +#: dh_installcatalogs:69 dh_installemacsen:77 dh_installinit:207 +#: dh_installmodules:59 dh_installudev:52 dh_installwm:68 dh_usrlocal:62 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command. Otherwise, it may cause multiple " @@ -5390,7 +5415,9 @@ msgstr "" #. type: =item -#: dh_installcron:47 dh_installifupdown:46 dh_installinit:175 dh_installlogcheck:49 dh_installlogrotate:29 dh_installmodules:49 dh_installpam:38 dh_installppp:42 dh_installudev:38 dh_systemd_enable:95 +#: dh_installcron:47 dh_installifupdown:46 dh_installinit:175 +#: dh_installlogcheck:49 dh_installlogrotate:29 dh_installmodules:49 +#: dh_installpam:38 dh_installppp:42 dh_installudev:38 dh_systemd_enable:95 msgid "B<--name=>I" msgstr "" @@ -5491,17 +5518,17 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" #. type: =item @@ -5559,23 +5586,13 @@ "enabled as a warning since compat 10 and as a hard error in compat 12." msgstr "" -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -5593,17 +5610,17 @@ msgstr "" #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "An explicit declared token with this parameter will replace built-in tokens." msgstr "" #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." msgstr "" #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -5632,12 +5649,12 @@ msgstr "" #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in " "F, to B in F and " @@ -5667,7 +5684,7 @@ msgstr "" #. type: textblock -#: dh_installdeb:164 +#: dh_installdeb:157 msgid "" "Note that the B<#pkg.*#> tokens will be visible in all scripts acted on. " "E.g. you can refer to B<#pkg.bar.TOKEN#> inside F and " @@ -5675,24 +5692,24 @@ msgstr "" #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" msgstr "" #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 msgid "#DEBHELPER#" msgstr "" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -5700,12 +5717,12 @@ msgstr "" #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from " "L. In almost all cases, you will want use the B<< " @@ -5714,19 +5731,19 @@ msgstr "" #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." msgstr "" #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -5734,38 +5751,38 @@ msgstr "" #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." msgstr "" #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." msgstr "" #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: " "#[A-Za-z0-9_.+]+#" msgstr "" #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -6669,9 +6686,8 @@ #. type: textblock #: dh_installinit:67 msgid "" -"If this exists, it is installed into F<< " -"lib/systemd/system/I.service >> in the package build " -"directory. Only used in compat levels 10 and below." +"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 "" #. type: =item @@ -9161,9 +9177,8 @@ #. type: textblock #: dh_systemd_enable:47 msgid "" -"If this exists, it is installed into F<< " -"lib/systemd/system/I.service >> (or F<< " -"lib/systemd/system/I@.service >>) in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or lib/systemd/system/I@.service) in the package build directory." msgstr "" #. type: textblock @@ -9182,9 +9197,8 @@ #. type: textblock #: dh_systemd_enable:58 msgid "" -"If this exists, it is installed into F<< " -"lib/systemd/system/I.target >> (or F<< " -"lib/systemd/system/I@.target >>) in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" #. type: =item @@ -9195,9 +9209,8 @@ #. type: textblock #: dh_systemd_enable:63 msgid "" -"If this exists, it is installed into F<< " -"lib/systemd/system/I.socket >> (or F<< " -"lib/systemd/system/I@.socket >>) in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" #. type: =item @@ -9208,8 +9221,8 @@ #. type: textblock #: dh_systemd_enable:68 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" #. type: =item @@ -9220,9 +9233,8 @@ #. type: textblock #: dh_systemd_enable:73 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" #. type: =item @@ -9233,9 +9245,8 @@ #. type: textblock #: dh_systemd_enable:78 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" #. type: textblock @@ -9284,7 +9295,7 @@ msgstr "" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" diff -Nru debhelper-13.5.2/man/po4a/po/de.po debhelper-13.3.4/man/po4a/po/de.po --- debhelper-13.5.2/man/po4a/po/de.po 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po/de.po 2021-02-22 18:53:03.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: debhelper 12.9\n" "Report-Msgid-Bugs-To: debhelper@packages.debian.org\n" -"POT-Creation-Date: 2021-09-24 16:06+0100\n" +"POT-Creation-Date: 2021-02-22 09:37+0100\n" "PO-Revision-Date: 2020-02-07 19:21+0100\n" "Last-Translator: Erik Pfannenstein \n" "Language-Team: German \n" @@ -21,7 +21,7 @@ #: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms:3 -#: dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs: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:5 dh_installemacsen:3 dh_installexamples:5 #: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs:3 @@ -44,7 +44,7 @@ #: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 #: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 #: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 -#: dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 #: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 #: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 #: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 @@ -72,7 +72,7 @@ #: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 #: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 #: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 -#: dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 #: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 #: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 #: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 @@ -1389,12 +1389,11 @@ #: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 #: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 #: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 -#: debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 -#: debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 -#: debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 -#: debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 -#: debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 -#: debhelper.pod:1283 debhelper-obsolete-compat.pod:43 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 @@ -2397,22 +2396,11 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 -#, fuzzy -#| msgid "" -#| "The B tool no longer installs the maintainer provided " -#| "F file. The file has mostly been obsolete since compatibility " -#| "level 3, where B began to automatically compute the " -#| "resulting F control file." -msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the B from dpkg/1.20 made the file relevant again and B " -"now installs it again in compat levels 12+." +msgid "" +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" "Das Werkzeug B installiert die vom Paketbetreuer " "bereitgestellte F-Datei nicht mehr. Die Datei war seit " @@ -2420,7 +2408,7 @@ "die resultierende F-Steuerdatei automatisch selbst zu berechnen." #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -2434,7 +2422,7 @@ "Systemd sauber gestartet wird." #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with B<--no-" "start>) then you will probably need one for B as well now." @@ -2444,7 +2432,7 @@ "wahrscheinlich auch eine für B benötigen." #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists B<" @@ -2457,7 +2445,7 @@ "Sie ein Upgrade auf Kompatibilitätsstufe 12 durchführen." #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -2473,7 +2461,7 @@ "unter B." #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." @@ -2482,7 +2470,7 @@ "Sequenz enthalten." #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the third-" "party build system B instead." @@ -2491,22 +2479,22 @@ "Sie stattdessen das Drittanbieterbausystem B." #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 msgid "v13" msgstr "v13" #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "Dies ist der empfohlene Betriebsmodus." #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 msgid "Changes from v12 are:" msgstr "Die Änderungen gegenüber v12 sind:" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -2520,7 +2508,7 @@ "Befehlszeile nicht mit B kompatibel ist." #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -2535,7 +2523,7 @@ "werden." #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default (i." @@ -2551,7 +2539,7 @@ "B hinzufügen." #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -2563,7 +2551,7 @@ "zu unterbinden." #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -2583,7 +2571,7 @@ # FIXME: s/resets/reset # FIXME: last line: missing "is" #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -2596,14 +2584,14 @@ # FIXME: Double "between" #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "" "I" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F (e.g. " @@ -2614,7 +2602,7 @@ "B) vorhanden ist." #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -2625,7 +2613,7 @@ "list-missing> übergeben wird, wie es in Kompatibilitätsstufe 12 war." #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -2638,7 +2626,7 @@ "oder dem passenden Paket erledigen. Zum Beispiel:" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -2650,7 +2638,7 @@ "\n" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -2663,7 +2651,7 @@ "B ist nun deaktiviert." #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." @@ -2673,7 +2661,7 @@ "benutzt hat." #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -2691,7 +2679,7 @@ "das Paket weiterhin L benötigt." #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -2704,7 +2692,7 @@ "Funktionen B und B." #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -2716,7 +2704,7 @@ "aufführt." #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -2730,7 +2718,7 @@ "B verschoben werden." #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes B<-" "DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up automatic " @@ -2743,7 +2731,7 @@ "alten Verhalten bleiben möchten, übersteuern Sie den Schalter:" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -2753,12 +2741,12 @@ "\n" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 msgid "v14" msgstr "v14" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -2766,12 +2754,12 @@ "Verwenden Sie sie mit Vorsicht." #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 msgid "Changes from v13 are:" msgstr "Änderungen gegenüber v13 sind:" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and B<-" "DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2782,7 +2770,7 @@ "Reproduzierbarkeit zu beheben." #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 #, fuzzy #| msgid "" #| "This can cause issues with running binaries directly from the build " @@ -2813,7 +2801,7 @@ "werden." #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 #, fuzzy #| msgid "" #| "B is now included in the B standard sequence " @@ -2823,68 +2811,8 @@ "B ist nun per Voreinstellung in der Standard-B-" "Sequenz enthalten." -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding B to Build-Depends), or explicitly passing B<--destdir> to " -"B if used and then passing B<--without single-binary> to " -"B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -#, fuzzy -#| msgid "v5" -msgid "v15" -msgstr "v5" - -#. type: textblock -#: debhelper.pod:1279 -#, fuzzy -#| msgid "Changes from v4 are:" -msgid "Changes from v14 are:" -msgstr "Änderungen gegenüber v4 sind:" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< --destdir=debian/" -"I >> for source packages only producing a single binary. If this " -"behaviour is wanted, the package should explicitly activate the B dh addon (e.g., by adding B to B) or pass B<--destdir> to B." -msgstr "" - #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 #: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 #: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 #: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 @@ -2894,12 +2822,12 @@ msgstr "ANMERKUNGEN" #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "Unterstützung mehrerer Binärpakete" #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2918,7 +2846,7 @@ "Ziel »binary-indep«." #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 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<-" @@ -2934,7 +2862,7 @@ "sind, mit nachfolgenden Ausnahmen." #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:1323 +#: debhelper.pod:1275 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -2959,12 +2887,12 @@ "BuildProfileSpec>." #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "Zusammenspiel zwischen Paketauswahl und Bauprofilen" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -2979,13 +2907,13 @@ "Bauprofils (oder das Fehlen des aktiven Bauprofils) deaktiviert wird." #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" "-a/--arch, -i/--indep ODER keine Auswahloptionen (ein roher »dh_X«-Aufruf)" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." @@ -2994,7 +2922,7 @@ "ausgeschlossen." #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -3005,28 +2933,28 @@ "Allgemeinen überhaupt sinnlos." #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 msgid "-N I / --no-package I" msgstr "-N I / --no-package I" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "Die Option wird akzeptiert und hat keine Wirkung." #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 msgid "-p I / --package I" msgstr "-p I / --package I" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "" "Die Option wird akzeptiert, aber Debhelper wird nichts an dem Paket ändern." #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." @@ -3035,12 +2963,12 @@ "aktiviert oder deaktiviert ist." #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 msgid "Automatic generation of Debian install scripts" msgstr "Automatisches Erzeugen von Debian-Installationsskripten" #. type: textblock -#: debhelper.pod:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -3057,7 +2985,7 @@ "erzeugten Kode ersetzt, wenn Sie B ausführen." #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -3066,7 +2994,7 @@ "hinzufügen muss, dann wird Debhelper das komplette Skript erstellen." #. type: textblock -#: debhelper.pod:1372 +#: debhelper.pod:1324 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -3075,7 +3003,7 @@ "ihn durch den Parameter -n deaktiviert (siehe oben)." #. type: textblock -#: debhelper.pod:1375 +#: debhelper.pod:1327 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 " @@ -3089,7 +3017,7 @@ "etc. gesetzt sind):" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -3121,12 +3049,12 @@ "\n" #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "Automatisches Erzeugen verschiedener Abhängigkeiten" #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -3146,7 +3074,7 @@ "bietet, sie zu automatisieren." #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -3160,7 +3088,7 @@ "Debhelper findet, dass Sie sie benötigen." #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -3174,12 +3102,12 @@ "entspricht." #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "Paketbauverzeichnisse" #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -3189,7 +3117,7 @@ "debian/I ist." #. type: textblock -#: debhelper.pod:1418 +#: debhelper.pod:1370 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -3209,12 +3137,12 @@ "Debhelper-Programm auswirkt." #. type: =head2 -#: debhelper.pod:1426 +#: debhelper.pod:1378 msgid "udebs" msgstr "Udebs" #. type: textblock -#: debhelper.pod:1428 +#: debhelper.pod:1380 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -3232,12 +3160,12 @@ "werden." #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "UMGEBUNGSVARIABLEN" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." @@ -3246,7 +3174,7 @@ "von Debhelper beeinflussen oder mit denen Debhelper interagiert." #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 msgid "" "It is important to note that these must be actual environment variables in " "order to affect the behaviour of debhelper (not simply F " @@ -3260,12 +3188,12 @@ "DH_VERBOSE>«." #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 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." @@ -3276,12 +3204,12 @@ "aktiviert." #. type: =item -#: debhelper.pod:1452 +#: debhelper.pod:1404 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -3298,12 +3226,12 @@ "wird diese Einstellung ignoriert." #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value specified via Build-Depends on debhelper-compat or via " @@ -3314,22 +3242,22 @@ "in Debhelper-compat oder über die Datei F angegeben wurde." #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 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:1471 +#: debhelper.pod:1423 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -3343,7 +3271,7 @@ "nicht und werden diese Befehlszeilenargumente ignorieren." #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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." @@ -3353,12 +3281,12 @@ "DH_OPTIONS zu verwenden." #. type: =item -#: debhelper.pod:1481 +#: debhelper.pod:1433 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -3370,7 +3298,7 @@ "B ausführen." #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -3388,7 +3316,7 @@ "Paket gebaut wird." #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -3397,12 +3325,12 @@ "getrennt werden, wie in B." #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -3416,7 +3344,7 @@ "Umgebungsvariable eine Erweiterung festlegen, werden nicht ausgeführt." #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -3430,12 +3358,12 @@ "zugunsten eines --with-Schalters in der Datei »rules« vermieden werden." #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -3446,7 +3374,7 @@ "»auto« (die Voreinstellung) oder »never« gesetzt werden." #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -3462,12 +3390,12 @@ "verwenden." #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -3479,7 +3407,7 @@ "gesetzt wird." #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -3490,7 +3418,7 @@ "betrachtet." #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" @@ -3499,7 +3427,7 @@ "B, B, B, B" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -3516,12 +3444,12 @@ "DCUSTOM_MACRO=true>) statt die konkrete Variable direkt zu setzen." #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -3538,7 +3466,7 @@ "B (außer während des B) werden geleert." #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -3549,12 +3477,12 @@ "gelöscht oder B aufgerufen wird." #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." @@ -3563,7 +3491,7 @@ "Unterstützte Optionen in DEB_BUILD_OPTIONS>" #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -3577,12 +3505,12 @@ "abgeschaltet werden (etwa durch Außerkraftsetzen der betreffenden Werkzeuge)." #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see e.g. L). The debhelper tool suite silently ignores it." @@ -3591,7 +3519,7 @@ "buildflags(1)>). Die Debhelper-Suite ignoriert sie kommentarlos." #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -3602,12 +3530,12 @@ "die Variable reagiert." #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "Unterstützte Optionen in DEB_BUILD_OPTIONS" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." @@ -3616,17 +3544,17 @@ "B:" #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "dherroron=obsolete-compat-levels>" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "I" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -3637,7 +3565,7 @@ "Abschussliste stehenden Kompaitiblitätsstufen zu Fehlern erheben." #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." @@ -3646,18 +3574,18 @@ "Kompatibilitätsstufen basiert, die bald entfernt werden sollen." #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" "Die Option ist für Testzwecke gedacht, aber nicht für Produktiveinsatz." #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I" #. type: textblock -#: debhelper.pod:1598 +#: debhelper.pod:1550 msgid "" "This value will cause the official debhelper tools will skip actions and " "helpers that either remove, detach or deduplicate debugging symbols in ELF " @@ -3680,17 +3608,17 @@ "Fehlersuchsymbolen in ELF-Binärdateien zu überspringen." #. type: textblock -#: debhelper.pod:1602 +#: debhelper.pod:1554 msgid "This value affects L and L." msgstr "Dieser Wert betrifft L und L." #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." @@ -3699,7 +3627,7 @@ "Ausführung von Test-Suiten der Originalautoren überspringen." #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -3710,17 +3638,17 @@ "um B zu überspringen." #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "Dieser Wert betrifft L." #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -3734,7 +3662,7 @@ "sie nicht gebaut wurde." #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." @@ -3743,12 +3671,12 @@ "dass es mit Dokumentation arbeitet." #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" @@ -3757,7 +3685,7 @@ "historischen Gründen akzeptiert.>" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." @@ -3766,17 +3694,17 @@ "Fehlersuchsymbol-Pakete zu unterlassen." #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "Dieser Wert beeinflusst L." #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -3788,7 +3716,7 @@ "die Anfrage daher kommentarlos ignorieren." #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -3799,12 +3727,12 @@ "Anzahl an Threads auszuführen." #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -3817,17 +3745,17 @@ "solche Funktionsmerkmale unterstützen." #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "Dieser Wert betrifft die meisten B-Werkzeuge." #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "Unbekannte Schalter werden stillschweigend ignoriert." #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -3838,13 +3766,13 @@ "Das hängt davon ab, wie die Werkzeuge im Detail implementiert sind." #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 -#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 -#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 -#: dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 #: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 -#: dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 -#: dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 #: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 #: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 #: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 @@ -3852,56 +3780,57 @@ #: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 #: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 #: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 -#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "SIEHE AUCH" #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 msgid "A set of example F files that use debhelper." msgstr "" "eine Zusammenstellung von F-Beispieldateien, die Debhelper " "benutzen" #. type: =item -#: debhelper.pod:1675 +#: debhelper.pod:1627 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "Debhelper-Website" #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 -#: dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 -#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 -#: dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 -#: dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 -#: dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 -#: dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 -#: dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 -#: dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 -#: dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 -#: dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 -#: dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 -#: dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 -#: dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 -#: dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 #: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 -#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 -#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 #: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 #: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 #: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 @@ -4101,30 +4030,30 @@ "expandieren." #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 -#: dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 -#: dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 -#: dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 -#: dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 -#: dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 -#: dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 -#: dh_installman:419 dh_installmanpages:200 dh_installmime:65 -#: dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 -#: dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 -#: dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 -#: dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 -#: dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "L" #. type: =head1 #: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 -#: dh_systemd_start:283 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "AUTOREN" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "Niels Thykier " @@ -4642,10 +4571,10 @@ #. type: =head1 #: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 -#: dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 -#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 -#: dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 -#: dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 #: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 #: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 #: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 @@ -5203,161 +5132,11 @@ #. type: =head1 #: dh:424 -#, fuzzy -#| msgid "DEBHELPER COMMANDS" -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "DEBHELPER-BEFEHLE" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "" -"A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "INTERNA" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." @@ -5366,7 +5145,7 @@ "wie es unter der Haube arbeitet." #. type: textblock -#: dh:502 +#: dh:428 msgid "" "In compat 10 (or later), B creates a stamp file F after the build step(s) are complete to avoid re-running them. It is " @@ -5384,7 +5163,7 @@ "zweimal ausgeführt (das zweite Mal als root oder unter L)." #. type: textblock -#: dh:510 +#: dh:436 msgid "" "Inside an override target, B commands will create a log file F to keep track of which packages the command(s) have " @@ -5397,7 +5176,7 @@ "entfernt, sobald die Override-Ziele erledigt sind." #. type: textblock -#: dh:515 +#: dh:441 msgid "" "In compat 9 or earlier, each debhelper command will record when it's " "successfully run in F. (Which B " @@ -5411,7 +5190,7 @@ "Ausführung dieser Befehle überspringen." #. type: textblock -#: dh:520 +#: dh:446 msgid "" "Each time B is run (in compat 9 or earlier), it examines the log, and " "finds the last logged command that is in the specified sequence. It then " @@ -5423,7 +5202,7 @@ "Befehl fort." #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." @@ -5432,7 +5211,7 @@ "Sequenz »binary« führt zum Beispiel das Ziel »install« aus." #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -5445,7 +5224,7 @@ "ist, wie der Name schon andeutet, Gegenstand dauernder Änderungen." #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -5461,12 +5240,12 @@ "architekturabhängigen Paketen funktionieren." #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 -#: dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 -#: dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 -#: dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 -#: dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 -#: dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 #: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 #: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 #: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 @@ -5520,7 +5299,7 @@ "von B überspringen und den Bauprozess nur manuell ausführen." #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 #: dh_auto_test:36 msgid "" "See L> for a list of common build " @@ -5530,7 +5309,7 @@ "L>." #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 #: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 #: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" @@ -5705,28 +5484,11 @@ #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." -msgstr "" - -#. type: textblock -#: dh_auto_install:38 -#, fuzzy -#| msgid "" -#| "Unless B<--destdir> option is specified, the files are installed into " -#| "debian/I/ if there is only one binary package. In the multiple " -#| "binary package case, the files are instead installed into F, " -#| "and should be moved from there to the appropriate package build directory " -#| "using L." -msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." +"Unless B<--destdir> option is specified, the files are installed into debian/" +"I/ if there is only one binary package. In the multiple binary " +"package case, the files are instead installed into F, and " +"should be moved from there to the appropriate package build directory using " +"L." msgstr "" "Sofern die Option B<--destdir> nicht angegeben ist und es nur ein binäres " "Paket gibt, werden die Dateien in debian/I/ installiert. Im Fall " @@ -5735,7 +5497,7 @@ "dazugehörige Bauverzeichnis des Pakets verschoben werden." #. type: textblock -#: dh_auto_install:44 +#: dh_auto_install:38 msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " @@ -5747,7 +5509,7 @@ "dies erfordern." #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -5759,12 +5521,12 @@ "install per Hand ausführen." #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -5775,7 +5537,7 @@ "Abschnitt L> beschrieben, festgelegt." #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -5874,7 +5636,7 @@ "»presubj«-Dateien)." #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 #: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 #: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 #: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 @@ -6132,7 +5894,7 @@ "ebenfalls entfernt." #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 #: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 #: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" @@ -6539,6 +6301,86 @@ "sollen." #. type: textblock +#: dh_gconf:5 +msgid "" +"dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" +"dh_gconf - installiert Standard-GConf-Dateien und registriert Schemata " +"(missbilligt)" + +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "B [S>] [B<--priority=>I]" + +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" +"B ist ein Debhelper-Programm, das für die Installation der " +"Standard-GConf-Dateien und das Registrieren der GConf-Schemata zuständig ist." + +#. type: textblock +#: dh_gconf:24 +msgid "" +"An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "" +"Eine geeignete Abhängigkeit zu gconf2 wird in B<${misc:Depends}> erzeugt." + +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "debian/I.gconf-defaults" + +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"installiert in F im Bauverzeichnis des " +"Pakets, wobei I durch den Namen des Pakets ersetzt wird." + +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "debian/I.gconf-mandatory" + +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"installiert in F im Bauverzeichnis des " +"Pakets, wobei I durch den Namen des Pakets ersetzt wird." + +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "B<--priority> I" + +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" +"benutzt I (welche eine zweistellige Zahl sein sollte) als " +"Standardpriorität an Stelle von B<10>. Höhere Werte als zehn können durch " +"abgeleitete Distributionen (B<20>), CDD-Distributionen (B<50>) oder Site-" +"spezifische Pakete (B<90>) verwendet werden." + +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "Ross Burton , Josselin Mouette " + +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - erzeugt und installiert die Steuerdatei »control«" @@ -7477,18 +7319,24 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" +"Früher wurde diese Datei benötigt, um Dateien manuell als Conffiles zu " +"markieren. Allerdings wurde es faktisch überflüssig, seit Debhelper " +"automatisch berechnet, welche Dateien als Conffiles markiert werden sollen." #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" +"Auf Kompatibilitätsstufen 11 und darunter wird diese Steuerdatei im " +"Verzeichnis F installiert. Auf Kompatibilitätsstufe 12 und neuer " +"wird diese Datei stillschweigend ignoriert." #. type: =item #: dh_installdeb:67 @@ -7565,23 +7413,13 @@ "abzufangen. Die Überprüfung wird seit Kompatibilitätsstufe 10 als Warnung " "aktiviert und in Kompatibilitätsstufe 12 als harter Fehler." -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "B<-D>I, B<--define> I" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -7608,7 +7446,7 @@ "die den tatsächlich einzufügenden Wert enthält." #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "" "An explicit declared token with this parameter will replace built-in tokens." msgstr "" @@ -7616,12 +7454,12 @@ "eingebauten Markierungen ersetzen." #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "Testbeispiele zum besseren Verständnis:" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." @@ -7650,7 +7488,7 @@ "B expandiert." #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -7663,12 +7501,12 @@ "wird B<< pkg.I. >> vor die Markierung gestellt." #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "Es kann wie im folgenden Beispiel benutzt werden:" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in F, to B in F and to B zu B expandiert." #. type: textblock -#: dh_installdeb:164 +#: dh_installdeb:157 msgid "" "Note that the B<#pkg.*#> tokens will be visible in all scripts acted on. E." "g. you can refer to B<#pkg.bar.TOKEN#> inside F and it " @@ -7727,12 +7565,12 @@ "B ersetzt." #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "ERSETZUNG IN BETREUERSKRIPTEN" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" @@ -7742,12 +7580,12 @@ "define> ersetzt werden):" #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 msgid "#DEBHELPER#" msgstr "#DEBHELPER#" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -7758,12 +7596,12 @@ "Datei I.maintscript erzeugten Schnipsel (falls vorhanden)." #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from L. In almost all cases, you will want use the B<< " @@ -7776,7 +7614,7 @@ "dass Sie beim Cross-Bauen den richtigen Wert haben." #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." @@ -7786,12 +7624,12 @@ "wie sie sind." #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "#ENV.I#" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -7802,7 +7640,7 @@ "wird die Markierung durch die leere Zeichenkette ersetzt." #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." @@ -7811,12 +7649,12 @@ "können (siehe L)." #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "#PACKAGE#" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." @@ -7825,12 +7663,12 @@ "welches das wirkliche Skript enthält." #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "Einschränkungen in Markierungsnamen" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: #[A-Za-z0-9_.+]+#" msgstr "" @@ -7838,7 +7676,7 @@ "Ausdruck #[A-Za-z0-9_.+]+# passen." #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -9003,15 +8841,9 @@ #. type: textblock #: dh_installinit:67 -#, fuzzy -#| 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." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> in the package build directory. Only used in compat levels 10 and " -"below." +"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 vorhanden, wird es in lib/systemd/system/I.service im " "Paketbauverzeichnis installiert. Wird nur in Kompatibilitätsstufen 10 und " @@ -12279,15 +12111,9 @@ #. type: textblock #: dh_systemd_enable:47 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I." -#| "service (or lib/systemd/system/I@.service) in the package build " -#| "directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> (or F<< lib/systemd/system/I@.service >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or lib/systemd/system/I@.service) in the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.service (oder lib/" "systemd/system/I@.service) im Paketbauverzeichnis installiert." @@ -12310,14 +12136,9 @@ #. type: textblock #: dh_systemd_enable:58 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I.target " -#| "(or lib/systemd/system/I@.target) in the package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"target >> (or F<< lib/systemd/system/I@.target >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.target (oder lib/" "systemd/system/I@.target) im Paketbauverzeichnis installiert." @@ -12329,14 +12150,9 @@ #. type: textblock #: dh_systemd_enable:63 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I.socket " -#| "(or lib/systemd/system/I@.socket) in the package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"socket >> (or F<< lib/systemd/system/I@.socket >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.socket (oder lib/" "systemd/system/I@.socket) im Paketbauverzeichnis installiert." @@ -12348,13 +12164,9 @@ #. type: textblock #: dh_systemd_enable:68 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I.mount " -#| "in the package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.mount im " "Paketbauverzeichnis installiert." @@ -12366,14 +12178,9 @@ #. type: textblock #: dh_systemd_enable:73 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I.path " -#| "(or lib/systemd/system/I@.path) in the package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.path (oder lib/" "systemd/system/I@.path) im Paketbauverzeichnis installiert." @@ -12385,14 +12192,9 @@ #. type: textblock #: dh_systemd_enable:78 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into lib/systemd/system/I.timer " -#| "(or lib/systemd/system/I@.timer) in the package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" "Falls vorhanden, wird es in lib/systemd/system/I.timer (oder lib/" "systemd/system/I@.timer) im Paketbauverzeichnis installiert." @@ -12458,7 +12260,7 @@ msgstr "L, L" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -12560,86 +12362,6 @@ msgstr "Diese Kompatibilitätsstufe ist im Beta-Test; Änderungen sind möglich." #~ msgid "" -#~ "Historically, this file was needed to manually mark files files as " -#~ "conffiles. However, it has become de facto obsolete since debhelper " -#~ "automatically computed which files should be marked as conffiles." -#~ msgstr "" -#~ "Früher wurde diese Datei benötigt, um Dateien manuell als Conffiles zu " -#~ "markieren. Allerdings wurde es faktisch überflüssig, seit Debhelper " -#~ "automatisch berechnet, welche Dateien als Conffiles markiert werden " -#~ "sollen." - -#~ msgid "" -#~ "In compatibility level up and including 11, this control file will be " -#~ "installed into the F directory. In compatibility level 12 and " -#~ "later, the file is silently ignored." -#~ msgstr "" -#~ "Auf Kompatibilitätsstufen 11 und darunter wird diese Steuerdatei im " -#~ "Verzeichnis F installiert. Auf Kompatibilitätsstufe 12 und neuer " -#~ "wird diese Datei stillschweigend ignoriert." - -#~ msgid "" -#~ "dh_gconf - install GConf defaults files and register schemas (deprecated)" -#~ msgstr "" -#~ "dh_gconf - installiert Standard-GConf-Dateien und registriert Schemata " -#~ "(missbilligt)" - -#~ msgid "B [S>] [B<--priority=>I]" -#~ msgstr "B [S>] [B<--priority=>I]" - -#~ msgid "" -#~ "B is a debhelper program that is responsible for installing " -#~ "GConf defaults files and registering GConf schemas." -#~ msgstr "" -#~ "B ist ein Debhelper-Programm, das für die Installation der " -#~ "Standard-GConf-Dateien und das Registrieren der GConf-Schemata zuständig " -#~ "ist." - -#~ msgid "" -#~ "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}" -#~ ">." -#~ msgstr "" -#~ "Eine geeignete Abhängigkeit zu gconf2 wird in B<${misc:Depends}> erzeugt." - -#~ msgid "debian/I.gconf-defaults" -#~ msgstr "debian/I.gconf-defaults" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "installiert in F im Bauverzeichnis " -#~ "des Pakets, wobei I durch den Namen des Pakets ersetzt wird." - -#~ msgid "debian/I.gconf-mandatory" -#~ msgstr "debian/I.gconf-mandatory" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "installiert in F im Bauverzeichnis " -#~ "des Pakets, wobei I durch den Namen des Pakets ersetzt wird." - -#~ msgid "B<--priority> I" -#~ msgstr "B<--priority> I" - -#~ msgid "" -#~ "Use I (which should be a 2-digit number) as the defaults " -#~ "priority instead of B<10>. Higher values than ten can be used by derived " -#~ "distributions (B<20>), CDD distributions (B<50>), or site-specific " -#~ "packages (B<90>)." -#~ msgstr "" -#~ "benutzt I (welche eine zweistellige Zahl sein sollte) als " -#~ "Standardpriorität an Stelle von B<10>. Höhere Werte als zehn können durch " -#~ "abgeleitete Distributionen (B<20>), CDD-Distributionen (B<50>) oder Site-" -#~ "spezifische Pakete (B<90>) verwendet werden." - -#~ msgid "Ross Burton Josselin Mouette " -#~ msgstr "" -#~ "Ross Burton , Josselin Mouette " - -#~ msgid "" #~ "B should be the last debhelper command run in the B " #~ "target in F." #~ msgstr "" diff -Nru debhelper-13.5.2/man/po4a/po/es.po debhelper-13.3.4/man/po4a/po/es.po --- debhelper-13.5.2/man/po4a/po/es.po 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po/es.po 2021-02-22 18:51:45.000000000 +0000 @@ -31,7 +31,7 @@ msgstr "" "Project-Id-Version: debhelper 9.20120609\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-24 16:06+0100\n" +"POT-Creation-Date: 2021-02-22 09:37+0100\n" "PO-Revision-Date: 2012-08-20 11:17+0200\n" "Last-Translator: Omar Campagne \n" "Language-Team: Debian l10n Spanish \n" @@ -47,7 +47,7 @@ #: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms:3 -#: dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs: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:5 dh_installemacsen:3 dh_installexamples:5 #: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs:3 @@ -72,7 +72,7 @@ #: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 #: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 #: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 -#: dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 #: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 #: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 #: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 @@ -106,7 +106,7 @@ #: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 #: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 #: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 -#: dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 #: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 #: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 #: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 @@ -1379,12 +1379,11 @@ #: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 #: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 #: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 -#: debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 -#: debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 -#: debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 -#: debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 -#: debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 -#: debhelper.pod:1283 debhelper-obsolete-compat.pod:43 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 @@ -2200,20 +2199,15 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the B from dpkg/1.20 made the file relevant again and B " -"now installs it again in compat levels 12+." +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -2222,14 +2216,14 @@ msgstr "" #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with B<--no-" "start>) then you will probably need one for B as well now." msgstr "" #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists B<" @@ -2238,7 +2232,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -2248,21 +2242,21 @@ msgstr "" #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." msgstr "" #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the third-" "party build system B instead." msgstr "" #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 #, fuzzy #| msgid "v10" msgid "v13" @@ -2270,19 +2264,19 @@ # type: textblock #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "Este es el modo de operación aconsejado." #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 #, fuzzy #| msgid "Changes from v3 are:" msgid "Changes from v12 are:" msgstr "Los cambios desde el nivel v3 son:" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -2291,7 +2285,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -2300,7 +2294,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default (i." @@ -2310,7 +2304,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -2318,7 +2312,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -2329,7 +2323,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -2337,12 +2331,12 @@ msgstr "" #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F (e.g. " @@ -2350,7 +2344,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -2358,7 +2352,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -2367,7 +2361,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -2376,7 +2370,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -2385,14 +2379,14 @@ msgstr "" #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." msgstr "" #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -2403,7 +2397,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -2412,7 +2406,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -2420,7 +2414,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -2429,7 +2423,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes B<-" "DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up automatic " @@ -2438,7 +2432,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -2446,14 +2440,14 @@ msgstr "" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 #, fuzzy #| msgid "v10" msgid "v14" msgstr "v10" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 #, fuzzy #| msgid "" #| "This compatibility level is still open for development; use with caution." @@ -2464,14 +2458,14 @@ "precaución." #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 #, fuzzy #| msgid "Changes from v5 are:" msgid "Changes from v13 are:" msgstr "Los cambios desde el nivel v5 son:" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and B<-" "DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2479,7 +2473,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 msgid "" "This can cause issues with running binaries directly from the build " "directories as they might now require a manually set B. If " @@ -2491,73 +2485,13 @@ msgstr "" #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 msgid "The tool B is now included in the default sequence." msgstr "" -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding B to Build-Depends), or explicitly passing B<--destdir> to " -"B if used and then passing B<--without single-binary> to " -"B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -#, fuzzy -#| msgid "v5" -msgid "v15" -msgstr "v5" - -#. type: textblock -#: debhelper.pod:1279 -#, fuzzy -#| msgid "Changes from v4 are:" -msgid "Changes from v14 are:" -msgstr "Los cambios desde el nivel v4 son:" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< --destdir=debian/" -"I >> for source packages only producing a single binary. If this " -"behaviour is wanted, the package should explicitly activate the B dh addon (e.g., by adding B to B) or pass B<--destdir> to B." -msgstr "" - # type: =head1 #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 #: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 #: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 #: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 @@ -2568,13 +2502,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "Compatibilidad con varios paquetes binarios" # type: textblock #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2595,7 +2529,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 #, fuzzy #| msgid "" #| "To facilitate this, as well as give you more control over which packages " @@ -2617,7 +2551,7 @@ "los paquetes listados en el fichero de control." #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 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 " @@ -2634,12 +2568,12 @@ msgstr "" #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -2649,19 +2583,19 @@ msgstr "" #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." msgstr "" #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -2670,32 +2604,32 @@ # type: =item #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 #, fuzzy #| msgid "B<-N>I, B<--no-package=>I" msgid "-N I / --no-package I" msgstr "B<-N>I, B<--no-package=>I" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "" # type: =item #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 #, fuzzy #| msgid "B<-p>I, B<--package=>I" msgid "-p I / --package I" msgstr "B<-p>I, B<--package=>I" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "" #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." @@ -2703,13 +2637,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 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:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -2727,7 +2661,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -2737,7 +2671,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1372 +#: debhelper.pod:1324 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -2747,7 +2681,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1375 +#: debhelper.pod:1327 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 " @@ -2760,7 +2694,7 @@ "caso comprobé que $1, $2, etc se definen con la orden «set»):" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -2780,12 +2714,12 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "Generación automática de diversas dependencias." #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -2805,7 +2739,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -2820,7 +2754,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -2834,13 +2768,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "Directorios de construcción del paquete" # type: textblock #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -2851,7 +2785,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1418 +#: debhelper.pod:1370 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -2871,13 +2805,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1426 +#: debhelper.pod:1378 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:1428 +#: debhelper.pod:1380 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -2896,19 +2830,19 @@ # type: =head1 #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "ENTORNO" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." msgstr "" #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 msgid "" "It is important to note that these must be actual environment variables in " "order to affect the behaviour of debhelper (not simply F " @@ -2918,13 +2852,13 @@ # type: =item #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 #, fuzzy #| msgid "" #| "Set to B<1> to enable verbose mode. Debhelper will output every command " @@ -2939,14 +2873,14 @@ # type: =item #. type: =item -#: debhelper.pod:1452 +#: debhelper.pod:1404 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -2957,13 +2891,13 @@ # type: =item #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 #, fuzzy #| msgid "" #| "Temporarily specifies what compatibility level debhelper should run at, " @@ -2978,24 +2912,24 @@ # type: =item #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 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:1471 +#: debhelper.pod:1423 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -3004,7 +2938,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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." @@ -3014,13 +2948,13 @@ # type: =item #. type: =item -#: debhelper.pod:1481 +#: debhelper.pod:1433 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -3032,7 +2966,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -3050,7 +2984,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -3060,14 +2994,14 @@ # type: =item #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -3076,7 +3010,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -3085,12 +3019,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -3098,7 +3032,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -3108,12 +3042,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -3121,7 +3055,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -3129,14 +3063,14 @@ msgstr "" #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" msgstr "" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -3147,12 +3081,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -3163,7 +3097,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -3172,21 +3106,21 @@ # type: =item #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." msgstr "" #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -3197,21 +3131,21 @@ # type: =item #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see e.g. L). The debhelper tool suite silently ignores it." msgstr "" #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -3219,29 +3153,29 @@ msgstr "" #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." msgstr "" #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -3249,24 +3183,24 @@ msgstr "" #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." msgstr "" #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I and L." msgstr "" #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." msgstr "" #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -3307,17 +3241,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "" #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -3326,7 +3260,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." @@ -3334,41 +3268,41 @@ # type: =item #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 #, fuzzy #| msgid "B<-i>, B<--indep>" msgid "B, B" msgstr "B<-i>, B<--indep>" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" msgstr "" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." msgstr "" #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "" # type: =item #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 #, fuzzy #| msgid "B<--parallel>" msgid "B" msgstr "B<--parallel>" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -3376,7 +3310,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -3384,12 +3318,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -3398,17 +3332,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "" #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "" #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -3417,13 +3351,13 @@ # type: =head1 #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 -#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 -#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 -#: dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 #: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 -#: dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 -#: dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 #: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 #: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 #: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 @@ -3431,25 +3365,25 @@ #: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 #: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 #: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 -#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "VÉASE TAMBIÉN" # type: =item #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 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:1675 +#: debhelper.pod:1627 #, fuzzy #| msgid "L" msgid "L" @@ -3457,36 +3391,37 @@ # type: textblock #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "Sitio web de Debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 -#: dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 -#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 -#: dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 -#: dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 -#: dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 -#: dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 -#: dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 -#: dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 -#: dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 -#: dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 -#: dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 -#: dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 -#: dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "AUTOR" # type: textblock #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 -#: dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 #: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 -#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 -#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 #: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 #: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 #: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 @@ -3694,31 +3629,31 @@ # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 -#: dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 -#: dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 -#: dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 -#: dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 -#: dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 -#: dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 -#: dh_installman:419 dh_installmanpages:200 dh_installmime:65 -#: dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 -#: dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 -#: dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 -#: dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 -#: dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "L" # type: =head1 #. type: =head1 #: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 -#: dh_systemd_start:283 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "AUTORES" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "" @@ -4127,10 +4062,10 @@ # type: =head1 #. type: =head1 #: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 -#: dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 -#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 -#: dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 -#: dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 #: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 #: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 #: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 @@ -4685,164 +4620,13 @@ "\t\tchmod 4755 debian/foo/usr/bin/foo\n" "\n" -# type: =head1 #. type: =head1 #: dh:424 -#, fuzzy -#| msgid "DEBHELPER COMMANDS" -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "ÓRDENES DE DEBHELPER" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "" -"A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "FUNCIONAMIENTO INTERNO" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." @@ -4851,7 +4635,7 @@ "puede ver como funciona por dentro." #. type: textblock -#: dh:502 +#: dh:428 msgid "" "In compat 10 (or later), B creates a stamp file F after the build step(s) are complete to avoid re-running them. It is " @@ -4862,7 +4646,7 @@ msgstr "" #. type: textblock -#: dh:510 +#: dh:436 msgid "" "Inside an override target, B commands will create a log file F to keep track of which packages the command(s) have " @@ -4871,7 +4655,7 @@ msgstr "" #. type: textblock -#: dh:515 +#: dh:441 #, fuzzy #| msgid "" #| "Each debhelper command will record when it's successfully run in F is run, it examines the log, and finds the last logged " @@ -4908,7 +4692,7 @@ "before>, B<--after> y B<--remaining> pueden anular este comportamiento." #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." @@ -4918,7 +4702,7 @@ "ejecuta el objeto «install»." #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -4931,7 +4715,7 @@ "entorno, como el nombre sugiere, está sujeto a cambios en cualquier momento." #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -4948,12 +4732,12 @@ # type: textblock #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 -#: dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 -#: dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 -#: dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 -#: dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 -#: dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 #: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 #: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 #: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 @@ -5009,7 +4793,7 @@ "construcción manualmente." #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 #: dh_auto_test:36 msgid "" "See L> for a list of common build " @@ -5020,7 +4804,7 @@ # type: =item #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 #: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 #: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" @@ -5196,28 +4980,11 @@ #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." -msgstr "" - -#. type: textblock -#: dh_auto_install:38 -#, fuzzy -#| msgid "" -#| "Unless B<--destdir> option is specified, the files are installed into " -#| "debian/I/ if there is only one binary package. In the multiple " -#| "binary package case, the files are instead installed into F, " -#| "and should be moved from there to the appropriate package build directory " -#| "using L." -msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." +"Unless B<--destdir> option is specified, the files are installed into debian/" +"I/ if there is only one binary package. In the multiple binary " +"package case, the files are instead installed into F, and " +"should be moved from there to the appropriate package build directory using " +"L." msgstr "" "A menos que se defina la opción B<--destdir>, los ficheros se instalan en " "«debian/I/» si sólo hay un paquete binario. En el caso de varios " @@ -5226,7 +4993,7 @@ "L." #. type: textblock -#: dh_auto_install:44 +#: dh_auto_install:38 msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " @@ -5238,7 +5005,7 @@ "ficheros F." #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -5251,12 +5018,12 @@ # type: =item #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -5267,7 +5034,7 @@ "describe en la sección L>." #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -5371,7 +5138,7 @@ "construcción del paquete." #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 #: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 #: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 #: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 @@ -5654,7 +5421,7 @@ msgstr "" #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 #: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 #: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" @@ -6072,6 +5839,98 @@ # type: textblock #. type: textblock +#: dh_gconf:5 +#, fuzzy +#| msgid "dh_gconf - install GConf defaults files and register schemas" +msgid "" +"dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" +"dh_gconf - Instala ficheros de valores predeterminados de GConf y registra " +"esquemas" + +# type: textblock +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "B [S>] [B<--priority=>I]" + +# type: textblock +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" +"B es un programa de debhelper responsable de la instalación de " +"ficheros de valores predeterminados de GConf («defaults») y de registrar " +"esquemas de GConf." + +#. type: textblock +#: dh_gconf:24 +msgid "" +"An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "" +"Se generará una dependencia apropiada sobre gconf2 en B<${misc:Depends}>." + +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "debian/I.gconf-defaults" + +# type: textblock +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Se instala en F en el directorio de " +"construcción del paquete, reemplazando I por el nombre del paquete." + +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "debian/I.gconf-mandatory" + +# type: textblock +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Se instala en F en el directorio de " +"construcción del paquete, reemplazando I por el nombre del paquete." + +# type: =item +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "B<--priority> I" + +# type: textblock +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" +"Utiliza I (que debería ser un número de dos dígitos) como la " +"prioridad predeterminada, en lugar de 10. Otros pueden utilizar valores " +"superiores a B<10>, como las distribuciones derivadas (B<20>), " +"distribuciones de Debian personalizadas CDD (B<50>) y paquetes de sitios web " +"específicos (B<90>)." + +# type: textblock +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "Ross Burton Josselin Mouette " + +# type: textblock +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - Genera e instala el fichero de control" @@ -7070,17 +6929,17 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" #. type: =item @@ -7151,23 +7010,13 @@ "enabled as a warning since compat 10 and as a hard error in compat 12." msgstr "" -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -7185,18 +7034,18 @@ msgstr "" #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "" "An explicit declared token with this parameter will replace built-in tokens." msgstr "" #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." msgstr "" #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -7225,12 +7074,12 @@ msgstr "" #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in F, to B in F and to B tokens will be visible in all scripts acted on. E." "g. you can refer to B<#pkg.bar.TOKEN#> inside F and it " @@ -7267,12 +7116,12 @@ msgstr "" #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" @@ -7280,14 +7129,14 @@ # type: =head1 #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 #, fuzzy #| msgid "DEBHELPER COMMANDS" msgid "#DEBHELPER#" msgstr "ÓRDENES DE DEBHELPER" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -7295,12 +7144,12 @@ msgstr "" #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from L. In almost all cases, you will want use the B<< " @@ -7309,19 +7158,19 @@ msgstr "" #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." msgstr "" #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -7329,37 +7178,37 @@ msgstr "" #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." msgstr "" #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." msgstr "" #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: #[A-Za-z0-9_.+]+#" msgstr "" #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -8566,9 +8415,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> in the package build directory. Only used in compat levels 10 and " -"below." +"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 "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12042,9 +11890,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> (or F<< lib/systemd/system/I@.service >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or 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." @@ -12079,9 +11926,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"target >> (or F<< lib/systemd/system/I@.target >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12101,9 +11947,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"socket >> (or F<< lib/systemd/system/I@.socket >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12123,8 +11968,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12144,9 +11989,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12166,9 +12010,8 @@ #| "If this exists, it is installed into etc/init/I.conf in the " #| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" "Si existe, se instala en «etc/init/I.conf» en el directorio de " "construcción del paquete." @@ -12244,7 +12087,7 @@ msgstr "" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "" @@ -12370,79 +12213,6 @@ # type: textblock #, fuzzy -#~| msgid "dh_gconf - install GConf defaults files and register schemas" -#~ msgid "" -#~ "dh_gconf - install GConf defaults files and register schemas (deprecated)" -#~ msgstr "" -#~ "dh_gconf - Instala ficheros de valores predeterminados de GConf y " -#~ "registra esquemas" - -# type: textblock -#~ msgid "B [S>] [B<--priority=>I]" -#~ msgstr "B [S>] [B<--priority=>I]" - -# type: textblock -#~ msgid "" -#~ "B is a debhelper program that is responsible for installing " -#~ "GConf defaults files and registering GConf schemas." -#~ msgstr "" -#~ "B es un programa de debhelper responsable de la instalación de " -#~ "ficheros de valores predeterminados de GConf («defaults») y de registrar " -#~ "esquemas de GConf." - -#~ msgid "" -#~ "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}" -#~ ">." -#~ msgstr "" -#~ "Se generará una dependencia apropiada sobre gconf2 en B<${misc:Depends}>." - -#~ msgid "debian/I.gconf-defaults" -#~ msgstr "debian/I.gconf-defaults" - -# type: textblock -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Se instala en F en el directorio de " -#~ "construcción del paquete, reemplazando I por el nombre del " -#~ "paquete." - -#~ msgid "debian/I.gconf-mandatory" -#~ msgstr "debian/I.gconf-mandatory" - -# type: textblock -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Se instala en F en el directorio de " -#~ "construcción del paquete, reemplazando I por el nombre del " -#~ "paquete." - -# type: =item -#~ msgid "B<--priority> I" -#~ msgstr "B<--priority> I" - -# type: textblock -#~ msgid "" -#~ "Use I (which should be a 2-digit number) as the defaults " -#~ "priority instead of B<10>. Higher values than ten can be used by derived " -#~ "distributions (B<20>), CDD distributions (B<50>), or site-specific " -#~ "packages (B<90>)." -#~ msgstr "" -#~ "Utiliza I (que debería ser un número de dos dígitos) como la " -#~ "prioridad predeterminada, en lugar de 10. Otros pueden utilizar valores " -#~ "superiores a B<10>, como las distribuciones derivadas (B<20>), " -#~ "distribuciones de Debian personalizadas CDD (B<50>) y paquetes de sitios " -#~ "web específicos (B<90>)." - -# type: textblock -#~ msgid "Ross Burton Josselin Mouette " -#~ msgstr "Ross Burton Josselin Mouette " - -# type: textblock -#, fuzzy #~| msgid "" #~| "B (or \"B\") should be the last debhelper command " #~| "run in the B target in F." diff -Nru debhelper-13.5.2/man/po4a/po/fr.po debhelper-13.3.4/man/po4a/po/fr.po --- debhelper-13.5.2/man/po4a/po/fr.po 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po/fr.po 2021-02-22 19:00:32.000000000 +0000 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2021-09-24 16:06+0100\n" +"POT-Creation-Date: 2021-01-31 23:36+0100\n" "PO-Revision-Date: 2021-02-13 10:02+0100\n" "Last-Translator: Jean-Pierre Giraud \n" "Language-Team: French \n" @@ -22,7 +22,7 @@ #: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms:3 -#: dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs: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:5 dh_installemacsen:3 dh_installexamples:5 #: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs:3 @@ -47,7 +47,7 @@ #: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 #: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 #: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 -#: dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 #: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 #: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 #: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 @@ -77,7 +77,7 @@ #: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 #: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 #: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 -#: dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 #: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 #: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 #: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 @@ -1173,7 +1173,6 @@ "mais avec des options B<...FLAGS> différentes. Un exemple concret pourrait " "être la nécessité de modifier le paramètre B<-0> dans B dans la " "seconde construction." - #. type: verbatim #: debhelper.pod:446 #, no-wrap @@ -1456,12 +1455,11 @@ #: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 #: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 #: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 -#: debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 -#: debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 -#: debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 -#: debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 -#: debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 -#: debhelper.pod:1283 debhelper-obsolete-compat.pod:43 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 @@ -2475,22 +2473,11 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 -#, fuzzy -#| msgid "" -#| "The B tool no longer installs the maintainer provided " -#| "F file. The file has mostly been obsolete since compatibility " -#| "level 3, where B began to automatically compute the " -#| "resulting F control file." -msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the B from dpkg/1.20 made the file relevant again and B " -"now installs it again in compat levels 12+." +msgid "" +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" "B n'installe plus le fichier F fournit par le " "responsable. Ce fichier est obsolète depuis le niveau de compatibilité 3, " @@ -2498,7 +2485,7 @@ "F résultant du fichier control." #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -2511,7 +2498,7 @@ "est démarré correctement, à la fois avec systemd et sysvinit." #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with B<--no-" "start>) then you will probably need one for B as well now." @@ -2521,7 +2508,7 @@ "B aussi." #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists B<" @@ -2534,7 +2521,7 @@ "avant de mettre à niveau vers la compat 12." #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -2550,7 +2537,7 @@ "plus de détails et des exemples." #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." @@ -2559,7 +2546,7 @@ "B standard." #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the third-" "party build system B instead." @@ -2568,24 +2555,24 @@ "utiliser le système tiers B à la place." #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 msgid "v13" msgstr "v13" # type: textblock #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "C'est la version dont l'usage est recommandé." # type: textblock #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 msgid "Changes from v12 are:" msgstr "Les changements par rapport à la version 12 sont :" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -2599,7 +2586,7 @@ "test>." #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -2613,7 +2600,7 @@ "passent de longues options de ligne de commande." #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default (i." @@ -2629,7 +2616,7 @@ "Build-Depends explicite à B." #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -2641,7 +2628,7 @@ "B." #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -2659,7 +2646,7 @@ "versions sont identiques)." #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -2671,12 +2658,12 @@ "comment elles sont gérées." #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "I" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F (e.g. " @@ -2687,7 +2674,7 @@ "(par exemple, B)." #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -2698,7 +2685,7 @@ "l'option B<--list-missing> comme dans le niveau de compatibilité 12." #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -2711,7 +2698,7 @@ "rules> du paquet correspondant. Comme dans l’exemple :" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -2723,7 +2710,7 @@ "\n" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -2736,7 +2723,7 @@ "dans B est désormais désactivée." #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." @@ -2745,7 +2732,7 @@ "où B utilisait un nom sans le « s » final." #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -2759,11 +2746,11 @@ "être utilisé pour référencer des chemins qui contiennent soit des espaces, " "soit des valeurs L. Bien que cela puisse réduire le " "besoin de L dans certains cas, ce B une alternative à " -"L en général. Si un filtrage, un renommage, etc. est nécessaire, " -"le paquet aura encore besoin de L." +"L en général. Si un filtrage, un renommage, etc. est " +"nécessaire, le paquet aura encore besoin de L." #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -2776,7 +2763,7 @@ "intervient comme élément des fonctions B et B." #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -2788,7 +2775,7 @@ "correspondantes." #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -2802,7 +2789,7 @@ "B." #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes B<-" "DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up automatic " @@ -2815,7 +2802,7 @@ "avez besoin de revenir au comportement antérieur, réécrivez le paramètre :" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -2825,12 +2812,12 @@ "\n" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 msgid "v14" msgstr "v14" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -2839,12 +2826,12 @@ # type: textblock #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 msgid "Changes from v13 are:" msgstr "Les changements par rapport à la version 13 sont :" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and B<-" "DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2855,7 +2842,7 @@ "pour éviter des problèmes de reproductibilité." #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 msgid "" "This can cause issues with running binaries directly from the build " "directories as they might now require a manually set B. If " @@ -2876,76 +2863,15 @@ "en charge par les créateurs de liens lors de l'exécution." #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 msgid "The tool B is now included in the default sequence." msgstr "" "L'outil B est maintenant inclus dans la séquence par " "défaut." -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding B to Build-Depends), or explicitly passing B<--destdir> to " -"B if used and then passing B<--without single-binary> to " -"B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -#, fuzzy -#| msgid "v5" -msgid "v15" -msgstr "v5" - -# type: textblock -#. type: textblock -#: debhelper.pod:1279 -#, fuzzy -#| msgid "Changes from v4 are:" -msgid "Changes from v14 are:" -msgstr "Les changements par rapport à la version 4 sont :" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< --destdir=debian/" -"I >> for source packages only producing a single binary. If this " -"behaviour is wanted, the package should explicitly activate the B dh addon (e.g., by adding B to B) or pass B<--destdir> to B." -msgstr "" - # type: =head1 #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 #: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 #: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 #: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 @@ -2956,13 +2882,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "Prise en charge de plusieurs paquets binaires" # type: textblock #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2982,7 +2908,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 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<-" @@ -2997,7 +2923,7 @@ "paquets énumérés dans le fichier de contrôle, avec les exceptions ci-dessous." #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:1323 +#: debhelper.pod:1275 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -3022,12 +2948,12 @@ "BuildProfileSpec>)." #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "Interaction entre les sélections de paquets et les Build-Profiles" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -3042,14 +2968,14 @@ "paquet est désactivé par un profil de construction (ou par son absence)." #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" "B<-a>/B<--arch>, B<-i>/B<--indep> ou aucune option de sélection (un simple " "appel « dh_X »)" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." @@ -3057,7 +2983,7 @@ "Le paquet désactivé par le profil est silencieusement exclu de la sélection." #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -3069,28 +2995,28 @@ # type: =item #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 msgid "-N I / --no-package I" msgstr "B<-N> I / B<--no-package> I" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "Cette option est acceptée et ne fait rien." # type: =item #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 msgid "-p I / --package I" msgstr "B<-p> I / B<--package> I" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "Cette option est acceptée, mais debhelper n'agira pas sur le paquet." #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." @@ -3100,13 +3026,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 msgid "Automatic generation of Debian install scripts" msgstr "Génération automatique des scripts Debian d’installation" # type: textblock #. type: textblock -#: debhelper.pod:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -3124,7 +3050,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -3134,7 +3060,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1372 +#: debhelper.pod:1324 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -3145,7 +3071,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1375 +#: debhelper.pod:1327 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 " @@ -3159,7 +3085,7 @@ "la commande set) :" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -3192,13 +3118,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "Génération automatique des diverses dépendances." # type: textblock #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -3218,7 +3144,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -3233,7 +3159,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -3247,13 +3173,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "Répertoires de construction du paquet" # type: textblock #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -3264,7 +3190,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1418 +#: debhelper.pod:1370 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -3284,13 +3210,13 @@ # type: =head2 #. type: =head2 -#: debhelper.pod:1426 +#: debhelper.pod:1378 msgid "udebs" msgstr "udebs" # type: textblock #. type: textblock -#: debhelper.pod:1428 +#: debhelper.pod:1380 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -3309,12 +3235,12 @@ # type: =head1 #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "VARIABLES D'ENVIRONNEMENT" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." @@ -3323,7 +3249,7 @@ "le comportement de debhelper ou avec lesquelles debhelper est en interaction." #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 msgid "" "It is important to note that these must be actual environment variables in " "order to affect the behaviour of debhelper (not simply F " @@ -3338,13 +3264,13 @@ # type: =item #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 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." @@ -3355,12 +3281,12 @@ # type: =item #. type: =item -#: debhelper.pod:1452 +#: debhelper.pod:1404 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -3378,13 +3304,13 @@ # type: =item #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value specified via Build-Depends on debhelper-compat or via " @@ -3396,24 +3322,24 @@ # type: =item #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 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:1471 +#: debhelper.pod:1423 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -3427,7 +3353,7 @@ "cette variable et ignoreront ces arguments." #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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." @@ -3437,13 +3363,13 @@ # type: =item #. type: =item -#: debhelper.pod:1481 +#: debhelper.pod:1433 msgid "B" msgstr "B" # type: textblock #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -3456,7 +3382,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -3475,7 +3401,7 @@ # type: textblock #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -3485,12 +3411,12 @@ # type: =item #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -3503,7 +3429,7 @@ "exécutés, même s'ils sont indiqués dans cette variable d'environnement." #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -3517,12 +3443,12 @@ "with> dans le fichier F." #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -3533,7 +3459,7 @@ "réglages peuvent être « always », « auto » (par défaut) ou « never »." #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -3548,12 +3474,12 @@ "plus de B." #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -3565,7 +3491,7 @@ "« never »." #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -3576,7 +3502,7 @@ "comme une demande explicite de couleur." #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" @@ -3585,7 +3511,7 @@ "B, B, B, B" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -3603,12 +3529,12 @@ "directement les variables concrètes." #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -3625,7 +3551,7 @@ "variables et B (sauf durant B) seront vidées." #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -3637,12 +3563,12 @@ # type: =item #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." @@ -3651,7 +3577,7 @@ "cet environnement." #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -3667,12 +3593,12 @@ # type: =item #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see e.g. L). The debhelper tool suite silently ignores it." @@ -3682,7 +3608,7 @@ "silencieusement." #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -3693,12 +3619,12 @@ "que debhelper réagit aussi à cette variable." #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "Paramètres pris en charge dans DEB_BUILD_OPTIONS" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." @@ -3707,17 +3633,17 @@ "B." #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "I" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -3729,7 +3655,7 @@ "obsolètes" #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." @@ -3738,19 +3664,19 @@ "niveaux de compatibilité dont la suppression est programmée." #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" "Cette option est destinée aux tests et non aux constructions pour la " "production." #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I" #. type: textblock -#: debhelper.pod:1598 +#: debhelper.pod:1550 msgid "" "This value will cause the official debhelper tools will skip actions and " "helpers that either remove, detach or deduplicate debugging symbols in ELF " @@ -3772,17 +3698,17 @@ "de débogage dans les binaires ELF." #. type: textblock -#: debhelper.pod:1602 +#: debhelper.pod:1554 msgid "This value affects L and L." msgstr "Cette valeur affecte L et L." #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." @@ -3791,7 +3717,7 @@ "ignoreront l'exécution des suites de tests de l'amont." #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -3802,17 +3728,17 @@ "cible de réécriture vide pour ignorer B." #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "Cette valeur affecte L." #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -3826,7 +3752,7 @@ "documentation n'a pas été construite." #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." @@ -3836,12 +3762,12 @@ # type: =item #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" @@ -3850,7 +3776,7 @@ "raisons historiques.>" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." @@ -3859,18 +3785,18 @@ "de débogage générés automatiquement." #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "Cette valeur affecte L." # type: =item #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -3882,7 +3808,7 @@ "et peuvent ignorer silencieusement la requête." #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -3893,12 +3819,12 @@ "jacent avec ce nombre de thread." #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -3912,17 +3838,17 @@ "debhelper de ces fonctionnalités." #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "Cette valeur affecte la plupart des outils de B." #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "Les paramètres inconnus sont ignorés silencieusement." #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -3935,13 +3861,13 @@ # type: =head1 #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 -#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 -#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 -#: dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 #: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 -#: dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 -#: dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 #: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 #: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 #: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 @@ -3949,61 +3875,62 @@ #: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 #: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 #: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 -#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "VOIR AUSSI" # type: =item #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "F" # type: textblock #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 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:1675 +#: debhelper.pod:1627 msgid "L" msgstr "L" # type: textblock #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "Le site internet de debhelper." # type: =head1 #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 -#: dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 -#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 -#: dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 -#: dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 -#: dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 -#: dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 -#: dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 -#: dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 -#: dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 -#: dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 -#: dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 -#: dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 -#: dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "AUTEUR" # type: textblock #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 -#: dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 #: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 -#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 -#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 #: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 #: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 #: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 @@ -4221,31 +4148,31 @@ # type: textblock #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 -#: dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 -#: dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 -#: dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 -#: dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 -#: dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 -#: dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 -#: dh_installman:419 dh_installmanpages:200 dh_installmime:65 -#: dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 -#: dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 -#: dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 -#: dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 -#: dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "L" # type: =head1 #. type: =head1 #: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 -#: dh_systemd_start:283 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "AUTEURS" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "Niels Thykier " @@ -4775,10 +4702,10 @@ # type: =head1 #. type: =head1 #: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 -#: dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 -#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 -#: dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 -#: dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 #: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 #: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 #: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 @@ -5071,7 +4998,6 @@ # type: verbatim #. type: verbatim #: dh:327 -#, no-wrap msgid "" "\t# Example assumes debhelper/12.8 and compat 10+\n" "\texecute_after_dh_fixperms:\n" @@ -5096,7 +5022,6 @@ # type: verbatim #. type: verbatim #: dh:338 -#, no-wrap msgid "" "\t# Older debhelper versions or using compat 9 or lower.\n" "\toverride_dh_fixperms:\n" @@ -5350,7 +5275,6 @@ # type: verbatim #. type: verbatim #: dh:420 -#, no-wrap msgid "" "\t# Example assumes debhelper/12.8 and compat 10+\n" "\texecute_after_dh_fixperms-arch:\n" @@ -5362,168 +5286,13 @@ "\t\tchmod 4755 debian/truc/usr/bin/truc\n" "\n" -# type: =head1 #. type: =head1 #: dh:424 -#, fuzzy -#| msgid "DEBHELPER COMMANDS" -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "COMMANDES DE DEBHELPER" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -#, fuzzy -#| msgid "The previous behaviour can restored by using B<--with build-stamp>" -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "" -"Le comportement précédent peut être retrouvé en utilisant B<--with build-" -"stamp>" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "" -"A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "FONCTIONNEMENT INTERNE" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." @@ -5532,7 +5301,7 @@ "ce qu'il y a sous le capot." #. type: textblock -#: dh:502 +#: dh:428 msgid "" "In compat 10 (or later), B creates a stamp file F after the build step(s) are complete to avoid re-running them. It is " @@ -5550,7 +5319,7 @@ "tant que « root » ou avec L)." #. type: textblock -#: dh:510 +#: dh:436 msgid "" "Inside an override target, B commands will create a log file F to keep track of which packages the command(s) have " @@ -5564,7 +5333,7 @@ # type: textblock #. type: textblock -#: dh:515 +#: dh:441 msgid "" "In compat 9 or earlier, each debhelper command will record when it's " "successfully run in F. (Which B " @@ -5580,7 +5349,7 @@ # type: textblock #. type: textblock -#: dh:520 +#: dh:446 msgid "" "Each time B is run (in compat 9 or earlier), it examines the log, and " "finds the last logged command that is in the specified sequence. It then " @@ -5591,7 +5360,7 @@ "indiquée. Puis il exécute la commande suivante dans cette séquence." #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." @@ -5600,7 +5369,7 @@ "Par exemple, la suite « binary » exécute la cible « install »." #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -5615,7 +5384,7 @@ # type: textblock #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -5632,12 +5401,12 @@ # type: textblock #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 -#: dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 -#: dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 -#: dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 -#: dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 -#: dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 #: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 #: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 #: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 @@ -5697,7 +5466,7 @@ # type: textblock #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 #: dh_auto_test:36 msgid "" "See L> for a list of common build " @@ -5709,7 +5478,7 @@ # type: =item #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 #: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 #: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" @@ -5900,32 +5669,15 @@ "d'installation. De ce fait b n'installera pas les fichiers " "construits avec B." +# type: textblock #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." -msgstr "" - -# type: textblock -#. type: textblock -#: dh_auto_install:38 -#, fuzzy -#| msgid "" -#| "Unless B<--destdir> option is specified, the files are installed into " -#| "debian/I/ if there is only one binary package. In the multiple " -#| "binary package case, the files are instead installed into F, " -#| "and should be moved from there to the appropriate package build directory " -#| "using L." -msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." +"Unless B<--destdir> option is specified, the files are installed into debian/" +"I/ if there is only one binary package. In the multiple binary " +"package case, the files are instead installed into F, and " +"should be moved from there to the appropriate package build directory using " +"L." msgstr "" "À moins que l'option B<--destdir> soit indiquée, les fichiers sont installés " "dans debian/I/ s'il n'y a qu'un seul paquet binaire. Dans le cas de " @@ -5935,7 +5687,7 @@ # type: textblock #. type: textblock -#: dh_auto_install:44 +#: dh_auto_install:38 msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " @@ -5948,7 +5700,7 @@ # type: textblock #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -5961,13 +5713,13 @@ # type: =item #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" # type: textblock #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -5979,7 +5731,7 @@ # type: textblock #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -6088,7 +5840,7 @@ # type: =head1 #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 #: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 #: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 #: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 @@ -6319,7 +6071,6 @@ # type: verbatim #. type: verbatim #: dh_clean:25 -#, no-wrap msgid "" "It removes the package build directories, and removes some other files including\n" "F, and any detritus left behind by other debhelper commands. It\n" @@ -6365,7 +6116,7 @@ "terminer par un « slash ». Tout le contenu de ces répertoires sera supprimé." #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 #: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 #: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" @@ -6638,8 +6389,8 @@ "sans si L n'en crée pas un (mais se termine néanmoins avec succès). " "Cela arrive généralement quand les fichiers de débogage ne contiennent pas " "de symboles de débogage (par exemple, en absence de -g passé au compilateur) " -"ou quand les symboles de débogage sont compressés (voir le bogue Debian n" -"° 931891). Si B<--dwz-multifile> est passé, alors B s’interrompra " +"ou quand les symboles de débogage sont compressés (voir le bogue Debian n° " +"931891). Si B<--dwz-multifile> est passé, alors B s’interrompra " "avec une erreur si L ne crée pas un I." #. type: textblock @@ -6802,6 +6553,100 @@ # type: textblock #. type: textblock +#: dh_gconf:5 +msgid "" +"dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" +"dh_gconf - Installer les fichiers par défaut de GConf et inscrire les " +"schémas (obsolète)" + +# type: textblock +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "B [S>] [B<--priority=>I>]" + +# type: textblock +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" +"B est un programme de la suite debhelper chargé de l'installation " +"des fichiers par défaut de GConf et de l'inscription des schémas GConf." + +# type: textblock +#. type: textblock +#: dh_gconf:24 +msgid "" +"An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "" +"Une dépendance appropriée envers gconf2 sera inscrite dans B<${misc:Depends}" +">." + +# type: =item +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "debian/I.gconf-defaults" + +# type: textblock +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Les fichiers seront installés dans le répertoire de construction du paquet " +"sous F où le mot I sera remplacé " +"par le nom du paquet." + +# type: =item +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "debian/I.gconf-mandatory" + +# type: textblock +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Les fichiers seront installés dans le répertoire de construction du paquet " +"sous F où le mot I " +"sera remplacé par le nom du paquet." + +# type: =item +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "B<--priority> I" + +# type: textblock +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" +"Détermine la I (sous forme d'un nombre à deux chiffres) en " +"remplacement de la priorité par défaut B<10>. Des valeurs plus élevées " +"peuvent être utilisées pour les distributions dérivées (B<20>), les " +"distributions CDD (B<50>), ou les paquets spécifiques à un site (B<90>)." + +# type: textblock +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "Ross Burton Josselin Mouette " + +# type: textblock +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - Produire et installer le fichier de contrôle" @@ -7831,18 +7676,24 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" +"Historiquement ce fichier était nécessaire pour marquer manuellement les " +"fichiers comme des conffiles. Cependant il est devenu obsolète de facto " +"depuis que debhelper détermine automatiquement quels fichiers doivent être " +"marqués comme conffiles." #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" +"Jusqu'à la version 11, ce fichier de contrôle était installé dans le dossier " +"F. À partir de la version 12, ce fichier est ignoré en silence." # type: =item #. type: =item @@ -7921,23 +7772,13 @@ "habituelles. Cette validation renvoie un avertissement depuis la version 10, " "et une erreur en version 12." -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "B<-D>I, B<--define> I" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -7962,7 +7803,7 @@ "est censé pointer vers un fichier contenant la valeur réelle à insérer." #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "" "An explicit declared token with this parameter will replace built-in tokens." msgstr "" @@ -7970,12 +7811,12 @@ "internes." #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "Exemples de tests pour aider à mieux comprendre :" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." @@ -8004,7 +7845,7 @@ "sera développé en B." #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -8017,12 +7858,12 @@ "obtenu en préfixant le nom de l'item par B<< pkg.I. >>." #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "Cela peut être utilisé comme dans l'exemple suivant :" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in F, to B in F and to B dans F." #. type: textblock -#: dh_installdeb:164 +#: dh_installdeb:157 msgid "" "Note that the B<#pkg.*#> tokens will be visible in all scripts acted on. E." "g. you can refer to B<#pkg.bar.TOKEN#> inside F and it " @@ -8081,12 +7922,12 @@ "titi>." #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "SUBSTITUTION DANS LES SCRIPTS DU RESPONSABLE" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" @@ -8097,12 +7938,12 @@ # type: =head1 #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 msgid "#DEBHELPER#" msgstr "#DEBHELPER#" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -8114,12 +7955,12 @@ "présent)." #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from L. In almost all cases, you will want use the B<< " @@ -8132,7 +7973,7 @@ "la valeur correcte lors d'une construction croisée." #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." @@ -8141,12 +7982,12 @@ "une variable de L seront laissés tels quels." #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "#ENV.I#" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -8157,7 +7998,7 @@ "définie, l'item est remplacé par une chaîne vide." #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." @@ -8166,12 +8007,12 @@ "Restrictions dans les noms d'item>)." #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "#PACKAGE#" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." @@ -8180,12 +8021,12 @@ "script réel." #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "Restrictions dans les noms d'item" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: #[A-Za-z0-9_.+]+#" msgstr "" @@ -8193,7 +8034,7 @@ "rationnelle : #[A-Za-z0-9_.+]+#" #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -9475,13 +9316,12 @@ #. type: textblock #: dh_installinit:67 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> in the package build directory. Only used in compat levels 10 and " -"below." +"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 "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.service >>. Cela n'est utilisé que " -"dans les niveaux de compatibilité 10 et inférieurs." +"sous lib/systemd/system/I.service. Cela n'est utilisé que dans les " +"niveaux de compatibilité 10 et inférieurs." # type: =item #. type: =item @@ -13071,19 +12911,13 @@ # type: textblock #. type: textblock #: dh_systemd_enable:47 -#, fuzzy -#| msgid "" -#| "If this exists, it is installed into F<< lib/systemd/system/I." -#| "service >>(or F<< lib/systemd/system/I@.service >>) in the " -#| "package build directory." msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> (or F<< lib/systemd/system/I@.service >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or 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 F<< lib/systemd/system/I.service >> (ou F<< usr/lib/systemd/" -"system/I@.service >>)." +"sous lib/systemd/system/I.service (ou lib/systemd/system/I@." +"service)." # type: textblock #. type: textblock @@ -13107,13 +12941,12 @@ #. type: textblock #: dh_systemd_enable:58 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"target >> (or F<< lib/systemd/system/I@.target >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.target >> (ou F<< usr/lib/systemd/" -"system/I@.target >>)." +"sous lib/systemd/system/I.target (ou lib/systemd/system/I@." +"target)." # type: =item #. type: =item @@ -13125,13 +12958,12 @@ #. type: textblock #: dh_systemd_enable:63 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"socket >> (or F<< lib/systemd/system/I@.socket >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.socket >> (ou F<< usr/lib/systemd/" -"system/I@.socket >>)." +"sous lib/systemd/system/I.socket (ou lib/systemd/system/I@." +"socket)." # type: =item #. type: =item @@ -13143,11 +12975,11 @@ #. type: textblock #: dh_systemd_enable:68 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.mount >>." +"sous lib/systemd/system/I.mount." # type: =item #. type: =item @@ -13159,13 +12991,12 @@ #. type: textblock #: dh_systemd_enable:73 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.path >> (ou F<< usr/lib/systemd/system/" -"I@.path >>)." +"sous lib/systemd/system/I.path (ou lib/systemd/system/I@." +"path)." # type: =item #. type: =item @@ -13177,13 +13008,12 @@ #. type: textblock #: dh_systemd_enable:78 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" "S'il existe, il est installé dans le répertoire de construction du paquet, " -"sous F<< lib/systemd/system/I.timer >> (ou F<< usr/lib/systemd/" -"system/I@.timer >>)." +"sous lib/systemd/system/I.timer (ou lib/systemd/system/I@." +"timer)." #. type: textblock #: dh_systemd_enable:89 @@ -13248,7 +13078,7 @@ msgstr "L, L" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -13361,100 +13191,6 @@ "Ce niveau de compatibilité est en phase de test ; des changements peuvent " "encore survenir." -#~ msgid "" -#~ "Historically, this file was needed to manually mark files files as " -#~ "conffiles. However, it has become de facto obsolete since debhelper " -#~ "automatically computed which files should be marked as conffiles." -#~ msgstr "" -#~ "Historiquement ce fichier était nécessaire pour marquer manuellement les " -#~ "fichiers comme des conffiles. Cependant il est devenu obsolète de facto " -#~ "depuis que debhelper détermine automatiquement quels fichiers doivent " -#~ "être marqués comme conffiles." - -#~ msgid "" -#~ "In compatibility level up and including 11, this control file will be " -#~ "installed into the F directory. In compatibility level 12 and " -#~ "later, the file is silently ignored." -#~ msgstr "" -#~ "Jusqu'à la version 11, ce fichier de contrôle était installé dans le " -#~ "dossier F. À partir de la version 12, ce fichier est ignoré en " -#~ "silence." - -# type: textblock -#~ msgid "" -#~ "dh_gconf - install GConf defaults files and register schemas (deprecated)" -#~ msgstr "" -#~ "dh_gconf - Installer les fichiers par défaut de GConf et inscrire les " -#~ "schémas (obsolète)" - -# type: textblock -#~ msgid "B [S>] [B<--priority=>I]" -#~ msgstr "" -#~ "B [S>] [B<--priority=>I>]" - -# type: textblock -#~ msgid "" -#~ "B is a debhelper program that is responsible for installing " -#~ "GConf defaults files and registering GConf schemas." -#~ msgstr "" -#~ "B est un programme de la suite debhelper chargé de " -#~ "l'installation des fichiers par défaut de GConf et de l'inscription des " -#~ "schémas GConf." - -# type: textblock -#~ msgid "" -#~ "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}" -#~ ">." -#~ msgstr "" -#~ "Une dépendance appropriée envers gconf2 sera inscrite dans B<${misc:" -#~ "Depends}>." - -# type: =item -#~ msgid "debian/I.gconf-defaults" -#~ msgstr "debian/I.gconf-defaults" - -# type: textblock -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Les fichiers seront installés dans le répertoire de construction du " -#~ "paquet sous F où le mot I " -#~ "sera remplacé par le nom du paquet." - -# type: =item -#~ msgid "debian/I.gconf-mandatory" -#~ msgstr "debian/I.gconf-mandatory" - -# type: textblock -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Les fichiers seront installés dans le répertoire de construction du " -#~ "paquet sous F où le mot " -#~ "I sera remplacé par le nom du paquet." - -# type: =item -#~ msgid "B<--priority> I" -#~ msgstr "B<--priority> I" - -# type: textblock -#~ msgid "" -#~ "Use I (which should be a 2-digit number) as the defaults " -#~ "priority instead of B<10>. Higher values than ten can be used by derived " -#~ "distributions (B<20>), CDD distributions (B<50>), or site-specific " -#~ "packages (B<90>)." -#~ msgstr "" -#~ "Détermine la I (sous forme d'un nombre à deux chiffres) en " -#~ "remplacement de la priorité par défaut B<10>. Des valeurs plus élevées " -#~ "peuvent être utilisées pour les distributions dérivées (B<20>), les " -#~ "distributions CDD (B<50>), ou les paquets spécifiques à un site (B<90>)." - -# type: textblock -#~ msgid "Ross Burton Josselin Mouette " -#~ msgstr "Ross Burton Josselin Mouette " - # type: textblock #~ msgid "" #~ "B should be the last debhelper command run in the B " @@ -14015,6 +13751,11 @@ #~ "(« clean », par exemple B) se comportera comme " #~ "attendu." +#~ 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>" + #~ msgid "" #~ "In compat 11, this file is no longer installed the format has been " #~ "deprecated. Please migrate to a desktop file instead." diff -Nru debhelper-13.5.2/man/po4a/po/ja.po debhelper-13.3.4/man/po4a/po/ja.po --- debhelper-13.5.2/man/po4a/po/ja.po 2021-09-24 15:04:27.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po/ja.po 2021-02-22 18:51:45.000000000 +0000 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper 9.20141107\n" -"POT-Creation-Date: 2021-09-24 16:06+0100\n" +"POT-Creation-Date: 2021-02-22 09:37+0100\n" "PO-Revision-Date: 2016-09-17 20:45+0900\n" "Last-Translator: Hideki Yamane \n" "Language-Team: Debian JP Project \n" @@ -20,7 +20,7 @@ #: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms:3 -#: dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs: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:5 dh_installemacsen:3 dh_installexamples:5 #: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs:3 @@ -43,7 +43,7 @@ #: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 #: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 #: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 -#: dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 #: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 #: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 #: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 @@ -71,7 +71,7 @@ #: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 #: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 #: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 -#: dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 #: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 #: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 #: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 @@ -1266,12 +1266,11 @@ #: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 #: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 #: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 -#: debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 -#: debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 -#: debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 -#: debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 -#: debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 -#: debhelper.pod:1283 debhelper-obsolete-compat.pod:43 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 @@ -2161,20 +2160,15 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the B from dpkg/1.20 made the file relevant again and B " -"now installs it again in compat levels 12+." +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -2183,14 +2177,14 @@ msgstr "" #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with B<--no-" "start>) then you will probably need one for B as well now." msgstr "" #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists B<" @@ -2199,7 +2193,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -2209,40 +2203,40 @@ msgstr "" #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." msgstr "" #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the third-" "party build system B instead." msgstr "" #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 #, fuzzy #| msgid "v1" msgid "v13" msgstr "v1" #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "これが動作推奨モードです。" #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 #, fuzzy #| msgid "Changes from v10 are:" msgid "Changes from v12 are:" msgstr "v10 からの変更点:" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -2251,7 +2245,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -2260,7 +2254,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default (i." @@ -2270,7 +2264,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -2278,7 +2272,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -2289,7 +2283,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -2297,12 +2291,12 @@ msgstr "" #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F (e.g. " @@ -2310,7 +2304,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -2318,7 +2312,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -2327,7 +2321,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -2336,7 +2330,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -2345,14 +2339,14 @@ msgstr "" #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." msgstr "" #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -2363,7 +2357,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -2372,7 +2366,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -2380,7 +2374,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -2389,7 +2383,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes B<-" "DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up automatic " @@ -2398,7 +2392,7 @@ msgstr "" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -2406,28 +2400,28 @@ msgstr "" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 #, fuzzy #| msgid "v1" msgid "v14" msgstr "v1" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" "この互換性レベルは未だ開発中の状態です。使う場合は注意して使ってください。" #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 #, fuzzy #| msgid "Changes from v3 are:" msgid "Changes from v13 are:" msgstr "v3 からの変更点:" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and B<-" "DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2435,7 +2429,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 msgid "" "This can cause issues with running binaries directly from the build " "directories as they might now require a manually set B. If " @@ -2447,72 +2441,12 @@ msgstr "" #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 msgid "The tool B is now included in the default sequence." msgstr "" -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding B to Build-Depends), or explicitly passing B<--destdir> to " -"B if used and then passing B<--without single-binary> to " -"B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -#, fuzzy -#| msgid "v5" -msgid "v15" -msgstr "v5" - -#. type: textblock -#: debhelper.pod:1279 -#, fuzzy -#| msgid "Changes from v4 are:" -msgid "Changes from v14 are:" -msgstr "v4 からの変更点:" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< --destdir=debian/" -"I >> for source packages only producing a single binary. If this " -"behaviour is wanted, the package should explicitly activate the B dh addon (e.g., by adding B to B) or pass B<--destdir> to B." -msgstr "" - #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 #: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 #: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 #: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 @@ -2522,12 +2456,12 @@ msgstr "付記" #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "複数のバイナリパッケージのサポート" #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2546,7 +2480,7 @@ "indep ターゲットで生成する必要がある為です。" #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 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<-" @@ -2561,7 +2495,7 @@ "ルに列挙されたすべてのパッケージに対して処理を行います。" #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)。" #. type: textblock -#: debhelper.pod:1323 +#: debhelper.pod:1275 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -2585,12 +2519,12 @@ "ます。" #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -2600,19 +2534,19 @@ msgstr "" #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." msgstr "" #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -2620,31 +2554,31 @@ msgstr "" #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 #, fuzzy #| msgid "B<-N>I, B<--no-package=>I" msgid "-N I / --no-package I" msgstr "B<-N>I, B<--no-package=>I" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "" #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 #, fuzzy #| msgid "B<-p>I, B<--package=>I" msgid "-p I / --package I" msgstr "B<-p>I, B<--package=>I" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "" #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." @@ -2652,12 +2586,12 @@ # note: it should be "Debian maintainer scripts"? #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 msgid "Automatic generation of Debian install scripts" msgstr "メンテナスクリプトの自動生成" #. type: textblock -#: debhelper.pod:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -2673,7 +2607,7 @@ "へ置換されます。" #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -2682,7 +2616,7 @@ "ある場合、debhelper はスクリプトを一式生成します。" #. type: textblock -#: debhelper.pod:1372 +#: debhelper.pod:1324 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -2691,7 +2625,7 @@ "の自動生成を行わないようにできます (上記参照)。" #. type: textblock -#: debhelper.pod:1375 +#: debhelper.pod:1327 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 " @@ -2703,7 +2637,7 @@ "例を挙げます ($1, $2 等は set コマンドにより設定される事に注意):" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -2735,12 +2669,12 @@ "\n" #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "様々な依存関係の自動生成" #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -2759,7 +2693,7 @@ "ます。" #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -2773,7 +2707,7 @@ "ります。" #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -2786,12 +2720,12 @@ "は、これらを使わないようにすることも可能です。" #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "パッケージビルドディレクトリ" #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -2800,7 +2734,7 @@ "まとめる一時ディレクトリとして debian/I ディレクトリを使用します。" #. type: textblock -#: debhelper.pod:1418 +#: debhelper.pod:1370 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -2819,12 +2753,12 @@ "ます。" #. type: =head2 -#: debhelper.pod:1426 +#: debhelper.pod:1378 msgid "udebs" msgstr "udeb パッケージについて" #. type: textblock -#: debhelper.pod:1428 +#: debhelper.pod:1380 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -2841,19 +2775,19 @@ "いたものです。" #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "環境変数" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." msgstr "" #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 #, fuzzy #| msgid "" #| "The following environment variables can influence the behavior of " @@ -2874,12 +2808,12 @@ "す。" #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 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." @@ -2889,12 +2823,12 @@ "ても冗長出力されたビルドログを有効にします。" #. type: =item -#: debhelper.pod:1452 +#: debhelper.pod:1404 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -2910,12 +2844,12 @@ "す。" #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 #, fuzzy #| msgid "" #| "Temporarily specifies what compatibility level debhelper should run at, " @@ -2929,22 +2863,22 @@ "のです。こちらを指定すると F の値を上書きします。" #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 msgid "Set to B<1> to enable no-act mode." msgstr "B<1> に設定すると、何もしない (no-act) モードになります。" #. type: =item -#: debhelper.pod:1471 +#: debhelper.pod:1423 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -2953,7 +2887,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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." @@ -2963,12 +2897,12 @@ "法です。" #. type: =item -#: debhelper.pod:1481 +#: debhelper.pod:1433 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -2980,7 +2914,7 @@ "チするもの全部を B するようになります。" #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -2997,7 +2931,7 @@ "ようとも効果を発揮するようになります。" #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -3006,14 +2940,14 @@ "コロンで区切ってください。" #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -3022,7 +2956,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -3031,12 +2965,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -3044,7 +2978,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -3054,12 +2988,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -3067,7 +3001,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -3075,14 +3009,14 @@ msgstr "" #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" msgstr "" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -3093,12 +3027,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -3109,7 +3043,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -3117,21 +3051,21 @@ msgstr "" #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." msgstr "" #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -3141,21 +3075,21 @@ msgstr "" #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 #, fuzzy #| msgid "B" msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see e.g. L). The debhelper tool suite silently ignores it." msgstr "" #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -3163,29 +3097,29 @@ msgstr "" #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." msgstr "" #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -3193,24 +3127,24 @@ msgstr "" #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." msgstr "" #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I and L." msgstr "" #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." msgstr "" #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -3251,17 +3185,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "" #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -3270,45 +3204,45 @@ msgstr "" #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." msgstr "" #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 #, fuzzy #| msgid "B<--ddebs>, B<--no-ddebs>" msgid "B, B" msgstr "B<--ddebs>, B<--no-ddebs>" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" msgstr "" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." msgstr "" #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "" #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -3316,7 +3250,7 @@ msgstr "" #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -3324,12 +3258,12 @@ msgstr "" #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -3338,17 +3272,17 @@ msgstr "" #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "" #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "" #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -3356,13 +3290,13 @@ msgstr "" #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 -#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 -#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 -#: dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 #: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 -#: dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 -#: dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 #: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 #: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 #: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 @@ -3370,55 +3304,56 @@ #: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 #: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 #: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 -#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "参照" #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 msgid "A set of example F files that use debhelper." msgstr "" "debhelper を使うときの F ファイルの例が格納されています。" #. type: =item -#: debhelper.pod:1675 +#: debhelper.pod:1627 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "Debhelper の Web サイトです。" #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 -#: dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 -#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 -#: dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 -#: dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 -#: dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 -#: dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 -#: dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 -#: dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 -#: dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 -#: dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 -#: dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 -#: dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 -#: dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "作者" #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 -#: dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 #: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 -#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 -#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 #: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 #: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 #: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 @@ -3613,30 +3548,30 @@ "ようになりました。" #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 -#: dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 -#: dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 -#: dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 -#: dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 -#: dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 -#: dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 -#: dh_installman:419 dh_installmanpages:200 dh_installmime:65 -#: dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 -#: dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 -#: dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 -#: dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 -#: dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "L" #. type: =head1 #: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 -#: dh_systemd_start:283 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "作者" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "Niels Thykier " @@ -4036,10 +3971,10 @@ #. type: =head1 #: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 -#: dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 -#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 -#: dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 -#: dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 #: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 #: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 #: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 @@ -4585,163 +4520,11 @@ #. type: =head1 #: dh:424 -#, fuzzy -#| msgid "DEBHELPER COMMANDS" -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "DEBHELPER コマンド" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -#, fuzzy -#| msgid "The previous behaviour can restored by using B<--with build-stamp>" -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "B<--with build-stamp> を使えば以前の動作に戻すことが出来ます。" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "" -"A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "内部動作" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." @@ -4750,7 +4533,7 @@ "を記載します。" #. type: textblock -#: dh:502 +#: dh:428 #, fuzzy #| msgid "" #| "In compat 10 (or later), B creates a stamp file F creates a stamp file F. (Which B " @@ -4812,7 +4595,7 @@ "かります。" #. type: textblock -#: dh:520 +#: dh:446 #, fuzzy #| msgid "" #| "Each time B is run (in compat 9 or earlier), it examines the log, and " @@ -4832,7 +4615,7 @@ "互換性レベル 10 ではこれらは削除されています)。" #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." @@ -4842,7 +4625,7 @@ "と、\"install\" ターゲットも実行されます。" #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -4855,7 +4638,7 @@ "おり、どの時点でも debhelper コマンドの動作に影響を与えます。" #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -4870,12 +4653,12 @@ "れ、アーキテクチャ依存パッケージにのみ確実に作用するように動作します。 " #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 -#: dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 -#: dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 -#: dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 -#: dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 -#: dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 #: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 #: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 #: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 @@ -4929,7 +4712,7 @@ "して、ビルド作業を手動で実行してください。" #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 #: dh_auto_test:36 msgid "" "See L> for a list of common build " @@ -4939,7 +4722,7 @@ "ムと、制御オプションが列挙されています。" #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 #: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 #: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" @@ -5113,28 +4896,11 @@ #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." -msgstr "" - -#. type: textblock -#: dh_auto_install:38 -#, fuzzy -#| msgid "" -#| "Unless B<--destdir> option is specified, the files are installed into " -#| "debian/I/ if there is only one binary package. In the multiple " -#| "binary package case, the files are instead installed into F, " -#| "and should be moved from there to the appropriate package build directory " -#| "using L." -msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." +"Unless B<--destdir> option is specified, the files are installed into debian/" +"I/ if there is only one binary package. In the multiple binary " +"package case, the files are instead installed into F, and " +"should be moved from there to the appropriate package build directory using " +"L." msgstr "" "B<--destdir> オプションを指定せず単一のバイナリのみ生成する場合、ファイルは " "debian/I/ 以下にインストールされます。また、B<--destdir> オプション" @@ -5143,7 +4909,7 @@ "を使って適切なパッケージビルドディレクトリに移動する必要があります。" #. type: textblock -#: dh_auto_install:44 +#: dh_auto_install:38 msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " @@ -5155,7 +4921,7 @@ "として指定されます。" #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -5167,12 +4933,12 @@ "行することを推奨します。" #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -5183,7 +4949,7 @@ "に自動的に指定されます。" #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -5279,7 +5045,7 @@ "トリへインストールする debhelper プログラムです。" #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 #: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 #: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 #: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 @@ -5543,7 +5309,7 @@ "あります>。これらのディレクトリ内の内容は同様に削除されます。" #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 #: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 #: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" @@ -5925,6 +5691,86 @@ "を除外します。除外対象を列挙したい場合は、このオプションを複数回指定します。" #. type: textblock +#: dh_gconf:5 +#, fuzzy +#| msgid "dh_gconf - install GConf defaults files and register schemas" +msgid "" +"dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" +"dh_gconf - GConf デフォルトファイルをインストールし、スキーマに登録する" + +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "B [S>] [B<--priority=>I]" + +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" +"B は GConf 用デフォルトファイルをインストールし、GConf スキーマに登" +"録する役割を担う debhelper プログラムです。" + +#. type: textblock +#: dh_gconf:24 +msgid "" +"An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "gconf2 に関する適切な依存関係が B<${misc:Depends}> に生成されます。" + +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "debian/I.gconf-defaults" + +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"パッケージビルドディレクトリにある F へ" +"インストールが行われます。なお、I はパッケージ名で置き換えられます。" + +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "debian/I.gconf-mandatory" + +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"パッケージビルドディレクトリにある F に" +"インストールされます。なお、I はパッケージ名で置き換えられます。" + +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "B<--priority> I" + +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" +"I (これは2桁の数字である必要があります) をデフォルトの優先順位であ" +"る B<10> の代わりに利用します。用途によっては 10 より大きな値を利用することが" +"できます。例えば、派生ディストリビューションの場合 (B<20>)、CDD ディストリ" +"ビューション (B<50>)、あるいはサイト独自のパッケージ (B<90>) となります。" + +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "Ross Burton Josselin Mouette " + +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - control ファイルを生成し、インストールする" @@ -6822,17 +6668,17 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" #. type: =item @@ -6901,23 +6747,13 @@ "enabled as a warning since compat 10 and as a hard error in compat 12." msgstr "" -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -6935,18 +6771,18 @@ msgstr "" #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "" "An explicit declared token with this parameter will replace built-in tokens." msgstr "" #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." msgstr "" #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -6975,12 +6811,12 @@ msgstr "" #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in F, to B in F and to B tokens will be visible in all scripts acted on. E." "g. you can refer to B<#pkg.bar.TOKEN#> inside F and it " @@ -7017,26 +6853,26 @@ msgstr "" #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" msgstr "" #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 #, fuzzy #| msgid "DEBHELPER COMMANDS" msgid "#DEBHELPER#" msgstr "DEBHELPER コマンド" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -7044,12 +6880,12 @@ msgstr "" #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from L. In almost all cases, you will want use the B<< " @@ -7058,19 +6894,19 @@ msgstr "" #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." msgstr "" #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -7078,37 +6914,37 @@ msgstr "" #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." msgstr "" #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." msgstr "" #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: #[A-Za-z0-9_.+]+#" msgstr "" #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -8228,9 +8064,8 @@ #: dh_installinit:67 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> in the package build directory. Only used in compat levels 10 and " -"below." +"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 "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11406,9 +11241,8 @@ #: dh_systemd_enable:47 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> (or F<< lib/systemd/system/I@.service >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or lib/systemd/system/I@.service) in the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11435,9 +11269,8 @@ #: dh_systemd_enable:58 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"target >> (or F<< lib/systemd/system/I@.target >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11453,9 +11286,8 @@ #: dh_systemd_enable:63 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"socket >> (or F<< lib/systemd/system/I@.socket >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11471,8 +11303,8 @@ #: dh_systemd_enable:68 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11488,9 +11320,8 @@ #: dh_systemd_enable:73 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11506,9 +11337,8 @@ #: dh_systemd_enable:78 #, fuzzy msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" "もし本ファイルが存在すれば、パッケージビルドディレクトリ以下に etc/init/" "I.conf ファイルとしてインストールされます。" @@ -11572,7 +11402,7 @@ msgstr "L, L" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -11664,68 +11494,6 @@ msgid "This compatibility level is open for beta testing; changes may occur." msgstr "この互換性レベルはベータテスト中です。変更が加わります。" -#, fuzzy -#~| msgid "dh_gconf - install GConf defaults files and register schemas" -#~ msgid "" -#~ "dh_gconf - install GConf defaults files and register schemas (deprecated)" -#~ msgstr "" -#~ "dh_gconf - GConf デフォルトファイルをインストールし、スキーマに登録する" - -#~ msgid "B [S>] [B<--priority=>I]" -#~ msgstr "B [S>] [B<--priority=>I]" - -#~ msgid "" -#~ "B is a debhelper program that is responsible for installing " -#~ "GConf defaults files and registering GConf schemas." -#~ msgstr "" -#~ "B は GConf 用デフォルトファイルをインストールし、GConf スキーマ" -#~ "に登録する役割を担う debhelper プログラムです。" - -#~ msgid "" -#~ "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}" -#~ ">." -#~ msgstr "gconf2 に関する適切な依存関係が B<${misc:Depends}> に生成されます。" - -#~ msgid "debian/I.gconf-defaults" -#~ msgstr "debian/I.gconf-defaults" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "パッケージビルドディレクトリにある F " -#~ "へインストールが行われます。なお、I はパッケージ名で置き換えられ" -#~ "ます。" - -#~ msgid "debian/I.gconf-mandatory" -#~ msgstr "debian/I.gconf-mandatory" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "パッケージビルドディレクトリにある F にインストールされます。なお、I はパッケー" -#~ "ジ名で置き換えられます。" - -#~ msgid "B<--priority> I" -#~ msgstr "B<--priority> I" - -#~ msgid "" -#~ "Use I (which should be a 2-digit number) as the defaults " -#~ "priority instead of B<10>. Higher values than ten can be used by derived " -#~ "distributions (B<20>), CDD distributions (B<50>), or site-specific " -#~ "packages (B<90>)." -#~ msgstr "" -#~ "I (これは2桁の数字である必要があります) をデフォルトの優先順位で" -#~ "ある B<10> の代わりに利用します。用途によっては 10 より大きな値を利用する" -#~ "ことができます。例えば、派生ディストリビューションの場合 (B<20>)、CDD ディ" -#~ "ストリビューション (B<50>)、あるいはサイト独自のパッケージ (B<90>) となり" -#~ "ます。" - -#~ msgid "Ross Burton Josselin Mouette " -#~ msgstr "Ross Burton Josselin Mouette " - #~ msgid "" #~ "B should be the last debhelper command run in the B " #~ "target in F." @@ -12130,6 +11898,9 @@ #~ "B は F ファイルをインストールしなくなりました。まだ " #~ "F ファイルはインストールされます。" +#~ msgid "The previous behaviour can restored by using B<--with build-stamp>" +#~ msgstr "B<--with build-stamp> を使えば以前の動作に戻すことが出来ます。" + #~ msgid "" #~ "B now installs user-supplied documentation (e.g. debian/" #~ "I.docs) into F rather than F\n" "Language-Team: Portuguese <>\n" @@ -22,7 +22,7 @@ #: debhelper.pod:3 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:5 dh_clean:3 dh_compress:3 dh_dwz:3 dh_fixperms:3 -#: dh_gencontrol:3 dh_icons:3 dh_install:3 dh_installcatalogs: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:5 dh_installemacsen:3 dh_installexamples:5 #: dh_installifupdown:3 dh_installinfo:3 dh_installinit:3 dh_installinitramfs:3 @@ -45,7 +45,7 @@ #: debhelper.pod:7 debhelper-obsolete-compat.pod:5 dh:22 dh_auto_build:16 #: dh_auto_clean:16 dh_auto_configure:16 dh_auto_install:18 dh_auto_test:16 #: dh_bugfiles:15 dh_builddeb:17 dh_clean:15 dh_compress:17 dh_dwz:16 -#: dh_fixperms:16 dh_gencontrol:16 dh_icons:16 dh_install:15 +#: dh_fixperms:16 dh_gconf:15 dh_gencontrol:16 dh_icons:16 dh_install:15 #: dh_installcatalogs:17 dh_installchangelogs:15 dh_installcron:15 #: dh_installdeb:15 dh_installdebconf:15 dh_installdirs:15 dh_installdocs:17 #: dh_installemacsen:15 dh_installexamples:17 dh_installifupdown:15 @@ -73,7 +73,7 @@ #: debhelper.pod:11 dh:26 dh_auto_build:20 dh_auto_clean:20 #: dh_auto_configure:20 dh_auto_install:22 dh_auto_test:20 dh_bugfiles:19 #: dh_builddeb:21 dh_clean:19 dh_compress:21 dh_dwz:20 dh_fixperms:20 -#: dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 +#: dh_gconf:19 dh_gencontrol:20 dh_icons:20 dh_install:19 dh_installcatalogs:21 #: dh_installchangelogs:19 dh_installcron:19 dh_installdeb:19 #: dh_installdebconf:19 dh_installdirs:19 dh_installdocs:21 #: dh_installemacsen:19 dh_installexamples:21 dh_installifupdown:19 @@ -1371,12 +1371,11 @@ #: debhelper.pod:981 debhelper.pod:986 debhelper.pod:991 debhelper.pod:998 #: debhelper.pod:1004 debhelper.pod:1012 debhelper.pod:1018 debhelper.pod:1022 #: debhelper.pod:1027 debhelper.pod:1032 debhelper.pod:1041 debhelper.pod:1057 -#: debhelper.pod:1066 debhelper.pod:1082 debhelper.pod:1090 debhelper.pod:1095 -#: debhelper.pod:1110 debhelper.pod:1118 debhelper.pod:1126 debhelper.pod:1135 -#: debhelper.pod:1141 debhelper.pod:1151 debhelper.pod:1159 debhelper.pod:1165 -#: debhelper.pod:1179 debhelper.pod:1190 debhelper.pod:1204 debhelper.pod:1215 -#: debhelper.pod:1233 debhelper.pod:1247 debhelper.pod:1251 debhelper.pod:1257 -#: debhelper.pod:1283 debhelper-obsolete-compat.pod:43 +#: debhelper.pod:1064 debhelper.pod:1080 debhelper.pod:1088 debhelper.pod:1093 +#: debhelper.pod:1108 debhelper.pod:1116 debhelper.pod:1124 debhelper.pod:1133 +#: debhelper.pod:1139 debhelper.pod:1149 debhelper.pod:1157 debhelper.pod:1163 +#: debhelper.pod:1177 debhelper.pod:1188 debhelper.pod:1202 debhelper.pod:1213 +#: debhelper.pod:1231 debhelper.pod:1245 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 @@ -2360,22 +2359,11 @@ #. type: textblock #: debhelper.pod:1059 -msgid "B:" -msgstr "" - -#. type: textblock -#: debhelper.pod:1061 -#, fuzzy -#| msgid "" -#| "The B tool no longer installs the maintainer provided " -#| "F file. The file has mostly been obsolete since compatibility " -#| "level 3, where B began to automatically compute the " -#| "resulting F control file." -msgid "" -"The B tool would no longer installs the maintainer provided " -"F file as it was deemed unnecessary. However, the B from dpkg/1.20 made the file relevant again and B " -"now installs it again in compat levels 12+." +msgid "" +"The B tool no longer installs the maintainer provided " +"F file. The file has mostly been obsolete since compatibility " +"level 3, where B began to automatically compute the resulting " +"F control file." msgstr "" "A ferramenta B não mais instala o ficheiro F " "fornecido pelo maintainer. O ficheiro torneou-se maioritariamente obsoleto " @@ -2383,7 +2371,7 @@ "automaticamente o ficheiro de controle F resultante." #. type: textblock -#: debhelper.pod:1068 +#: debhelper.pod:1066 msgid "" "The B tool no longer relies on B for " "handling systemd services that have a sysvinit alternative. Both tools must " @@ -2396,7 +2384,7 @@ "serviço é arrancado correctamente sob ambos sysvinit e systemd." #. type: textblock -#: debhelper.pod:1073 +#: debhelper.pod:1071 msgid "" "If you have an override for B (e.g. to call it with B<--no-" "start>) then you will probably need one for B as well now." @@ -2406,7 +2394,7 @@ "B." #. type: textblock -#: debhelper.pod:1077 +#: debhelper.pod:1075 msgid "" "This change makes B inject a I for B<< " "init-system-helpers (>= 1.54~) >>. Please ensure that the package lists B<" @@ -2419,7 +2407,7 @@ "para a compatibilidade 12." #. type: textblock -#: debhelper.pod:1084 +#: debhelper.pod:1082 msgid "" "The third-party B tool (from B package) now defaults " "on honoring B variable for source installation in -dev " @@ -2435,7 +2423,7 @@ "e exemplos" #. type: textblock -#: debhelper.pod:1092 +#: debhelper.pod:1090 msgid "" "B is now included in the B standard sequence by " "default." @@ -2444,7 +2432,7 @@ "predefinição." #. type: textblock -#: debhelper.pod:1097 +#: debhelper.pod:1095 msgid "" "The B buildsystem is now removed. Please use the third-" "party build system B instead." @@ -2453,22 +2441,22 @@ "use o sistema de compilação de terceiros B em substituição." #. type: =item -#: debhelper.pod:1102 +#: debhelper.pod:1100 msgid "v13" msgstr "v13" #. type: textblock -#: debhelper.pod:1104 +#: debhelper.pod:1102 msgid "This is the recommended mode of operation." msgstr "Este é o modo de operação recomendado." #. type: textblock -#: debhelper.pod:1106 +#: debhelper.pod:1104 msgid "Changes from v12 are:" msgstr "As alterações a partir de v12 são:" #. type: textblock -#: debhelper.pod:1112 +#: debhelper.pod:1110 msgid "" "The B build system now uses B instead of B when running the test suite. Any override of B that " @@ -2482,7 +2470,7 @@ "com o B." #. type: textblock -#: debhelper.pod:1120 +#: debhelper.pod:1118 msgid "" "All debhelper like tools based on the official debhelper library (including " "B and the official B tools) no longer accepts abbreviated command " @@ -2496,7 +2484,7 @@ "linha de comandos." #. type: textblock -#: debhelper.pod:1128 +#: debhelper.pod:1126 msgid "" "The ELF related debhelper tools (B, B, B, " "B) are now only run for arch dependent packages by default (i." @@ -2512,7 +2500,7 @@ "Depends explícito em B." #. type: textblock -#: debhelper.pod:1137 +#: debhelper.pod:1135 msgid "" "The third-party B build system (from B " "package) now runs the upstream-provided test suite automatically. To " @@ -2523,7 +2511,7 @@ "automaticamente. Para suprimir tal comportamento, sobreponha B." #. type: textblock -#: debhelper.pod:1143 +#: debhelper.pod:1141 msgid "" "The B tool now aborts if it sees conflicting definitions of a " "manpage. This typically happens if the upstream build system is installing " @@ -2540,7 +2528,7 @@ ">> (assumindo que ambas as versões são idênticas)." #. type: textblock -#: debhelper.pod:1153 +#: debhelper.pod:1151 msgid "" "The B helpers now reset the environment variables B and " "common B variable. Please see description of the environment " @@ -2551,12 +2539,12 @@ "de ambiente em L para como lidar com isto." #. type: textblock -#: debhelper.pod:1157 +#: debhelper.pod:1155 msgid "I" msgstr "I" #. type: textblock -#: debhelper.pod:1161 +#: debhelper.pod:1159 msgid "" "The B command will now error if an override or hook target for an " "obsolete command are present in F (e.g. " @@ -2567,7 +2555,7 @@ "B)." #. type: textblock -#: debhelper.pod:1167 +#: debhelper.pod:1165 msgid "" "The B command will now default to B<--fail-missing>. This can " "be reverted to a non-fatal warning by explicitly passing B<--list-missing> " @@ -2578,7 +2566,7 @@ "list-missing> como era na compatibilidade 12." #. type: textblock -#: debhelper.pod:1171 +#: debhelper.pod:1169 msgid "" "If you do not want the warning either, please omit the call to " "B. If you use the B command sequencer, then you can do this " @@ -2591,7 +2579,7 @@ "rules> do pacote relevante. Como exemplo:" #. type: verbatim -#: debhelper.pod:1176 +#: debhelper.pod:1174 #, no-wrap msgid "" " # Disable dh_missing\n" @@ -2603,7 +2591,7 @@ "\n" #. type: textblock -#: debhelper.pod:1181 +#: debhelper.pod:1179 msgid "" "The B command sequencer now runs B in the default " "sequence. The B takes over handling of tmpfiles.d " @@ -2616,7 +2604,7 @@ "B está agora desactivada." #. type: textblock -#: debhelper.pod:1186 +#: debhelper.pod:1184 msgid "" "Note that B responds to F<< debian/I.tmpfiles " ">> where B used a name without the trailing \"s\"." @@ -2625,7 +2613,7 @@ "onde B usou um nome sem o \"s\" final." #. type: textblock -#: debhelper.pod:1192 +#: debhelper.pod:1190 msgid "" "Many B tools now support limited variable expansion via the B<${foo}> " "syntax. In many cases, this can be used to reference paths that contain " @@ -2642,7 +2630,7 @@ "renomear, etc... o pacote irá continuar a precisar de L." #. type: textblock -#: debhelper.pod:1199 +#: debhelper.pod:1197 msgid "" "Please see L for syntax and " "available substitution variables. To B tool writers, substitution " @@ -2655,7 +2643,7 @@ "funções B e B." #. type: textblock -#: debhelper.pod:1206 +#: debhelper.pod:1204 msgid "" "The B command sequencer will now skip all hook and override targets for " "B, B and B when B lists " @@ -2666,7 +2654,7 @@ "B listar as opções B / B relevantes." #. type: textblock -#: debhelper.pod:1210 +#: debhelper.pod:1208 msgid "" "Any package relying on these targets to always be run should instead move " "relevant logic out of those targets. E.g. non-test related packaging code " @@ -2680,7 +2668,7 @@ "B ou B." #. type: textblock -#: debhelper.pod:1217 +#: debhelper.pod:1215 msgid "" "The B buildsystem now passes B<-" "DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON> to L to speed up automatic " @@ -2693,7 +2681,7 @@ "comportamento anterior, sobreponha a flag:" #. type: verbatim -#: debhelper.pod:1221 +#: debhelper.pod:1219 #, no-wrap msgid "" " dh_auto_configure -- -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF ...\n" @@ -2703,12 +2691,12 @@ "\n" #. type: =item -#: debhelper.pod:1225 +#: debhelper.pod:1223 msgid "v14" msgstr "v14" #. type: textblock -#: debhelper.pod:1227 debhelper.pod:1277 strings-kept-translations.pod:9 +#: debhelper.pod:1225 strings-kept-translations.pod:9 msgid "" "This compatibility level is still open for development; use with caution." msgstr "" @@ -2716,12 +2704,12 @@ "cuidado." #. type: textblock -#: debhelper.pod:1229 +#: debhelper.pod:1227 msgid "Changes from v13 are:" msgstr "As alterações a partir de v13 são:" #. type: textblock -#: debhelper.pod:1235 +#: debhelper.pod:1233 msgid "" "The B buildsystem now passes B<-DCMAKE_SKIP_RPATH=ON> and B<-" "DCMAKE_BUILD_RPATH_USE_ORIGIN=ON> to L to avoid some " @@ -2732,7 +2720,7 @@ "de reprodutibilidade." #. type: textblock -#: debhelper.pod:1239 +#: debhelper.pod:1237 msgid "" "This can cause issues with running binaries directly from the build " "directories as they might now require a manually set B. If " @@ -2753,74 +2741,14 @@ "de tempo-de-execução." #. type: textblock -#: debhelper.pod:1249 +#: debhelper.pod:1247 msgid "The tool B is now included in the default sequence." msgstr "" "A ferramenta B está agora incluída na sequência " "predefinida." -#. type: textblock -#: debhelper.pod:1253 -msgid "" -"Use of the B command in override and hook targets now causes an " -"error. The B command has been a no-op for years and was removed " -"in debhelper 13.4." -msgstr "" - -#. type: textblock -#: debhelper.pod:1259 -msgid "" -"The B sequencer will warn if the B addon is implicitly " -"activated to warn maintainers of the pending compat 15 change in " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:1262 -msgid "" -"Maintainers are urged to either explicitly activate the B " -"addon to preserve the existing behaviour (e.g., by adding B to Build-Depends), or explicitly passing B<--destdir> to " -"B if used and then passing B<--without single-binary> to " -"B (the latter to silence the warning)." -msgstr "" - -#. type: textblock -#: debhelper.pod:1267 debhelper.pod:1291 -msgid "" -"The rationale for this change to avoid \"surprises\" when adding a second " -"binary package later. Previously, debhelper would silently change behaviour " -"often resulting in empty binary packages being uploaded to the archive by " -"mistake. With the new behaviour, the B addon will detect the " -"mismatch and warn the maintainer of what is about to happen." -msgstr "" - -#. type: =item -#: debhelper.pod:1275 -#, fuzzy -#| msgid "v5" -msgid "v15" -msgstr "v5" - -#. type: textblock -#: debhelper.pod:1279 -#, fuzzy -#| msgid "Changes from v4 are:" -msgid "Changes from v14 are:" -msgstr "As alterações a partir de v4 são:" - -#. type: textblock -#: debhelper.pod:1285 -msgid "" -"The B tool no longer defaults to B<< --destdir=debian/" -"I >> for source packages only producing a single binary. If this " -"behaviour is wanted, the package should explicitly activate the B dh addon (e.g., by adding B to B) or pass B<--destdir> to B." -msgstr "" - #. type: =head1 -#: debhelper.pod:1301 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 +#: debhelper.pod:1253 dh_auto_test:48 dh_dwz:69 dh_installcatalogs:67 #: dh_installdocs:202 dh_installemacsen:75 dh_installexamples:92 #: dh_installinit:205 dh_installinitramfs:60 dh_installman:131 #: dh_installmodules:57 dh_installudev:50 dh_installwm:66 dh_installxfonts:40 @@ -2830,12 +2758,12 @@ msgstr "NOTAS" #. type: =head2 -#: debhelper.pod:1303 +#: debhelper.pod:1255 msgid "Multiple binary package support" msgstr "Suporte a pacotes de múltiplos binários" #. type: textblock -#: debhelper.pod:1305 +#: debhelper.pod:1257 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 " @@ -2854,7 +2782,7 @@ "independentes de arquitectura no alvo F binary-indep." #. type: textblock -#: debhelper.pod:1313 +#: debhelper.pod:1265 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<-" @@ -2870,7 +2798,7 @@ "excepções em baixo." #. type: textblock -#: debhelper.pod:1319 +#: debhelper.pod:1271 msgid "" "First, any package whose B field in B does not " "match the B architecture will be excluded (L)." #. type: textblock -#: debhelper.pod:1323 +#: debhelper.pod:1275 msgid "" "Also, some additional packages may be excluded based on the contents of the " "B environment variable and B fields in " @@ -2894,12 +2822,12 @@ "política proposta em L." #. type: =head3 -#: debhelper.pod:1328 +#: debhelper.pod:1280 msgid "Interaction between package selections and Build-Profiles" msgstr "Interacção entre selecções de pacotes e Build-Profiles" #. type: textblock -#: debhelper.pod:1330 +#: debhelper.pod:1282 msgid "" "Build-Profiles affect which packages are included in the package selections " "mechanisms in debhelper. Generally, the package selections are described " @@ -2914,14 +2842,14 @@ "devido a Build-Profiles activos (ou a falta de Build-Profiles activos)." #. type: =item -#: debhelper.pod:1338 +#: debhelper.pod:1290 msgid "-a/--arch, -i/--indep OR no selection options (a raw \"dh_X\" call)" msgstr "" "-a/--arch, -i/--indep OU nenhuma opção de selecção (uma chamada \"dh_X\" " "crua)" #. type: textblock -#: debhelper.pod:1340 +#: debhelper.pod:1292 msgid "" "The package disabled by Build-Profiles is silently excluded from the " "selection." @@ -2929,7 +2857,7 @@ "O pacote desactivado por Build-Profiles é excluído em silêncio da selecção." #. type: textblock -#: debhelper.pod:1343 +#: debhelper.pod:1295 msgid "" "Note you will receive a warning if I packages related to these " "selections are disabled. In that case, it generally does not make sense to " @@ -2940,27 +2868,27 @@ "sentido sequer fazer a compilação." #. type: =item -#: debhelper.pod:1347 +#: debhelper.pod:1299 msgid "-N I / --no-package I" msgstr "-N I / --no-package I" #. type: textblock -#: debhelper.pod:1349 +#: debhelper.pod:1301 msgid "The option is accepted and effectively does nothing." msgstr "A opção é aceite e efectivamente não faz nada." #. type: =item -#: debhelper.pod:1351 +#: debhelper.pod:1303 msgid "-p I / --package I" msgstr "-p I / --package I" #. type: textblock -#: debhelper.pod:1353 +#: debhelper.pod:1305 msgid "The option is accepted, but debhelper will not act on the package." msgstr "A opção é aceite, mas o debhelper não irá actuar no pacote." #. type: textblock -#: debhelper.pod:1357 +#: debhelper.pod:1309 msgid "" "Note that it does not matter whether a package is enabled or disabled by " "default." @@ -2969,12 +2897,12 @@ "predefinição." #. type: =head2 -#: debhelper.pod:1360 +#: debhelper.pod:1312 msgid "Automatic generation of Debian install scripts" msgstr "Geração automática de scripts de instalação Debian" #. type: textblock -#: debhelper.pod:1362 +#: debhelper.pod:1314 msgid "" "Some debhelper commands will automatically generate parts of Debian " "maintainer scripts. If you want these automatically generated things " @@ -2991,7 +2919,7 @@ "auto-gerado quando você correr o B." #. type: textblock -#: debhelper.pod:1369 +#: debhelper.pod:1321 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -3000,7 +2928,7 @@ "então o debhelper irá criar o script completo." #. type: textblock -#: debhelper.pod:1372 +#: debhelper.pod:1324 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -3009,7 +2937,7 @@ "permitem que o seja desactivado pelo parâmetro -n (ver em cima)." #. type: textblock -#: debhelper.pod:1375 +#: debhelper.pod:1327 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 " @@ -3022,7 +2950,7 @@ "definidos com o comando \"set\"):" #. type: verbatim -#: debhelper.pod:1380 +#: debhelper.pod:1332 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -3054,12 +2982,12 @@ "\n" #. type: =head2 -#: debhelper.pod:1393 +#: debhelper.pod:1345 msgid "Automatic generation of miscellaneous dependencies." msgstr "Geração automática de dependências variadas." #. type: textblock -#: debhelper.pod:1395 +#: debhelper.pod:1347 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -3078,7 +3006,7 @@ "debhelper oferece um modo de automatizar isto." #. type: textblock -#: debhelper.pod:1403 +#: debhelper.pod:1355 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called B<" @@ -3092,7 +3020,7 @@ "que você precisa." #. type: textblock -#: debhelper.pod:1408 +#: debhelper.pod:1360 msgid "" "This is entirely independent of the standard B<${shlibs:Depends}> generated " "by L, and the B<${perl:Depends}> generated by " @@ -3105,12 +3033,12 @@ "corresponderem à realidade." #. type: =head2 -#: debhelper.pod:1413 +#: debhelper.pod:1365 msgid "Package build directories" msgstr "Directórios de compilação de pacotes" #. type: textblock -#: debhelper.pod:1415 +#: debhelper.pod:1367 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/I." @@ -3120,7 +3048,7 @@ "I." #. type: textblock -#: debhelper.pod:1418 +#: debhelper.pod:1370 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the B<-P> flag. For example, \"B" @@ -3139,13 +3067,13 @@ "programa debhelper irá actuar." #. type: =head2 -#: debhelper.pod:1426 +#: debhelper.pod:1378 msgid "udebs" msgstr "udebs" # FIXME : a udeb #. type: textblock -#: debhelper.pod:1428 +#: debhelper.pod:1380 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F. " @@ -3162,12 +3090,12 @@ "F, F, F, e F, etc." #. type: =head1 -#: debhelper.pod:1435 +#: debhelper.pod:1387 msgid "ENVIRONMENT" msgstr "AMBIENTE" #. type: textblock -#: debhelper.pod:1437 +#: debhelper.pod:1389 msgid "" "This section describes some of the environment variables that influences the " "behaviour of debhelper or which debhelper interacts with." @@ -3176,7 +3104,7 @@ "comportamento do debhelper ou de quem o debhelper interage." #. type: textblock -#: debhelper.pod:1440 +#: debhelper.pod:1392 msgid "" "It is important to note that these must be actual environment variables in " "order to affect the behaviour of debhelper (not simply F " @@ -3190,12 +3118,12 @@ "\"B\"" #. type: =item -#: debhelper.pod:1447 +#: debhelper.pod:1399 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1449 +#: debhelper.pod:1401 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." @@ -3205,12 +3133,12 @@ "detalhados para alguns sistemas de compilação como o autoconf." #. type: =item -#: debhelper.pod:1452 +#: debhelper.pod:1404 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1454 +#: debhelper.pod:1406 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 " @@ -3227,12 +3155,12 @@ "definido." #. type: =item -#: debhelper.pod:1461 +#: debhelper.pod:1413 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1463 +#: debhelper.pod:1415 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value specified via Build-Depends on debhelper-compat or via " @@ -3243,22 +3171,22 @@ "compat ou via ficheiro F." #. type: =item -#: debhelper.pod:1467 +#: debhelper.pod:1419 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1469 +#: debhelper.pod:1421 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:1471 +#: debhelper.pod:1423 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1473 +#: debhelper.pod:1425 msgid "" "All debhelper tools will parse command line arguments listed in this " "variable before any command option (as if they had been prepended to the " @@ -3272,7 +3200,7 @@ "variável e irão ignorar estes argumentos de linha de comandos." #. type: textblock -#: debhelper.pod:1478 +#: debhelper.pod:1430 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." @@ -3281,12 +3209,12 @@ "comando do debhelper, o que é geralmente melhor do que usar DH_OPTIONS." #. type: =item -#: debhelper.pod:1481 +#: debhelper.pod:1433 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1483 +#: debhelper.pod:1435 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 " @@ -3298,7 +3226,7 @@ "sua árvore de compilação do pacote." #. type: textblock -#: debhelper.pod:1487 +#: debhelper.pod:1439 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 " @@ -3316,7 +3244,7 @@ "seu é compilado." #. type: textblock -#: debhelper.pod:1494 +#: debhelper.pod:1446 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" @@ -3325,12 +3253,12 @@ "B" #. type: =item -#: debhelper.pod:1497 +#: debhelper.pod:1449 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1499 +#: debhelper.pod:1451 msgid "" "If set, this adds the specified dh addons to be run in the appropriate " "places in the sequence of commands. This is equivalent to specifying the " @@ -3344,7 +3272,7 @@ "ambiente não será executada." #. type: textblock -#: debhelper.pod:1504 +#: debhelper.pod:1456 msgid "" "This is intended to be used by downstreams or specific local configurations " "that require a debhelper addon to be run during multiple builds without " @@ -3358,12 +3286,12 @@ "uma bandeira --with no ficheiro rules." #. type: =item -#: debhelper.pod:1509 +#: debhelper.pod:1461 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1511 +#: debhelper.pod:1463 msgid "" "These variables can be used to control whether debhelper commands should use " "colors in their textual output. Can be set to \"always\", \"auto\" (the " @@ -3374,7 +3302,7 @@ "\", \"auto\" (a predefinição), ou \"never\"." #. type: textblock -#: debhelper.pod:1515 +#: debhelper.pod:1467 msgid "" "Note that B also affects a number of dpkg related tools and " "debhelper uses it on the assumption that you want the same color setting for " @@ -3389,12 +3317,12 @@ "a B." #. type: =item -#: debhelper.pod:1521 +#: debhelper.pod:1473 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1523 +#: debhelper.pod:1475 msgid "" "If no explicit request for color has been given (e.g. B and " "B are both unset), the presence of this environment variable " @@ -3405,7 +3333,7 @@ "ambiente faz com que a definição de cor predefinida seja \"never\"." #. type: textblock -#: debhelper.pod:1527 +#: debhelper.pod:1479 msgid "" "The variable is defined according to L. In this " "project, the environment variables (such as B) are considered an " @@ -3416,7 +3344,7 @@ "um requisito explícito para cor." #. type: =item -#: debhelper.pod:1531 +#: debhelper.pod:1483 msgid "" "B, B, B, B, B, " "B, B, B, B" @@ -3425,7 +3353,7 @@ "B, B, B, B" #. type: textblock -#: debhelper.pod:1533 +#: debhelper.pod:1485 msgid "" "By default (in any non-deprecated compat level), debhelper will " "automatically set these flags by using L, when they are " @@ -3443,12 +3371,12 @@ "variável concreta directamente." #. type: =item -#: debhelper.pod:1540 +#: debhelper.pod:1492 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1542 +#: debhelper.pod:1494 msgid "" "In compat 13 and later, these environment variables are reset before " "invoking the upstream build system via the B helpers. The " @@ -3465,7 +3393,7 @@ "(excepto para durante B) irão ser limpas." #. type: textblock -#: debhelper.pod:1548 +#: debhelper.pod:1500 msgid "" "The B directory will be created as an empty directory but it will be " "reused between calls to B. Any content will persist until " @@ -3476,12 +3404,12 @@ "até ser explicitamente apagado ou B." #. type: =item -#: debhelper.pod:1552 +#: debhelper.pod:1504 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1554 +#: debhelper.pod:1506 msgid "" "Please see L for this environment " "variable." @@ -3490,7 +3418,7 @@ "variável de ambiente." #. type: textblock -#: debhelper.pod:1557 +#: debhelper.pod:1509 msgid "" "Please note that this variable should I be altered by package " "maintainers inside F to change the behaviour of debhelper. " @@ -3505,12 +3433,12 @@ "sobrepor as ferramentas concretas)." #. type: =item -#: debhelper.pod:1562 +#: debhelper.pod:1514 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1564 +#: debhelper.pod:1516 msgid "" "This is a dpkg specific environment variable (see e.g. L). The debhelper tool suite silently ignores it." @@ -3519,7 +3447,7 @@ "buildflags(1)>). A suite de ferramentas do debhelper ignora-a em silêncio." #. type: textblock -#: debhelper.pod:1567 +#: debhelper.pod:1519 msgid "" "It is documented here because it has a similar name to B, " "which make some people mistakenly assume that debhelper will also react to " @@ -3530,12 +3458,12 @@ "reagir a esta variável." #. type: =head2 -#: debhelper.pod:1573 +#: debhelper.pod:1525 msgid "Supported flags in DEB_BUILD_OPTIONS" msgstr "Bandeiras suportadas em DEB_BUILD_OPTIONS" #. type: textblock -#: debhelper.pod:1575 +#: debhelper.pod:1527 msgid "" "The debhelper tool suite reacts to the following flags in " "B." @@ -3544,17 +3472,17 @@ "B." #. type: =item -#: debhelper.pod:1579 +#: debhelper.pod:1531 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1581 +#: debhelper.pod:1533 msgid "I" msgstr "I" #. type: textblock -#: debhelper.pod:1583 +#: debhelper.pod:1535 msgid "" "When B is present and set to B, then " "debhelper tools will promote deprecation warnings for usage of old soon to " @@ -3566,7 +3494,7 @@ "removidos." #. type: textblock -#: debhelper.pod:1587 +#: debhelper.pod:1539 msgid "" "This is useful for automated checking for code relying on deprecated compat " "levels that is scheduled for removal." @@ -3575,18 +3503,18 @@ "compatibilidade descontinuados que estão agendados para remoção." #. type: textblock -#: debhelper.pod:1590 +#: debhelper.pod:1542 msgid "This option is intended for testing purposes; not production builds." msgstr "" "Esta opção destina-se a objectivos de teste; não compilações produtivas." #. type: =item -#: debhelper.pod:1592 +#: debhelper.pod:1544 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1594 debhelper.pod:1617 +#: debhelper.pod:1546 debhelper.pod:1569 msgid "" "I" #. type: textblock -#: debhelper.pod:1598 +#: debhelper.pod:1550 msgid "" "This value will cause the official debhelper tools will skip actions and " "helpers that either remove, detach or deduplicate debugging symbols in ELF " @@ -3607,17 +3535,17 @@ "e ajudantes que ou removem, desanexam ou duplicam símbolos em binários ELF." #. type: textblock -#: debhelper.pod:1602 +#: debhelper.pod:1554 msgid "This value affects L and L." msgstr "Este valor afecta L e L." #. type: =item -#: debhelper.pod:1604 +#: debhelper.pod:1556 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1606 +#: debhelper.pod:1558 msgid "" "This value will cause the official debhelper build systems to skip runs of " "upstream test suites." @@ -3626,7 +3554,7 @@ "saltem execuções de suites de testes do autor original." #. type: textblock -#: debhelper.pod:1609 +#: debhelper.pod:1561 msgid "" "Package maintainers looking to avoid running the upstream tests should " "B rely on this. Instead, they can add an empty override target to skip " @@ -3637,17 +3565,17 @@ "sobreposição vazio para saltar o B." #. type: textblock -#: debhelper.pod:1613 +#: debhelper.pod:1565 msgid "This value affects L." msgstr "Este valor afecta L." #. type: =item -#: debhelper.pod:1615 +#: debhelper.pod:1567 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1621 +#: debhelper.pod:1573 msgid "" "This value will cause several debhelper tools to skip installation of " "documentation such as manpages or upstream provided documentation. " @@ -3661,7 +3589,7 @@ "foi compilada." #. type: textblock -#: debhelper.pod:1626 +#: debhelper.pod:1578 msgid "" "This value effects tools I L, which I it is " "working with documentation." @@ -3670,12 +3598,12 @@ "que estão a trabalhar com documentação." #. type: =item -#: debhelper.pod:1629 +#: debhelper.pod:1581 msgid "B, B" msgstr "B, B" #. type: textblock -#: debhelper.pod:1631 +#: debhelper.pod:1583 msgid "" "I" @@ -3684,7 +3612,7 @@ "históricas.>" #. type: textblock -#: debhelper.pod:1634 +#: debhelper.pod:1586 msgid "" "This value causes debhelper to skip the generation of automatically " "generated debug symbol packages." @@ -3693,17 +3621,17 @@ "depuração gerados automaticamente." #. type: textblock -#: debhelper.pod:1637 +#: debhelper.pod:1589 msgid "This value affects L." msgstr "Este valor afecta L." #. type: =item -#: debhelper.pod:1639 +#: debhelper.pod:1591 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1641 +#: debhelper.pod:1593 msgid "" "This value enables debhelper to use up to B threads or processes (subject " "to parameters like B<--no-parallel> and B<--max-parallel=M>). Not all " @@ -3715,7 +3643,7 @@ "ignorar o pedido em silêncio." #. type: textblock -#: debhelper.pod:1646 +#: debhelper.pod:1598 msgid "" "This value affects many debhelper tools. Most notably B, which " "will attempt to run the underlying upstream build system with that number of " @@ -3726,12 +3654,12 @@ "autor com esse número de linhas de execução." #. type: =item -#: debhelper.pod:1650 +#: debhelper.pod:1602 msgid "B" msgstr "B" #. type: textblock -#: debhelper.pod:1652 +#: debhelper.pod:1604 msgid "" "This value will cause the official debhelper build systems to configure " "upstream builds to be terse (i.e. reduce verbosity in their output). This " @@ -3744,17 +3672,17 @@ "compilação do autor e do debhelper suportem tais funcionalidades." #. type: textblock -#: debhelper.pod:1657 +#: debhelper.pod:1609 msgid "This value affects most B tools." msgstr "Este valor afecta a maioria das ferramentas B." #. type: textblock -#: debhelper.pod:1661 +#: debhelper.pod:1613 msgid "Unknown flags are silently ignored." msgstr "Bandeiras desconhecidas são ignoradas em silêncio." #. type: textblock -#: debhelper.pod:1663 +#: debhelper.pod:1615 msgid "" "Note third-party debhelper-like tools or third-party provided build systems " "may or may not react to the above flags. This tends to depend on " @@ -3765,13 +3693,13 @@ "depender dos detalhes de implementação da ferramenta." #. type: =head1 -#: debhelper.pod:1667 debhelper-obsolete-compat.pod:118 dh:807 dh_auto_build:53 -#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:103 dh_auto_test:64 -#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:162 -#: dh_fixperms:164 dh_gencontrol:208 dh_icons:75 dh_install:377 +#: debhelper.pod:1619 debhelper-obsolete-compat.pod:118 dh:733 dh_auto_build:53 +#: dh_auto_clean:55 dh_auto_configure:58 dh_auto_install:97 dh_auto_test:64 +#: dh_bugfiles:133 dh_builddeb:182 dh_clean:189 dh_compress:242 dh_dwz:161 +#: dh_fixperms:164 dh_gconf:105 dh_gencontrol:208 dh_icons:75 dh_install:377 #: dh_installcatalogs:128 dh_installchangelogs:300 dh_installcron:78 -#: dh_installdeb:436 dh_installdebconf:128 dh_installdirs:131 -#: dh_installdocs:437 dh_installemacsen:138 dh_installexamples:178 +#: dh_installdeb:412 dh_installdebconf:128 dh_installdirs:131 +#: dh_installdocs:454 dh_installemacsen:138 dh_installexamples:178 #: dh_installifupdown:72 dh_installinfo:123 dh_installinit:430 #: dh_installinitramfs:91 dh_installlogcheck:81 dh_installlogrotate:53 #: dh_installman:417 dh_installmanpages:198 dh_installmenu:88 dh_installmime:63 @@ -3779,54 +3707,55 @@ #: dh_installwm:132 dh_installxfonts:90 dh_link:166 dh_lintian:60 #: dh_listpackages:34 dh_makeshlibs:456 dh_md5sums:118 dh_movefiles:161 #: dh_perl:174 dh_prep:70 dh_shlibdeps:204 dh_strip:435 dh_testdir:62 -#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:279 +#: dh_testroot:93 dh_usrlocal:136 dh_systemd_enable:281 dh_systemd_start:280 msgid "SEE ALSO" msgstr "VEJA TAMBÉM" #. type: =item -#: debhelper.pod:1671 +#: debhelper.pod:1623 msgid "F" msgstr "F" #. type: textblock -#: debhelper.pod:1673 +#: debhelper.pod:1625 msgid "A set of example F files that use debhelper." msgstr "Um conjunto de ficheiros F exemplo que usam debhelper." #. type: =item -#: debhelper.pod:1675 +#: debhelper.pod:1627 msgid "L" msgstr "L" #. type: textblock -#: debhelper.pod:1677 +#: debhelper.pod:1629 msgid "Debhelper web site." msgstr "Sítio web do debhelper." #. type: =head1 -#: debhelper.pod:1681 dh:813 dh_auto_build:59 dh_auto_clean:61 -#: dh_auto_configure:64 dh_auto_install:109 dh_auto_test:70 dh_bugfiles:141 -#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:168 dh_fixperms:170 -#: dh_gencontrol:214 dh_icons:81 dh_install:383 dh_installcatalogs:134 -#: dh_installchangelogs:306 dh_installcron:84 dh_installdeb:442 -#: dh_installdebconf:134 dh_installdirs:137 dh_installdocs:443 -#: dh_installemacsen:145 dh_installexamples:184 dh_installifupdown:78 -#: dh_installinfo:129 dh_installinitramfs:99 dh_installlogcheck:87 -#: dh_installlogrotate:59 dh_installman:423 dh_installmanpages:204 -#: dh_installmenu:96 dh_installmime:69 dh_installmodules:115 dh_installpam:68 -#: dh_installppp:74 dh_installudev:108 dh_installwm:138 dh_installxfonts:96 -#: dh_link:172 dh_lintian:68 dh_listpackages:40 dh_makeshlibs:462 -#: dh_md5sums:124 dh_movefiles:167 dh_perl:180 dh_prep:76 dh_shlibdeps:210 -#: dh_strip:441 dh_testdir:68 dh_testroot:99 dh_usrlocal:142 +#: debhelper.pod:1633 dh:739 dh_auto_build:59 dh_auto_clean:61 +#: dh_auto_configure:64 dh_auto_install:103 dh_auto_test:70 dh_bugfiles:141 +#: dh_builddeb:188 dh_clean:195 dh_compress:248 dh_dwz:167 dh_fixperms:170 +#: dh_gconf:111 dh_gencontrol:214 dh_icons:81 dh_install:383 +#: dh_installcatalogs:134 dh_installchangelogs:306 dh_installcron:84 +#: dh_installdeb:418 dh_installdebconf:134 dh_installdirs:137 +#: dh_installdocs:460 dh_installemacsen:145 dh_installexamples:184 +#: dh_installifupdown:78 dh_installinfo:129 dh_installinitramfs:99 +#: dh_installlogcheck:87 dh_installlogrotate:59 dh_installman:423 +#: dh_installmanpages:204 dh_installmenu:96 dh_installmime:69 +#: dh_installmodules:115 dh_installpam:68 dh_installppp:74 dh_installudev:108 +#: dh_installwm:138 dh_installxfonts:96 dh_link:172 dh_lintian:68 +#: dh_listpackages:40 dh_makeshlibs:462 dh_md5sums:124 dh_movefiles:167 +#: dh_perl:180 dh_prep:76 dh_shlibdeps:210 dh_strip:441 dh_testdir:68 +#: dh_testroot:99 dh_usrlocal:142 msgid "AUTHOR" msgstr "AUTOR" #. type: textblock -#: debhelper.pod:1683 dh:815 dh_auto_build:61 dh_auto_clean:63 -#: dh_auto_configure:66 dh_auto_install:111 dh_auto_test:72 dh_builddeb:190 +#: debhelper.pod:1635 dh:741 dh_auto_build:61 dh_auto_clean:63 +#: dh_auto_configure:66 dh_auto_install:105 dh_auto_test:72 dh_builddeb:190 #: dh_clean:197 dh_compress:250 dh_fixperms:172 dh_gencontrol:216 -#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:444 -#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:445 +#: dh_install:385 dh_installchangelogs:308 dh_installcron:86 dh_installdeb:420 +#: dh_installdebconf:136 dh_installdirs:139 dh_installdocs:462 #: dh_installemacsen:147 dh_installexamples:186 dh_installifupdown:80 #: dh_installinfo:131 dh_installinit:438 dh_installlogrotate:61 #: dh_installman:425 dh_installmanpages:206 dh_installmenu:98 dh_installmime:71 @@ -4024,30 +3953,30 @@ "B resulta em erro se as \"wildcards\" expandirem para nada." #. type: textblock -#: debhelper-obsolete-compat.pod:120 dh:809 dh_auto_build:55 dh_auto_clean:57 -#: dh_auto_configure:60 dh_auto_install:105 dh_auto_test:66 dh_builddeb:184 -#: dh_clean:191 dh_compress:244 dh_dwz:164 dh_fixperms:166 dh_gencontrol:210 -#: dh_install:379 dh_installcatalogs:130 dh_installchangelogs:302 -#: dh_installcron:80 dh_installdeb:438 dh_installdebconf:130 dh_installdirs:133 -#: dh_installdocs:439 dh_installexamples:180 dh_installifupdown:74 -#: dh_installinfo:125 dh_installlogcheck:83 dh_installlogrotate:55 -#: dh_installman:419 dh_installmanpages:200 dh_installmime:65 -#: dh_installmodules:111 dh_installpam:64 dh_installppp:70 dh_installudev:104 -#: dh_installwm:134 dh_installxfonts:92 dh_link:168 dh_listpackages:36 -#: dh_makeshlibs:458 dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 -#: dh_strip:437 dh_testdir:64 dh_testroot:95 dh_usrlocal:138 -#: dh_systemd_start:281 +#: debhelper-obsolete-compat.pod:120 dh:735 dh_auto_build:55 dh_auto_clean:57 +#: dh_auto_configure:60 dh_auto_install:99 dh_auto_test:66 dh_builddeb:184 +#: dh_clean:191 dh_compress:244 dh_dwz:163 dh_fixperms:166 dh_gconf:107 +#: dh_gencontrol:210 dh_install:379 dh_installcatalogs:130 +#: dh_installchangelogs:302 dh_installcron:80 dh_installdeb:414 +#: dh_installdebconf:130 dh_installdirs:133 dh_installdocs:456 +#: dh_installexamples:180 dh_installifupdown:74 dh_installinfo:125 +#: dh_installlogcheck:83 dh_installlogrotate:55 dh_installman:419 +#: dh_installmanpages:200 dh_installmime:65 dh_installmodules:111 +#: dh_installpam:64 dh_installppp:70 dh_installudev:104 dh_installwm:134 +#: dh_installxfonts:92 dh_link:168 dh_listpackages:36 dh_makeshlibs:458 +#: dh_md5sums:120 dh_movefiles:163 dh_perl:176 dh_prep:72 dh_strip:437 +#: dh_testdir:64 dh_testroot:95 dh_usrlocal:138 dh_systemd_start:282 msgid "L" msgstr "L" #. type: =head1 #: debhelper-obsolete-compat.pod:122 dh_installinit:436 dh_systemd_enable:285 -#: dh_systemd_start:283 +#: dh_systemd_start:284 msgid "AUTHORS" msgstr "AUTORES" #. type: textblock -#: debhelper-obsolete-compat.pod:124 dh_dwz:170 dh_installinitramfs:101 +#: debhelper-obsolete-compat.pod:124 dh_dwz:169 dh_installinitramfs:101 msgid "Niels Thykier " msgstr "Niels Thykier " @@ -4568,10 +4497,10 @@ #. type: =head1 #: dh:216 dh_auto_build:32 dh_auto_clean:33 dh_auto_configure:35 -#: dh_auto_install:52 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 -#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gencontrol:38 dh_icons:33 -#: dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 -#: dh_installcron:43 dh_installdeb:107 dh_installdebconf:64 dh_installdirs:45 +#: dh_auto_install:46 dh_auto_test:34 dh_bugfiles:53 dh_builddeb:34 dh_clean:49 +#: dh_compress:52 dh_dwz:26 dh_fixperms:40 dh_gconf:42 dh_gencontrol:38 +#: dh_icons:33 dh_install:69 dh_installcatalogs:56 dh_installchangelogs:71 +#: dh_installcron:43 dh_installdeb:100 dh_installdebconf:64 dh_installdirs:45 #: dh_installdocs:100 dh_installemacsen:56 dh_installexamples:44 #: dh_installifupdown:42 dh_installinfo:41 dh_installinit:78 #: dh_installinitramfs:43 dh_installlogcheck:45 dh_installlogrotate:25 @@ -5119,164 +5048,11 @@ #. type: =head1 #: dh:424 -#, fuzzy -#| msgid "DEBHELPER COMMANDS" -msgid "DEBHELPER PROVIDED DH ADDONS" -msgstr "COMANDOS DO DEBHELPER" - -#. type: textblock -#: dh:426 -msgid "" -"The primary purpose of B addons is to provide easy integration with " -"third-party provided features for debhelper. However, debhelper itself also " -"provide a few sequences that can be useful in some cases. These are " -"documented in this list:" -msgstr "" - -#. type: =item -#: dh:433 -msgid "build-stamp" -msgstr "" - -#. type: textblock -#: dh:435 -msgid "" -"A special addon for controlling whether B (in compat 10 or later) will " -"create stamp files to tell whether the build target has been run " -"successfully. See L for more details." -msgstr "" - -#. type: textblock -#: dh:439 -#, fuzzy -#| msgid "The previous behaviour can restored by using B<--with build-stamp>" -msgid "" -"This addon is active by default but can disabled by using B" -msgstr "" -"O comportamento anterior pode ser restaurado ao usar B<--with build-stamp>" - -#. type: =item -#: dh:442 -msgid "dwz (obsolete)" -msgstr "" - -#. type: textblock -#: dh:444 -msgid "" -"Adds L to the sequence in compat level 11 or below. Obsolete in " -"compat 12 or later." -msgstr "" - -#. type: =item -#: dh:447 -msgid "elf-tools" -msgstr "" - -#. type: textblock -#: dh:449 -msgid "" -"This addon adds tools related to ELF files to the sequence such as " -"L and L" -msgstr "" - -#. type: textblock -#: dh:452 -msgid "" -"This addon is I active by default for architecture specific " -"packages - that is, it is skipped for arch:all packages. In the special " -"case where you need these tools to work on arch:all packages, you can use " -"B<--with elf-tools> to activate it unconditionally." -msgstr "" - -#. type: =item -#: dh:458 -msgid "installinitramfs (obsolete)" -msgstr "" - -#. type: textblock -#: dh:460 -msgid "" -"Adds L to the sequence in compat level 11 or below. " -"Obsolete in compat 12 or later." -msgstr "" - -#. type: =item -#: dh:463 -msgid "root-sequence (internal)" -msgstr "" - -#. type: textblock -#: dh:465 -msgid "This is reserved for internal usage." -msgstr "" - -#. type: =item -#: dh:467 -msgid "single-binary" -msgstr "" - -#. type: textblock -#: dh:469 -msgid "" -"A special-purpose addon that makes debhelper run in \"single binary\" mode." -msgstr "" - -#. type: textblock -#: dh:471 -msgid "" -"When active, it will pass B<< --destdir=debian/I/ >> to " -"L. This makes every file \"installed\" by the upstream " -"build system part of the (only) binary package by default without having to " -"use other helpers such as L." -msgstr "" - -#. type: textblock -#: dh:476 -msgid "" -"The addon will refuse to activate when the source package lists 2 or more " -"binary packages in F as a precaution." -msgstr "" - -#. type: textblock -#: dh:479 -msgid "" -"Before compat 15. this behaviour was the default when there was only a " -"single binary package listed in F. In compat 15 and later, " -"this addon must explicitly be activated for this feature to work." -msgstr "" - -#. type: textblock -#: dh:483 -msgid "" -"The rationale for requiring this as an explicit choice is that if it is " -"implicit then debhelper will silently change behaviour on adding a new " -"binary package. This has caused many RC bugs when maintainers renamed a " -"binary and added transitional packages with the intention of supporting " -"seamless upgrades. The result would often be two empty binary packages that " -"were uploaded to archive with users frustrated as their \"upgrade\" removed " -"their programs." -msgstr "" - -#. type: =item -#: dh:491 -msgid "systemd (obsolete)" -msgstr "" - -#. type: textblock -#: dh:493 -msgid "" -"Adds L and L to the sequence in " -"compat level 10 or below. Obsolete in compat 11 or later." -msgstr "" - -#. type: =head1 -#: dh:498 msgid "INTERNALS" msgstr "INTERNOS" #. type: textblock -#: dh:500 +#: dh:426 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." @@ -5285,7 +5061,7 @@ "funciona por baixo da capota." #. type: textblock -#: dh:502 +#: dh:428 msgid "" "In compat 10 (or later), B creates a stamp file F after the build step(s) are complete to avoid re-running them. It is " @@ -5303,7 +5079,7 @@ "(a segunda vez como root ou sob L)." #. type: textblock -#: dh:510 +#: dh:436 msgid "" "Inside an override target, B commands will create a log file F to keep track of which packages the command(s) have " @@ -5317,7 +5093,7 @@ "completo." #. type: textblock -#: dh:515 +#: dh:441 msgid "" "In compat 9 or earlier, each debhelper command will record when it's " "successfully run in F. (Which B " @@ -5330,7 +5106,7 @@ "foram corridos, para quais pacotes, e evita correr esses comandos de novo." #. type: textblock -#: dh:520 +#: dh:446 msgid "" "Each time B is run (in compat 9 or earlier), it examines the log, and " "finds the last logged command that is in the specified sequence. It then " @@ -5341,7 +5117,7 @@ "sequência especificada. Depois continua com o próximo comando da sequência." #. type: textblock -#: dh:524 +#: dh:450 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." @@ -5350,7 +5126,7 @@ "exemplo, a sequência \"binary\" corre o alvo \"install\"." #. type: textblock -#: dh:527 +#: dh:453 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -5363,7 +5139,7 @@ "ambiente. como o nome sugere, está sujeito a alterações em qualquer altura." #. type: textblock -#: dh:532 +#: dh:458 msgid "" "Commands in the B, B and B " "sequences are passed the B<-i> option to ensure they only work on " @@ -5378,12 +5154,12 @@ "assegurar que eles apenas trabalham em pacotes dependentes da arquitectura." #. type: textblock -#: dh:811 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 -#: dh_auto_install:107 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 -#: dh_clean:193 dh_compress:246 dh_dwz:166 dh_fixperms:168 dh_gencontrol:212 -#: dh_icons:79 dh_install:381 dh_installchangelogs:304 dh_installcron:82 -#: dh_installdeb:440 dh_installdebconf:132 dh_installdirs:135 -#: dh_installdocs:441 dh_installemacsen:143 dh_installexamples:182 +#: dh:737 dh_auto_build:57 dh_auto_clean:59 dh_auto_configure:62 +#: dh_auto_install:101 dh_auto_test:68 dh_bugfiles:139 dh_builddeb:186 +#: dh_clean:193 dh_compress:246 dh_dwz:165 dh_fixperms:168 dh_gconf:109 +#: dh_gencontrol:212 dh_icons:79 dh_install:381 dh_installchangelogs:304 +#: dh_installcron:82 dh_installdeb:416 dh_installdebconf:132 dh_installdirs:135 +#: dh_installdocs:458 dh_installemacsen:143 dh_installexamples:182 #: dh_installifupdown:76 dh_installinfo:127 dh_installinit:434 #: dh_installinitramfs:97 dh_installlogrotate:57 dh_installman:421 #: dh_installmanpages:202 dh_installmenu:94 dh_installmime:67 @@ -5437,7 +5213,7 @@ "executar o processo de compilação manualmente." #. type: textblock -#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:54 +#: dh_auto_build:34 dh_auto_clean:35 dh_auto_configure:37 dh_auto_install:48 #: dh_auto_test:36 msgid "" "See L> for a list of common build " @@ -5447,7 +5223,7 @@ "sistemas de compilação comuns e opções de controle." #. type: =item -#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:65 +#: dh_auto_build:39 dh_auto_clean:40 dh_auto_configure:42 dh_auto_install:59 #: dh_auto_test:41 dh_builddeb:48 dh_dwz:62 dh_gencontrol:42 #: dh_installdebconf:72 dh_installinit:167 dh_makeshlibs:179 dh_shlibdeps:41 msgid "B<--> I" @@ -5619,28 +5395,11 @@ #. type: textblock #: dh_auto_install:32 msgid "" -"In compat 15 or later, B will use F as the " -"default B<--destdir> and should be moved from there to the appropriate " -"package build directory using L or similar tools. Though if " -"the B addon for L is activated, then it will pass an " -"explicit B<< --destdir=debian/I/ >> to B." -msgstr "" - -#. type: textblock -#: dh_auto_install:38 -#, fuzzy -#| msgid "" -#| "Unless B<--destdir> option is specified, the files are installed into " -#| "debian/I/ if there is only one binary package. In the multiple " -#| "binary package case, the files are instead installed into F, " -#| "and should be moved from there to the appropriate package build directory " -#| "using L." -msgid "" -"For earlier compat levels then unless B<--destdir> option is specified, the " -"files are installed into debian/I/ if there is only one binary " -"package. In the multiple binary package case, the files are instead " -"installed into F, and should be moved from there to the " -"appropriate package build directory using L or similar tools." +"Unless B<--destdir> option is specified, the files are installed into debian/" +"I/ if there is only one binary package. In the multiple binary " +"package case, the files are instead installed into F, and " +"should be moved from there to the appropriate package build directory using " +"L." msgstr "" "A menos que a opção B<--destdir> seja especificada, os ficheiros são " "instalados e, debian/I/ se existir apenas um pacote binário. No caso " @@ -5649,7 +5408,7 @@ "compilação de pacote usando o L." #. type: textblock -#: dh_auto_install:44 +#: dh_auto_install:38 msgid "" "B is used to tell make where to install the files. If the Makefile " "was generated by MakeMaker from a F, it will automatically set " @@ -5661,7 +5420,7 @@ "disso." #. type: textblock -#: dh_auto_install:48 +#: dh_auto_install:42 msgid "" "This is intended to work for about 90% of packages. If it doesn't work, or " "tries to use the wrong install target, you're encouraged to skip using " @@ -5672,12 +5431,12 @@ "não usar o B, e correr o make install manualmente." #. type: =item -#: dh_auto_install:59 dh_builddeb:38 +#: dh_auto_install:53 dh_builddeb:38 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" #. type: textblock -#: dh_auto_install:61 +#: dh_auto_install:55 msgid "" "Install files into the specified I. If this option is not " "specified, destination directory is determined automatically as described in " @@ -5688,7 +5447,7 @@ "descrito na secção L>" #. type: textblock -#: dh_auto_install:67 +#: dh_auto_install:61 msgid "" "Pass I to the program that is run, after the parameters that " "B usually passes." @@ -5785,7 +5544,7 @@ "compilação de pacotes." #. type: =head1 -#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_install:40 +#: dh_bugfiles:25 dh_clean:33 dh_compress:35 dh_gconf:26 dh_install:40 #: dh_installcatalogs:39 dh_installchangelogs:47 dh_installcron:24 #: dh_installdeb:25 dh_installdebconf:37 dh_installdirs:28 dh_installdocs:40 #: dh_installemacsen:30 dh_installexamples:31 dh_installifupdown:25 @@ -6036,7 +5795,7 @@ "barra final. Qualquer conteúdo nestes directórios será também removido." #. type: textblock -#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:102 +#: dh_clean:44 dh_install:59 dh_installcatalogs:51 dh_installdeb:95 #: dh_installdirs:40 dh_installdocs:48 dh_installexamples:39 dh_installinfo:36 #: dh_installman:81 dh_installwm:36 dh_link:64 msgid "" @@ -6436,6 +6195,86 @@ "várias vezes para construir uma lista de coisas a excluir." #. type: textblock +#: dh_gconf:5 +msgid "" +"dh_gconf - install GConf defaults files and register schemas (deprecated)" +msgstr "" +"dh_gconf - instala ficheiros de predefinições GConf e regista schemas " +"(descontinuado)" + +#. type: textblock +#: dh_gconf:17 +msgid "B [S>] [B<--priority=>I]" +msgstr "B [S>] [B<--priority=>I]" + +#. type: textblock +#: dh_gconf:21 +msgid "" +"B is a debhelper program that is responsible for installing GConf " +"defaults files and registering GConf schemas." +msgstr "" +"B é um programa debhelper que é responsável por instalar ficheiros " +"de predefinições de GConf e registar os esquemas GConf." + +#. type: textblock +#: dh_gconf:24 +msgid "" +"An appropriate dependency on gconf2 will be generated in B<${misc:Depends}>." +msgstr "" +"Uma dependência apropriada em gconf2 será gerada em B<${misc:Depends}>." + +#. type: =item +#: dh_gconf:30 +msgid "debian/I.gconf-defaults" +msgstr "debian/I.gconf-defaults" + +#. type: textblock +#: dh_gconf:32 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Instalado em F no directório de " +"compilação do pacote, com I substituído pelo nome do pacote." + +#. type: =item +#: dh_gconf:35 +msgid "debian/I.gconf-mandatory" +msgstr "debian/I.gconf-mandatory" + +#. type: textblock +#: dh_gconf:37 +msgid "" +"Installed into F in the package build " +"directory, with I replaced by the package name." +msgstr "" +"Instalado em F no directório de " +"compilação do pacote, com I substituído pelo nome do pacote." + +#. type: =item +#: dh_gconf:46 +msgid "B<--priority> I" +msgstr "B<--priority> I" + +#. type: textblock +#: dh_gconf:48 +msgid "" +"Use I (which should be a 2-digit number) as the defaults priority " +"instead of B<10>. Higher values than ten can be used by derived " +"distributions (B<20>), CDD distributions (B<50>), or site-specific packages " +"(B<90>)." +msgstr "" +"Usa I (que deve ser um número de dois dígitos) como a prioridade " +"predefinida em vez de B<10>. Valores mais altos que dez podem ser usados por " +"distribuições derivadas (B<20>), distribuições CDD (B<50>), ou pacotes " +"específicos de site (B<90>)." + +#. type: textblock +#: dh_gconf:113 +msgid "Ross Burton Josselin Mouette " +msgstr "Ross Burton Josselin Mouette " + +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - gera e instala ficheiro de controle" @@ -7368,18 +7207,25 @@ #. type: textblock #: dh_installdeb:59 msgid "" -"This file will be installed into the F directory. The provided file " -"will be enriched by debhelper to include all the B auto-detected " -"by debhelper (the maintainer should not list there as debhelper assumes it " -"should handle that part)." +"Historically, this file was needed to manually mark files files as " +"conffiles. However, it has become de facto obsolete since debhelper " +"automatically computed which files should be marked as conffiles." msgstr "" +"Historicamente, este ficheiro era preciso para marcar manualmente ficheiros " +"como ficheiros de configuração (conffiles). No entanto, tem-se tornado de " +"facto obsoleto desde que o debhelper passou a computar automaticamente quais " +"os ficheiros devem ser marcados como ficheiros de configuração." #. type: textblock -#: dh_installdeb:64 +#: dh_installdeb:63 msgid "" -"This file is primarily useful for using \"special\" entries such as the B<< " -"remove-on-upgrade >> feature from dpkg." +"In compatibility level up and including 11, this control file will be " +"installed into the F directory. In compatibility level 12 and " +"later, the file is silently ignored." msgstr "" +"Em nível de compatibilidade até e incluindo 11, este ficheiro de controle " +"será instalado no directório F. Em nível de compatibilidade 12 e " +"posterior, o ficheiro é ignorado em silêncio." #. type: =item #: dh_installdeb:67 @@ -7456,23 +7302,13 @@ "activada como um aviso desde compatibilidade 10 e como um erro a resolver na " "compatibilidade 12." -#. type: textblock -#: dh_installdeb:95 -msgid "" -"Where possible, B may choose to rewrite some or all of the " -"entries into equivalent features supported in dpkg without relying on " -"maintainer scripts at its sole discretion (examples include rewriting " -"B into dpkg's B). The minimum requirement " -"for activating this feature is that debhelper runs in compat 10 or later." -msgstr "" - #. type: =item -#: dh_installdeb:111 +#: dh_installdeb:104 msgid "B<-D>I, B<--define> I" msgstr "B<-D>I, B<--define> I" #. type: textblock -#: dh_installdeb:113 +#: dh_installdeb:106 msgid "" "Define tokens to be replaced inside the maintainer scripts when it is " "generated. Please note that the limitations described in L# >> to be " "replaced by I. If I starts with a literal I<@>-sign, then " @@ -7498,7 +7334,7 @@ "a inserir." #. type: textblock -#: dh_installdeb:123 +#: dh_installdeb:116 msgid "" "An explicit declared token with this parameter will replace built-in tokens." msgstr "" @@ -7506,12 +7342,12 @@ "embutidos." #. type: textblock -#: dh_installdeb:126 +#: dh_installdeb:119 msgid "Test examples to aid with the understanding:" msgstr "Exemplos de testes para ajuda na compreensão:" #. type: verbatim -#: dh_installdeb:128 +#: dh_installdeb:121 #, no-wrap msgid "" "\tcat >> debian/postinst < will expand to B and B<#FILEBASED#> " "will expand to B." @@ -7540,7 +7376,7 @@ "expandir para B." #. type: textblock -#: dh_installdeb:138 +#: dh_installdeb:131 msgid "" "It is also possible to set package-specific values for a given token. This " "is useful when B is acting on multiple packages that need " @@ -7553,12 +7389,12 @@ "o nome do token com B<< pkg.I. >>." #. type: textblock -#: dh_installdeb:143 +#: dh_installdeb:136 msgid "This can be used as in the following example:" msgstr "Isto pode ser usado como no exemplo seguinte:" #. type: verbatim -#: dh_installdeb:145 +#: dh_installdeb:138 #, no-wrap msgid "" "\tcat >> debian/foo.postinst < will expand to B in F, to B in F and to B em F." #. type: textblock -#: dh_installdeb:164 +#: dh_installdeb:157 msgid "" "Note that the B<#pkg.*#> tokens will be visible in all scripts acted on. E." "g. you can refer to B<#pkg.bar.TOKEN#> inside F and it " @@ -7616,12 +7452,12 @@ "postinst> e ele será substituído por B." #. type: =head1 -#: dh_installdeb:170 +#: dh_installdeb:163 msgid "SUBSTITUTION IN MAINTAINER SCRIPTS" msgstr "SUBSTITUIÇÃO EM SCRIPTS DE MAINTAINER" #. type: textblock -#: dh_installdeb:172 +#: dh_installdeb:165 msgid "" "The B will automatically replace the following tokens inside " "a provided maintainer script (if not replaced via B<-D>/B<--define>):" @@ -7631,12 +7467,12 @@ "D>/B<--define>):" #. type: =item -#: dh_installdeb:177 +#: dh_installdeb:170 msgid "#DEBHELPER#" msgstr "#DEBHELPER#" #. type: textblock -#: dh_installdeb:179 +#: dh_installdeb:172 msgid "" "This token is by default replaced with generated shell snippets debhelper " "commands. This includes the snippets generated by B from " @@ -7647,12 +7483,12 @@ "partir do ficheiro I.maintscript (se presente)." #. type: =item -#: dh_installdeb:183 +#: dh_installdeb:176 msgid "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" msgstr "#DEB_HOST_I#, #DEB_BUILD_I#, #DEB_TARGET_I#" #. type: textblock -#: dh_installdeb:185 +#: dh_installdeb:178 msgid "" "These tokens are replaced with the respective variable from L. In almost all cases, you will want use the B<< " @@ -7665,7 +7501,7 @@ "correcto quando faz compilação cruzada." #. type: textblock -#: dh_installdeb:190 +#: dh_installdeb:183 msgid "" "On a best effort, tokens of this pattern that do not match a variable in " "L will be left as-is." @@ -7674,12 +7510,12 @@ "variável em L serão deixá-dos como estão." #. type: =item -#: dh_installdeb:193 +#: dh_installdeb:186 msgid "#ENV.I#" msgstr "#ENV.I#" #. type: textblock -#: dh_installdeb:195 +#: dh_installdeb:188 msgid "" "These tokens of this form will be replaced with value of the corresponding " "environment variable. If the environment variable is unset, the token is " @@ -7690,7 +7526,7 @@ "token é substituído pela string vazia." #. type: textblock -#: dh_installdeb:200 +#: dh_installdeb:193 msgid "" "Note that there are limits on which names can be used (see L)." @@ -7699,12 +7535,12 @@ "nos nomes dos token>)." #. type: =item -#: dh_installdeb:203 +#: dh_installdeb:196 msgid "#PACKAGE#" msgstr "#PACKAGE#" #. type: textblock -#: dh_installdeb:205 +#: dh_installdeb:198 msgid "" "This token is by default replaced by the package name, which will contain " "the concrete script." @@ -7713,12 +7549,12 @@ "conter o script concreto." #. type: =head2 -#: dh_installdeb:210 +#: dh_installdeb:203 msgid "Limitations in token names" msgstr "Limitações nos nomes dos token" #. type: textblock -#: dh_installdeb:212 +#: dh_installdeb:205 msgid "" "All tokens intended to be substituted must match the regex: #[A-Za-z0-9_.+]+#" msgstr "" @@ -7726,7 +7562,7 @@ "regex: #[A-Za-z0-9_.+]+#" #. type: textblock -#: dh_installdeb:214 +#: dh_installdeb:207 msgid "" "Tokens that do not match that regex will be silently ignored if found in the " "script template. Invalid token names passed to B<-D> or B<--define> will " @@ -8891,12 +8727,11 @@ #. type: textblock #: dh_installinit:67 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> in the package build directory. Only used in compat levels 10 and " -"below." +"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 "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.service >> " -"no directório de compilação do pacote. Apenas usado nos níveis de " +"Se isto existir, é instalado em lib/systemd/system/I.service no " +"directório de compilação do pacote. Apenas usado nos níveis de " "compatibilidade 10 e inferiores." #. type: =item @@ -12133,13 +11968,12 @@ #. type: textblock #: dh_systemd_enable:47 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"service >> (or F<< lib/systemd/system/I@.service >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.service " +"(or lib/systemd/system/I@.service) in the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.service >> " -"(or F<< lib/systemd/system/I@.service >>) no directório de " -"compilação do pacote." +"Se isto existir, é instalado em lib/systemd/system/I.service (or " +"lib/systemd/system/I@.service) no directório de compilação do " +"pacote." #. type: textblock #: dh_systemd_enable:52 @@ -12160,13 +11994,11 @@ #. type: textblock #: dh_systemd_enable:58 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"target >> (or F<< lib/systemd/system/I@.target >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.target " +"(or lib/systemd/system/I@.target) in the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.target >> " -"(ou F<< lib/systemd/system/I@.target >>) no directório de " -"compilação do pacote." +"Se isto existir, é instalado em lib/systemd/system/I.target (ou lib/" +"systemd/system/I@.target) no directório de compilação do pacote." #. type: =item #: dh_systemd_enable:61 @@ -12176,13 +12008,11 @@ #. type: textblock #: dh_systemd_enable:63 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I." -"socket >> (or F<< lib/systemd/system/I@.socket >>) in the package " -"build directory." +"If this exists, it is installed into lib/systemd/system/I.socket " +"(or lib/systemd/system/I@.socket) in the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.socket >> " -"(ou F<< lib/systemd/system/I@.socket >>) no directório de " -"compilação do pacote." +"Se isto existir, é instalado em lib/systemd/system/I.socket (ou lib/" +"systemd/system/I@.socket) no directório de compilação do pacote." #. type: =item #: dh_systemd_enable:66 @@ -12192,10 +12022,10 @@ #. type: textblock #: dh_systemd_enable:68 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.mount " -">> in the package build directory." +"If this exists, it is installed into lib/systemd/system/I.mount in " +"the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.mount >> no " +"Se isto existir, é instalado em lib/systemd/system/I.mount no " "directório de compilação do pacote." #. type: =item @@ -12206,13 +12036,11 @@ #. type: textblock #: dh_systemd_enable:73 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.path " -">> (or F<< lib/systemd/system/I@.path >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.path (or " +"lib/systemd/system/I@.path) in the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.path >> " -"(ou F<< lib/systemd/system/I@.path >>) no directório de compilação " -"do pacote." +"Se isto existir, é instalado em lib/systemd/system/I.path (ou lib/" +"systemd/system/I@.path) no directório de compilação do pacote." #. type: =item #: dh_systemd_enable:76 @@ -12222,13 +12050,11 @@ #. type: textblock #: dh_systemd_enable:78 msgid "" -"If this exists, it is installed into F<< lib/systemd/system/I.timer " -">> (or F<< lib/systemd/system/I@.timer >>) in the package build " -"directory." +"If this exists, it is installed into lib/systemd/system/I.timer (or " +"lib/systemd/system/I@.timer) in the package build directory." msgstr "" -"Se isto existir, é instalado em F<< lib/systemd/system/I.timer >> " -"(ou F<< lib/systemd/system/I@.timer >>) no directório de compilação " -"do pacote." +"Se isto existir, é instalado em lib/systemd/system/I.timer (ou lib/" +"systemd/system/I@.timer) no directório de compilação do pacote." #. type: textblock #: dh_systemd_enable:89 @@ -12289,7 +12115,7 @@ msgstr "L, L" #. type: textblock -#: dh_systemd_enable:287 dh_systemd_start:285 +#: dh_systemd_enable:287 dh_systemd_start:286 msgid "pkg-systemd-maintainers@lists.alioth.debian.org" msgstr "pkg-systemd-maintainers@lists.alioth.debian.org" @@ -12394,85 +12220,6 @@ "alterações." #~ msgid "" -#~ "Historically, this file was needed to manually mark files files as " -#~ "conffiles. However, it has become de facto obsolete since debhelper " -#~ "automatically computed which files should be marked as conffiles." -#~ msgstr "" -#~ "Historicamente, este ficheiro era preciso para marcar manualmente " -#~ "ficheiros como ficheiros de configuração (conffiles). No entanto, tem-se " -#~ "tornado de facto obsoleto desde que o debhelper passou a computar " -#~ "automaticamente quais os ficheiros devem ser marcados como ficheiros de " -#~ "configuração." - -#~ msgid "" -#~ "In compatibility level up and including 11, this control file will be " -#~ "installed into the F directory. In compatibility level 12 and " -#~ "later, the file is silently ignored." -#~ msgstr "" -#~ "Em nível de compatibilidade até e incluindo 11, este ficheiro de controle " -#~ "será instalado no directório F. Em nível de compatibilidade 12 e " -#~ "posterior, o ficheiro é ignorado em silêncio." - -#~ msgid "" -#~ "dh_gconf - install GConf defaults files and register schemas (deprecated)" -#~ msgstr "" -#~ "dh_gconf - instala ficheiros de predefinições GConf e regista schemas " -#~ "(descontinuado)" - -#~ msgid "B [S>] [B<--priority=>I]" -#~ msgstr "B [S>] [B<--priority=>I]" - -#~ msgid "" -#~ "B is a debhelper program that is responsible for installing " -#~ "GConf defaults files and registering GConf schemas." -#~ msgstr "" -#~ "B é um programa debhelper que é responsável por instalar " -#~ "ficheiros de predefinições de GConf e registar os esquemas GConf." - -#~ msgid "" -#~ "An appropriate dependency on gconf2 will be generated in B<${misc:Depends}" -#~ ">." -#~ msgstr "" -#~ "Uma dependência apropriada em gconf2 será gerada em B<${misc:Depends}>." - -#~ msgid "debian/I.gconf-defaults" -#~ msgstr "debian/I.gconf-defaults" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Instalado em F no directório de " -#~ "compilação do pacote, com I substituído pelo nome do pacote." - -#~ msgid "debian/I.gconf-mandatory" -#~ msgstr "debian/I.gconf-mandatory" - -#~ msgid "" -#~ "Installed into F in the package " -#~ "build directory, with I replaced by the package name." -#~ msgstr "" -#~ "Instalado em F no directório de " -#~ "compilação do pacote, com I substituído pelo nome do pacote." - -#~ msgid "B<--priority> I" -#~ msgstr "B<--priority> I" - -#~ msgid "" -#~ "Use I (which should be a 2-digit number) as the defaults " -#~ "priority instead of B<10>. Higher values than ten can be used by derived " -#~ "distributions (B<20>), CDD distributions (B<50>), or site-specific " -#~ "packages (B<90>)." -#~ msgstr "" -#~ "Usa I (que deve ser um número de dois dígitos) como a " -#~ "prioridade predefinida em vez de B<10>. Valores mais altos que dez podem " -#~ "ser usados por distribuições derivadas (B<20>), distribuições CDD " -#~ "(B<50>), ou pacotes específicos de site (B<90>)." - -#~ msgid "Ross Burton Josselin Mouette " -#~ msgstr "Ross Burton Josselin Mouette " - -#~ msgid "" #~ "B should be the last debhelper command run in the B " #~ "target in F." #~ msgstr "" @@ -12987,6 +12734,10 @@ #~ "buildpackage -nc>) irá ter o comportamento que a maioria das pessoas " #~ "iriam esperar." +#~ 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>" + #~ msgid "" #~ "In compat 11, this file is no longer installed the format has been " #~ "deprecated. Please migrate to a desktop file instead." diff -Nru debhelper-13.5.2/man/po4a/po4a.cfg debhelper-13.3.4/man/po4a/po4a.cfg --- debhelper-13.5.2/man/po4a/po4a.cfg 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/man/po4a/po4a.cfg 2020-07-17 16:52:21.000000000 +0000 @@ -19,6 +19,7 @@ [type: pod] dh_compress $lang:man/$lang/dh_compress.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] dh_dwz $lang:man/$lang/dh_dwz.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_fixperms $lang:man/$lang/dh_fixperms.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] dh_gconf $lang:man/$lang/dh_gconf.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] dh_gencontrol $lang:man/$lang/dh_gencontrol.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] dh_icons $lang:man/$lang/dh_icons.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_install $lang:man/$lang/dh_install.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 diff -Nru debhelper-13.5.2/t/dh_installsystemd/dh_installsystemd.t debhelper-13.3.4/t/dh_installsystemd/dh_installsystemd.t --- debhelper-13.5.2/t/dh_installsystemd/dh_installsystemd.t 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/t/dh_installsystemd/dh_installsystemd.t 2020-07-17 16:52:21.000000000 +0000 @@ -46,7 +46,7 @@ $num_stops = $num_stops // $num_starts; my @postinst_snippets = find_script($package, 'postinst'); @output=`cat @postinst_snippets` if @postinst_snippets; - $matches = grep { m{deb-systemd-invoke restart .*'\Q$unit\E.service'} } @output; + $matches = grep { m{deb-systemd-invoke \$_dh_action .*'\Q$unit\E.service'} } @output; ok($matches == $num_starts) or diag("$unit appears to have been started $matches times (expected $num_starts)"); my @prerm_snippets = find_script($package, 'prerm'); @output=`cat @prerm_snippets` if @prerm_snippets; @@ -121,34 +121,6 @@ unit_is_started('foo', 'foo2', 1); ok(run_dh_tool('dh_clean')); - - # lib -> usr/lib (if we ever support that) - make_path('debian/foo/lib/systemd/system/'); - install_file('debian/foo2.service', 'debian/foo/lib/systemd/system/foo2.service'); - ok(run_dh_tool('dh_installsystemd')); - ok(-e 'debian/foo/lib/systemd/system/foo2.service'); - ok(find_script('foo', 'postinst')); - unit_is_enabled('foo', 'foo', 1); - unit_is_started('foo', 'foo', 1); - unit_is_enabled('foo', 'foo2', 1); - unit_is_started('foo', 'foo2', 1); - ok(run_dh_tool('dh_clean')); - - # lib -> usr/lib with both no-empty (if we ever suport that) - make_path('debian/foo/lib/systemd/system/'); - make_path('debian/foo/lib/systemd/system/'); - install_file('debian/foo2.service', 'debian/foo/lib/systemd/system/foo2.service'); - install_file('debian/foo2.service', 'debian/foo/lib/systemd/system/bar.service'); - ok(run_dh_tool('dh_installsystemd')); - ok(-e 'debian/foo/lib/systemd/system/bar.service'); - ok(-e 'debian/foo/lib/systemd/system/foo2.service'); - ok(find_script('foo', 'postinst')); - unit_is_enabled('foo', 'foo', 1); - unit_is_started('foo', 'foo', 1); - unit_is_enabled('foo', 'foo2', 1); - unit_is_started('foo', 'foo2', 1); - ok(run_dh_tool('dh_clean')); - make_path('debian/foo/lib/systemd/system/'); install_file('debian/foo2.service', 'debian/foo/lib/systemd/system/foo2.service'); ok(run_dh_tool('dh_installsystemd', '--no-start')); @@ -188,7 +160,7 @@ ok(run_dh_tool('dh_installsystemd', '--no-restart-after-upgrade')); my @foo_postinst = find_script('foo', 'postinst'); ok(@foo_postinst); - my $matches = @foo_postinst ? grep { m{deb-systemd-invoke restart .*foo.service} } `cat @foo_postinst` : -1; + my $matches = @foo_postinst ? grep { m{deb-systemd-invoke start .*foo.service} } `cat @foo_postinst` : -1; ok($matches == 1); ok(run_dh_tool('dh_clean')); diff -Nru debhelper-13.5.2/t/dh_installsystemd/dh_systemd.t debhelper-13.3.4/t/dh_installsystemd/dh_systemd.t --- debhelper-13.5.2/t/dh_installsystemd/dh_systemd.t 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/t/dh_installsystemd/dh_systemd.t 2020-07-17 16:52:21.000000000 +0000 @@ -38,7 +38,7 @@ my $matches; $num_stops = $num_stops // $num_starts; @output=`cat debian/$package.postinst.debhelper`; - $matches = grep { m{deb-systemd-invoke restart .*'\Q$unit\E.service'} } @output; + $matches = grep { m{deb-systemd-invoke \$_dh_action .*'\Q$unit\E.service'} } @output; ok($matches == $num_starts) or diag("$unit appears to have been started $matches times (expected $num_starts)"); @output=`cat debian/$package.prerm.debhelper`; $matches = grep { m{deb-systemd-invoke stop .*'\Q$unit\E.service'} } @output; @@ -110,7 +110,7 @@ make_path('debian/foo/lib/systemd/system/'); install_file('debian/foo.service', 'debian/foo/lib/systemd/system/foo.service'); ok(run_dh_tool('dh_systemd_start', '--no-restart-after-upgrade')); - my $matches = grep { m{deb-systemd-invoke restart .*foo.service} } `cat debian/foo.postinst.debhelper`; + my $matches = grep { m{deb-systemd-invoke start .*foo.service} } `cat debian/foo.postinst.debhelper`; ok($matches == 1); ok(run_dh_tool('dh_clean')); diff -Nru debhelper-13.5.2/t/dh_installsystemduser/dh_installsystemduser.t debhelper-13.3.4/t/dh_installsystemduser/dh_installsystemduser.t --- debhelper-13.5.2/t/dh_installsystemduser/dh_installsystemduser.t 2021-09-24 15:04:00.000000000 +0000 +++ debhelper-13.3.4/t/dh_installsystemduser/dh_installsystemduser.t 2020-07-17 16:52:21.000000000 +0000 @@ -36,10 +36,10 @@ my $matches; my @postinst = read_script($package, 'postinst'); - # Match exactly two tab character. The "dont-enable" script has + # Match exactly one tab character. The "dont-enable" script has # an "enable" line for re-enabling the service if the admin had it # enabled, but we do not want to include that in our count. - $matches = grep { m{^\t\tif deb-systemd-helper( --\w+)* --user was-enabled.*'\Q$unit'} } @postinst; + $matches = grep { m{^\tif deb-systemd-helper( --\w+)* --user was-enabled.*'\Q$unit'} } @postinst; is($matches, $enabled, "$unit $verb enabled"); my @postrm = read_script($package, 'postrm');