Hello community,

here is the log from the commit of package goobox for openSUSE:Factory checked 
in at 2013-03-30 14:56:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/goobox (Old)
 and      /work/SRC/openSUSE:Factory/.goobox.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "goobox", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/goobox/goobox.changes    2013-03-25 
20:27:51.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.goobox.new/goobox.changes       2013-03-30 
14:56:34.000000000 +0100
@@ -1,0 +2,6 @@
+Thu Mar 28 14:18:30 UTC 2013 - [email protected]
+
+- Update to version 3.2.0:
+  + Updated translations.
+
+-------------------------------------------------------------------

Old:
----
  goobox-3.1.2.tar.xz

New:
----
  goobox-3.2.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ goobox.spec ++++++
--- /var/tmp/diff_new_pack.jc2blC/_old  2013-03-30 14:56:36.000000000 +0100
+++ /var/tmp/diff_new_pack.jc2blC/_new  2013-03-30 14:56:36.000000000 +0100
@@ -17,14 +17,14 @@
 
 
 Name:           goobox
-Version:        3.1.2
+Version:        3.2.0
 Release:        0
 # FIXME: Enable libcoverart support.
 Summary:        CD Player and Ripper for GNOME
 License:        GPL-2.0+
 Group:          Productivity/Multimedia/CD/Grabbers
 Url:            http://www.gnome.org
-Source:         
http://download.gnome.org/sources/goobox/3.1/%{name}-%{version}.tar.xz
+Source:         
http://download.gnome.org/sources/goobox/3.2/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  intltool

++++++ goobox-3.1.2.tar.xz -> goobox-3.2.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/ChangeLog new/goobox-3.2.0/ChangeLog
--- old/goobox-3.1.2/ChangeLog  2013-03-20 20:34:19.000000000 +0100
+++ new/goobox-3.2.0/ChangeLog  2013-03-27 20:48:32.000000000 +0100
@@ -1,6 +1,23 @@
+commit 8013c878f6707841c02b4d807386722617912453
+Author: Paolo Bacchilega <[email protected]>
+Date:   2013-03-27
+
+    updated for version 3.2.0
+
+M      NEWS
+M      configure.ac
+
+commit 89e5d207d215b170c5e99765f724e00736422178
+Author: Alexandre Franke <[email protected]>
+Date:  2013-03-23
+
+    Update French translation
+
+M      help/fr/fr.po
+
 commit 74a994a002216a60b137f0610e093dde206d0d02
 Author: Paolo Bacchilega <[email protected]>
-Date:   2013-03-20
+Date:  2013-03-20
 
     updated for version 3.1.2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/NEWS new/goobox-3.2.0/NEWS
--- old/goobox-3.1.2/NEWS       2013-03-20 18:37:32.000000000 +0100
+++ new/goobox-3.2.0/NEWS       2013-03-27 20:38:54.000000000 +0100
@@ -1,3 +1,10 @@
+version 3.2.0
+-------------
+
+ New or updated manual translations:
+
+  * Français (Julien Hardelin)
+
 version 3.1.2
 -------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/aclocal.m4 new/goobox-3.2.0/aclocal.m4
--- old/goobox-3.1.2/aclocal.m4 2013-03-20 18:33:22.000000000 +0100
+++ new/goobox-3.2.0/aclocal.m4 2013-03-27 20:37:38.000000000 +0100
@@ -514,7 +514,8 @@
 ])
 
 dnl GNOME_COMPILE_WARNINGS
-dnl Turn on many useful compiler warnings
+dnl Turn on many useful compiler warnings and substitute the result into
+dnl WARN_CFLAGS
 dnl For now, only works on GCC
 AC_DEFUN([GNOME_COMPILE_WARNINGS],[
     dnl ******************************
@@ -526,7 +527,6 @@
                                  [Turn on compiler warnings]),,
                   [enable_compile_warnings="m4_default([$1],[yes])"])
 
-    warnCFLAGS=
     if test "x$GCC" != xyes; then
        enable_compile_warnings=no
     fi
@@ -534,46 +534,70 @@
     warning_flags=
     realsave_CFLAGS="$CFLAGS"
 
