--- debfoster-2.7.orig/README.git +++ debfoster-2.7/README.git @@ -0,0 +1,61 @@ +Some notes on the GIT repository +================================ + +Location +-------- + +The repository is available at: + + http://neualius.turmzimmer.net/~fw/debfoster.git/ + http://git.enyo.de/fw/debian/debfoster.git/ + +Branches +-------- + +* master: The main branch for Debian unstable. + +* upstream: The "upstream" version, lacks the Debian packaging. + +Tags +---- + +Upstream versions are tagged v2.6 and so on (without a hyphen), Debian +versions are tagged v2.6-1 and so on (with a hyphen). + +Steps to prepare a new upstream version +--------------------------------------- + +1. Run "git tag -u KEY-ID VERSION" to create a signed tag (VERSION + should start with a small "v", see above). + +2. Push it to the official repository: "git push neualius VERSION" + +3. Create the upstream tar ball: + + git tar-tree VERSION debfoster-VERSION | + gzip --best > ../debfoster_VERSION.orig.tar.gz + + (Here, the "v" is dropped from the VERSION string, of course.) + +4. Merge it into the Debian branch: + + git checkout master + git merge "Merge from upstream" master upstream + +Steps to prepare a new Debian version +------------------------------------- + +1. Update the Debian changelog, based on the GIT log. It is best to + do this directly before the release of a new version, otherwise you + risk tons of conflicts during development. + +2. Create a tag, this time with a hyphen, and push it to the official + repository (steps 1 and 2 from the upstream version release + procedure). + +3. Make sure that the upstream tarball is present in the parent + directory. + +4. Build binary and source packages using: + + dpkg-buildpackage -i.git -rfakeroot -kKEY-ID --- debfoster-2.7.orig/config.guess +++ debfoster-2.7/config.guess @@ -1,14 +1,12 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2006-05-13' +timestamp='2013-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -17,26 +15,22 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner. # -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# Please send patches with a ChangeLog entry to config-patches@gnu.org. + me=`echo "$0" | sed -e 's,.*/,,'` @@ -56,8 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -139,12 +132,33 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + ;; +esac + # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward @@ -161,6 +175,7 @@ arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -169,7 +184,7 @@ arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null + | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? @@ -179,7 +194,7 @@ fi ;; *) - os=netbsd + os=netbsd ;; esac # The OS release @@ -200,6 +215,10 @@ # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} @@ -211,7 +230,7 @@ echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) - echo powerppc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} @@ -222,7 +241,7 @@ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on @@ -268,7 +287,10 @@ # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit ;; + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead @@ -294,12 +316,12 @@ echo s390-ibm-zvmoe exit ;; *:OS400:*:*) - echo powerpc-ibm-os400 + echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; - arm:riscos:*:*|arm:RISCOS:*:*) + arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) @@ -323,14 +345,33 @@ case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize @@ -374,23 +415,23 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit ;; + exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; @@ -460,8 +501,8 @@ echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ @@ -474,7 +515,7 @@ else echo i586-dg-dgux${UNAME_RELEASE} fi - exit ;; + exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; @@ -531,7 +572,7 @@ echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -574,52 +615,52 @@ 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac + esac ;; + esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + sed 's/^ //' << EOF >$dummy.c - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa @@ -639,7 +680,7 @@ # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null + grep -q __LP64__ then HP_ARCH="hppa2.0w" else @@ -710,22 +751,22 @@ exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd - exit ;; + exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit ;; + exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd - exit ;; + exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd - exit ;; + exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd - exit ;; + exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; @@ -749,14 +790,14 @@ exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} @@ -768,37 +809,51 @@ echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) - case ${UNAME_MACHINE} in - pc98) - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; - i*:MINGW*:*) + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[345]*) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T:Interix*:[345]*) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we @@ -819,197 +874,157 @@ exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + else + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) - echo cris-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) - echo crisv32-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) - echo frv-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + i*86:Linux:*:*) + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) + mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU - #undef mips64 - #undef mips64el + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el + CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 + CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - or32:Linux:*:*) - echo or32-unknown-linux-gnu + or1k:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu + padre:Linux:*:*) + echo sparc-unknown-linux-${LIBC} exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-${LIBC} + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu + echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1017,11 +1032,11 @@ echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. + # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) @@ -1038,7 +1053,7 @@ i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) @@ -1053,7 +1068,7 @@ fi exit ;; i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. + # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; @@ -1081,10 +1096,13 @@ exit ;; pc:*:*:*) # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp - exit ;; + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; @@ -1119,8 +1137,18 @@ /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; @@ -1133,7 +1161,7 @@ rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) @@ -1153,10 +1181,10 @@ echo ns32k-sni-sysv fi exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm @@ -1182,11 +1210,11 @@ exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv${UNAME_RELEASE} else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv${UNAME_RELEASE} fi - exit ;; + exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; @@ -1196,6 +1224,12 @@ BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; @@ -1205,6 +1239,15 @@ SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; @@ -1213,9 +1256,21 @@ exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - unknown) UNAME_PROCESSOR=powerpc ;; - esac + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) @@ -1229,7 +1284,10 @@ *:QNX:*:4*) echo i386-pc-qnx exit ;; - NSE-?:NONSTOP_KERNEL:*:*) + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) @@ -1274,13 +1332,13 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1295,11 +1353,14 @@ i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; esac -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - eval $set_cc_for_build cat >$dummy.c < printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 - "4" + "4" #else - "" + "" #endif - ); exit (0); + ); exit (0); #endif #endif @@ -1455,9 +1516,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be --- debfoster-2.7.orig/config.sub +++ debfoster-2.7/config.sub @@ -1,44 +1,40 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. - -timestamp='2006-05-13' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# Copyright 1992-2013 Free Software Foundation, Inc. + +timestamp='2013-08-10' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Please send patches with a ChangeLog entry to config-patches@gnu.org. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -72,8 +68,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -120,12 +115,18 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ - uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] @@ -148,10 +149,13 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; + -bluegene*) + os=-cnk + ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 @@ -166,10 +170,10 @@ os=-chorusos basic_machine=$1 ;; - -chorusrdb) - os=-chorusrdb + -chorusrdb) + os=-chorusrdb basic_machine=$1 - ;; + ;; -hiux*) os=-hiuxwe2 ;; @@ -214,6 +218,12 @@ -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; -lynx*) os=-lynxos ;; @@ -238,24 +248,34 @@ # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ + | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | arc | arceb \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | be32 | be64 \ | bfin \ - | c4x | clipper \ + | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | epiphany \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ - | mips64vr | mips64vrel \ + | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ @@ -266,30 +286,45 @@ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | moxie \ | mt \ | msp430 \ - | nios | nios2 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ - | or32 \ + | open8 \ + | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ - | v850 | v850e \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) basic_machine=$basic_machine-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12) - # Motorola 68HC11/12. + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; @@ -299,6 +334,21 @@ basic_machine=mt-unknown ;; + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. @@ -313,29 +363,37 @@ # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ + | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ + | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ @@ -346,31 +404,41 @@ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ - | nios-* | nios2-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ | tron-* \ - | v850-* | v850e-* | vax-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ - | z8k-*) + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. @@ -388,7 +456,7 @@ basic_machine=a29k-amd os=-udi ;; - abacus) + abacus) basic_machine=abacus-unknown ;; adobe68k) @@ -434,6 +502,10 @@ basic_machine=m68k-apollo os=-bsd ;; + aros) + basic_machine=i386-pc + os=-aros + ;; aux) basic_machine=m68k-apple os=-aux @@ -442,10 +514,35 @@ basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; c90) basic_machine=c90-cray os=-unicos ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; convex-c1) basic_machine=c1-convex os=-bsd @@ -474,8 +571,8 @@ basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16 | cr16-*) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -513,6 +610,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp @@ -628,7 +729,6 @@ i370-ibm* | ibm*) basic_machine=i370-ibm ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 @@ -667,6 +767,14 @@ basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -678,10 +786,21 @@ basic_machine=ns32k-utek os=-sysv ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; mingw32) - basic_machine=i386-pc + basic_machine=i686-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -710,10 +829,18 @@ ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; + msys) + basic_machine=i686-pc + os=-msys + ;; mvs) basic_machine=i370-ibm os=-mvs ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; ncr3000) basic_machine=i486-ncr os=-sysv4 @@ -778,6 +905,12 @@ np1) basic_machine=np1-gould ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; nsr-tandem) basic_machine=nsr-tandem ;; @@ -808,6 +941,14 @@ basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -852,9 +993,10 @@ ;; power) basic_machine=power-ibm ;; - ppc) basic_machine=powerpc-unknown + ppc | ppcbe) basic_machine=powerpc-unknown ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown @@ -879,7 +1021,11 @@ basic_machine=i586-unknown os=-pw32 ;; - rdos) + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) basic_machine=i386-pc os=-rdos ;; @@ -909,6 +1055,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -920,6 +1070,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -941,6 +1094,9 @@ basic_machine=i860-stratus os=-sysv4 ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; sun2) basic_machine=m68000-sun ;; @@ -997,17 +1153,9 @@ basic_machine=t90-cray os=-unicos ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown @@ -1076,6 +1224,9 @@ xps | xps100) basic_machine=xps100-honeywell ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; ymp) basic_machine=ymp-cray os=-unicos @@ -1084,6 +1235,10 @@ basic_machine=z8k-unknown os=-sim ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; none) basic_machine=none-none os=-none @@ -1122,7 +1277,7 @@ we32k) basic_machine=we32k-att ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) @@ -1169,9 +1324,12 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases + # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; @@ -1192,21 +1350,23 @@ # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ + | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -openbsd* | -solidbsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ @@ -1214,7 +1374,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1253,7 +1413,7 @@ -opened*) os=-openedition ;; - -os400*) + -os400*) os=-os400 ;; -wince*) @@ -1302,7 +1462,7 @@ -sinix*) os=-sysv4 ;; - -tpf*) + -tpf*) os=-tpf ;; -triton*) @@ -1338,12 +1498,14 @@ -aros*) os=-aros ;; - -kaos*) - os=-kaos - ;; -zvmoe) os=-zvmoe ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; -none) ;; *) @@ -1366,7 +1528,10 @@ # system, and we'll never get to this point. case $basic_machine in - spu-*) + score-*) + os=-elf + ;; + spu-*) os=-elf ;; *-acorn) @@ -1378,8 +1543,23 @@ arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff + c4x-* | tic4x-*) + os=-coff + ;; + c8051-*) + os=-elf + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff ;; # This must come before the *-dec entry. pdp10-*) @@ -1399,19 +1579,22 @@ ;; m68000-sun) os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 ;; m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; + or1k-*) + os=-elf + ;; or32-*) os=-coff ;; @@ -1430,7 +1613,7 @@ *-ibm) os=-aix ;; - *-knuth) + *-knuth) os=-mmixware ;; *-wec) @@ -1535,7 +1718,7 @@ -sunos*) vendor=sun ;; - -aix*) + -cnk*|-aix*) vendor=ibm ;; -beos*) --- debfoster-2.7.orig/debian/bash_completion/debfoster +++ debfoster-2.7/debian/bash_completion/debfoster @@ -0,0 +1,41 @@ +# -*- sh -*- + +# Provided by Eric Hansander in +# + +have debfoster && +_debfoster() +{ + local cur prev options + + COMPREPLY=() + cur=${COMP_WORDS[COMP_CWORD]} + prev=${COMP_WORDS[COMP_CWORD-1]} + options='-v --verbose -V --version -h --help -q --quiet -f --force \ + -m --mark-only -u --upgrade -c --config -k --keeperfile -n \ + --no-keeperfile -i --ignore-default-rules -a --show-keepers -s \ + --show-orphans -d --show-depends -e --show-dependents -p \ + --show-providers -r --show-related -t --use-tasks -o --option' + + case $prev in + -@(c|-config|k|-keeperfile)) + _filedir + return 0 + ;; + -@(d|-show-depends|e|-show-dependents|r|-show-related)) + COMPREPLY=( $( _xfunc dpkg _comp_dpkg_installed_packages $cur ) ) + return 0 + ;; + esac + + if [[ "$cur" == -* ]]; then + COMPREPLY=( $( compgen -W "$options" -- $cur ) ) + else + # This is just an approximation. Actually, debfoster can + # install new packages, which won't appear in that list. + COMPREPLY=( $( _xfunc dpkg _comp_dpkg_installed_packages $cur ) ) + fi + + return 0 +} +test "$have" && complete -F _debfoster $default debfoster --- debfoster-2.7.orig/debian/changelog +++ debfoster-2.7/debian/changelog @@ -0,0 +1,225 @@ +debfoster (2.7-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Migrate to debhelper 9. Closes: #817424 + * Move bash completion files to /usr/share/bash-completion/completions. + * Unbreak bash completion. Closes: #800354 + * Depend on ${misc:Depends}. + + -- Adam Borowski Sat, 30 Jul 2016 03:53:25 +0200 + +debfoster (2.7-2) unstable; urgency=medium + + * update config.sub/guess. Closes: #533685 + * ask before quit. Closes: #484866 + * po/it.po: new Italian translation (Beatrice Torracca). Closes: #687842 + + -- Andreas Barth Sun, 17 Aug 2014 09:37:08 +0000 + +debfoster (2.7-1.2) unstable; urgency=low + + * Non-maintainer upload. + * po/de.po: new German translation (Chris Leick). Closes: #533502 + * po/es.po: new Spanish translation (Omar Campagne). Closes: #672276 + * po/fr.po: new French translation (Julien Patriarca). + * po/da.po: updated Danish translation (Joe Hansen). Closes: #684183 + * Adds some missing words in messages (Chris Leick). Closes: #531894 + + -- David Prévot Wed, 15 Aug 2012 12:41:49 -0400 + +debfoster (2.7-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/{postinst,postrm}: remove policy-violating prompts for old + keepers file location that has not existed for 9 years now, and + unconditionally remove new keepers on purge (Closes: 553286). + + -- Kees Cook Sun, 24 Jan 2010 17:09:13 -0800 + +debfoster (2.7-1) unstable; urgency=low + + * New upstream version. Closes: #448501. + + -- Florian Weimer Sat, 19 Apr 2008 17:14:49 +0200 + +debfoster (2.6-2) unstable; urgency=low + + * Bump Standards-Version. No changes required. + * Add README file for a few GIT-related topics. + * Retroactively edit the Debian changelog, following the new + release process. + * Add bash completion support. Thanks to Eric Hansander + . Closes: #349035. + * Fix typo in manual page. Spotted by A Costa . + Closes: #307022. + + -- Florian Weimer Sun, 30 Jul 2006 18:32:36 +0200 + +debfoster (2.6-1) unstable; urgency=low + + * New upstream version, new maintainer team. + * Revert deprecation. Closes: #366518. + + -- Florian Weimer Sat, 22 Jul 2006 18:40:16 +0200 + +debfoster (2.5-6) unstable; urgency=low + + * Debfoster is deprecated: include a tool to convert debfoster's database to + aptitude's, and display a warning with debconf. + + -- Guus Sliepen Fri, 5 May 2006 15:40:38 +0200 + +debfoster (2.5-5) unstable; urgency=low + + * Adopting package. + * Update config.guess and config.sub. Closes: #342386 + + -- Guus Sliepen Wed, 7 Dec 2005 17:59:22 +0100 + +debfoster (2.5-4) unstable; urgency=low + + * src/conffile.c, etc/debfoster.conf: Set NegativeKeepers to "no" by + default. + * po/da.po: Updated Danish translation. (Closes: #262650) + + -- Ivo Timmermans Tue, 3 Aug 2004 19:37:04 +0200 + +debfoster (2.5-3) unstable; urgency=low + + * configure.in: Added AM_MAINTAINER_MODE. (Closes: #180142) + * etc/debfoster.conf: Fix typos. (Closes: #174277) + + -- Ivo Timmermans Sun, 9 Feb 2003 15:57:02 +0100 + +debfoster (2.5-2) unstable; urgency=low + + * Add Danish translation. (Closes: #174073) + + -- Ivo Timmermans Fri, 7 Feb 2003 10:40:58 +0100 + +debfoster (2.5-1) unstable; urgency=low + + * New upstream release (Closes: #127829, #123749) + + -- Ivo Timmermans Thu, 17 Jan 2002 23:08:39 +0100 + +debfoster (2.4-1) unstable; urgency=low + + * New upstream release (Closes: #122325, #115255, #91736) + + -- Ivo Timmermans Tue, 4 Dec 2001 14:35:41 +0100 + +debfoster (2.3-1) unstable; urgency=low + + * New upstream release (Closes: #116255): + - correct handling of --show-depend.* (Closes: #113520) + + -- Ivo Timmermans Sun, 21 Oct 2001 14:37:22 +0200 + +debfoster (2.2-1) unstable; urgency=low + + * New upstream release, fixes segfaut with package names that end in + `+'. (Closes: #109868) + + -- Ivo Timmermans Fri, 24 Aug 2001 14:40:40 +0200 + +debfoster (2.1-1) unstable; urgency=low + + * New upstream release: + - includes the patch to make debfoster compile on HURD. + (Closes: #108215) + - includes -f switch to let debfoster install all missing packages + that are in the keepers file (Closes: #108329) + - includes a way of saying `ask me later' (Closes: #91871) + - includes an undo option (Closes: #88320, #89539) + - includes an option to install/upgrade dependencies + (Closes: #101911) + + -- Ivo Timmermans Wed, 15 Aug 2001 23:39:15 +0200 + +debfoster (2.0-2) unstable; urgency=low + + * Changed the last references to the old location of the keepers file to + the new location. (Closes: #106394) + + -- Ivo Timmermans Mon, 30 Jul 2001 22:53:39 +0200 + +debfoster (2.0-1) unstable; urgency=low + + * New upstream release. (Closes: #100303) + * Changed location of the keepers file in the manpage. + (Closes: #101058) + + -- Ivo Timmermans Wed, 27 Jun 2001 02:25:09 +0200 + +debfoster (1.99+2.0pre8-2) unstable; urgency=low + + * Added build dependencies on gettext. (Closes: #90657) + + -- Ivo Timmermans Sun, 25 Mar 2001 12:43:24 +0200 + +debfoster (1.99+2.0pre8-1) unstable; urgency=low + + * New upstream release. (Closes: #89346) + * Don't call dh_testversion. + * Call make distclean in the clean target. + * Patch po/Makefile.in.in to support DESTDIR if needed each time the + Debian package is rebuilt. + + -- Ivo Timmermans Mon, 19 Mar 2001 00:06:41 +0100 + +debfoster (1.99+2.0pre7-2) unstable; urgency=low + + * Changed location of the keepers file from /etc/apt/keepers to + /var/lib/debfoster/keepers (Closes: #85630, #85649). + * Have the postinst ask if the user wants to move the keepers file + to its new location; postrm also recognizes the new location. + * Fixed grammatical error in manpage (Closes: #85631). + * Fixed spelling error in the package description. + + -- Ivo Timmermans Mon, 12 Feb 2001 11:14:07 +0100 + +debfoster (1.99+2.0pre7-1) unstable; urgency=low + + * New upstream release + + -- Ivo Timmermans Sun, 11 Feb 2001 14:19:47 +0100 + +debfoster (1.99+2.0pre6-2) unstable; urgency=low + + * Changed prerm script: debhelper can now add its own stuff as well, + and two suggestions from Peter Palfrader. + * Set UsePreDepends to yes by default. + + -- Ivo Timmermans Mon, 5 Feb 2001 22:20:31 +0100 + +debfoster (1.99+2.0pre6-1) unstable; urgency=low + + * New upstream release. + * Changed package description (Closes: #83718). + * Remove /etc/apt/keepers on removal if wanted. + * Added a big fat warning in debfoster.conf to prevent people from + unknowingly setting UseEssential to `no'. + + -- Ivo Timmermans Fri, 2 Feb 2001 22:23:17 +0100 + +debfoster (1.99+2.0pre5-1) unstable; urgency=low + + * New upstream release (Closes: #83299). + * Added /etc/debfoster.conf to conffiles + + -- Ivo Timmermans Wed, 24 Jan 2001 16:35:59 +0100 + +debfoster (1.5-2) unstable; urgency=low + + * package rename, and fixes + + -- Mark Glines Tue, 16 Jan 2001 06:53:45 -0800 + +dep (1.5-1) unstable; urgency=low + + * Initial Release. + + -- Ivo Timmermans Tue, 9 Jan 2001 23:02:44 +0100 + + --- debfoster-2.7.orig/debian/compat +++ debfoster-2.7/debian/compat @@ -0,0 +1 @@ +9 --- debfoster-2.7.orig/debian/control +++ debfoster-2.7/debian/control @@ -0,0 +1,25 @@ +Source: debfoster +Section: admin +Priority: optional +Maintainer: debfoster Maintainer Team +Uploaders: Andreas Barth , Marc Haber , Florian Weimer +Build-Depends: debhelper (>> 9), gettext, libgc-dev +Standards-Version: 3.9.8 + +Package: debfoster +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: apt +Description: Install only wanted Debian packages + debfoster is a wrapper program for apt and dpkg. When first run, it + will ask you which of the installed packages you want to keep + installed. + . + After that, it maintains a list of packages that you want to have + installed on your system. It uses this list to detect packages that + have been installed only because other packages depended on them. If + one of these dependencies changes, debfoster will take notice, and + ask if you want to remove the old package. + . + This helps you to maintain a clean Debian install, without old + (mainly library) packages lying around that aren't used any more. --- debfoster-2.7.orig/debian/copyright +++ debfoster-2.7/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Ivo Timmermans on +Tue, 9 Jan 2001 23:02:44 +0100. + +It was downloaded from http://www.fruit.eu.org/debfoster/ + +Upstream Author: Wessel Dankers + +Copyright: GPL version 2 and LGPL versions 2 and 2.1. On Debian +GNU/Linux systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL. +The text to the GNU Lesser General Public License can be found in +/usr/share/common-licenses/LGPL-2 or LGPL-2.1. --- debfoster-2.7.orig/debian/debfoster2aptitude +++ debfoster-2.7/debian/debfoster2aptitude @@ -0,0 +1,53 @@ +#! /usr/bin/perl -w + +use strict; +use utf8; + +system qw(debfoster + -o MaxPriority=required + -o UseHold=no + -o UsePreDepends=yes + -o UseRecommends=no + -o UseSuggests=no + -o UseEssential=no + -o UseTasks=no + -o KeepSections= + -o NokeepSections= + -o GuessDepends=no) and die; + +my %debfoster; + +open KEEPERS, '<', '/var/lib/debfoster/keepers' + or die "/var/lib/debfoster/keepers: $!"; + +while() { + next if /^-/; + chomp; + undef $debfoster{$_} +} + +close KEEPERS or die $!; + +open PKG, '<', '/var/lib/aptitude/pkgstates' + or die "/var/lib/aptitude/pkgstates: $!"; + +open NEW, '>', '/var/lib/aptitude/pkgstates.new' + or die "/var/lib/aptitude/pkgstates.new: $!"; + +my $name; + +while() { + $name = $1 if /^Package:\s+(\S+)/; + + if(/Last-Change:/) { + $_ = 'Last-Change: '.(exists $debfoster{$name} ? 0 : 1)."\n" + } + print NEW + or die "/var/lib/aptitude/pkgstates.new: $!"; +} + +close NEW or die $!; +close PKG or die $!; + +rename '/var/lib/aptitude/pkgstates.new', '/var/lib/aptitude/pkgstates' + or die "rename(/var/lib/aptitude/pkgstates): $!" --- debfoster-2.7.orig/debian/dirs +++ debfoster-2.7/debian/dirs @@ -0,0 +1,5 @@ +usr/bin +usr/sbin +var +var/lib +var/lib/debfoster --- debfoster-2.7.orig/debian/docs +++ debfoster-2.7/debian/docs @@ -0,0 +1 @@ +README --- debfoster-2.7.orig/debian/install +++ debfoster-2.7/debian/install @@ -0,0 +1,2 @@ +debian/debfoster2aptitude usr/sbin/ +debian/bash_completion/debfoster usr/share/bash-completion/completions/ --- debfoster-2.7.orig/debian/postrm +++ debfoster-2.7/debian/postrm @@ -0,0 +1,11 @@ +#!/bin/sh + +if [ "$1" = "purge" ] ; then + rm -f "/var/lib/debfoster/keepers" +fi + +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- debfoster-2.7.orig/debian/rules +++ debfoster-2.7/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +%: + dh $@ --parallel --- debfoster-2.7.orig/doc/debfoster.8 +++ debfoster-2.7/doc/debfoster.8 @@ -54,7 +54,7 @@ removed as soon as .Nm is done asking questions. -If your choises cause other packages to become orphaned more +If your choices cause other packages to become orphaned more questions will ensue. .Pp Whenever --- debfoster-2.7.orig/po/LINGUAS +++ debfoster-2.7/po/LINGUAS @@ -1,4 +1,4 @@ # Set of available languages. -da nl en@quot en@boldquot +es da de fr nl en@quot en@boldquot --- debfoster-2.7.orig/po/Makefile.in.in +++ debfoster-2.7/po/Makefile.in.in @@ -1,5 +1,5 @@ # Makefile for PO directory in any package using GNU gettext. -# Copyright (C) 1995-1997, 2000-2005 by Ulrich Drepper +# Copyright (C) 1995-1997, 2000-2007 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public @@ -8,7 +8,8 @@ # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # -# Origin: gettext-0.14.4 +# Origin: gettext-0.17 +GETTEXT_MACRO_VERSION = 0.17 PACKAGE = @PACKAGE@ VERSION = @VERSION@ @@ -23,18 +24,38 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ datadir = @datadir@ -localedir = $(datadir)/locale +localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = @MKINSTALLDIRS@ -mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) -GMSGFMT = @GMSGFMT@ -MSGFMT = @MSGFMT@ -XGETTEXT = @XGETTEXT@ +# We use $(mkdir_p). +# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as +# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, +# @install_sh@ does not start with $(SHELL), so we add it. +# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined +# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake +# versions, $(mkinstalldirs) and $(install_sh) are unused. +mkinstalldirs = $(SHELL) @install_sh@ -d +install_sh = $(SHELL) @install_sh@ +MKDIR_P = @MKDIR_P@ +mkdir_p = @mkdir_p@ + +GMSGFMT_ = @GMSGFMT@ +GMSGFMT_no = @GMSGFMT@ +GMSGFMT_yes = @GMSGFMT_015@ +GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) +MSGFMT_ = @MSGFMT@ +MSGFMT_no = @MSGFMT@ +MSGFMT_yes = @MSGFMT_015@ +MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) +XGETTEXT_ = @XGETTEXT@ +XGETTEXT_no = @XGETTEXT@ +XGETTEXT_yes = @XGETTEXT_015@ +XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit @@ -75,11 +96,18 @@ mv t-$@ $@ -all: all-@USE_NLS@ +all: check-macro-version all-@USE_NLS@ all-yes: stamp-po all-no: +# Ensure that the gettext macros and this Makefile.in.in are in sync. +check-macro-version: + @test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ + || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ + exit 1; \ + } + # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that @@ -110,16 +138,34 @@ # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + if LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \ + package_gnu='GNU '; \ + else \ + package_gnu=''; \ + fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ - $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ - --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ - --files-from=$(srcdir)/POTFILES.in \ - --copyright-holder='$(COPYRIGHT_HOLDER)' \ - --msgid-bugs-address="$$msgid_bugs_address" + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_gnu}@PACKAGE@" \ + --package-version='@VERSION@' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + ;; \ + esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ @@ -158,7 +204,7 @@ install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ @@ -171,13 +217,13 @@ fi install-data-no: all install-data-yes: all - $(mkinstalldirs) $(DESTDIR)$(datadir) + $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ + $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ @@ -217,19 +263,19 @@ installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: - $(mkinstalldirs) $(DESTDIR)$(datadir) + $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ + $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ @@ -374,8 +420,7 @@ Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ - && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ - $(SHELL) ./config.status + && $(SHELL) ./config.status $(subdir)/$@.in po-directories force: --- debfoster-2.7.orig/po/da.po +++ debfoster-2.7/po/da.po @@ -1,99 +1,101 @@ # Danish messages for debfoster. # Copyright, Morten Brix Pedersen, 2001-2004. +# Joe Hansen , 2012. # msgid "" msgstr "" -"Project-Id-Version: debfoster 2.5\n" +"Project-Id-Version: debfoster 2.7-1.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-20 22:54+0200\n" -"PO-Revision-Date: 2004-08-01 10:29+0200\n" -"Last-Translator: Morten Brix Pedersen \n" -"Language-Team: Danish \n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2012-08-07 20:27+0200\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/debfoster.c:175 +#: src/debfoster.c:176 #, c-format msgid "Package was removed: %s\n" msgstr "Pakke blev fjernet: %s\n" # c-format -#: src/debfoster.c:386 +#: src/debfoster.c:384 #, c-format msgid "Not a dependency: \"%s\"\n" msgstr "Ikke en afhængighed: \"%s\"\n" -#: src/debfoster.c:391 +#: src/debfoster.c:389 #, c-format msgid "%s is an installed package.\n" msgstr "%s er en installeret pakke.\n" -#: src/debfoster.c:393 +#: src/debfoster.c:391 #, c-format msgid "Dependency %s is met by:" msgstr "Afhængighed %s er mødt af:" -#: src/debfoster.c:395 +#: src/debfoster.c:393 #, c-format msgid "Dependency %s is not met by any package.\n" msgstr "Afhængighed %s er ikke mødt af nogen pakke.\n" -#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 #, c-format msgid "Not an installed package: \"%s\"\n" msgstr "Ikke en installeret pakke: \"%s\"\n" -#: src/debfoster.c:417 +#: src/debfoster.c:415 #, c-format msgid "Package %s depends on:" msgstr "Pakke %s afhænger af:" -#: src/debfoster.c:418 +#: src/debfoster.c:416 #, c-format msgid "Package %s has no depends.\n" msgstr "Pakke %s har ingen afhængigheder.\n" -#: src/debfoster.c:446 +#: src/debfoster.c:442 #, c-format -msgid "The following %d packages on keeper list rely on %s:" -msgstr "De følgende %d pakker på keeper listen afhænger af %s:" +msgid "The following %d packages on the keeper list rely on %s:" +msgstr "De følgende %d pakker på keeper-listen afhænger af %s:" -#: src/debfoster.c:447 +#: src/debfoster.c:443 #, c-format -msgid "Packages on keeper list do not rely on %s.\n" -msgstr "Pakker på keeper listen afhænger ikke af %s.\n" +msgid "Packages on the keeper list do not rely on %s.\n" +msgstr "Pakker på keeper-listen afhænger ikke af %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 #, c-format msgid "Packages kept by default rules %s %s.\n" -msgstr "Pakker beholdt med standard regler %s %s.\n" +msgstr "Pakker beholdt med standardregler %s %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "rely on" msgstr "afhænger af" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "do not rely on" msgstr "afhænger ikke af" -#: src/debfoster.c:512 +#: src/debfoster.c:504 #, c-format msgid "The following %d packages are brought in by %s:" msgstr "De følgende %d pakker er introduceret af %s:" -#: src/debfoster.c:513 +#: src/debfoster.c:505 #, c-format msgid "No packages are brought in by %s.\n" msgstr "Ingen pakker er introduceret af %s.\n" # c-format -#: src/debfoster.c:571 +#: src/debfoster.c:560 #, c-format msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" msgstr "Brug: %s [-ck FIL] [-adefhinopqrsvV] pakke1 pakke2-\n" -#: src/debfoster.c:572 +#: src/debfoster.c:561 #, c-format msgid "" "Installs package1, deinstalls package2\n" @@ -102,103 +104,104 @@ "Installerer pakke1, fjerner pakke2\n" "\n" -#: src/debfoster.c:573 +#: src/debfoster.c:562 #, c-format msgid "-v, --verbose Be a loudmouth\n" msgstr "-v, --verbose Vær støjende\n" -#: src/debfoster.c:574 +#: src/debfoster.c:563 #, c-format msgid "-V, --version Show version and copyright information\n" -msgstr "-V, --version Vis version og copyright information\n" +msgstr "-V, --version Vis information om version og ophavsret\n" -#: src/debfoster.c:575 +#: src/debfoster.c:564 #, c-format msgid "-h, --help Show this message\n" -msgstr "-h, --help Vis denne besked\n" +msgstr "-h, --help Vis denne hjælpetekst\n" -#: src/debfoster.c:576 +#: src/debfoster.c:565 #, c-format msgid "-q, --quiet Silently build keeper file\n" -msgstr "-q, --quiet Byg keeper filen stille\n" +msgstr "-q, --quiet Byg keeper-filen stille\n" -#: src/debfoster.c:577 +#: src/debfoster.c:566 #, c-format msgid "-f, --force Force system to conform to keeper file\n" msgstr "" -"-f, --force Tving systemet til at gå efter keeper filen.\n" +"-f, --force Tving systemet til at gå efter " +"keeper-filen.\n" -#: src/debfoster.c:578 +#: src/debfoster.c:567 #, c-format msgid "-m, --mark-only Do not install or delete packages\n" msgstr "-m, --mark-only Installer og slet ikke pakker.\n" -#: src/debfoster.c:579 +#: src/debfoster.c:568 #, c-format msgid "-u, --upgrade Try to upgrade dependencies\n" -msgstr "-u, --upgrade Prøv at opgrader afhængigheder\n" +msgstr "-u, --upgrade Prøv at opgradere afhængigheder\n" -#: src/debfoster.c:580 +#: src/debfoster.c:569 #, c-format msgid "-c, --config FILE Specify configuration file\n" -msgstr "-c, --config FILE Specificer konfigurations fil\n" +msgstr "-c, --config FILE Specificer konfigurationsfil\n" -#: src/debfoster.c:581 +#: src/debfoster.c:570 #, c-format msgid "-k, --keeperfile FILE Specify keeper file\n" -msgstr "-k, --keeperfile FILE Specificer keeper fil\n" +msgstr "-k, --keeperfile FILE Specificer keeper-fil\n" -#: src/debfoster.c:582 +#: src/debfoster.c:571 #, c-format msgid "-n, --no-keeperfile Don't read keeper file\n" -msgstr "-n, --no-keeperfile Læs ikke keeper fil\n" +msgstr "-n, --no-keeperfile Læs ikke keeper-fil\n" -#: src/debfoster.c:583 +#: src/debfoster.c:572 #, c-format msgid "-i, --ignore-default-rules Ignore default rules\n" -msgstr "-i, --ignore-default-rules Ignorer standard regler\n" +msgstr "-i, --ignore-default-rules Ignorer standardregler\n" -#: src/debfoster.c:584 +#: src/debfoster.c:573 #, c-format -msgid "-a, --show-keepers Show packages on keeper list\n" -msgstr "-a, --show-keepers Vis pakker på keeper listen\n" +msgid "-a, --show-keepers Show packages on the keeper list\n" +msgstr "-a, --show-keepers Vis pakker på keeper-listen\n" -#: src/debfoster.c:585 +#: src/debfoster.c:574 #, c-format msgid "-s, --show-orphans Show orphaned packages\n" msgstr "-s, --show-orphans Vis bort-adopterede pakker\n" -#: src/debfoster.c:586 +#: src/debfoster.c:575 #, c-format msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" -msgstr "-d, --show-depends PACKAGE Vis alle afhængigheder af PAKKE\n" +msgstr "-d, --show-depends PACKAGE Vis alle afhængigheder for PAKKE\n" -#: src/debfoster.c:587 +#: src/debfoster.c:576 #, c-format msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" msgstr "-e, --show-dependents PACKAGE Vis indhold af PAKKE\n" -#: src/debfoster.c:588 +#: src/debfoster.c:577 #, c-format msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" msgstr "-p, --show-providers PACKAGE Vis pakker der tilbyder PAKKE\n" -#: src/debfoster.c:589 +#: src/debfoster.c:578 #, c-format msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" msgstr "-r, --show-related PACKAGE Vis pakker introduceret af PAKKE\n" -#: src/debfoster.c:590 +#: src/debfoster.c:579 #, c-format msgid "-t, --use-tasks Make tasks visible as packages\n" -msgstr "-t, --use-tasks Gør opgave-pakker synlige som pakker\n" +msgstr "-t, --use-tasks Gør opgaver synlige som pakker\n" -#: src/debfoster.c:591 +#: src/debfoster.c:580 #, c-format msgid "-o, --option OPT=VAL Override any configuration option\n" -msgstr "-o, --option OPT=VAL Overskriv konfigurations indstilling\n" +msgstr "-o, --option OPT=VAL Overskriv konfigurationsindstillinger\n" -#: src/debfoster.c:592 +#: src/debfoster.c:581 #, c-format msgid "" "\n" @@ -207,51 +210,51 @@ "\n" "Se også: debfoster(8)\n" -#: src/debfoster.c:594 +#: src/debfoster.c:583 #, c-format msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" -msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" +msgstr "debfoster %s -- Ophavsret 2000,2001 Wessel Dankers.\n" -#: src/debfoster.c:595 +#: src/debfoster.c:584 #, c-format msgid "Distributed under the GNU General Public License.\n" msgstr "Distributeret under GNU General Public License.\n" -#: src/debfoster.c:633 +#: src/debfoster.c:622 #, c-format msgid "%s: Invalid config option -- \"%s\"\n" -msgstr "%s: Invalid konfigurations indstilling -- \"%s\"\n" +msgstr "%s: Invalid konfigurationsindstilling - »%s«\n" -#: src/debfoster.c:684 +#: src/debfoster.c:673 #, c-format msgid "Not a package: \"%s\"\n" -msgstr "Ikke en pakke: \"%s\"\n" +msgstr "Ikke en pakke: »%s«\n" -#: src/debfoster.c:706 -msgid "The following packages are on keeper list:" -msgstr "De følgende pakke er på keeper listen:" +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" +msgstr "De følgende pakke er på keeper-listen:" -#: src/debfoster.c:707 +#: src/debfoster.c:696 #, c-format msgid "The keeper list is empty.\n" -msgstr "Keeper listen er tom.\n" +msgstr "Keeper-listen er tom.\n" -#: src/debfoster.c:708 +#: src/debfoster.c:697 msgid "The following packages are marked as non-keepers:" msgstr "De følgende pakker er markeret som ikke-keepers:" # c-format -#: src/debfoster.c:735 +#: src/debfoster.c:724 #, c-format msgid "Installing package: %s\n" msgstr "Installerer pakke: %s\n" -#: src/debfoster.c:865 +#: src/debfoster.c:853 #, c-format msgid "Keeping package: %s\n" msgstr "Beholder pakke: %s\n" -#: src/debfoster.c:876 +#: src/debfoster.c:864 #, c-format msgid "" "\n" @@ -260,91 +263,90 @@ "\n" "%s beholder de følgende %d pakker installeret:" -#: src/debfoster.c:879 +#: src/debfoster.c:867 msgid "ynpshiuqx?" msgstr "ynpshiuqx?" -#: src/debfoster.c:879 +#: src/debfoster.c:867 #, c-format msgid "Keep %s? [Ynpsiuqx?], [H]elp: " msgstr "Behold %s? [Ynpsiuqx?], [H]jælp: " -#: src/debfoster.c:882 +#: src/debfoster.c:870 #, c-format msgid " Yes Keep %s. [default]\n" msgstr " (Y) Ja Behold %s. [standard]\n" -#: src/debfoster.c:883 +#: src/debfoster.c:871 #, c-format msgid " No Delete %s.\n" msgstr " (N) Nej Fjern %s.\n" -#: src/debfoster.c:884 +#: src/debfoster.c:872 #, c-format msgid " Prune Delete %s and the packages it is keeping installed.\n" msgstr " (P) Prune Fjern %s og de pakker den holder installeret.\n" -#: src/debfoster.c:885 +#: src/debfoster.c:873 #, c-format msgid " Skip Skip this question.\n" msgstr " (S) Spring Spring dette spørgsmål over.\n" -#: src/debfoster.c:886 +#: src/debfoster.c:874 #, c-format msgid " Help Print this message.\n" msgstr " (H) Hjælp Vis denne besked.\n" -#: src/debfoster.c:887 +#: src/debfoster.c:875 #, c-format msgid " Info or ? Show information about %s.\n" msgstr " (I/?) Info/? Vis information om %s.\n" -#: src/debfoster.c:888 +#: src/debfoster.c:876 #, c-format msgid " Undo Undo last response.\n" msgstr " (U) Fortryd Fortryd sidste handling.\n" -#: src/debfoster.c:889 +#: src/debfoster.c:877 #, c-format msgid " Quit Exit without removing packages.\n" msgstr " (Q) Stop Afslut uden at fjerne pakker.\n" -#: src/debfoster.c:890 +#: src/debfoster.c:878 #, c-format msgid " Exit Remove unwanted packages and exit.\n" msgstr " (E) Afslut Fjern uønskede pakker og afslut.\n" -#: src/debfoster.c:903 +#: src/debfoster.c:891 msgid "This is a task containing the following installed packages:" -msgstr "" -"Dette er en opgave-pakke som indeholder de følgende installerede pakker:" +msgstr "Dette er en opgave, som indeholder de følgende installerede pakker:" -#: src/debfoster.c:925 -#, fuzzy, c-format -msgid "Nothing to undo.\n" -msgstr "\\aIntet at fortryde.\n" +#: src/debfoster.c:913 +#, c-format +msgid "\aNothing to undo.\n" +msgstr "\aIntet at fortryde.\n" -#: src/debfoster.c:959 +#: src/debfoster.c:947 msgid "The following packages have been orphaned:" -msgstr "De følgende pakker er blevet bort-adopteret:" +msgstr "De følgende pakker er blevet forældreløse:" -#: src/debfoster.c:960 +#: src/debfoster.c:948 #, c-format msgid "There are no orphaned packages.\n" -msgstr "Der er ingen bort-adopterede pakker.\n" +msgstr "Der er ingen forældeløse pakker.\n" -#: src/debfoster.c:980 +#: src/debfoster.c:968 #, c-format msgid "Package is not installed: %s\n" msgstr "Pakke er ikke installeret: %s\n" # c-format -#: src/debfoster.c:983 +#: src/debfoster.c:971 #, c-format msgid "Package is a dependency: %s\n" msgstr "Pakke er en afhængighed: %s\n" -#: src/debfoster.c:986 +#: src/debfoster.c:974 #, c-format msgid "Removing package: %s\n" msgstr "Fjerner pakke: %s\n" @@ -354,25 +356,22 @@ msgid "Interrupted\n" msgstr "Afbrudt\n" -#: src/conffile.c:49 +#: src/conffile.c:44 #, c-format msgid "Not a truth value: \"%s\"\n" -msgstr "Ikke en sand værdi: \"%s\"\n" +msgstr "Ikke en sand værdi: »%s«\n" -#: src/conffile.c:161 +#: src/conffile.c:145 #, c-format msgid "Syntax error in %s:%d\n" -msgstr "Syntaks fejl i %s:%d\n" +msgstr "Syntaksfejl i %s:%d\n" -#: src/conffile.c:165 +#: src/conffile.c:149 #, c-format msgid "Unknown option `%s' at %s:%d\n" -msgstr "Ukendt indstilling `%s' i %s:%d\n" +msgstr "Ukendt indstilling »%s« i %s:%d\n" -#: src/status.c:420 +#: src/status.c:451 #, c-format msgid "Unknown priority \"%s\"\n" -msgstr "Ukendt prioritet \"%s\"\n" - -#~ msgid "The following packages are marked for deletion:" -#~ msgstr "De volgende pakketten zijn gemarkeerd voor verwijdering:" +msgstr "Ukendt prioritet »%s«\n" --- debfoster-2.7.orig/po/de.po +++ debfoster-2.7/po/de.po @@ -0,0 +1,381 @@ +# Translation of debfoster to German +# Copyright (C) 2001 Ivo Timmermans +# This file is distributed under the same license as the debfoster package. +# Chris Leick , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: debfoster 2.7-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2009-06-02 21:12+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/debfoster.c:176 +#, c-format +msgid "Package was removed: %s\n" +msgstr "Paket wurde entfernt: %s\n" + +#: src/debfoster.c:384 +#, c-format +msgid "Not a dependency: \"%s\"\n" +msgstr "Keine Abhängigkeit: »%s«\n" + +#: src/debfoster.c:389 +#, c-format +msgid "%s is an installed package.\n" +msgstr "%s ist ein installiertes Paket.\n" + +#: src/debfoster.c:391 +#, c-format +msgid "Dependency %s is met by:" +msgstr "Abhängigkeit %s ist erfüllt durch:" + +#: src/debfoster.c:393 +#, c-format +msgid "Dependency %s is not met by any package.\n" +msgstr "Abhängigkeit %s ist durch kein Paket erfüllt.\n" + +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 +#, c-format +msgid "Not an installed package: \"%s\"\n" +msgstr "Kein installiertes Paket: »%s«\n" + +#: src/debfoster.c:415 +#, c-format +msgid "Package %s depends on:" +msgstr "Paket %s hängt ab von:" + +#: src/debfoster.c:416 +#, c-format +msgid "Package %s has no depends.\n" +msgstr "Paket %s hat keine Abhängigkeiten.\n" + +#: src/debfoster.c:442 +#, c-format +msgid "The following %d packages on the keeper list rely on %s:" +msgstr "Die folgenden %d Pakete auf der Aufbewahrungsliste verlassen sich auf %s:" + +#: src/debfoster.c:443 +#, c-format +msgid "Packages on the keeper list do not rely on %s.\n" +msgstr "Pakete auf der Aufbewahrungsliste verlassen sich nicht auf %s.\n" + +#: src/debfoster.c:444 +#, c-format +msgid "Packages kept by default rules %s %s.\n" +msgstr "Pakete bewahrt durch Standardregeln %s %s.\n" + +#: src/debfoster.c:444 +msgid "rely on" +msgstr "sich verlassen auf" + +#: src/debfoster.c:444 +msgid "do not rely on" +msgstr "sich nicht verlassen auf" + +#: src/debfoster.c:504 +#, c-format +msgid "The following %d packages are brought in by %s:" +msgstr "Die folgenden %d Pakete wurden durch %s eingebracht:" + +#: src/debfoster.c:505 +#, c-format +msgid "No packages are brought in by %s.\n" +msgstr "Keine Pakete wurden durch %s eingebracht.\n" + +#: src/debfoster.c:560 +#, c-format +msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" +msgstr "Aufruf: %s [-ck DATEI] [-adefhinopqrsvV] Paket1 Paket2-\n" + +#: src/debfoster.c:561 +#, c-format +msgid "" +"Installs package1, deinstalls package2\n" +"\n" +msgstr "" +"Installiert Paket1, deinstalliert Paket2\n" +"\n" + +#: src/debfoster.c:562 +#, c-format +msgid "-v, --verbose Be a loudmouth\n" +msgstr "-v, --verbose Sei ein Großmaul\n" + +#: src/debfoster.c:563 +#, c-format +msgid "-V, --version Show version and copyright information\n" +msgstr "-V, --version Version und Copyright-Information anzeigen\n" + +#: src/debfoster.c:564 +#, c-format +msgid "-h, --help Show this message\n" +msgstr "-h, --help Diese Nachricht anzeigen\n" + +#: src/debfoster.c:565 +#, c-format +msgid "-q, --quiet Silently build keeper file\n" +msgstr "-q, --quiet Aufbewahrungsdatei still erstellen\n" + +#: src/debfoster.c:566 +#, c-format +msgid "-f, --force Force system to conform to keeper file\n" +msgstr "" +"-f, --force Anpassen des Systems an die\n" +" Aufbewahrungsdatei erzwingen\n" + +#: src/debfoster.c:567 +#, c-format +msgid "-m, --mark-only Do not install or delete packages\n" +msgstr "-m, --mark-only Pakete nicht installieren oder löschen\n" + +#: src/debfoster.c:568 +#, c-format +msgid "-u, --upgrade Try to upgrade dependencies\n" +msgstr "" +"-u, --upgrade Versuchen, die Abhängigkeiten zu\n" +" aktualisieren\n" + +#: src/debfoster.c:569 +#, c-format +msgid "-c, --config FILE Specify configuration file\n" +msgstr "-c, --config DATEI Konfigurationsdatei angeben\n" + +#: src/debfoster.c:570 +#, c-format +msgid "-k, --keeperfile FILE Specify keeper file\n" +msgstr "-k, --keeperfile DATEI Aufbewahrungsdatei angeben\n" + +#: src/debfoster.c:571 +#, c-format +msgid "-n, --no-keeperfile Don't read keeper file\n" +msgstr "-n, --no-keeperfile Aufbewahrungsdatei nicht lesen\n" + +#: src/debfoster.c:572 +#, c-format +msgid "-i, --ignore-default-rules Ignore default rules\n" +msgstr "-i, --ignore-default-rules Standardregeln ignorieren\n" + +#: src/debfoster.c:573 +#, c-format +msgid "-a, --show-keepers Show packages on the keeper list\n" +msgstr "" +"-a, --show-keepers Pakete auf der Aufbewahrungsliste\n" +" anzeigen\n" + +#: src/debfoster.c:574 +#, c-format +msgid "-s, --show-orphans Show orphaned packages\n" +msgstr "-s, --show-orphans Verwaiste Pakete anzeigen\n" + +#: src/debfoster.c:575 +#, c-format +msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" +msgstr "-d, --show-depends PAKET Alle anzeigen, von denen PAKET abhängt\n" + +#: src/debfoster.c:576 +#, c-format +msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" +msgstr "-e, --show-dependents PAKET Von PAKET abhängige anzeigen\n" + +#: src/debfoster.c:577 +#, c-format +msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" +msgstr "-p, --show-providers PAKET Pakete anzeigen, die PAKET bereitstellen\n" + +#: src/debfoster.c:578 +#, c-format +msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" +msgstr "" +"-r, --show-related PAKET Pakete anzeigen, die von PAKET\n" +" eingebracht wurden\n" + +#: src/debfoster.c:579 +#, c-format +msgid "-t, --use-tasks Make tasks visible as packages\n" +msgstr "-t, --use-tasks Aufgaben als Pakete sichtbar machen\n" + +#: src/debfoster.c:580 +#, c-format +msgid "-o, --option OPT=VAL Override any configuration option\n" +msgstr "-o, --option OPT=VAL Eine Konfigurationsoption überschreiben\n" + +#: src/debfoster.c:581 +#, c-format +msgid "" +"\n" +"See also: debfoster(8)\n" +msgstr "" +"\n" +"Sehen Sie auch: debfoster(8)\n" + +#: src/debfoster.c:583 +#, c-format +msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" +msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" + +#: src/debfoster.c:584 +#, c-format +msgid "Distributed under the GNU General Public License.\n" +msgstr "Verteilt unter der GNU General Public License.\n" + +#: src/debfoster.c:622 +#, c-format +msgid "%s: Invalid config option -- \"%s\"\n" +msgstr "%s: Ungültige Konfigurationsoption -- »%s«\n" + +#: src/debfoster.c:673 +#, c-format +msgid "Not a package: \"%s\"\n" +msgstr "Kein Paket: »%s«\n" + +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" +msgstr "Die folgenden Pakete stehen auf der Aufbewahrungsliste:" + +#: src/debfoster.c:696 +#, c-format +msgid "The keeper list is empty.\n" +msgstr "Die Aufbewahrungsliste ist leer.\n" + +#: src/debfoster.c:697 +msgid "The following packages are marked as non-keepers:" +msgstr "Die folgenden Pakete sind als nicht aufzubewahren markiert: " + +#: src/debfoster.c:724 +#, c-format +msgid "Installing package: %s\n" +msgstr "Paket wird installiert: %s\n" + +#: src/debfoster.c:853 +#, c-format +msgid "Keeping package: %s\n" +msgstr "Paket wird behalten: %s\n" + +#: src/debfoster.c:864 +#, c-format +msgid "" +"\n" +"%s is keeping the following %d packages installed:" +msgstr "" +"\n" +"%s behält die folgenden %d installierten Pakete:" + +#: src/debfoster.c:867 +msgid "ynpshiuqx?" +msgstr "ynpshiuqx?" + +#: src/debfoster.c:867 +#, c-format +msgid "Keep %s? [Ynpsiuqx?], [H]elp: " +msgstr "%s behalten? [Ynpsiuqx?], [H]ilfe: " + +#: src/debfoster.c:870 +#, c-format +msgid " Yes Keep %s. [default]\n" +msgstr " Yes %s behalten. [Standard]\n" + +#: src/debfoster.c:871 +#, c-format +msgid " No Delete %s.\n" +msgstr " No %s löschen.\n" + +#: src/debfoster.c:872 +#, c-format +msgid " Prune Delete %s and the packages it is keeping installed.\n" +msgstr " Prune %s und die Pakete, die es installiert hält, löschen.\n" + +#: src/debfoster.c:873 +#, c-format +msgid " Skip Skip this question.\n" +msgstr " Skip Diese Frage überspringen.\n" + +#: src/debfoster.c:874 +#, c-format +msgid " Help Print this message.\n" +msgstr " Help Diese Nachricht ausgeben.\n" + +#: src/debfoster.c:875 +#, c-format +msgid " Info or ? Show information about %s.\n" +msgstr " Info/? Information über %s anzeigen.\n" + +#: src/debfoster.c:876 +#, c-format +msgid " Undo Undo last response.\n" +msgstr " Undo Letzte Antwort rückgängig machen.\n" + +#: src/debfoster.c:877 +#, c-format +msgid " Quit Exit without removing packages.\n" +msgstr " Quit Beenden ohne Pakete zu entfernen.\n" + +#: src/debfoster.c:878 +#, c-format +msgid " Exit Remove unwanted packages and exit.\n" +msgstr " Exit Unerwünschte Pakete entfernen und beenden.\n" + +#: src/debfoster.c:891 +msgid "This is a task containing the following installed packages:" +msgstr "Dies ist eine Aufgabe, die die folgenden Pakete enthält:" + +#: src/debfoster.c:913 +#, c-format +msgid "\aNothing to undo.\n" +msgstr "\aNichts rückgängig zu machen.\n" + +#: src/debfoster.c:947 +msgid "The following packages have been orphaned:" +msgstr "Die folgenden Pakete waren verwaist:" + +#: src/debfoster.c:948 +#, c-format +msgid "There are no orphaned packages.\n" +msgstr "Es gibt keine verwaisten Pakete.\n" + +#: src/debfoster.c:968 +#, c-format +msgid "Package is not installed: %s\n" +msgstr "Paket ist nicht installiert: %s\n" + +#: src/debfoster.c:971 +#, c-format +msgid "Package is a dependency: %s\n" +msgstr "Paket ist eine Abhängigkeit: %s\n" + +#: src/debfoster.c:974 +#, c-format +msgid "Removing package: %s\n" +msgstr "Paket wird entfernt: %s\n" + +#: src/asktty.c:28 src/asktty.c:74 +#, c-format +msgid "Interrupted\n" +msgstr "Unterbrochen\n" + +#: src/conffile.c:44 +#, c-format +msgid "Not a truth value: \"%s\"\n" +msgstr "Kein Wahrheitswert: »%s«\n" + +#: src/conffile.c:145 +#, c-format +msgid "Syntax error in %s:%d\n" +msgstr "Syntaxfehler in %s:%d\n" + +#: src/conffile.c:149 +#, c-format +msgid "Unknown option `%s' at %s:%d\n" +msgstr "Unbekannte Option »%s« bei %s:%d\n" + +#: src/status.c:451 +#, c-format +msgid "Unknown priority \"%s\"\n" +msgstr "Unbekannte Priorität »%s«\n" --- debfoster-2.7.orig/po/debfoster.pot +++ debfoster-2.7/po/debfoster.pot @@ -6,336 +6,337 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: debfoster 2.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-20 22:54+0200\n" +"POT-Creation-Date: 2012-08-15 12:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/debfoster.c:175 +#: src/debfoster.c:176 #, c-format msgid "Package was removed: %s\n" msgstr "" -#: src/debfoster.c:386 +#: src/debfoster.c:384 #, c-format msgid "Not a dependency: \"%s\"\n" msgstr "" -#: src/debfoster.c:391 +#: src/debfoster.c:389 #, c-format msgid "%s is an installed package.\n" msgstr "" -#: src/debfoster.c:393 +#: src/debfoster.c:391 #, c-format msgid "Dependency %s is met by:" msgstr "" -#: src/debfoster.c:395 +#: src/debfoster.c:393 #, c-format msgid "Dependency %s is not met by any package.\n" msgstr "" -#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 #, c-format msgid "Not an installed package: \"%s\"\n" msgstr "" -#: src/debfoster.c:417 +#: src/debfoster.c:415 #, c-format msgid "Package %s depends on:" msgstr "" -#: src/debfoster.c:418 +#: src/debfoster.c:416 #, c-format msgid "Package %s has no depends.\n" msgstr "" -#: src/debfoster.c:446 +#: src/debfoster.c:442 #, c-format -msgid "The following %d packages on keeper list rely on %s:" +msgid "The following %d packages on the keeper list rely on %s:" msgstr "" -#: src/debfoster.c:447 +#: src/debfoster.c:443 #, c-format -msgid "Packages on keeper list do not rely on %s.\n" +msgid "Packages on the keeper list do not rely on %s.\n" msgstr "" -#: src/debfoster.c:448 +#: src/debfoster.c:444 #, c-format msgid "Packages kept by default rules %s %s.\n" msgstr "" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "rely on" msgstr "" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "do not rely on" msgstr "" -#: src/debfoster.c:512 +#: src/debfoster.c:504 #, c-format msgid "The following %d packages are brought in by %s:" msgstr "" -#: src/debfoster.c:513 +#: src/debfoster.c:505 #, c-format msgid "No packages are brought in by %s.\n" msgstr "" -#: src/debfoster.c:571 +#: src/debfoster.c:560 #, c-format msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" msgstr "" -#: src/debfoster.c:572 +#: src/debfoster.c:561 #, c-format msgid "" "Installs package1, deinstalls package2\n" "\n" msgstr "" -#: src/debfoster.c:573 +#: src/debfoster.c:562 #, c-format msgid "-v, --verbose Be a loudmouth\n" msgstr "" -#: src/debfoster.c:574 +#: src/debfoster.c:563 #, c-format msgid "-V, --version Show version and copyright information\n" msgstr "" -#: src/debfoster.c:575 +#: src/debfoster.c:564 #, c-format msgid "-h, --help Show this message\n" msgstr "" -#: src/debfoster.c:576 +#: src/debfoster.c:565 #, c-format msgid "-q, --quiet Silently build keeper file\n" msgstr "" -#: src/debfoster.c:577 +#: src/debfoster.c:566 #, c-format msgid "-f, --force Force system to conform to keeper file\n" msgstr "" -#: src/debfoster.c:578 +#: src/debfoster.c:567 #, c-format msgid "-m, --mark-only Do not install or delete packages\n" msgstr "" -#: src/debfoster.c:579 +#: src/debfoster.c:568 #, c-format msgid "-u, --upgrade Try to upgrade dependencies\n" msgstr "" -#: src/debfoster.c:580 +#: src/debfoster.c:569 #, c-format msgid "-c, --config FILE Specify configuration file\n" msgstr "" -#: src/debfoster.c:581 +#: src/debfoster.c:570 #, c-format msgid "-k, --keeperfile FILE Specify keeper file\n" msgstr "" -#: src/debfoster.c:582 +#: src/debfoster.c:571 #, c-format msgid "-n, --no-keeperfile Don't read keeper file\n" msgstr "" -#: src/debfoster.c:583 +#: src/debfoster.c:572 #, c-format msgid "-i, --ignore-default-rules Ignore default rules\n" msgstr "" -#: src/debfoster.c:584 +#: src/debfoster.c:573 #, c-format -msgid "-a, --show-keepers Show packages on keeper list\n" +msgid "-a, --show-keepers Show packages on the keeper list\n" msgstr "" -#: src/debfoster.c:585 +#: src/debfoster.c:574 #, c-format msgid "-s, --show-orphans Show orphaned packages\n" msgstr "" -#: src/debfoster.c:586 +#: src/debfoster.c:575 #, c-format msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" msgstr "" -#: src/debfoster.c:587 +#: src/debfoster.c:576 #, c-format msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" msgstr "" -#: src/debfoster.c:588 +#: src/debfoster.c:577 #, c-format msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" msgstr "" -#: src/debfoster.c:589 +#: src/debfoster.c:578 #, c-format msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" msgstr "" -#: src/debfoster.c:590 +#: src/debfoster.c:579 #, c-format msgid "-t, --use-tasks Make tasks visible as packages\n" msgstr "" -#: src/debfoster.c:591 +#: src/debfoster.c:580 #, c-format msgid "-o, --option OPT=VAL Override any configuration option\n" msgstr "" -#: src/debfoster.c:592 +#: src/debfoster.c:581 #, c-format msgid "" "\n" "See also: debfoster(8)\n" msgstr "" -#: src/debfoster.c:594 +#: src/debfoster.c:583 #, c-format msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" msgstr "" -#: src/debfoster.c:595 +#: src/debfoster.c:584 #, c-format msgid "Distributed under the GNU General Public License.\n" msgstr "" -#: src/debfoster.c:633 +#: src/debfoster.c:622 #, c-format msgid "%s: Invalid config option -- \"%s\"\n" msgstr "" -#: src/debfoster.c:684 +#: src/debfoster.c:673 #, c-format msgid "Not a package: \"%s\"\n" msgstr "" -#: src/debfoster.c:706 -msgid "The following packages are on keeper list:" +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" msgstr "" -#: src/debfoster.c:707 +#: src/debfoster.c:696 #, c-format msgid "The keeper list is empty.\n" msgstr "" -#: src/debfoster.c:708 +#: src/debfoster.c:697 msgid "The following packages are marked as non-keepers:" msgstr "" -#: src/debfoster.c:735 +#: src/debfoster.c:724 #, c-format msgid "Installing package: %s\n" msgstr "" -#: src/debfoster.c:865 +#: src/debfoster.c:853 #, c-format msgid "Keeping package: %s\n" msgstr "" -#: src/debfoster.c:876 +#: src/debfoster.c:864 #, c-format msgid "" "\n" "%s is keeping the following %d packages installed:" msgstr "" -#: src/debfoster.c:879 +#: src/debfoster.c:867 msgid "ynpshiuqx?" msgstr "" -#: src/debfoster.c:879 +#: src/debfoster.c:867 #, c-format msgid "Keep %s? [Ynpsiuqx?], [H]elp: " msgstr "" -#: src/debfoster.c:882 +#: src/debfoster.c:870 #, c-format msgid " Yes Keep %s. [default]\n" msgstr "" -#: src/debfoster.c:883 +#: src/debfoster.c:871 #, c-format msgid " No Delete %s.\n" msgstr "" -#: src/debfoster.c:884 +#: src/debfoster.c:872 #, c-format msgid " Prune Delete %s and the packages it is keeping installed.\n" msgstr "" -#: src/debfoster.c:885 +#: src/debfoster.c:873 #, c-format msgid " Skip Skip this question.\n" msgstr "" -#: src/debfoster.c:886 +#: src/debfoster.c:874 #, c-format msgid " Help Print this message.\n" msgstr "" -#: src/debfoster.c:887 +#: src/debfoster.c:875 #, c-format msgid " Info or ? Show information about %s.\n" msgstr "" -#: src/debfoster.c:888 +#: src/debfoster.c:876 #, c-format msgid " Undo Undo last response.\n" msgstr "" -#: src/debfoster.c:889 +#: src/debfoster.c:877 #, c-format msgid " Quit Exit without removing packages.\n" msgstr "" -#: src/debfoster.c:890 +#: src/debfoster.c:878 #, c-format msgid " Exit Remove unwanted packages and exit.\n" msgstr "" -#: src/debfoster.c:903 +#: src/debfoster.c:891 msgid "This is a task containing the following installed packages:" msgstr "" -#: src/debfoster.c:925 +#: src/debfoster.c:913 #, c-format -msgid "Nothing to undo.\n" +msgid "\aNothing to undo.\n" msgstr "" -#: src/debfoster.c:959 +#: src/debfoster.c:947 msgid "The following packages have been orphaned:" msgstr "" -#: src/debfoster.c:960 +#: src/debfoster.c:948 #, c-format msgid "There are no orphaned packages.\n" msgstr "" -#: src/debfoster.c:980 +#: src/debfoster.c:968 #, c-format msgid "Package is not installed: %s\n" msgstr "" -#: src/debfoster.c:983 +#: src/debfoster.c:971 #, c-format msgid "Package is a dependency: %s\n" msgstr "" -#: src/debfoster.c:986 +#: src/debfoster.c:974 #, c-format msgid "Removing package: %s\n" msgstr "" @@ -345,22 +346,22 @@ msgid "Interrupted\n" msgstr "" -#: src/conffile.c:49 +#: src/conffile.c:44 #, c-format msgid "Not a truth value: \"%s\"\n" msgstr "" -#: src/conffile.c:161 +#: src/conffile.c:145 #, c-format msgid "Syntax error in %s:%d\n" msgstr "" -#: src/conffile.c:165 +#: src/conffile.c:149 #, c-format msgid "Unknown option `%s' at %s:%d\n" msgstr "" -#: src/status.c:420 +#: src/status.c:451 #, c-format msgid "Unknown priority \"%s\"\n" msgstr "" --- debfoster-2.7.orig/po/en@boldquot.po +++ debfoster-2.7/po/en@boldquot.po @@ -1,7 +1,7 @@ # English translations for debfoster package. -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2012 Free Software Foundation, Inc. # This file is distributed under the same license as the debfoster package. -# Automatically generated, 2006. +# Automatically generated, 2012. # # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation @@ -30,96 +30,97 @@ # msgid "" msgstr "" -"Project-Id-Version: debfoster 2.5\n" +"Project-Id-Version: debfoster 2.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-20 22:54+0200\n" -"PO-Revision-Date: 2006-05-20 22:54+0200\n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2012-08-15 12:22-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/debfoster.c:175 +#: src/debfoster.c:176 #, c-format msgid "Package was removed: %s\n" msgstr "Package was removed: %s\n" -#: src/debfoster.c:386 +#: src/debfoster.c:384 #, c-format msgid "Not a dependency: \"%s\"\n" msgstr "Not a dependency: “%s”\n" -#: src/debfoster.c:391 +#: src/debfoster.c:389 #, c-format msgid "%s is an installed package.\n" msgstr "%s is an installed package.\n" -#: src/debfoster.c:393 +#: src/debfoster.c:391 #, c-format msgid "Dependency %s is met by:" msgstr "Dependency %s is met by:" -#: src/debfoster.c:395 +#: src/debfoster.c:393 #, c-format msgid "Dependency %s is not met by any package.\n" msgstr "Dependency %s is not met by any package.\n" -#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 #, c-format msgid "Not an installed package: \"%s\"\n" msgstr "Not an installed package: “%s”\n" -#: src/debfoster.c:417 +#: src/debfoster.c:415 #, c-format msgid "Package %s depends on:" msgstr "Package %s depends on:" -#: src/debfoster.c:418 +#: src/debfoster.c:416 #, c-format msgid "Package %s has no depends.\n" msgstr "Package %s has no depends.\n" -#: src/debfoster.c:446 +#: src/debfoster.c:442 #, c-format -msgid "The following %d packages on keeper list rely on %s:" +msgid "The following %d packages on the keeper list rely on %s:" msgstr "The following %d packages on keeper list rely on %s:" -#: src/debfoster.c:447 +#: src/debfoster.c:443 #, c-format -msgid "Packages on keeper list do not rely on %s.\n" +msgid "Packages on the keeper list do not rely on %s.\n" msgstr "Packages on keeper list do not rely on %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 #, c-format msgid "Packages kept by default rules %s %s.\n" msgstr "Packages kept by default rules %s %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "rely on" msgstr "rely on" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "do not rely on" msgstr "do not rely on" -#: src/debfoster.c:512 +#: src/debfoster.c:504 #, c-format msgid "The following %d packages are brought in by %s:" msgstr "The following %d packages are brought in by %s:" -#: src/debfoster.c:513 +#: src/debfoster.c:505 #, c-format msgid "No packages are brought in by %s.\n" msgstr "No packages are brought in by %s.\n" -#: src/debfoster.c:571 +#: src/debfoster.c:560 #, c-format msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" msgstr "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" -#: src/debfoster.c:572 +#: src/debfoster.c:561 #, c-format msgid "" "Installs package1, deinstalls package2\n" @@ -128,104 +129,102 @@ "Installs package1, deinstalls package2\n" "\n" -#: src/debfoster.c:573 +#: src/debfoster.c:562 #, c-format msgid "-v, --verbose Be a loudmouth\n" msgstr "-v, --verbose Be a loudmouth\n" -#: src/debfoster.c:574 +#: src/debfoster.c:563 #, c-format msgid "-V, --version Show version and copyright information\n" -msgstr "" -"-V, --version Show version and copyright information\n" +msgstr "-V, --version Show version and copyright information\n" -#: src/debfoster.c:575 +#: src/debfoster.c:564 #, c-format msgid "-h, --help Show this message\n" msgstr "-h, --help Show this message\n" -#: src/debfoster.c:576 +#: src/debfoster.c:565 #, c-format msgid "-q, --quiet Silently build keeper file\n" msgstr "-q, --quiet Silently build keeper file\n" -#: src/debfoster.c:577 +#: src/debfoster.c:566 #, c-format msgid "-f, --force Force system to conform to keeper file\n" -msgstr "" -"-f, --force Force system to conform to keeper file\n" +msgstr "-f, --force Force system to conform to keeper file\n" -#: src/debfoster.c:578 +#: src/debfoster.c:567 #, c-format msgid "-m, --mark-only Do not install or delete packages\n" msgstr "-m, --mark-only Do not install or delete packages\n" -#: src/debfoster.c:579 +#: src/debfoster.c:568 #, c-format msgid "-u, --upgrade Try to upgrade dependencies\n" msgstr "-u, --upgrade Try to upgrade dependencies\n" -#: src/debfoster.c:580 +#: src/debfoster.c:569 #, c-format msgid "-c, --config FILE Specify configuration file\n" msgstr "-c, --config FILE Specify configuration file\n" -#: src/debfoster.c:581 +#: src/debfoster.c:570 #, c-format msgid "-k, --keeperfile FILE Specify keeper file\n" msgstr "-k, --keeperfile FILE Specify keeper file\n" -#: src/debfoster.c:582 +#: src/debfoster.c:571 #, c-format msgid "-n, --no-keeperfile Don't read keeper file\n" msgstr "-n, --no-keeperfile Don't read keeper file\n" -#: src/debfoster.c:583 +#: src/debfoster.c:572 #, c-format msgid "-i, --ignore-default-rules Ignore default rules\n" msgstr "-i, --ignore-default-rules Ignore default rules\n" -#: src/debfoster.c:584 +#: src/debfoster.c:573 #, c-format -msgid "-a, --show-keepers Show packages on keeper list\n" +msgid "-a, --show-keepers Show packages on the keeper list\n" msgstr "-a, --show-keepers Show packages on keeper list\n" -#: src/debfoster.c:585 +#: src/debfoster.c:574 #, c-format msgid "-s, --show-orphans Show orphaned packages\n" msgstr "-s, --show-orphans Show orphaned packages\n" -#: src/debfoster.c:586 +#: src/debfoster.c:575 #, c-format msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" msgstr "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" -#: src/debfoster.c:587 +#: src/debfoster.c:576 #, c-format msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" msgstr "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" -#: src/debfoster.c:588 +#: src/debfoster.c:577 #, c-format msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" msgstr "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" -#: src/debfoster.c:589 +#: src/debfoster.c:578 #, c-format msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" msgstr "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" -#: src/debfoster.c:590 +#: src/debfoster.c:579 #, c-format msgid "-t, --use-tasks Make tasks visible as packages\n" msgstr "-t, --use-tasks Make tasks visible as packages\n" -#: src/debfoster.c:591 +#: src/debfoster.c:580 #, c-format msgid "-o, --option OPT=VAL Override any configuration option\n" msgstr "-o, --option OPT=VAL Override any configuration option\n" -#: src/debfoster.c:592 +#: src/debfoster.c:581 #, c-format msgid "" "\n" @@ -234,50 +233,50 @@ "\n" "See also: debfoster(8)\n" -#: src/debfoster.c:594 +#: src/debfoster.c:583 #, c-format msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" -#: src/debfoster.c:595 +#: src/debfoster.c:584 #, c-format msgid "Distributed under the GNU General Public License.\n" msgstr "Distributed under the GNU General Public License.\n" -#: src/debfoster.c:633 +#: src/debfoster.c:622 #, c-format msgid "%s: Invalid config option -- \"%s\"\n" msgstr "%s: Invalid config option -- “%s”\n" -#: src/debfoster.c:684 +#: src/debfoster.c:673 #, c-format msgid "Not a package: \"%s\"\n" msgstr "Not a package: “%s”\n" -#: src/debfoster.c:706 -msgid "The following packages are on keeper list:" +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" msgstr "The following packages are on keeper list:" -#: src/debfoster.c:707 +#: src/debfoster.c:696 #, c-format msgid "The keeper list is empty.\n" msgstr "The keeper list is empty.\n" -#: src/debfoster.c:708 +#: src/debfoster.c:697 msgid "The following packages are marked as non-keepers:" msgstr "The following packages are marked as non-keepers:" -#: src/debfoster.c:735 +#: src/debfoster.c:724 #, c-format msgid "Installing package: %s\n" msgstr "Installing package: %s\n" -#: src/debfoster.c:865 +#: src/debfoster.c:853 #, c-format msgid "Keeping package: %s\n" msgstr "Keeping package: %s\n" -#: src/debfoster.c:876 +#: src/debfoster.c:864 #, c-format msgid "" "\n" @@ -286,89 +285,89 @@ "\n" "%s is keeping the following %d packages installed:" -#: src/debfoster.c:879 +#: src/debfoster.c:867 msgid "ynpshiuqx?" msgstr "ynpshiuqx?" -#: src/debfoster.c:879 +#: src/debfoster.c:867 #, c-format msgid "Keep %s? [Ynpsiuqx?], [H]elp: " msgstr "Keep %s? [Ynpsiuqx?], [H]elp: " -#: src/debfoster.c:882 +#: src/debfoster.c:870 #, c-format msgid " Yes Keep %s. [default]\n" msgstr " Yes Keep %s. [default]\n" -#: src/debfoster.c:883 +#: src/debfoster.c:871 #, c-format msgid " No Delete %s.\n" msgstr " No Delete %s.\n" -#: src/debfoster.c:884 +#: src/debfoster.c:872 #, c-format msgid " Prune Delete %s and the packages it is keeping installed.\n" msgstr " Prune Delete %s and the packages it is keeping installed.\n" -#: src/debfoster.c:885 +#: src/debfoster.c:873 #, c-format msgid " Skip Skip this question.\n" msgstr " Skip Skip this question.\n" -#: src/debfoster.c:886 +#: src/debfoster.c:874 #, c-format msgid " Help Print this message.\n" msgstr " Help Print this message.\n" -#: src/debfoster.c:887 +#: src/debfoster.c:875 #, c-format msgid " Info or ? Show information about %s.\n" msgstr " Info or ? Show information about %s.\n" -#: src/debfoster.c:888 +#: src/debfoster.c:876 #, c-format msgid " Undo Undo last response.\n" msgstr " Undo Undo last response.\n" -#: src/debfoster.c:889 +#: src/debfoster.c:877 #, c-format msgid " Quit Exit without removing packages.\n" msgstr " Quit Exit without removing packages.\n" -#: src/debfoster.c:890 +#: src/debfoster.c:878 #, c-format msgid " Exit Remove unwanted packages and exit.\n" msgstr " Exit Remove unwanted packages and exit.\n" -#: src/debfoster.c:903 +#: src/debfoster.c:891 msgid "This is a task containing the following installed packages:" msgstr "This is a task containing the following installed packages:" -#: src/debfoster.c:925 +#: src/debfoster.c:913 #, c-format -msgid "Nothing to undo.\n" -msgstr "Nothing to undo.\n" +msgid "\aNothing to undo.\n" +msgstr "\aNothing to undo.\n" -#: src/debfoster.c:959 +#: src/debfoster.c:947 msgid "The following packages have been orphaned:" msgstr "The following packages have been orphaned:" -#: src/debfoster.c:960 +#: src/debfoster.c:948 #, c-format msgid "There are no orphaned packages.\n" msgstr "There are no orphaned packages.\n" -#: src/debfoster.c:980 +#: src/debfoster.c:968 #, c-format msgid "Package is not installed: %s\n" msgstr "Package is not installed: %s\n" -#: src/debfoster.c:983 +#: src/debfoster.c:971 #, c-format msgid "Package is a dependency: %s\n" msgstr "Package is a dependency: %s\n" -#: src/debfoster.c:986 +#: src/debfoster.c:974 #, c-format msgid "Removing package: %s\n" msgstr "Removing package: %s\n" @@ -378,22 +377,22 @@ msgid "Interrupted\n" msgstr "Interrupted\n" -#: src/conffile.c:49 +#: src/conffile.c:44 #, c-format msgid "Not a truth value: \"%s\"\n" msgstr "Not a truth value: “%s”\n" -#: src/conffile.c:161 +#: src/conffile.c:145 #, c-format msgid "Syntax error in %s:%d\n" msgstr "Syntax error in %s:%d\n" -#: src/conffile.c:165 +#: src/conffile.c:149 #, c-format msgid "Unknown option `%s' at %s:%d\n" msgstr "Unknown option ‘%s’ at %s:%d\n" -#: src/status.c:420 +#: src/status.c:451 #, c-format msgid "Unknown priority \"%s\"\n" msgstr "Unknown priority “%s”\n" --- debfoster-2.7.orig/po/en@quot.po +++ debfoster-2.7/po/en@quot.po @@ -1,7 +1,7 @@ # English translations for debfoster package. -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2012 Free Software Foundation, Inc. # This file is distributed under the same license as the debfoster package. -# Automatically generated, 2006. +# Automatically generated, 2012. # # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation @@ -27,96 +27,97 @@ # msgid "" msgstr "" -"Project-Id-Version: debfoster 2.5\n" +"Project-Id-Version: debfoster 2.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-20 22:54+0200\n" -"PO-Revision-Date: 2006-05-20 22:54+0200\n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2012-08-15 12:22-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/debfoster.c:175 +#: src/debfoster.c:176 #, c-format msgid "Package was removed: %s\n" msgstr "Package was removed: %s\n" -#: src/debfoster.c:386 +#: src/debfoster.c:384 #, c-format msgid "Not a dependency: \"%s\"\n" msgstr "Not a dependency: “%s”\n" -#: src/debfoster.c:391 +#: src/debfoster.c:389 #, c-format msgid "%s is an installed package.\n" msgstr "%s is an installed package.\n" -#: src/debfoster.c:393 +#: src/debfoster.c:391 #, c-format msgid "Dependency %s is met by:" msgstr "Dependency %s is met by:" -#: src/debfoster.c:395 +#: src/debfoster.c:393 #, c-format msgid "Dependency %s is not met by any package.\n" msgstr "Dependency %s is not met by any package.\n" -#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 #, c-format msgid "Not an installed package: \"%s\"\n" msgstr "Not an installed package: “%s”\n" -#: src/debfoster.c:417 +#: src/debfoster.c:415 #, c-format msgid "Package %s depends on:" msgstr "Package %s depends on:" -#: src/debfoster.c:418 +#: src/debfoster.c:416 #, c-format msgid "Package %s has no depends.\n" msgstr "Package %s has no depends.\n" -#: src/debfoster.c:446 +#: src/debfoster.c:442 #, c-format -msgid "The following %d packages on keeper list rely on %s:" +msgid "The following %d packages on the keeper list rely on %s:" msgstr "The following %d packages on keeper list rely on %s:" -#: src/debfoster.c:447 +#: src/debfoster.c:443 #, c-format -msgid "Packages on keeper list do not rely on %s.\n" +msgid "Packages on the keeper list do not rely on %s.\n" msgstr "Packages on keeper list do not rely on %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 #, c-format msgid "Packages kept by default rules %s %s.\n" msgstr "Packages kept by default rules %s %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "rely on" msgstr "rely on" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "do not rely on" msgstr "do not rely on" -#: src/debfoster.c:512 +#: src/debfoster.c:504 #, c-format msgid "The following %d packages are brought in by %s:" msgstr "The following %d packages are brought in by %s:" -#: src/debfoster.c:513 +#: src/debfoster.c:505 #, c-format msgid "No packages are brought in by %s.\n" msgstr "No packages are brought in by %s.\n" -#: src/debfoster.c:571 +#: src/debfoster.c:560 #, c-format msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" msgstr "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" -#: src/debfoster.c:572 +#: src/debfoster.c:561 #, c-format msgid "" "Installs package1, deinstalls package2\n" @@ -125,104 +126,102 @@ "Installs package1, deinstalls package2\n" "\n" -#: src/debfoster.c:573 +#: src/debfoster.c:562 #, c-format msgid "-v, --verbose Be a loudmouth\n" msgstr "-v, --verbose Be a loudmouth\n" -#: src/debfoster.c:574 +#: src/debfoster.c:563 #, c-format msgid "-V, --version Show version and copyright information\n" -msgstr "" -"-V, --version Show version and copyright information\n" +msgstr "-V, --version Show version and copyright information\n" -#: src/debfoster.c:575 +#: src/debfoster.c:564 #, c-format msgid "-h, --help Show this message\n" msgstr "-h, --help Show this message\n" -#: src/debfoster.c:576 +#: src/debfoster.c:565 #, c-format msgid "-q, --quiet Silently build keeper file\n" msgstr "-q, --quiet Silently build keeper file\n" -#: src/debfoster.c:577 +#: src/debfoster.c:566 #, c-format msgid "-f, --force Force system to conform to keeper file\n" -msgstr "" -"-f, --force Force system to conform to keeper file\n" +msgstr "-f, --force Force system to conform to keeper file\n" -#: src/debfoster.c:578 +#: src/debfoster.c:567 #, c-format msgid "-m, --mark-only Do not install or delete packages\n" msgstr "-m, --mark-only Do not install or delete packages\n" -#: src/debfoster.c:579 +#: src/debfoster.c:568 #, c-format msgid "-u, --upgrade Try to upgrade dependencies\n" msgstr "-u, --upgrade Try to upgrade dependencies\n" -#: src/debfoster.c:580 +#: src/debfoster.c:569 #, c-format msgid "-c, --config FILE Specify configuration file\n" msgstr "-c, --config FILE Specify configuration file\n" -#: src/debfoster.c:581 +#: src/debfoster.c:570 #, c-format msgid "-k, --keeperfile FILE Specify keeper file\n" msgstr "-k, --keeperfile FILE Specify keeper file\n" -#: src/debfoster.c:582 +#: src/debfoster.c:571 #, c-format msgid "-n, --no-keeperfile Don't read keeper file\n" msgstr "-n, --no-keeperfile Don't read keeper file\n" -#: src/debfoster.c:583 +#: src/debfoster.c:572 #, c-format msgid "-i, --ignore-default-rules Ignore default rules\n" msgstr "-i, --ignore-default-rules Ignore default rules\n" -#: src/debfoster.c:584 +#: src/debfoster.c:573 #, c-format -msgid "-a, --show-keepers Show packages on keeper list\n" +msgid "-a, --show-keepers Show packages on the keeper list\n" msgstr "-a, --show-keepers Show packages on keeper list\n" -#: src/debfoster.c:585 +#: src/debfoster.c:574 #, c-format msgid "-s, --show-orphans Show orphaned packages\n" msgstr "-s, --show-orphans Show orphaned packages\n" -#: src/debfoster.c:586 +#: src/debfoster.c:575 #, c-format msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" msgstr "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" -#: src/debfoster.c:587 +#: src/debfoster.c:576 #, c-format msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" msgstr "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" -#: src/debfoster.c:588 +#: src/debfoster.c:577 #, c-format msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" msgstr "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" -#: src/debfoster.c:589 +#: src/debfoster.c:578 #, c-format msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" msgstr "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" -#: src/debfoster.c:590 +#: src/debfoster.c:579 #, c-format msgid "-t, --use-tasks Make tasks visible as packages\n" msgstr "-t, --use-tasks Make tasks visible as packages\n" -#: src/debfoster.c:591 +#: src/debfoster.c:580 #, c-format msgid "-o, --option OPT=VAL Override any configuration option\n" msgstr "-o, --option OPT=VAL Override any configuration option\n" -#: src/debfoster.c:592 +#: src/debfoster.c:581 #, c-format msgid "" "\n" @@ -231,50 +230,50 @@ "\n" "See also: debfoster(8)\n" -#: src/debfoster.c:594 +#: src/debfoster.c:583 #, c-format msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" -#: src/debfoster.c:595 +#: src/debfoster.c:584 #, c-format msgid "Distributed under the GNU General Public License.\n" msgstr "Distributed under the GNU General Public License.\n" -#: src/debfoster.c:633 +#: src/debfoster.c:622 #, c-format msgid "%s: Invalid config option -- \"%s\"\n" msgstr "%s: Invalid config option -- “%s”\n" -#: src/debfoster.c:684 +#: src/debfoster.c:673 #, c-format msgid "Not a package: \"%s\"\n" msgstr "Not a package: “%s”\n" -#: src/debfoster.c:706 -msgid "The following packages are on keeper list:" +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" msgstr "The following packages are on keeper list:" -#: src/debfoster.c:707 +#: src/debfoster.c:696 #, c-format msgid "The keeper list is empty.\n" msgstr "The keeper list is empty.\n" -#: src/debfoster.c:708 +#: src/debfoster.c:697 msgid "The following packages are marked as non-keepers:" msgstr "The following packages are marked as non-keepers:" -#: src/debfoster.c:735 +#: src/debfoster.c:724 #, c-format msgid "Installing package: %s\n" msgstr "Installing package: %s\n" -#: src/debfoster.c:865 +#: src/debfoster.c:853 #, c-format msgid "Keeping package: %s\n" msgstr "Keeping package: %s\n" -#: src/debfoster.c:876 +#: src/debfoster.c:864 #, c-format msgid "" "\n" @@ -283,89 +282,89 @@ "\n" "%s is keeping the following %d packages installed:" -#: src/debfoster.c:879 +#: src/debfoster.c:867 msgid "ynpshiuqx?" msgstr "ynpshiuqx?" -#: src/debfoster.c:879 +#: src/debfoster.c:867 #, c-format msgid "Keep %s? [Ynpsiuqx?], [H]elp: " msgstr "Keep %s? [Ynpsiuqx?], [H]elp: " -#: src/debfoster.c:882 +#: src/debfoster.c:870 #, c-format msgid " Yes Keep %s. [default]\n" msgstr " Yes Keep %s. [default]\n" -#: src/debfoster.c:883 +#: src/debfoster.c:871 #, c-format msgid " No Delete %s.\n" msgstr " No Delete %s.\n" -#: src/debfoster.c:884 +#: src/debfoster.c:872 #, c-format msgid " Prune Delete %s and the packages it is keeping installed.\n" msgstr " Prune Delete %s and the packages it is keeping installed.\n" -#: src/debfoster.c:885 +#: src/debfoster.c:873 #, c-format msgid " Skip Skip this question.\n" msgstr " Skip Skip this question.\n" -#: src/debfoster.c:886 +#: src/debfoster.c:874 #, c-format msgid " Help Print this message.\n" msgstr " Help Print this message.\n" -#: src/debfoster.c:887 +#: src/debfoster.c:875 #, c-format msgid " Info or ? Show information about %s.\n" msgstr " Info or ? Show information about %s.\n" -#: src/debfoster.c:888 +#: src/debfoster.c:876 #, c-format msgid " Undo Undo last response.\n" msgstr " Undo Undo last response.\n" -#: src/debfoster.c:889 +#: src/debfoster.c:877 #, c-format msgid " Quit Exit without removing packages.\n" msgstr " Quit Exit without removing packages.\n" -#: src/debfoster.c:890 +#: src/debfoster.c:878 #, c-format msgid " Exit Remove unwanted packages and exit.\n" msgstr " Exit Remove unwanted packages and exit.\n" -#: src/debfoster.c:903 +#: src/debfoster.c:891 msgid "This is a task containing the following installed packages:" msgstr "This is a task containing the following installed packages:" -#: src/debfoster.c:925 +#: src/debfoster.c:913 #, c-format -msgid "Nothing to undo.\n" -msgstr "Nothing to undo.\n" +msgid "\aNothing to undo.\n" +msgstr "\aNothing to undo.\n" -#: src/debfoster.c:959 +#: src/debfoster.c:947 msgid "The following packages have been orphaned:" msgstr "The following packages have been orphaned:" -#: src/debfoster.c:960 +#: src/debfoster.c:948 #, c-format msgid "There are no orphaned packages.\n" msgstr "There are no orphaned packages.\n" -#: src/debfoster.c:980 +#: src/debfoster.c:968 #, c-format msgid "Package is not installed: %s\n" msgstr "Package is not installed: %s\n" -#: src/debfoster.c:983 +#: src/debfoster.c:971 #, c-format msgid "Package is a dependency: %s\n" msgstr "Package is a dependency: %s\n" -#: src/debfoster.c:986 +#: src/debfoster.c:974 #, c-format msgid "Removing package: %s\n" msgstr "Removing package: %s\n" @@ -375,22 +374,22 @@ msgid "Interrupted\n" msgstr "Interrupted\n" -#: src/conffile.c:49 +#: src/conffile.c:44 #, c-format msgid "Not a truth value: \"%s\"\n" msgstr "Not a truth value: “%s”\n" -#: src/conffile.c:161 +#: src/conffile.c:145 #, c-format msgid "Syntax error in %s:%d\n" msgstr "Syntax error in %s:%d\n" -#: src/conffile.c:165 +#: src/conffile.c:149 #, c-format msgid "Unknown option `%s' at %s:%d\n" msgstr "Unknown option ‘%s’ at %s:%d\n" -#: src/status.c:420 +#: src/status.c:451 #, c-format msgid "Unknown priority \"%s\"\n" msgstr "Unknown priority “%s”\n" --- debfoster-2.7.orig/po/es.po +++ debfoster-2.7/po/es.po @@ -0,0 +1,415 @@ +# debfoster po translation to Spanish +# Copyright (C) 2012 Software in the Public Interest +# This file is distributed under the same license as the debfoster package. +# +# Changes: +# - Initial translation +# Omar Campagne , 2012. +# +# - Updates +# TRANSLATOR +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: debfoster 2.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2012-01-05 17:54+0100\n" +"Last-Translator: Omar Campagne \n" +"Language-Team: Debian l10n Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1-rc1\n" +"X-Project-Style: default\n" + +#: src/debfoster.c:176 +#, c-format +msgid "Package was removed: %s\n" +msgstr "El paquete se ha eliminado: %s\n" + +#: src/debfoster.c:384 +#, c-format +msgid "Not a dependency: \"%s\"\n" +msgstr "No es una dependencia : \"%s\"\n" + +#: src/debfoster.c:389 +#, c-format +msgid "%s is an installed package.\n" +msgstr "%s es un paquete instalado.\n" + +#: src/debfoster.c:391 +#, c-format +msgid "Dependency %s is met by:" +msgstr "Paquete que proporciona la dependencia %s:" + +#: src/debfoster.c:393 +#, c-format +msgid "Dependency %s is not met by any package.\n" +msgstr "Ningún paquete proporciona la dependencia %s.\n" + +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 +#, c-format +msgid "Not an installed package: \"%s\"\n" +msgstr "No es un paquete instalado: \"%s\"\n" + +#: src/debfoster.c:415 +#, c-format +msgid "Package %s depends on:" +msgstr "El paquete %s depende de:" + +#: src/debfoster.c:416 +#, c-format +msgid "Package %s has no depends.\n" +msgstr "El paquete %s no tiene dependencias.\n" + +#: src/debfoster.c:442 +#, c-format +msgid "The following %d packages on the keeper list rely on %s:" +msgstr "" +"Los siguientes %d paquetes en la lista de paquetes a mantener dependen de " +"%s:" + +#: src/debfoster.c:443 +#, c-format +msgid "Packages on the keeper list do not rely on %s.\n" +msgstr "Los paquetes en la lista de paquetes a mantener no dependen de %s.\n" + +#: src/debfoster.c:444 +#, c-format +msgid "Packages kept by default rules %s %s.\n" +msgstr "Paquetes mantenidos por opciones predeterminadas %s %s.\n" + +#: src/debfoster.c:444 +msgid "rely on" +msgstr "depende de" + +#: src/debfoster.c:444 +msgid "do not rely on" +msgstr "no depende de" + +#: src/debfoster.c:504 +#, c-format +msgid "The following %d packages are brought in by %s:" +msgstr "Los siguientes %d paquetes se instalan debido a %s:" + +#: src/debfoster.c:505 +#, c-format +msgid "No packages are brought in by %s.\n" +msgstr "%s no instala ningún paquete adicional.\n" + +#: src/debfoster.c:560 +#, c-format +msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" +msgstr "Uso: %s [-ck FICHERO] [-adefhinopqrsvV] paquete1 paquete2-\n" + +#: src/debfoster.c:561 +#, c-format +msgid "" +"Installs package1, deinstalls package2\n" +"\n" +msgstr "" +"Instala paquete1, desinstala paquete2\n" +"\n" + +#: src/debfoster.c:562 +#, c-format +msgid "-v, --verbose Be a loudmouth\n" +msgstr "-v, --verbose Muestra una salida informativa\n" + +#: src/debfoster.c:563 +#, c-format +msgid "-V, --version Show version and copyright information\n" +msgstr "" +"-V, --version Muestra información de la versión y de " +"derechos de autor\n" + +#: src/debfoster.c:564 +#, c-format +msgid "-h, --help Show this message\n" +msgstr "-h, --help Muestra este mensaje\n" + +#: src/debfoster.c:565 +#, c-format +msgid "-q, --quiet Silently build keeper file\n" +msgstr "" +"-q, --quiet Genera silenciosamente el fichero «keepers» " +"de paquetes a mantener\n" + +#: src/debfoster.c:566 +#, c-format +msgid "-f, --force Force system to conform to keeper file\n" +msgstr "" +"-f, --force Fuerza el sistema a coincidir con el fichero " +"de paquetes a mantener\n" + +#: src/debfoster.c:567 +#, c-format +msgid "-m, --mark-only Do not install or delete packages\n" +msgstr "-m, --mark-only No instala ni elimina paquetes\n" + +#: src/debfoster.c:568 +#, c-format +msgid "-u, --upgrade Try to upgrade dependencies\n" +msgstr "-u, --upgrade Intenta actualizar las dependencias\n" + +#: src/debfoster.c:569 +#, c-format +msgid "-c, --config FILE Specify configuration file\n" +msgstr "-c, --config FICHERO Especifica un fichero de configuración\n" + +#: src/debfoster.c:570 +#, c-format +msgid "-k, --keeperfile FILE Specify keeper file\n" +msgstr "-k, --keeperfile FICHERO Especifica un fichero de paquetes a mantener\n" + +#: src/debfoster.c:571 +#, c-format +msgid "-n, --no-keeperfile Don't read keeper file\n" +msgstr "-n, --no-keeperfile No lee el fichero de paquetes a mantener\n" + +#: src/debfoster.c:572 +#, c-format +msgid "-i, --ignore-default-rules Ignore default rules\n" +msgstr "-i, --ignore-default-rules Ignora las opciones predeterminadas\n" + +#: src/debfoster.c:573 +#, c-format +msgid "-a, --show-keepers Show packages on the keeper list\n" +msgstr "" +"-a, --show-keepers Muestra los paquetes en la lista de paquetes " +"a mantener\n" + +#: src/debfoster.c:574 +#, c-format +msgid "-s, --show-orphans Show orphaned packages\n" +msgstr "-s, --show-orphans Muestra paquetes huérfanos\n" + +#: src/debfoster.c:575 +#, c-format +msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" +msgstr "" +"-d, --show-depends PAQUETE Muestra todas las dependencias del " +"PAQUETE\n" + +#: src/debfoster.c:576 +#, c-format +msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" +msgstr "" +"-e, --show-dependents PAQUETE Muestra los paquetes que dependen del " +"PAQUETE\n" + +#: src/debfoster.c:577 +#, c-format +msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" +msgstr "" +"-p, --show-providers PAQUETE Muestra los paquetes que proporcionan " +"PAQUETE\n" + +#: src/debfoster.c:578 +#, c-format +msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" +msgstr "-r, --show-related PAQUETE Muestra los paquetes instalados por PAQUETE\n" + +#: src/debfoster.c:579 +#, c-format +msgid "-t, --use-tasks Make tasks visible as packages\n" +msgstr "-t, --use-tasks Muestra las tareas como paquetes\n" + +#: src/debfoster.c:580 +#, c-format +msgid "-o, --option OPT=VAL Override any configuration option\n" +msgstr "-o, --option OPCIÓN=VALOR Sustituye cualquier opción de configuración\n" + +#: src/debfoster.c:581 +#, c-format +msgid "" +"\n" +"See also: debfoster(8)\n" +msgstr "" +"\n" +"Véase también: debfoster(8)\n" + +#: src/debfoster.c:583 +#, c-format +msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" +msgstr "debfoster %s -- Derechos de autor (C) 2000,2001 Wessel Dankers.\n" + +#: src/debfoster.c:584 +#, c-format +msgid "Distributed under the GNU General Public License.\n" +msgstr "Distribuido bajo la licencia GNU General Public Licence.\n" + +#: src/debfoster.c:622 +#, c-format +msgid "%s: Invalid config option -- \"%s\"\n" +msgstr "%s: Opción de configuración no válida -- \"%s\"\n" + +#: src/debfoster.c:673 +#, c-format +msgid "Not a package: \"%s\"\n" +msgstr "No es un paquete: \"%s\"\n" + +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" +msgstr "Los siguientes paquetes están en la lista de paquetes a mantener:" + +#: src/debfoster.c:696 +#, c-format +msgid "The keeper list is empty.\n" +msgstr "La lista de paquetes a mantener está vacía.\n" + +#: src/debfoster.c:697 +msgid "The following packages are marked as non-keepers:" +msgstr "Los siguientes paquetes están marcados como paquetes que no se mantendrán:" + +#: src/debfoster.c:724 +#, c-format +msgid "Installing package: %s\n" +msgstr "Instalando paquete: %s\n" + +#: src/debfoster.c:853 +#, c-format +msgid "Keeping package: %s\n" +msgstr "Manteniendo paquete: %s\n" + +#: src/debfoster.c:864 +#, c-format +msgid "" +"\n" +"%s is keeping the following %d packages installed:" +msgstr "" +"\n" +"%s mantiene instalados los siguientes %d paquetes:" + +#: src/debfoster.c:867 +msgid "ynpshiuqx?" +msgstr "¿ynpshiuqx?" + +#: src/debfoster.c:867 +#, c-format +msgid "Keep %s? [Ynpsiuqx?], [H]elp: " +msgstr "¿Desea mantener %s? [Ynpsiuqx?], [H] Ayuda: " + +#: src/debfoster.c:870 +#, c-format +msgid " Yes Keep %s. [default]\n" +msgstr " Yes Mantiene %s (predeterminado).\n" + +#: src/debfoster.c:871 +#, c-format +msgid " No Delete %s.\n" +msgstr " No Elimina %s.\n" + +#: src/debfoster.c:872 +#, c-format +msgid " Prune Delete %s and the packages it is keeping installed.\n" +msgstr " Prune Elimina %s y los paquetes que mantiene instalados.\n" + +#: src/debfoster.c:873 +#, c-format +msgid " Skip Skip this question.\n" +msgstr " Skip Omite esta pregunta.\n" + +#: src/debfoster.c:874 +#, c-format +msgid " Help Print this message.\n" +msgstr " Help Muestra este mensaje.\n" + +#: src/debfoster.c:875 +#, c-format +msgid " Info or ? Show information about %s.\n" +msgstr " Info o ? Muestra información acerca de %s.\n" + +#: src/debfoster.c:876 +#, c-format +msgid " Undo Undo last response.\n" +msgstr " Undo Deshace la última respuesta.\n" + +#: src/debfoster.c:877 +#, c-format +msgid " Quit Exit without removing packages.\n" +msgstr " Quit Cierra sin eliminar paquetes.\n" + +#: src/debfoster.c:878 +#, c-format +msgid " Exit Remove unwanted packages and exit.\n" +msgstr " Exit Elimina paquetes no deseados y cierra.\n" + +#: src/debfoster.c:891 +msgid "This is a task containing the following installed packages:" +msgstr "Esta tarea contiene los siguientes paquetes instalados:" + +#: src/debfoster.c:913 +#, c-format +msgid "\aNothing to undo.\n" +msgstr "\aNada que deshacer.\n" + +#: src/debfoster.c:947 +msgid "The following packages have been orphaned:" +msgstr "Los siguientes paquetes han quedado huérfanos:" + +#: src/debfoster.c:948 +#, c-format +msgid "There are no orphaned packages.\n" +msgstr "No hay paquetes huérfanos.\n" + +#: src/debfoster.c:968 +#, c-format +msgid "Package is not installed: %s\n" +msgstr "El paquete no está instalado: %s\n" + +#: src/debfoster.c:971 +#, c-format +msgid "Package is a dependency: %s\n" +msgstr "El paquete es una dependencia: %s\n" + +#: src/debfoster.c:974 +#, c-format +msgid "Removing package: %s\n" +msgstr "Eliminando paquete: %s\n" + +#: src/asktty.c:28 src/asktty.c:74 +#, c-format +msgid "Interrupted\n" +msgstr "Interrumpido\n" + +#: src/conffile.c:44 +#, c-format +msgid "Not a truth value: \"%s\"\n" +msgstr "No es un valor verdadero: \"%s\"\n" + +#: src/conffile.c:145 +#, c-format +msgid "Syntax error in %s:%d\n" +msgstr "Error de sintaxis en %s:%d\n" + +#: src/conffile.c:149 +#, c-format +msgid "Unknown option `%s' at %s:%d\n" +msgstr "Opción desconocida `%s' en %s:%d\n" + +#: src/status.c:451 +#, c-format +msgid "Unknown priority \"%s\"\n" +msgstr "Prioridad desconocida \"%s\"\n" --- debfoster-2.7.orig/po/fr.po +++ debfoster-2.7/po/fr.po @@ -0,0 +1,382 @@ +# Translation to French of debfoster. +# Copyright (C) 2012, French l10n team +# This file is distributed under the same license as the debfoster package. +# Julien Patriarca , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: debofster\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" +"PO-Revision-Date: 2012-08-07 11:37+0100\n" +"Last-Translator: Julien Patriarca \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/debfoster.c:176 +#, c-format +msgid "Package was removed: %s\n" +msgstr "Le paquet a été supprimé : %s\n" + +#: src/debfoster.c:384 +#, c-format +msgid "Not a dependency: \"%s\"\n" +msgstr "N'est pas une dépendance : « %s »\n" + +#: src/debfoster.c:389 +#, c-format +msgid "%s is an installed package.\n" +msgstr "%s est un paquet installé.\n" + +#: src/debfoster.c:391 +#, c-format +msgid "Dependency %s is met by:" +msgstr "La dépendance %s est satisfaite par : " + +#: src/debfoster.c:393 +#, c-format +msgid "Dependency %s is not met by any package.\n" +msgstr "La dépendance %s n'est satisfaite par aucun paquet.\n" + +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 +#, c-format +msgid "Not an installed package: \"%s\"\n" +msgstr "N'est pas un paquet installé : « %s »\n" + +#: src/debfoster.c:415 +#, c-format +msgid "Package %s depends on:" +msgstr "Le paquet %s dépend de : " + +#: src/debfoster.c:416 +#, c-format +msgid "Package %s has no depends.\n" +msgstr "Le paquet %s n'a pas de dépendance.\n" + +#: src/debfoster.c:442 +#, c-format +msgid "The following %d packages on the keeper list rely on %s:" +msgstr "Les %d paquets suivants de la liste à conserver dépendent de %s :" + +#: src/debfoster.c:443 +#, c-format +msgid "Packages on the keeper list do not rely on %s.\n" +msgstr "Les paquets de la liste à conserver ne dépendent pas de %s.\n" + +#: src/debfoster.c:444 +#, c-format +msgid "Packages kept by default rules %s %s.\n" +msgstr "Les paquets maintenus d'après les règles par défaut %s %s.\n" + +#: src/debfoster.c:444 +msgid "rely on" +msgstr "dépendent de" + +#: src/debfoster.c:444 +msgid "do not rely on" +msgstr "ne dépendent pas de" + +#: src/debfoster.c:504 +#, c-format +msgid "The following %d packages are brought in by %s:" +msgstr "Les %d paquets suivants sont tirés par %s :" + +#: src/debfoster.c:505 +#, c-format +msgid "No packages are brought in by %s.\n" +msgstr "Aucun paquet n'est tiré par %s.\n" + +#: src/debfoster.c:560 +#, c-format +msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" +msgstr "Utilisation : %s [-ck FICHIER] [-adefhinopqrsvV] paquet1 paquet2-\n" + +#: src/debfoster.c:561 +#, c-format +msgid "" +"Installs package1, deinstalls package2\n" +"\n" +msgstr "" +"Installe paquet1, et désinstalle paquet2\n" +"\n" + +#: src/debfoster.c:562 +#, c-format +msgid "-v, --verbose Be a loudmouth\n" +msgstr "-v, --verbose Être très bavard\n" + +#: src/debfoster.c:563 +#, c-format +msgid "-V, --version Show version and copyright information\n" +msgstr "-V, --version Afficher la version et les droits d'auteur\n" + +#: src/debfoster.c:564 +#, c-format +msgid "-h, --help Show this message\n" +msgstr "-h, --help Afficher ce message\n" + +#: src/debfoster.c:565 +#, c-format +msgid "-q, --quiet Silently build keeper file\n" +msgstr "" +"-q, --quiet Construire silencieusement la liste à " +"conserver\n" + +#: src/debfoster.c:566 +#, c-format +msgid "-f, --force Force system to conform to keeper file\n" +msgstr "-f, --force Forcer le système avec la liste à conserver\n" + +#: src/debfoster.c:567 +#, c-format +msgid "-m, --mark-only Do not install or delete packages\n" +msgstr "-m, --mark-only Ne pas installer ou effacer de paquets\n" + +#: src/debfoster.c:568 +#, c-format +msgid "-u, --upgrade Try to upgrade dependencies\n" +msgstr "-u, --upgrade Essayer de mettre à jour les dépendances\n" + +#: src/debfoster.c:569 +#, c-format +msgid "-c, --config FILE Specify configuration file\n" +msgstr "-c, --config FICHIER Indiquer un fichier de configuration\n" + +#: src/debfoster.c:570 +#, c-format +msgid "-k, --keeperfile FILE Specify keeper file\n" +msgstr "-k, --keeperfile FICHIER Indiquer une liste de paquets à conserver\n" + +#: src/debfoster.c:571 +#, c-format +msgid "-n, --no-keeperfile Don't read keeper file\n" +msgstr "" +"-n, --no-keeperfile Ne pas lire la liste des paquets à " +"conserver\n" + +#: src/debfoster.c:572 +#, c-format +msgid "-i, --ignore-default-rules Ignore default rules\n" +msgstr "-i, --ignore-default-rules Ne pas tenir compte des règles par défaut\n" + +#: src/debfoster.c:573 +#, c-format +msgid "-a, --show-keepers Show packages on the keeper list\n" +msgstr "" +"-a, --show-keepers Afficher les paquets de la liste à " +"conserver\n" + +#: src/debfoster.c:574 +#, c-format +msgid "-s, --show-orphans Show orphaned packages\n" +msgstr "-s, --show-orphans Afficher la liste des paquets orphelins\n" + +#: src/debfoster.c:575 +#, c-format +msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" +msgstr "" +"-d, --show-depends PAQUET Afficher tous les paquets dont ce PAQUET " +"dépend\n" + +#: src/debfoster.c:576 +#, c-format +msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" +msgstr "-e, --show-dependents PAQUET Afficher les dépendances du PAQUET\n" + +#: src/debfoster.c:577 +#, c-format +msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" +msgstr "" +"-p, --show-providers PAQUET Afficher les paquets qui fournissent le " +"PAQUET\n" + +#: src/debfoster.c:578 +#, c-format +msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" +msgstr "-r, --show-related PAQUET Afficher les paquets tirés par le PAQUET\n" + +#: src/debfoster.c:579 +#, c-format +msgid "-t, --use-tasks Make tasks visible as packages\n" +msgstr "-t, --use-tasks Afficher les tâches comme des paquets\n" + +#: src/debfoster.c:580 +#, c-format +msgid "-o, --option OPT=VAL Override any configuration option\n" +msgstr "-o, --option OPT=VAL Redéfinir une option de configuration\n" + +#: src/debfoster.c:581 +#, c-format +msgid "" +"\n" +"See also: debfoster(8)\n" +msgstr "" +"\n" +"Consultez également : debfoster(8)\n" + +#: src/debfoster.c:583 +#, c-format +msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" +msgstr "debfoster %s — Copyright (C) 2000, 2001 Wessel Dankers.\n" + +#: src/debfoster.c:584 +#, c-format +msgid "Distributed under the GNU General Public License.\n" +msgstr "Distribué sous licence publique générale GNU.\n" + +#: src/debfoster.c:622 +#, c-format +msgid "%s: Invalid config option -- \"%s\"\n" +msgstr "%s : option de configuration incorrecte — « %s »\n" + +#: src/debfoster.c:673 +#, c-format +msgid "Not a package: \"%s\"\n" +msgstr "N'est pas un paquet : « %s »\n" + +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" +msgstr "Les paquets suivants figurent sur la liste des paquets à conserver :" + +#: src/debfoster.c:696 +#, c-format +msgid "The keeper list is empty.\n" +msgstr "La liste des paquets à conserver est vide.\n" + +#: src/debfoster.c:697 +msgid "The following packages are marked as non-keepers:" +msgstr "Les paquets suivants sont marqués à ne pas conserver :" + +#: src/debfoster.c:724 +#, c-format +msgid "Installing package: %s\n" +msgstr "Installation du paquet : %s\n" + +#: src/debfoster.c:853 +#, c-format +msgid "Keeping package: %s\n" +msgstr "Conservation du paquet : %s\n" + +#: src/debfoster.c:864 +#, c-format +msgid "" +"\n" +"%s is keeping the following %d packages installed:" +msgstr "" +"\n" +"%s maintient les %d paquets suivants installés :" + +#: src/debfoster.c:867 +msgid "ynpshiuqx?" +msgstr "onmiardqs?" + +#: src/debfoster.c:867 +#, c-format +msgid "Keep %s? [Ynpsiuqx?], [H]elp: " +msgstr "Conserver %s ? [Onmirdqs?], [A]ide : " + +#: src/debfoster.c:870 +#, c-format +msgid " Yes Keep %s. [default]\n" +msgstr " Oui Conserver %s. [par défaut]\n" + +#: src/debfoster.c:871 +#, c-format +msgid " No Delete %s.\n" +msgstr " Non Effacer %s.\n" + +#: src/debfoster.c:872 +#, c-format +msgid " Prune Delete %s and the packages it is keeping installed.\n" +msgstr " Ménage Effacer %s et les paquets qu'il maintient installés.\n" + +#: src/debfoster.c:873 +#, c-format +msgid " Skip Skip this question.\n" +msgstr " Ignorer Ignorer la question.\n" + +#: src/debfoster.c:874 +#, c-format +msgid " Help Print this message.\n" +msgstr " Aide Afficher ce message.\n" + +#: src/debfoster.c:875 +#, c-format +msgid " Info or ? Show information about %s.\n" +msgstr " Rens. ou ? Afficher des renseignements sur %s.\n" + +#: src/debfoster.c:876 +#, c-format +msgid " Undo Undo last response.\n" +msgstr " Défaire Ne pas tenir compte de la dernière réponse.\n" + +#: src/debfoster.c:877 +#, c-format +msgid " Quit Exit without removing packages.\n" +msgstr " Quitter Sortir sans désinstaller de paquet.\n" + +#: src/debfoster.c:878 +#, c-format +msgid " Exit Remove unwanted packages and exit.\n" +msgstr " Sortir Supprimer les paquets non souhaités et quitter.\n" + +#: src/debfoster.c:891 +msgid "This is a task containing the following installed packages:" +msgstr "C'est une tâche contenant les paquets suivants installés :" + +#: src/debfoster.c:913 +#, c-format +msgid "\aNothing to undo.\n" +msgstr "\aRien à défaire.\n" + +#: src/debfoster.c:947 +msgid "The following packages have been orphaned:" +msgstr "Les paquets suivants sont orphelins :" + +#: src/debfoster.c:948 +#, c-format +msgid "There are no orphaned packages.\n" +msgstr "Aucun paquet n'est orphelin.\n" + +#: src/debfoster.c:968 +#, c-format +msgid "Package is not installed: %s\n" +msgstr "Le paquet n'est pas installé :%s\n" + +#: src/debfoster.c:971 +#, c-format +msgid "Package is a dependency: %s\n" +msgstr "Le paquet est une dépendance :%s\n" + +#: src/debfoster.c:974 +#, c-format +msgid "Removing package: %s\n" +msgstr "Suppression du paquet :%s\n" + +#: src/asktty.c:28 src/asktty.c:74 +#, c-format +msgid "Interrupted\n" +msgstr "Interrompu\n" + +#: src/conffile.c:44 +#, c-format +msgid "Not a truth value: \"%s\"\n" +msgstr "N'est pas une valeur booléenne : « %s »\n" + +#: src/conffile.c:145 +#, c-format +msgid "Syntax error in %s:%d\n" +msgstr "Erreur de syntaxe dans %s à la ligne %d\n" + +#: src/conffile.c:149 +#, c-format +msgid "Unknown option `%s' at %s:%d\n" +msgstr "Option « %s » inconnue dans %s à la ligne %d\n" + +#: src/status.c:451 +#, c-format +msgid "Unknown priority \"%s\"\n" +msgstr "Priorité « %s » inconnue\n" --- debfoster-2.7.orig/po/it.po +++ debfoster-2.7/po/it.po @@ -0,0 +1,379 @@ +# Italian translation of debfoster package +# Copyright (C) 2012 Free Software Foundation, Inc. +# This file is distributed under the same license as the debfoster package. +# Beatrice Torracca , 2012. +msgid "" +msgstr "" +"Project-Id-Version: debfoster\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-05-20 22:54+0200\n" +"PO-Revision-Date: 2012-09-16 16:47+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#: src/debfoster.c:175 +#, c-format +msgid "Package was removed: %s\n" +msgstr "Il pacchetto è stato rimosso: %s\n" + +#: src/debfoster.c:386 +#, c-format +msgid "Not a dependency: \"%s\"\n" +msgstr "Non una dipendenza: «%s»\n" + +#: src/debfoster.c:391 +#, c-format +msgid "%s is an installed package.\n" +msgstr "%s è un pacchetto installato.\n" + +#: src/debfoster.c:393 +#, c-format +msgid "Dependency %s is met by:" +msgstr "La dipendenza %s è soddisfatta da:" + +#: src/debfoster.c:395 +#, c-format +msgid "Dependency %s is not met by any package.\n" +msgstr "La dipendenza %s non è soddisfatta da alcun pacchetto.\n" + +#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#, c-format +msgid "Not an installed package: \"%s\"\n" +msgstr "Non un pacchetto installato: «%s»\n" + +#: src/debfoster.c:417 +#, c-format +msgid "Package %s depends on:" +msgstr "Il pacchetto %s dipende da:" + +#: src/debfoster.c:418 +#, c-format +msgid "Package %s has no depends.\n" +msgstr "Il pacchetto %s non ha dipendenze.\n" + +#: src/debfoster.c:446 +#, c-format +msgid "The following %d packages on keeper list rely on %s:" +msgstr "" +"I %d pacchetti seguenti nell'elenco di quelli da mantenere si basano su %s:" + +#: src/debfoster.c:447 +#, c-format +msgid "Packages on keeper list do not rely on %s.\n" +msgstr "I pacchetti nell'elenco di quelli da mantenere non si basano su %s.\n" + +#: src/debfoster.c:448 +#, c-format +msgid "Packages kept by default rules %s %s.\n" +msgstr "I pacchetti mantenuti dalle regole predefinite %s %s.\n" + +#: src/debfoster.c:448 +msgid "rely on" +msgstr "si basano su" + +#: src/debfoster.c:448 +msgid "do not rely on" +msgstr "non si basano su" + +#: src/debfoster.c:512 +#, c-format +msgid "The following %d packages are brought in by %s:" +msgstr "I %d pacchetti seguenti sono richiamati da %s:" + +#: src/debfoster.c:513 +#, c-format +msgid "No packages are brought in by %s.\n" +msgstr "Nessun pacchetto è richiamato da %s.\n" + +#: src/debfoster.c:571 +#, c-format +msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" +msgstr "Uso: %s [-ck FILE] [-adefhinopqrsvV] pacchetto1 pacchetto2-\n" + +#: src/debfoster.c:572 +#, c-format +msgid "" +"Installs package1, deinstalls package2\n" +"\n" +msgstr "" +"Installa pacchetto1, disinstalla pacchetto2\n" +"\n" + +#: src/debfoster.c:573 +#, c-format +msgid "-v, --verbose Be a loudmouth\n" +msgstr "-v, --verbose È prolisso\n" + +#: src/debfoster.c:574 +#, c-format +msgid "-V, --version Show version and copyright information\n" +msgstr "-V, --version Mostra informazioni su versione e copyright\n" + +#: src/debfoster.c:575 +#, c-format +msgid "-h, --help Show this message\n" +msgstr "-h, --help Mostra questo messaggio\n" + +#: src/debfoster.c:576 +#, c-format +msgid "-q, --quiet Silently build keeper file\n" +msgstr "-q, --quiet Crea silenziosamente il file dei pacchetti da " +"mantenere\n" + +#: src/debfoster.c:577 +#, c-format +msgid "-f, --force Force system to conform to keeper file\n" +msgstr "-f, --force Forza la conformità del sistema con il file " +"dei pacchetti da mantenere\n" + +#: src/debfoster.c:578 +#, c-format +msgid "-m, --mark-only Do not install or delete packages\n" +msgstr "-m, --mark-only Non installa o cancella pacchetti\n" + +#: src/debfoster.c:579 +#, c-format +msgid "-u, --upgrade Try to upgrade dependencies\n" +msgstr "-u, --upgrade Cerca di aggiornare le dipendenze\n" + +#: src/debfoster.c:580 +#, c-format +msgid "-c, --config FILE Specify configuration file\n" +msgstr "-c, --config FILE Specifica il file di configurazione\n" + +#: src/debfoster.c:581 +#, c-format +msgid "-k, --keeperfile FILE Specify keeper file\n" +msgstr "-k, --keeperfile FILE Specifica il file dei pacchetti da mantenere\n" + +#: src/debfoster.c:582 +#, c-format +msgid "-n, --no-keeperfile Don't read keeper file\n" +msgstr "-n, --no-keeperfile Non legge il file dei pacchetti da mantenere\n" + +#: src/debfoster.c:583 +#, c-format +msgid "-i, --ignore-default-rules Ignore default rules\n" +msgstr "-i, --ignore-default-rules Ignora le regole predefinite\n" + +#: src/debfoster.c:584 +#, c-format +msgid "-a, --show-keepers Show packages on keeper list\n" +msgstr "-a, --show-keepers Mostra i pacchetti nell'elenco di quelli da " +"mantenere\n" + +#: src/debfoster.c:585 +#, c-format +msgid "-s, --show-orphans Show orphaned packages\n" +msgstr "-s, --show-orphans Mostra i pacchetti orfani\n" + +#: src/debfoster.c:586 +#, c-format +msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" +msgstr "-d, --show-depends PACCHETTO Mostra tutte le dipendenze di PACCHETTO\n" + +#: src/debfoster.c:587 +#, c-format +msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" +msgstr "-e, --show-dependents PACCHETTO Mostra i pacchetti che dipendono da " +"PACCHETTO\n" + +#: src/debfoster.c:588 +#, c-format +msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" +msgstr "-p, --show-providers PACCHETTO Mostra i pacchetti che forniscono PACCHETTO\n" + +#: src/debfoster.c:589 +#, c-format +msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" +msgstr "-r, --show-related PACCHETTO Mostra i pacchetti richiamati da PACCHETTO\n" + +#: src/debfoster.c:590 +#, c-format +msgid "-t, --use-tasks Make tasks visible as packages\n" +msgstr "-t, --use-tasks Rende i task visibili in forma di pacchetti\n" + +#: src/debfoster.c:591 +#, c-format +msgid "-o, --option OPT=VAL Override any configuration option\n" +msgstr "-o, --option OPZ=VAL Sovrascrive qualsiasi opzione di " +"configurazione\n" + +#: src/debfoster.c:592 +#, c-format +msgid "" +"\n" +"See also: debfoster(8)\n" +msgstr "" +"\n" +"Vedere anche: debfoster(8)\n" + +#: src/debfoster.c:594 +#, c-format +msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" +msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" + +#: src/debfoster.c:595 +#, c-format +msgid "Distributed under the GNU General Public License.\n" +msgstr "Distribuito sotto la GNU General Public License.\n" + +#: src/debfoster.c:633 +#, c-format +msgid "%s: Invalid config option -- \"%s\"\n" +msgstr "%s: opzione di configurazione non valida - «%s»\n" + +#: src/debfoster.c:684 +#, c-format +msgid "Not a package: \"%s\"\n" +msgstr "Non un pacchetto: «%s»\n" + +#: src/debfoster.c:706 +msgid "The following packages are on keeper list:" +msgstr "I seguenti pacchetti sono nell'elenco di quelli da mantenere:" + +#: src/debfoster.c:707 +#, c-format +msgid "The keeper list is empty.\n" +msgstr "L'elenco dei pacchetti da mantenere è vuoto.\n" + +#: src/debfoster.c:708 +msgid "The following packages are marked as non-keepers:" +msgstr "I seguenti pacchetti sono marcati come da non mantenere:" + +#: src/debfoster.c:735 +#, c-format +msgid "Installing package: %s\n" +msgstr "Installazione del pacchetto: %s\n" + +#: src/debfoster.c:865 +#, c-format +msgid "Keeping package: %s\n" +msgstr "Il pacchetto viene mantenuto: %s\n" + +#: src/debfoster.c:876 +#, c-format +msgid "" +"\n" +"%s is keeping the following %d packages installed:" +msgstr "" +"\n" +"%s sta tenendo installati i seguenti %d pacchetti:" + +#: src/debfoster.c:879 +msgid "ynpshiuqx?" +msgstr "ynpshiuqx?" + +#: src/debfoster.c:879 +#, c-format +msgid "Keep %s? [Ynpsiuqx?], [H]elp: " +msgstr "Mantenere %s? [Ynpsiuqx?], [H]elp: " + +#: src/debfoster.c:882 +#, c-format +msgid " Yes Keep %s. [default]\n" +msgstr " [y] Sì Mantiene %s. [predefinito]\n" + +#: src/debfoster.c:883 +#, c-format +msgid " No Delete %s.\n" +msgstr " [n] No Rimuove %s.\n" + +#: src/debfoster.c:884 +#, c-format +msgid " Prune Delete %s and the packages it is keeping installed.\n" +msgstr " [p] Elimina Rimuove %s e i pacchetti che esso mantiene installati.\n" + +#: src/debfoster.c:885 +#, c-format +msgid " Skip Skip this question.\n" +msgstr " [s] Salta Salta questa domanda.\n" + +#: src/debfoster.c:886 +#, c-format +msgid " Help Print this message.\n" +msgstr " [h] Aiuto Visualizza questo messaggio.\n" + +#: src/debfoster.c:887 +#, c-format +msgid " Info or ? Show information about %s.\n" +msgstr " [i] info o ? Visualizza informazioni su %s.\n" + +#: src/debfoster.c:888 +#, c-format +msgid " Undo Undo last response.\n" +msgstr " [u] Annulla Annulla l'ultima risposta.\n" + +#: src/debfoster.c:889 +#, c-format +msgid " Quit Exit without removing packages.\n" +msgstr " [q] Esci Esce senza rimuovere pacchetti.\n" + +#: src/debfoster.c:890 +#, c-format +msgid " Exit Remove unwanted packages and exit.\n" +msgstr " [e] Termina Rimuove i pacchetti non voluti ed esce.\n" + +#: src/debfoster.c:903 +msgid "This is a task containing the following installed packages:" +msgstr "Questo è un task contenente i seguenti pacchetti installati:" + +#: src/debfoster.c:925 +#, c-format +msgid "Nothing to undo.\n" +msgstr "Nulla da annullare.\n" + +#: src/debfoster.c:959 +msgid "The following packages have been orphaned:" +msgstr "I seguenti pacchetti sono stati resi orfani:" + +#: src/debfoster.c:960 +#, c-format +msgid "There are no orphaned packages.\n" +msgstr "Non si sono pacchetti orfani.\n" + +#: src/debfoster.c:980 +#, c-format +msgid "Package is not installed: %s\n" +msgstr "Il pacchetto non è installato: %s\n" + +#: src/debfoster.c:983 +#, c-format +msgid "Package is a dependency: %s\n" +msgstr "Il pacchetto è una dipendenza: %s\n" + +#: src/debfoster.c:986 +#, c-format +msgid "Removing package: %s\n" +msgstr "Rimozione del pacchetto: %s\n" + +#: src/asktty.c:28 src/asktty.c:74 +#, c-format +msgid "Interrupted\n" +msgstr "Interrotto\n" + +#: src/conffile.c:49 +#, c-format +msgid "Not a truth value: \"%s\"\n" +msgstr "Non un valore di verità: «%s»\n" + +#: src/conffile.c:161 +#, c-format +msgid "Syntax error in %s:%d\n" +msgstr "Errore nella sintassi in %s:%d\n" + +#: src/conffile.c:165 +#, c-format +msgid "Unknown option `%s' at %s:%d\n" +msgstr "Opzione «%s» sconosciuta in %s:%d\n" + +#: src/status.c:420 +#, c-format +msgid "Unknown priority \"%s\"\n" +msgstr "Priorità «%s» sconosciuta\n" --- debfoster-2.7.orig/po/nl.po +++ debfoster-2.7/po/nl.po @@ -6,95 +6,96 @@ msgstr "" "Project-Id-Version: debfoster 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-20 22:54+0200\n" +"POT-Creation-Date: 2012-08-15 12:22-0400\n" "PO-Revision-Date: 2001-10-18 14:08+0200\n" "Last-Translator: Guus Sliepen \n" "Language-Team: Dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: src/debfoster.c:175 +#: src/debfoster.c:176 #, c-format msgid "Package was removed: %s\n" msgstr "Pakket was verwijderd: %s\n" # c-format -#: src/debfoster.c:386 +#: src/debfoster.c:384 #, c-format msgid "Not a dependency: \"%s\"\n" msgstr "Geen afhankelijkheid: \"%s\"\n" -#: src/debfoster.c:391 +#: src/debfoster.c:389 #, c-format msgid "%s is an installed package.\n" msgstr "%s is een genstalleerd pakket.\n" -#: src/debfoster.c:393 +#: src/debfoster.c:391 #, c-format msgid "Dependency %s is met by:" msgstr "Afhankelijkheid %s is voldaan door:" -#: src/debfoster.c:395 +#: src/debfoster.c:393 #, c-format msgid "Dependency %s is not met by any package.\n" msgstr "Afhankelijkheid %s is door geen enkel pakket voldaan.\n" -#: src/debfoster.c:405 src/debfoster.c:431 src/debfoster.c:506 +#: src/debfoster.c:403 src/debfoster.c:427 src/debfoster.c:498 #, c-format msgid "Not an installed package: \"%s\"\n" msgstr "Geen genstalleerd pakket: \"%s\"\n" -#: src/debfoster.c:417 +#: src/debfoster.c:415 #, c-format msgid "Package %s depends on:" msgstr "Pakket %s is afhankelijk van:" -#: src/debfoster.c:418 +#: src/debfoster.c:416 #, c-format msgid "Package %s has no depends.\n" msgstr "Pakket %s heeft geen afhankelijkheden.\n" -#: src/debfoster.c:446 +#: src/debfoster.c:442 #, c-format -msgid "The following %d packages on keeper list rely on %s:" +msgid "The following %d packages on the keeper list rely on %s:" msgstr "De volgende %d pakketten in de bewaarlijst verlaten zich op %s:" -#: src/debfoster.c:447 +#: src/debfoster.c:443 #, c-format -msgid "Packages on keeper list do not rely on %s.\n" +msgid "Packages on the keeper list do not rely on %s.\n" msgstr "Pakketten in bewaarlijst verlaten zich niet op %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 #, c-format msgid "Packages kept by default rules %s %s.\n" msgstr "Pakketten behouden door standaardregels %s %s.\n" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "rely on" msgstr "verlaten zich op" -#: src/debfoster.c:448 +#: src/debfoster.c:444 msgid "do not rely on" msgstr "verlaten zich niet op" -#: src/debfoster.c:512 +#: src/debfoster.c:504 #, c-format msgid "The following %d packages are brought in by %s:" msgstr "De volgende %d pakketten zijn gentroduceerd door %s:" -#: src/debfoster.c:513 +#: src/debfoster.c:505 #, c-format msgid "No packages are brought in by %s.\n" msgstr "Geen pakketten gentroduceerd door %s.\n" # c-format -#: src/debfoster.c:571 +#: src/debfoster.c:560 #, c-format msgid "Usage: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" msgstr "Gebruik: %s [-ck FILE] [-adefhinopqrsvV] package1 package2-\n" -#: src/debfoster.c:572 +#: src/debfoster.c:561 #, c-format msgid "" "Installs package1, deinstalls package2\n" @@ -103,111 +104,104 @@ "Installeert pakket1, denstalleert pakket2\n" "\n" -#: src/debfoster.c:573 +#: src/debfoster.c:562 #, c-format msgid "-v, --verbose Be a loudmouth\n" msgstr "-v, --verbose Wees luidruchtig\n" -#: src/debfoster.c:574 +#: src/debfoster.c:563 #, c-format msgid "-V, --version Show version and copyright information\n" msgstr "-V, --version Toon versie- en copyright-informatie\n" -#: src/debfoster.c:575 +#: src/debfoster.c:564 #, c-format msgid "-h, --help Show this message\n" msgstr "-h, --help Toon dit bericht\n" -#: src/debfoster.c:576 +#: src/debfoster.c:565 #, c-format msgid "-q, --quiet Silently build keeper file\n" msgstr "-q, --quiet Stilletjes bewaarbestand bouwen\n" -#: src/debfoster.c:577 +#: src/debfoster.c:566 #, c-format msgid "-f, --force Force system to conform to keeper file\n" msgstr "" "-f, --force Forceer systeem om zich aan bewaarbestand te " "houden\n" -#: src/debfoster.c:578 +#: src/debfoster.c:567 #, c-format msgid "-m, --mark-only Do not install or delete packages\n" -msgstr "" -"-m, --mark-only Installeer en verwijder geen pakketten\n" +msgstr "-m, --mark-only Installeer en verwijder geen pakketten\n" -#: src/debfoster.c:579 +#: src/debfoster.c:568 #, c-format msgid "-u, --upgrade Try to upgrade dependencies\n" -msgstr "" -"-u, --upgrade Probeer afhankelijkheden te vernieuwen\n" +msgstr "-u, --upgrade Probeer afhankelijkheden te vernieuwen\n" -#: src/debfoster.c:580 +#: src/debfoster.c:569 #, c-format msgid "-c, --config FILE Specify configuration file\n" msgstr "-c, --config FILE Specifieer configuratie bestand\n" -#: src/debfoster.c:581 +#: src/debfoster.c:570 #, c-format msgid "-k, --keeperfile FILE Specify keeper file\n" msgstr "-k, --keeperfile FILE Specifieer bewaarbestand\n" -#: src/debfoster.c:582 +#: src/debfoster.c:571 #, c-format msgid "-n, --no-keeperfile Don't read keeper file\n" msgstr "-n, --no-keeperfile Lees bewaarbestand niet\n" -#: src/debfoster.c:583 +#: src/debfoster.c:572 #, c-format msgid "-i, --ignore-default-rules Ignore default rules\n" msgstr "-i, --ignore-default-rules Standaard regels negeren\n" -#: src/debfoster.c:584 +#: src/debfoster.c:573 #, c-format -msgid "-a, --show-keepers Show packages on keeper list\n" +msgid "-a, --show-keepers Show packages on the keeper list\n" msgstr "-a, --show-keepers Toon pakketten in bewaarlijst\n" -#: src/debfoster.c:585 +#: src/debfoster.c:574 #, c-format msgid "-s, --show-orphans Show orphaned packages\n" msgstr "-s, --show-orphans Toon verweesde pakketten\n" -#: src/debfoster.c:586 +#: src/debfoster.c:575 #, c-format msgid "-d, --show-depends PACKAGE Show all depends of PACKAGE\n" -msgstr "" -"-d, --show-depends PACKAGE Toon alle afhankelijkheden van PACKAGE\n" +msgstr "-d, --show-depends PACKAGE Toon alle afhankelijkheden van PACKAGE\n" -#: src/debfoster.c:587 +#: src/debfoster.c:576 #, c-format msgid "-e, --show-dependents PACKAGE Show dependents of PACKAGE\n" -msgstr "" -"-e, --show-dependents PACKAGE Toon alle pakketten afhankelijk van PACKAGE\n" +msgstr "-e, --show-dependents PACKAGE Toon alle pakketten afhankelijk van PACKAGE\n" -#: src/debfoster.c:588 +#: src/debfoster.c:577 #, c-format msgid "-p, --show-providers PACKAGE Show packages providing PACKAGE\n" -msgstr "" -"-p, --show-providers PACKAGE Toon pakketten die PACKAGE verschaffen\n" +msgstr "-p, --show-providers PACKAGE Toon pakketten die PACKAGE verschaffen\n" -#: src/debfoster.c:589 +#: src/debfoster.c:578 #, c-format msgid "-r, --show-related PACKAGE Show packages brought in by PACKAGE\n" -msgstr "" -"-r, --show-related PACKAGE Toon pakketten binnengebracht door PACKAGE\n" +msgstr "-r, --show-related PACKAGE Toon pakketten binnengebracht door PACKAGE\n" -#: src/debfoster.c:590 -#, fuzzy, c-format +#: src/debfoster.c:579 +#, c-format, fuzzy msgid "-t, --use-tasks Make tasks visible as packages\n" -msgstr "" -"-m, --mark-only Installeer en verwijder geen pakketten\n" +msgstr "-m, --mark-only Installeer en verwijder geen pakketten\n" -#: src/debfoster.c:591 +#: src/debfoster.c:580 #, c-format msgid "-o, --option OPT=VAL Override any configuration option\n" msgstr "-o, --option OPT=VAL Overschrijf tijdelijk een optie\n" -#: src/debfoster.c:592 +#: src/debfoster.c:581 #, c-format msgid "" "\n" @@ -216,52 +210,52 @@ "\n" "Zie ook: debfoster(8)\n" -#: src/debfoster.c:594 +#: src/debfoster.c:583 #, c-format msgid "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" msgstr "debfoster %s -- Copyright (C) 2000,2001 Wessel Dankers.\n" -#: src/debfoster.c:595 +#: src/debfoster.c:584 #, c-format msgid "Distributed under the GNU General Public License.\n" msgstr "Gedistribueerd onder de GNU General Public License.\n" -#: src/debfoster.c:633 +#: src/debfoster.c:622 #, c-format msgid "%s: Invalid config option -- \"%s\"\n" msgstr "%s: Ongeldige configuratie optie -- \"%s\"\n" -#: src/debfoster.c:684 +#: src/debfoster.c:673 #, c-format msgid "Not a package: \"%s\"\n" msgstr "Geen pakket: \"%s\"\n" -#: src/debfoster.c:706 -msgid "The following packages are on keeper list:" +#: src/debfoster.c:695 +msgid "The following packages are on the keeper list:" msgstr "De volgende pakketten staan in de bewaarlijst:" -#: src/debfoster.c:707 +#: src/debfoster.c:696 #, c-format msgid "The keeper list is empty.\n" msgstr "De bewaarlijst is leeg.\n" -#: src/debfoster.c:708 +#: src/debfoster.c:697 #, fuzzy msgid "The following packages are marked as non-keepers:" msgstr "De volgende pakketten staan in de bewaarlijst:" # c-format -#: src/debfoster.c:735 +#: src/debfoster.c:724 #, c-format msgid "Installing package: %s\n" msgstr "Installeren pakket: %s\n" -#: src/debfoster.c:865 +#: src/debfoster.c:853 #, c-format msgid "Keeping package: %s\n" msgstr "Behoud pakket: %s\n" -#: src/debfoster.c:876 +#: src/debfoster.c:864 #, c-format msgid "" "\n" @@ -270,95 +264,95 @@ "\n" "%s houdt de volgende %d pakketten genstalleerd:" -#: src/debfoster.c:879 +#: src/debfoster.c:867 msgid "ynpshiuqx?" msgstr "jngohitae?" -#: src/debfoster.c:879 +#: src/debfoster.c:867 #, c-format msgid "Keep %s? [Ynpsiuqx?], [H]elp: " msgstr "Bewaar %s? [Jngoitae?], [Help]: " -#: src/debfoster.c:882 +#: src/debfoster.c:870 #, c-format msgid " Yes Keep %s. [default]\n" msgstr " Ja Bewaar %s. [standaard]\n" -#: src/debfoster.c:883 +#: src/debfoster.c:871 #, c-format msgid " No Delete %s.\n" msgstr " Nee Verwijder %s.\n" -#: src/debfoster.c:884 +#: src/debfoster.c:872 #, c-format msgid " Prune Delete %s and the packages it is keeping installed.\n" msgstr "" " Geen enkele Verwijder %s en alle pakketten die het genstalleerd " "houdt.\n" -#: src/debfoster.c:885 +#: src/debfoster.c:873 #, c-format msgid " Skip Skip this question.\n" msgstr " Overslaan Sla deze vraag over.\n" -#: src/debfoster.c:886 +#: src/debfoster.c:874 #, c-format msgid " Help Print this message.\n" msgstr " Help Druk dit bericht af.\n" -#: src/debfoster.c:887 +#: src/debfoster.c:875 #, c-format msgid " Info or ? Show information about %s.\n" msgstr " Info of ? Toon informatie over %s.\n" -#: src/debfoster.c:888 +#: src/debfoster.c:876 #, c-format msgid " Undo Undo last response.\n" msgstr " Terugdraaien Maak laatste keuze ongedaan.\n" -#: src/debfoster.c:889 +#: src/debfoster.c:877 #, c-format msgid " Quit Exit without removing packages.\n" msgstr " Afbreken Stop zonder pakketten te verwijderen.\n" -#: src/debfoster.c:890 +#: src/debfoster.c:878 #, c-format msgid " Exit Remove unwanted packages and exit.\n" msgstr " Eindigen Verwijder ongewenste pakketten en beindig.\n" -#: src/debfoster.c:903 +#: src/debfoster.c:891 #, fuzzy msgid "This is a task containing the following installed packages:" msgstr "" "\n" "%s houdt de volgende %d pakketten genstalleerd:" -#: src/debfoster.c:925 -#, fuzzy, c-format -msgid "Nothing to undo.\n" +#: src/debfoster.c:913 +#, c-format, fuzzy +msgid "\aNothing to undo.\n" msgstr "\\aNiets om ongedaan te maken.\n" -#: src/debfoster.c:959 +#: src/debfoster.c:947 msgid "The following packages have been orphaned:" msgstr "De volgende pakketten zijn verweesd:" -#: src/debfoster.c:960 +#: src/debfoster.c:948 #, c-format msgid "There are no orphaned packages.\n" msgstr "Er zijn geen verweesde pakketten.\n" -#: src/debfoster.c:980 +#: src/debfoster.c:968 #, c-format msgid "Package is not installed: %s\n" msgstr "Pakket is niet genstalleerd: %s\n" # c-format -#: src/debfoster.c:983 +#: src/debfoster.c:971 #, c-format msgid "Package is a dependency: %s\n" msgstr "Pakket is een afhankelijkheid: %s\n" -#: src/debfoster.c:986 +#: src/debfoster.c:974 #, c-format msgid "Removing package: %s\n" msgstr "Verwijder pakket: %s\n" @@ -368,25 +362,24 @@ msgid "Interrupted\n" msgstr "Onderbroken\n" -#: src/conffile.c:49 +#: src/conffile.c:44 #, c-format msgid "Not a truth value: \"%s\"\n" msgstr "Geen waarheidswaarde: \"%s\"\n" -#: src/conffile.c:161 +#: src/conffile.c:145 #, c-format msgid "Syntax error in %s:%d\n" msgstr "Syntactische fout in %s:%d\n" -#: src/conffile.c:165 +#: src/conffile.c:149 #, c-format msgid "Unknown option `%s' at %s:%d\n" msgstr "Onbekende optie `%s' in %s:%d\n" -#: src/status.c:420 +#: src/status.c:451 #, c-format msgid "Unknown priority \"%s\"\n" msgstr "Onbekende prioriteit \"%s\"\n" - #~ msgid "The following packages are marked for deletion:" #~ msgstr "De volgende pakketten zijn gemarkeerd voor verwijdering:" --- debfoster-2.7.orig/src/debfoster.c +++ debfoster-2.7/src/debfoster.c @@ -439,8 +439,8 @@ } else count++; } - if (!show_set(&dependents, _("The following %d packages on keeper list rely on %s:"), count, name)) - printf(_("Packages on keeper list do not rely on %s.\n"), name); + if (!show_set(&dependents, _("The following %d packages on the keeper list rely on %s:"), count, name)) + printf(_("Packages on the keeper list do not rely on %s.\n"), name); printf(_("Packages kept by default rules %s %s.\n"), others ? _("rely on") : _("do not rely on"), name); } @@ -570,7 +570,7 @@ printf(_("-k, --keeperfile FILE Specify keeper file\n")); printf(_("-n, --no-keeperfile Don't read keeper file\n")); printf(_("-i, --ignore-default-rules Ignore default rules\n")); - printf(_("-a, --show-keepers Show packages on keeper list\n")); + printf(_("-a, --show-keepers Show packages on the keeper list\n")); printf(_("-s, --show-orphans Show orphaned packages\n")); printf(_("-d, --show-depends PACKAGE Show all depends of PACKAGE\n")); printf(_("-e, --show-dependents PACKAGE Show dependents of PACKAGE\n")); @@ -692,7 +692,7 @@ /* Print information */ switch(show_option) { case 'a': /* --show-keepers option */ - if(!show_set(keepers, _("The following packages are on keeper list:"))) + if(!show_set(keepers, _("The following packages are on the keeper list:"))) printf(_("The keeper list is empty.\n")); show_set(nokeepers, _("The following packages are marked as non-keepers:")); return 0; @@ -924,8 +924,14 @@ AVLFreeNodes(orphans); break; case 7: /* q */ - closekeepers(); - return 0; + switch((i = tty_ask(_("ny"), _("Exit without saving? [yN?]: ")))) { + case 0: /* n */ + i = -1; + break; + case 1: /* y */ + closekeepers(); + return 0; + } case 8: /* x */ AVLFreeNodes(orphans); break;