Hello community, here is the log from the commit of package gnome-keyring for openSUSE:Factory checked in at 2013-04-26 15:46:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-keyring (Old) and /work/SRC/openSUSE:Factory/.gnome-keyring.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-keyring", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-keyring/gnome-keyring.changes 2013-04-02 11:47:01.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-keyring.new/gnome-keyring.changes 2013-04-26 15:46:30.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Apr 16 08:49:13 UTC 2013 - [email protected] + +- Update to version 3.8.1: + + Updated trasnlations. + +------------------------------------------------------------------- Old: ---- gnome-keyring-3.8.0.tar.xz New: ---- gnome-keyring-3.8.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-keyring.spec ++++++ --- /var/tmp/diff_new_pack.zk43SK/_old 2013-04-26 15:46:32.000000000 +0200 +++ /var/tmp/diff_new_pack.zk43SK/_new 2013-04-26 15:46:32.000000000 +0200 @@ -17,7 +17,7 @@ Name: gnome-keyring -Version: 3.8.0 +Version: 3.8.1 Release: 0 Url: http://www.gnome.org/ Summary: GNOME Keyring ++++++ gnome-keyring-3.8.0.tar.xz -> gnome-keyring-3.8.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/ChangeLog new/gnome-keyring-3.8.1/ChangeLog --- old/gnome-keyring-3.8.0/ChangeLog 2013-03-25 11:38:04.000000000 +0100 +++ new/gnome-keyring-3.8.1/ChangeLog 2013-04-15 16:59:55.000000000 +0200 @@ -1,5 +1,24 @@ # Generate automatically. Do not edit. +commit 4c0b5cd06cf4606c6faec96d68a82a4fb5639347 +Author: Stef Walter <[email protected]> +Date: 2013-04-15 + + Release version 3.8.1 + + NEWS | 3 +++ + configure.ac | 2 +- + 2 files changed, 4 insertions(+), 1 deletion(-) + +commit 1c2bd7a1538ac93cd45295685a16760745e4b09c +Author: Inaki Larranaga Murgoitio <[email protected]> +Date: 2013-03-26 + + Updated Basque language + + po/eu.po | 181 ++++++++++++++++++++++++++++++++++----------------------------- + 1 file changed, 98 insertions(+), 83 deletions(-) + commit 4508d21b83e24524ba47274e42d492e1e32ccf62 Author: Stef Walter <[email protected]> Date: 2013-03-25 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/NEWS new/gnome-keyring-3.8.1/NEWS --- old/gnome-keyring-3.8.0/NEWS 2013-03-25 11:36:43.000000000 +0100 +++ new/gnome-keyring-3.8.1/NEWS 2013-04-15 16:59:29.000000000 +0200 @@ -1,3 +1,6 @@ +Changes in version 3.8.1 are: + * Updated translations + Changes in version 3.8.0 are: * Updated translations diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/compile new/gnome-keyring-3.8.1/compile --- old/gnome-keyring-3.8.0/compile 2012-10-12 16:55:30.000000000 +0200 +++ new/gnome-keyring-3.8.1/compile 2012-07-27 10:26:20.000000000 +0200 @@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-03-05.13; # UTC +scriptversion=2012-01-04.17; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free # Software Foundation, Inc. @@ -79,48 +79,6 @@ esac } -# func_cl_dashL linkdir -# Make cl look for libraries in LINKDIR -func_cl_dashL () -{ - func_file_conv "$1" - if test -z "$lib_path"; then - lib_path=$file - else - lib_path="$lib_path;$file" - fi - linker_opts="$linker_opts -LIBPATH:$file" -} - -# func_cl_dashl library -# Do a library search-path lookup for cl -func_cl_dashl () -{ - lib=$1 - found=no - save_IFS=$IFS - IFS=';' - for dir in $lib_path $LIB - do - IFS=$save_IFS - if $shared && test -f "$dir/$lib.dll.lib"; then - found=yes - lib=$dir/$lib.dll.lib - break - fi - if test -f "$dir/$lib.lib"; then - found=yes - lib=$dir/$lib.lib - break - fi - done - IFS=$save_IFS - - if test "$found" != yes; then - lib=$lib.lib - fi -} - # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () @@ -151,34 +109,43 @@ ;; esac ;; - -I) - eat=1 - func_file_conv "$2" mingw - set x "$@" -I"$file" - shift - ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; - -l) - eat=1 - func_cl_dashl "$2" - set x "$@" "$lib" - shift - ;; -l*) - func_cl_dashl "${1#-l}" - set x "$@" "$lib" + lib=${1#-l} + found=no + save_IFS=$IFS + IFS=';' + for dir in $lib_path $LIB + do + IFS=$save_IFS + if $shared && test -f "$dir/$lib.dll.lib"; then + found=yes + set x "$@" "$dir/$lib.dll.lib" + break + fi + if test -f "$dir/$lib.lib"; then + found=yes + set x "$@" "$dir/$lib.lib" + break + fi + done + IFS=$save_IFS + + test "$found" != yes && set x "$@" "$lib.lib" shift ;; - -L) - eat=1 - func_cl_dashL "$2" - ;; -L*) - func_cl_dashL "${1#-L}" + func_file_conv "${1#-L}" + if test -z "$lib_path"; then + lib_path=$file + else + lib_path="$lib_path;$file" + fi + linker_opts="$linker_opts -LIBPATH:$file" ;; -static) shared=false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/config.guess new/gnome-keyring-3.8.1/config.guess --- old/gnome-keyring-3.8.0/config.guess 2012-10-12 16:55:30.000000000 +0200 +++ new/gnome-keyring-3.8.1/config.guess 2012-07-27 10:26:20.000000000 +0200 @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. -timestamp='2012-02-10' +timestamp='2012-01-01' # 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 @@ -17,7 +17,9 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -861,13 +863,6 @@ i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; - aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - aarch64_be:Linux:*:*) - UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; @@ -1325,9 +1320,6 @@ 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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/config.sub new/gnome-keyring-3.8.1/config.sub --- old/gnome-keyring-3.8.0/config.sub 2012-10-12 16:55:30.000000000 +0200 +++ new/gnome-keyring-3.8.1/config.sub 2012-07-27 10:26:20.000000000 +0200 @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. -timestamp='2012-02-10' +timestamp='2012-01-01' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,7 +21,9 @@ # 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, see <http://www.gnu.org/licenses/>. +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -130,10 +132,6 @@ 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 ] @@ -249,7 +247,6 @@ # 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 \ @@ -322,7 +319,7 @@ c6x) basic_machine=tic6x-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) basic_machine=$basic_machine-unknown os=-none ;; @@ -335,10 +332,7 @@ strongarm | thumb | xscale) basic_machine=arm-unknown ;; - xgate) - basic_machine=$basic_machine-unknown - os=-none - ;; + xscaleeb) basic_machine=armeb-unknown ;; @@ -361,7 +355,6 @@ # 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-* \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/configure new/gnome-keyring-3.8.1/configure --- old/gnome-keyring-3.8.0/configure 2013-03-25 11:37:11.000000000 +0100 +++ new/gnome-keyring-3.8.1/configure 2013-04-15 16:59:44.000000000 +0200 @@ -2982,7 +2982,7 @@ # Define the identity of the package. PACKAGE=gnome-keyring - VERSION=3.8.0 + VERSION=3.8.1 cat >>confdefs.h <<_ACEOF diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/configure.ac new/gnome-keyring-3.8.1/configure.ac --- old/gnome-keyring-3.8.0/configure.ac 2013-03-25 11:36:02.000000000 +0100 +++ new/gnome-keyring-3.8.1/configure.ac 2013-04-15 16:59:21.000000000 +0200 @@ -1,6 +1,6 @@ AC_INIT(daemon/gkd-main.c) -AM_INIT_AUTOMAKE(gnome-keyring, 3.8.0) +AM_INIT_AUTOMAKE(gnome-keyring, 3.8.1) AC_CONFIG_HEADERS(config.h) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/depcomp new/gnome-keyring-3.8.1/depcomp --- old/gnome-keyring-3.8.0/depcomp 2012-10-12 16:55:34.000000000 +0200 +++ new/gnome-keyring-3.8.1/depcomp 2012-07-27 10:26:25.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2012-03-27.16; # UTC +scriptversion=2011-12-04.11; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, -# 2011, 2012 Free Software Foundation, Inc. +# 2011 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ case $1 in '') - echo "$0: No command. Try '$0 --help' for more information." 1>&2 + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) @@ -40,8 +40,8 @@ Environment variables: depmode Dependency tracking mode. - source Source file read by 'PROGRAMS ARGS'. - object Object file output by 'PROGRAMS ARGS'. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. @@ -57,12 +57,6 @@ ;; esac -# A tabulation character. -tab=' ' -# A newline character. -nl=' -' - if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 @@ -108,12 +102,6 @@ depmode=msvc7 fi -if test "$depmode" = xlc; then - # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. - gccflag=-qmakedep=gcc,-MF - depmode=gcc -fi - case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what @@ -168,14 +156,15 @@ ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the "deleted header file" problem. +## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. - tr ' ' "$nl" < "$tmpdepfile" | -## Some versions of gcc put a space before the ':'. On the theory + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. @@ -214,15 +203,18 @@ # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like '#:fec' to the end of the + # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. - tr ' ' "$nl" < "$tmpdepfile" \ + tr ' ' ' +' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ - tr "$nl" ' ' >> "$depfile" + tr ' +' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. - tr ' ' "$nl" < "$tmpdepfile" \ + tr ' ' ' +' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else @@ -234,17 +226,10 @@ rm -f "$tmpdepfile" ;; -xlc) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts '$object:' at the + # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` @@ -274,11 +259,12 @@ test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then - # Each line is of the form 'foo.o: dependent.h'. + # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to - # '$object: dependent.h' and one to simply 'dependent.h:'. + # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -289,26 +275,23 @@ ;; icc) - # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'. - # However on - # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h - # which is wrong. We want + # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using '\': + # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... - # tcc 0.9.26 (FIXME still under development at the moment of writing) - # will emit a similar output, but also prepend the continuation lines - # with horizontal tabulation characters. + "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : @@ -317,21 +300,15 @@ exit $stat fi rm -f "$depfile" - # Each line is of the form 'foo.o: dependent.h', - # or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'. + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to - # '$object: dependent.h' and one to simply 'dependent.h:'. - sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ - < "$tmpdepfile" > "$depfile" - sed ' - s/[ '"$tab"'][ '"$tab"']*/ /g - s/^ *// - s/ *\\*$// - s/^[^:]*: *// - /^$/d - /:$/d - s/$/ :/ - ' < "$tmpdepfile" >> "$depfile" + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; @@ -367,7 +344,7 @@ done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" - # Add 'dependent.h:' lines. + # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// @@ -382,9 +359,9 @@ tru64) # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in 'foo.d' instead, so we check for that too. + # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= @@ -430,7 +407,8 @@ done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi @@ -465,11 +443,11 @@ p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g -s/\(.*\)/'"$tab"'\1 \\/p +s/\(.*\)/ \1 \\/p s/.\(.*\) \\/\1:/ H $ { - s/.*/'"$tab"'/ + s/.*/ / G p }' >> "$depfile" @@ -500,7 +478,7 @@ shift fi - # Remove '-o $object'. + # Remove `-o $object'. IFS=" " for arg do @@ -520,14 +498,15 @@ done test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for ':' + # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: - # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | - sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" - tr ' ' "$nl" < "$tmpdepfile" | \ + tr ' ' ' +' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" @@ -583,7 +562,8 @@ # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" - sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" @@ -603,7 +583,7 @@ shift fi - # Remove '-o $object'. + # Remove `-o $object'. IFS=" " for arg do @@ -672,8 +652,8 @@ sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" - sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" - echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-keyring-3.8.0/po/eu.po new/gnome-keyring-3.8.1/po/eu.po --- old/gnome-keyring-3.8.0/po/eu.po 2012-12-23 13:28:15.000000000 +0100 +++ new/gnome-keyring-3.8.1/po/eu.po 2013-04-15 16:58:43.000000000 +0200 @@ -3,56 +3,65 @@ # Copyright (C) 2004 THE eu'S COPYRIGHT HOLDER # This file is distributed under the same license as the eu package. # Alberto Fernández <[email protected]>, 2004. -# Iñaki Larrañaga Murgoitio <[email protected]>, 2004, 2006, 2008, 2009, 2010, 2011, 2012. -# Iñaki Larrañaga Murgoitio <[email protected]>, 2007. +# Iñaki Larrañaga Murgoitio <[email protected]>, 2004, 2006, 2008, 2009, 2010. # Julen Ruiz Aizpuru <[email protected]>, 2011. +# Iñaki Larrañaga Murgoitio <[email protected]>, 2011, 2012, 2013. +# msgid "" msgstr "" "Project-Id-Version: eu_to_be_translate\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-04 17:37+0100\n" -"PO-Revision-Date: 2012-03-04 17:54+0100\n" -"Last-Translator: Iñaki Larrañaga Murgoitio <[email protected]>\n" -"Language-Team: American English <[email protected]>\n" +"POT-Creation-Date: 2013-03-26 10:39+0100\n" +"PO-Revision-Date: 2013-03-24 13:08+0100\n" +"Last-Translator: Iñaki Larrañaga Murgoitio <[email protected]>\n" +"Language-Team: Basque <[email protected]>\n" "Language: eu\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: Lokalize 1.0\n" +"X-Generator: Lokalize 1.4\n" "X-Project-Style: gnome\n" #. TRANSLATORS: This is the label for an keyring created without a label -#: ../daemon/dbus/gkd-secret-change.c:85 -#: ../daemon/dbus/gkd-secret-change.c:120 +#: ../daemon/dbus/gkd-secret-change.c:86 +#: ../daemon/dbus/gkd-secret-change.c:122 #: ../daemon/dbus/gkd-secret-create.c:79 #: ../pkcs11/secret-store/gkm-secret-collection.c:325 -#: ../pkcs11/wrap-layer/gkm-wrap-login.c:345 -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:750 +#: ../pkcs11/wrap-layer/gkm-wrap-login.c:346 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:754 msgid "Unnamed" msgstr "Izengabea" -#: ../daemon/dbus/gkd-secret-change.c:90 +#: ../daemon/dbus/gkd-secret-change.c:91 #, c-format msgid "Enter the old password for the '%s' keyring" msgstr "Sartu '%s' gako-sortaren pasahitz zaharra" -#: ../daemon/dbus/gkd-secret-change.c:94 +#: ../daemon/dbus/gkd-secret-change.c:95 #, c-format msgid "" "An application wants to change the password for the '%s' keyring. Enter the " "old password for it." msgstr "" "Aplikazio batek '%s' gako-sortaren pasahitza aldatzea nahi du. Sartu " -"pasahitz zaharra " -"horretarako." +"pasahitz zaharra horretarako." -#: ../daemon/dbus/gkd-secret-change.c:125 +#: ../daemon/dbus/gkd-secret-change.c:101 +#: ../daemon/dbus/gkd-secret-change.c:137 +#: ../daemon/dbus/gkd-secret-change.c:148 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1144 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1256 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1291 +msgid "Continue" +msgstr "Jarraitu" + +#: ../daemon/dbus/gkd-secret-change.c:127 #, c-format msgid "Choose a new password for the '%s' keyring" msgstr "Aukeratu '%s' gako-sortaren pasahitz berria" -#: ../daemon/dbus/gkd-secret-change.c:129 +#: ../daemon/dbus/gkd-secret-change.c:131 #, c-format msgid "" "An application wants to change the password for the '%s' keyring. Choose the " @@ -61,12 +70,12 @@ "Aplikazio batek '%s' gako-sortaren pasahitza aldatzea nahi du. Aukeratu " "erabiltzea nahi duzun pasahitz berria." -#: ../daemon/dbus/gkd-secret-change.c:140 +#: ../daemon/dbus/gkd-secret-change.c:144 #: ../daemon/dbus/gkd-secret-create.c:95 msgid "Store passwords unencrypted?" msgstr "Gorde pasahitzak enkriptatu gabe?" -#: ../daemon/dbus/gkd-secret-change.c:142 +#: ../daemon/dbus/gkd-secret-change.c:146 #: ../daemon/dbus/gkd-secret-create.c:97 msgid "" "By choosing to use a blank password, your stored passwords will not be " @@ -77,11 +86,11 @@ "segurtasunez enkriptatuko. Zure fitxategiak atzitu ditzakeen edonork " "pasahitz hauek atzi ditzake." -#: ../daemon/dbus/gkd-secret-change.c:149 +#: ../daemon/dbus/gkd-secret-change.c:154 msgid "The original password was incorrect" msgstr "Jatorriko pasahitza ez da zuzena" -#: ../daemon/dbus/gkd-secret-change.c:349 +#: ../daemon/dbus/gkd-secret-change.c:355 msgid "Change Keyring Password" msgstr "Aldatu gako-sortaren pasahitza" @@ -98,18 +107,18 @@ msgid "Choose password for new keyring" msgstr "Aukeratu gako-sorta berriaren pasahitza" -#: ../daemon/dbus/gkd-secret-create.c:308 +#: ../daemon/dbus/gkd-secret-create.c:312 msgid "New Keyring Password" msgstr "Gako-sorta berriaren pasahitza" #: ../daemon/gnome-keyring-gpg.desktop.in.in.h:1 -msgid "GNOME Keyring: GPG Agent" -msgstr "GNOMEren gako-sorta: GPG agentea" - -#: ../daemon/gnome-keyring-gpg.desktop.in.in.h:2 msgid "GPG Password Agent" msgstr "GPG pasahitzaren agentea" +#: ../daemon/gnome-keyring-gpg.desktop.in.in.h:2 +msgid "GNOME Keyring: GPG Agent" +msgstr "GNOMEren gako-sorta: GPG agentea" + #: ../daemon/gnome-keyring-pkcs11.desktop.in.in.h:1 msgid "Certificate and Key Storage" msgstr "Ziurtagirien/gakoen biltegia" @@ -119,21 +128,21 @@ msgstr "GNOMEren gako-sorta: PKCS#11 osagaia" #: ../daemon/gnome-keyring-secrets.desktop.in.in.h:1 -msgid "GNOME Keyring: Secret Service" -msgstr "GNOMEren gako-sorta: ezkutuko zerbitzua" - -#: ../daemon/gnome-keyring-secrets.desktop.in.in.h:2 msgid "Secret Storage Service" msgstr "Ezkutuko biltegiaren zerbitzua" -#: ../daemon/gnome-keyring-ssh.desktop.in.in.h:1 -msgid "GNOME Keyring: SSH Agent" -msgstr "GNOMEren gako-sorta: SSH agentea" +#: ../daemon/gnome-keyring-secrets.desktop.in.in.h:2 +msgid "GNOME Keyring: Secret Service" +msgstr "GNOMEren gako-sorta: ezkutuko zerbitzua" -#: ../daemon/gnome-keyring-ssh.desktop.in.in.h:2 +#: ../daemon/gnome-keyring-ssh.desktop.in.in.h:1 msgid "SSH Key Agent" msgstr "SSH gako-agentea" +#: ../daemon/gnome-keyring-ssh.desktop.in.in.h:2 +msgid "GNOME Keyring: SSH Agent" +msgstr "GNOMEren gako-sorta: SSH agentea" + #: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:106 msgid "Unknown" msgstr "Ezezaguna" @@ -143,12 +152,22 @@ msgid "PGP Key: %s" msgstr "PGP gakoa: %s" -#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:360 -#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:361 +#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:350 +#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:351 msgid "Enter Passphrase" msgstr "Sartu pasaesaldia" -#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:393 +#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:355 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:603 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:631 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:646 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:722 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:768 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:800 +msgid "Unlock" +msgstr "Desblokeatu" + +#: ../daemon/gpg-agent/gkd-gpg-agent-ops.c:384 msgid "Automatically unlock this key, whenever I'm logged in" msgstr "Desblokeatu automatikoki gako-sorta hau saioa hastean" @@ -351,29 +370,29 @@ msgid "Unexpected error in waitpid() (%s)" msgstr "Ustekabeko errorea waitpid() (%s) funtzioan" -#: ../pkcs11/gkm/gkm-certificate.c:572 +#: ../pkcs11/gkm/gkm-certificate.c:581 msgid "Unnamed Certificate" msgstr "Izenik gabeko ziurtagiria" -#: ../pkcs11/ssh-store/gkm-ssh-private-key.c:339 +#: ../pkcs11/ssh-store/gkm-ssh-private-key.c:342 msgid "Couldn't parse public SSH key" msgstr "Ezin izan da SSHren gako publikoa analizatu" #. Get the label ready -#: ../pkcs11/wrap-layer/gkm-wrap-login.c:345 +#: ../pkcs11/wrap-layer/gkm-wrap-login.c:346 #, c-format msgid "Unlock password for: %s" msgstr "Desblokeatu %s(r)en gako-sorta" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:590 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:591 msgid "Unlock Login Keyring" msgstr "Desblokeatu saioaren gako-sorta" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:592 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:593 msgid "Enter password to unlock your login keyring" msgstr "Sartu pasahitza zure saio-hasierako gako-sorta desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:596 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:597 msgid "" "The password you use to log in to your computer no longer matches that of " "your login keyring." @@ -381,119 +400,115 @@ "Ordenagailuan saioa hasteko erabiltzen duzun pasahitza ez da gehiago bat " "etorriko gako-sortara atzitzekoarekin." -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:598 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:599 msgid "" "The login keyring did not get unlocked when you logged into your computer." msgstr "" "Zure saioaren gako-sorta ez da automatikoki desblokeatu ordenagailuan saioa " "hastean." -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:615 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:617 msgid "Unlock Keyring" msgstr "Desblokeatu gako-sorta" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:617 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:619 #, c-format msgid "Enter password for keyring '%s' to unlock" msgstr "Idatzi pasahitza, '%s' gako-sorta desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:621 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:623 #, c-format msgid "An application wants access to the keyring '%s', but it is locked" msgstr "Aplikazio batek '%s' gako-sorta atzitu nahi du, baina blokeatuta dago" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:627 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:629 msgid "Automatically unlock this keyring whenever I'm logged in" msgstr "Desblokeatu automatikoki gako-sorta hau saioa hastean" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:637 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:640 msgid "Unlock private key" msgstr "Desblokeatu gako pribatua" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:639 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:642 msgid "Unlock certificate" msgstr "Desblokeatu ziurtagiria" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:641 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:644 msgid "Unlock public key" msgstr "Desblokeatu gako publikoa" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:643 -msgid "Unlock" -msgstr "Desblokeatu" - -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:652 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:655 msgid "Enter password to unlock the private key" msgstr "Idatzi pasahitza gako pribatua desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:654 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:657 msgid "Enter password to unlock the certificate" msgstr "Idatzi pasahitza ziurtagiria desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:656 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:659 msgid "Enter password to unlock the public key" msgstr "Idatzi pasahitza gako publikoa desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:658 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:661 msgid "Enter password to unlock" msgstr "Idatzi pasahitza desblokeatzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:668 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:671 msgid "Automatically unlock this key whenever I'm logged in" msgstr "Desblokeatu automatikoki gako-sorta hau saioa hastean" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:670 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:673 msgid "Automatically unlock this certificate whenever I'm logged in" msgstr "Desblokeatu automatikoki ziurtagiri hau saioa hastean" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:672 -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:791 -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1133 -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1278 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:675 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:797 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1141 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1289 msgid "Automatically unlock whenever I'm logged in" msgstr "Desblokeatu automatikoki edozer saioa hastean" #. TRANSLATORS: The private key is locked -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:683 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:686 #, c-format msgid "An application wants access to the private key '%s', but it is locked" msgstr "" "Aplikazio batek '%s' gako pribatua atzitu nahi du, baina blokeatuta dago" #. TRANSLATORS: The certificate is locked -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:686 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:689 #, c-format msgid "An application wants access to the certificate '%s', but it is locked" msgstr "Aplikazio batek '%s' ziurtagiria atzitu nahi du, baina blokeatuta dago" #. TRANSLATORS: The public key is locked -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:689 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:692 #, c-format msgid "An application wants access to the public key '%s', but it is locked" msgstr "" "Aplikazio batek '%s' gako publikoa atzitu nahi du, baina blokeatuta dago" #. TRANSLATORS: The object '%s' is locked -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:692 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:695 #, c-format msgid "An application wants access to '%s', but it is locked" msgstr "Aplikazio batek '%s' atzitu nahi du, baina blokeatuta dago" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:762 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:766 msgid "The unlock password was incorrect" msgstr "Desblokeatzeko pasahitza ez da zuzena" #. Build up the prompt -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:781 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:787 msgid "Unlock certificate/key storage" msgstr "Desblokeatu ziurtagirien/gakoen biltegia" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:782 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:788 msgid "Enter password to unlock the certificate/key storage" msgstr "Idatzi pasahitza ziurtagirien/gakoen biltegia desblokeatzeko" #. TRANSLATORS: The storage is locked, and needs unlocking before the application can use it. -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:785 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:791 #, c-format msgid "" "An application wants access to the certificate/key storage '%s', but it is " @@ -501,40 +516,40 @@ msgstr "" "Aplikazio batek '%s' ziurtagiria/gakoa atzitu nahi du, baina blokeatuta dago" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1124 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1132 msgid "New Password Required" msgstr "Pasahitz berria behar da" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1125 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1133 msgid "New password required for secure storage" msgstr "Pasahitz berria behar da biltegia babesteko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1127 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1135 #, c-format msgid "" "In order to prepare '%s' for storage of certificates or keys, a password is " "required" msgstr "Pasahitza behar da '%s' prestatzeko ziurtagiriak/gakoak biltegiratzeko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1239 -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1269 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1249 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1280 msgid "Change Password" msgstr "Aldatu pasahitza" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1240 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1250 msgid "Original password for secure storage" msgstr "Jatorrizko pasahitza biltegia babesteko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1242 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1252 #, c-format msgid "To change the password for '%s', the original password is required" msgstr "'%s'(r)en pasahitza aldatzeko, jatorrizkoa pasahitza behar da" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1270 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1281 msgid "Change password for secure storage" msgstr "Pasahitza aldatu behar da biltegia babesteko" -#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1272 +#: ../pkcs11/wrap-layer/gkm-wrap-prompt.c:1283 #, c-format msgid "Type a new password for '%s'" msgstr "Idatzi '%s'(r)en pasahitz berria" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