+    dnl These are warning flags that aren't marked as fatal.  Can be
+    dnl overridden on a per-project basis with -Wno-foo.
+    base_warn_flags=" \
+        -Wall \
+        -Wstrict-prototypes \
+        -Wnested-externs \
+    "
+
+    dnl These compiler flags typically indicate very broken or suspicious
+    dnl code.  Some of them such as implicit-function-declaration are
+    dnl just not default because gcc compiles a lot of legacy code.
+    dnl We choose to make this set into explicit errors.
+    base_error_flags=" \
+        -Werror=missing-prototypes \
+        -Werror=implicit-function-declaration \
+        -Werror=pointer-arith \
+        -Werror=init-self \
+        -Werror=format-security \
+        -Werror=format=2 \
+        -Werror=missing-include-dirs \
+    "
+
     case "$enable_compile_warnings" in
     no)
-       warning_flags=
-       ;;
+        warning_flags=
+        ;;
     minimum)
-       warning_flags="-Wall"
-       ;;
+        warning_flags="-Wall"
+        ;;
     yes)
-       warning_flags="-Wall -Wmissing-prototypes"
-       ;;
+        warning_flags="$base_warn_flags $base_error_flags"
+        ;;
     maximum|error)
-       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs 
-Wpointer-arith"
-       CFLAGS="$warning_flags $CFLAGS"
-       for option in -Wno-sign-compare; do
-               SAVE_CFLAGS="$CFLAGS"
-               CFLAGS="$CFLAGS $option"
-               AC_MSG_CHECKING([whether gcc understands $option])
-               AC_TRY_COMPILE([], [],
-                       has_option=yes,
-                       has_option=no,)
-               CFLAGS="$SAVE_CFLAGS"
-               AC_MSG_RESULT($has_option)
-               if test $has_option = yes; then
-                 warning_flags="$warning_flags $option"
-               fi
-               unset has_option
-               unset SAVE_CFLAGS
-       done
-       unset option
-       if test "$enable_compile_warnings" = "error" ; then
-           warning_flags="$warning_flags -Werror"
-       fi
-       ;;
+        warning_flags="$base_warn_flags $base_error_flags"
+        ;;
     *)
-       AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to 
--enable-compile-warnings)
-       ;;
+        AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to 
--enable-compile-warnings)
+        ;;
     esac
+
+    if test "$enable_compile_warnings" = "error" ; then
+        warning_flags="$warning_flags -Werror"
+    fi
+
+    dnl Check whether GCC supports the warning options
+    for option in $warning_flags; do
+       save_CFLAGS="$CFLAGS"
+       CFLAGS="$CFLAGS $option"
+       AC_MSG_CHECKING([whether gcc understands $option])
+       AC_TRY_COMPILE([], [],
+           has_option=yes,
+           has_option=no,)
+       CFLAGS="$save_CFLAGS"
+       AC_MSG_RESULT([$has_option])
+       if test $has_option = yes; then
+           tested_warning_flags="$tested_warning_flags $option"
+       fi
+       unset has_option
+       unset save_CFLAGS
+    done
+    unset option
     CFLAGS="$realsave_CFLAGS"
     AC_MSG_CHECKING(what warning flags to pass to the C compiler)
-    AC_MSG_RESULT($warning_flags)
+    AC_MSG_RESULT($tested_warning_flags)
 
     AC_ARG_ENABLE(iso-c,
                   AC_HELP_STRING([--enable-iso-c],
@@ -596,7 +620,7 @@
     fi
     AC_MSG_RESULT($complCFLAGS)
 
-    WARN_CFLAGS="$warning_flags $complCFLAGS"
+    WARN_CFLAGS="$tested_warning_flags $complCFLAGS"
     AC_SUBST(WARN_CFLAGS)
 ])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/configure new/goobox-3.2.0/configure
--- old/goobox-3.1.2/configure  2013-03-20 18:33:24.000000000 +0100
+++ new/goobox-3.2.0/configure  2013-03-27 20:37:40.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for goobox 3.1.2.
+# Generated by GNU Autoconf 2.69 for goobox 3.2.0.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=goobox>.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='goobox'
 PACKAGE_TARNAME='goobox'
-PACKAGE_VERSION='3.1.2'
-PACKAGE_STRING='goobox 3.1.2'
+PACKAGE_VERSION='3.2.0'
+PACKAGE_STRING='goobox 3.2.0'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=goobox'
 PACKAGE_URL=''
 
@@ -1427,7 +1427,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures goobox 3.1.2 to adapt to many kinds of systems.
+\`configure' configures goobox 3.2.0 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1497,7 +1497,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of goobox 3.1.2:";;
+     short | recursive ) echo "Configuration of goobox 3.2.0:";;
    esac
   cat <<\_ACEOF
 
@@ -1634,7 +1634,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-goobox configure 3.1.2
+goobox configure 3.2.0
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2124,7 +2124,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by goobox $as_me 3.1.2, which was
+It was created by goobox $as_me 3.2.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2987,7 +2987,7 @@
 
 # Define the identity of the package.
  PACKAGE='goobox'
- VERSION='3.1.2'
+ VERSION='3.2.0'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15594,7 +15594,6 @@
 fi
 
 
-    warnCFLAGS=
     if test "x$GCC" != xyes; then
        enable_compile_warnings=no
     fi
@@ -15602,25 +15601,50 @@
     warning_flags=
     realsave_CFLAGS="$CFLAGS"
 
+            base_warn_flags=" \
+        -Wall \
+        -Wstrict-prototypes \
+        -Wnested-externs \
+    "
+
+                    base_error_flags=" \
+        -Werror=missing-prototypes \
+        -Werror=implicit-function-declaration \
+        -Werror=pointer-arith \
+        -Werror=init-self \
+        -Werror=format-security \
+        -Werror=format=2 \
+        -Werror=missing-include-dirs \
+    "
+
     case "$enable_compile_warnings" in
     no)
-       warning_flags=
-       ;;
+        warning_flags=
+        ;;
     minimum)
-       warning_flags="-Wall"
-       ;;
+        warning_flags="-Wall"
+        ;;
     yes)
-       warning_flags="-Wall -Wmissing-prototypes"
-       ;;
+        warning_flags="$base_warn_flags $base_error_flags"
+        ;;
     maximum|error)
-       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs 
-Wpointer-arith"
-       CFLAGS="$warning_flags $CFLAGS"
-       for option in -Wno-sign-compare; do
-               SAVE_CFLAGS="$CFLAGS"
-               CFLAGS="$CFLAGS $option"
-               { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc 
understands $option" >&5
+        warning_flags="$base_warn_flags $base_error_flags"
+        ;;
+    *)
+        as_fn_error $? "Unknown argument '$enable_compile_warnings' to 
--enable-compile-warnings" "$LINENO" 5
+        ;;
+    esac
+
+    if test "$enable_compile_warnings" = "error" ; then
+        warning_flags="$warning_flags -Werror"
+    fi
+
+        for option in $warning_flags; do
+       save_CFLAGS="$CFLAGS"
+       CFLAGS="$CFLAGS $option"
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc 
understands $option" >&5
 $as_echo_n "checking whether gcc understands $option... " >&6; }
-               cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 
 int
@@ -15637,29 +15661,21 @@
   has_option=no
 fi
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-               CFLAGS="$SAVE_CFLAGS"
-               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $has_option" 
>&5
+       CFLAGS="$save_CFLAGS"
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $has_option" >&5
 $as_echo "$has_option" >&6; }
-               if test $has_option = yes; then
-                 warning_flags="$warning_flags $option"
-               fi
-               unset has_option
-               unset SAVE_CFLAGS
-       done
-       unset option
-       if test "$enable_compile_warnings" = "error" ; then
-           warning_flags="$warning_flags -Werror"
+       if test $has_option = yes; then
+           tested_warning_flags="$tested_warning_flags $option"
        fi
-       ;;
-    *)
-       as_fn_error $? "Unknown argument '$enable_compile_warnings' to 
--enable-compile-warnings" "$LINENO" 5
-       ;;
-    esac
+       unset has_option
+       unset save_CFLAGS
+    done
+    unset option
     CFLAGS="$realsave_CFLAGS"
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking what warning flags to 
pass to the C compiler" >&5
 $as_echo_n "checking what warning flags to pass to the C compiler... " >&6; }
-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $warning_flags" >&5
-$as_echo "$warning_flags" >&6; }
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tested_warning_flags" >&5
+$as_echo "$tested_warning_flags" >&6; }
 
     # Check whether --enable-iso-c was given.
 if test "${enable_iso_c+set}" = set; then :
@@ -15687,7 +15703,7 @@
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $complCFLAGS" >&5
 $as_echo "$complCFLAGS" >&6; }
 
-    WARN_CFLAGS="$warning_flags $complCFLAGS"
+    WARN_CFLAGS="$tested_warning_flags $complCFLAGS"
 
 
 
@@ -18522,7 +18538,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by goobox $as_me 3.1.2, which was
+This file was extended by goobox $as_me 3.2.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -18588,7 +18604,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-goobox config.status 3.1.2
+goobox config.status 3.2.0
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/configure.ac 
new/goobox-3.2.0/configure.ac
--- old/goobox-3.1.2/configure.ac       2013-03-20 18:33:04.000000000 +0100
+++ new/goobox-3.2.0/configure.ac       2013-03-27 20:37:23.000000000 +0100
@@ -1,5 +1,5 @@
 AC_PREREQ(2.61)
-AC_INIT([goobox], [3.1.2], 
[http://bugzilla.gnome.org/enter_bug.cgi?product=goobox])
+AC_INIT([goobox], [3.2.0], 
[http://bugzilla.gnome.org/enter_bug.cgi?product=goobox])
 AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz tar-ustar])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/data/goobox.desktop 
new/goobox-3.2.0/data/goobox.desktop
--- old/goobox-3.1.2/data/goobox.desktop        2013-03-20 18:33:51.000000000 
+0100
+++ new/goobox-3.2.0/data/goobox.desktop        2013-03-27 20:38:20.000000000 
+0100
@@ -90,5 +90,5 @@
 X-GNOME-Bugzilla-Bugzilla=GNOME
 X-GNOME-Bugzilla-Product=goobox
 X-GNOME-Bugzilla-Component=general
-X-GNOME-Bugzilla-Version=3.1.2
+X-GNOME-Bugzilla-Version=3.2.0
 X-GNOME-UsesNotifications=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/data/goobox.desktop.in 
new/goobox-3.2.0/data/goobox.desktop.in
--- old/goobox-3.1.2/data/goobox.desktop.in     2013-03-20 18:33:45.000000000 
+0100
+++ new/goobox-3.2.0/data/goobox.desktop.in     2013-03-27 20:38:19.000000000 
+0100
@@ -12,5 +12,5 @@
 X-GNOME-Bugzilla-Bugzilla=GNOME
 X-GNOME-Bugzilla-Product=goobox
 X-GNOME-Bugzilla-Component=general
-X-GNOME-Bugzilla-Version=3.1.2
+X-GNOME-Bugzilla-Version=3.2.0
 X-GNOME-UsesNotifications=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/help/fr/fr.po 
new/goobox-3.2.0/help/fr/fr.po
--- old/goobox-3.1.2/help/fr/fr.po      2012-12-05 17:13:13.000000000 +0100
+++ new/goobox-3.2.0/help/fr/fr.po      2013-03-27 20:37:14.000000000 +0100
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: goobox 1.0 fr\n"
-"POT-Creation-Date: 2012-09-25 16:46+0000\n"
+"POT-Creation-Date: 2013-03-20 19:39+0000\n"
 "PO-Revision-Date: 2012-09-25 18:46+0200\n"
 "Last-Translator: Julien hardelin <[email protected]>\n"
 "Language-Team: français <GNOME French Team <[email protected]>>\n"
@@ -121,7 +121,7 @@
 msgstr ""
 "Gardez à l'esprit que lorsque vous changez une option, elle est appliquée "
 "automatiquement. C'est pourquoi il n'y a pas de bouton <gui style=\"button"
-"\">Valider</gui> ou <gui style>Appliquer</gui>."
+"\">Valider</gui> ou <gui style=\"button\">Appliquer</gui>."
 
 #: C/preferences.page:34(section/title)
 msgid "General Tab"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/goobox-3.1.2/help/fr/preferences.page 
new/goobox-3.2.0/help/fr/preferences.page
--- old/goobox-3.1.2/help/fr/preferences.page   2013-03-20 13:11:26.000000000 
+0100
+++ new/goobox-3.2.0/help/fr/preferences.page   2013-03-27 20:38:20.000000000 
+0100
@@ -29,11 +29,7 @@
       <p>Ferme la boîte de dialogue.</p>
     </item>
   </terms>
-  <p>
-    Keep in mind that when you change an option it will automatically
-    applied. This is why there is no <gui style="button">Ok</gui> or
-    <gui style="button">Apply</gui> button.
-  </p>
+  <p>Gardez à l'esprit que lorsque vous changez une option, elle est appliquée 
automatiquement. C'est pourquoi il n'y a pas de bouton <gui 
style="button">Valider</gui> ou <gui style="button">Appliquer</gui>.</p>
 
   <section>
     <title>Onglet Général</title>

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to