commit libmlt for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libmlt for openSUSE:Factory checked 
in at 2012-10-03 08:00:16

Comparing /work/SRC/openSUSE:Factory/libmlt (Old)
 and  /work/SRC/openSUSE:Factory/.libmlt.new (New)


Package is libmlt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libmlt/libmlt.changes2012-09-01 
10:31:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmlt.new/libmlt.changes   2012-10-03 
08:00:18.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  1 13:28:16 UTC 2012 - reddw...@opensuse.org
+
+- Add libmlt-0.8.2-ffmpeg1.patch to fix build with ffmpeg 1.0
+
+---

New:

  libmlt-0.8.2-ffmpeg1.patch



Other differences:
--
++ libmlt.spec ++
--- /var/tmp/diff_new_pack.xrZ9DR/_old  2012-10-03 08:00:20.0 +0200
+++ /var/tmp/diff_new_pack.xrZ9DR/_new  2012-10-03 08:00:20.0 +0200
@@ -40,6 +40,8 @@
 Patch1: libmlt-0.8.2-vdpau.patch
 # PATCH-FIX-UPSTREAM libmlt-0.8.0-vdpau.patch sf#3555214 reddw...@opensuse.org 
-- Install modules and data in versioned directories
 Patch2: libmlt-0.8.0-versioned_dirs.patch
+# PATCH-FIX-UPSTREAM libmlt-0.8.2-ffmpeg1.patch reddw...@opensuse.org -- Build 
with ffmpeg 1.0. Taken from upstream GIT.
+Patch3: libmlt-0.8.2-ffmpeg1.patch
 BuildRequires:  gcc-c++
 BuildRequires:  ladspa-devel
 BuildRequires:  pkg-config
@@ -190,6 +192,7 @@
 %patch0
 %patch1
 %patch2
+%patch3
 
 # To complement libmlt-0.8.0-vdpau.patch.
 # When vdpau support is not compiled it will break the code. Doesn't matter 
because the code will not be used anyway.

++ libmlt-0.8.2-ffmpeg1.patch ++
Index: src/modules/avformat/consumer_avformat.c
===
--- src/modules/avformat/consumer_avformat.c.orig
+++ src/modules/avformat/consumer_avformat.c
@@ -237,10 +237,12 @@ static int consumer_start( mlt_consumer
mlt_properties_set_data( properties, acodec, codecs, 0, 
(mlt_destructor) mlt_properties_close, NULL );
mlt_properties_set_data( doc, audio_codecs, codecs, 0, NULL, 
NULL );
while ( ( codec = av_codec_next( codec ) ) )
-#if LIBAVCODEC_VERSION_INT = ((5416)+(08)+0)
-   if ( ( codec-encode || codec-encode2 )  codec-type 
== CODEC_TYPE_AUDIO )
+#if (defined(FFUDIV)  LIBAVCODEC_VERSION_INT = ((5416)+(568)+100)) || 
(LIBAVCODEC_VERSION_INT = ((5416)+(278)+0))
+   if ( codec-encode2  codec-type == CODEC_TYPE_AUDIO )
+#elif LIBAVCODEC_VERSION_INT = ((5416)+(08)+0)
+   if ( ( codec-encode || codec-encode2 )  
codec-type == CODEC_TYPE_AUDIO )
 #else
-   if ( codec-encode  codec-type == CODEC_TYPE_AUDIO )
+   if ( codec-encode  codec-type == 
CODEC_TYPE_AUDIO )
 #endif
{
snprintf( key, sizeof(key), %d, 
mlt_properties_count( codecs ) );
@@ -261,10 +263,12 @@ static int consumer_start( mlt_consumer
mlt_properties_set_data( properties, vcodec, codecs, 0, 
(mlt_destructor) mlt_properties_close, NULL );
mlt_properties_set_data( doc, video_codecs, codecs, 0, NULL, 
NULL );
while ( ( codec = av_codec_next( codec ) ) )
-#if LIBAVCODEC_VERSION_INT = ((5416)+(08)+0)
-   if ( (codec-encode || codec-encode2)  codec-type 
== CODEC_TYPE_VIDEO )
+#if (defined(FFUDIV)  LIBAVCODEC_VERSION_INT = ((5416)+(568)+100)) || 
(LIBAVCODEC_VERSION_INT = ((5416)+(278)+0))
+   if ( codec-encode2  codec-type == CODEC_TYPE_VIDEO )
+#elif LIBAVCODEC_VERSION_INT = ((5416)+(08)+0)
+   if ( (codec-encode || codec-encode2)  
codec-type == CODEC_TYPE_VIDEO )
 #else
-   if ( codec-encode  codec-type == CODEC_TYPE_VIDEO )
+   if ( codec-encode  codec-type == 
CODEC_TYPE_VIDEO )
 #endif
{
snprintf( key, sizeof(key), %d, 
mlt_properties_count( codecs ) );
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libotr for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libotr for openSUSE:Factory checked 
in at 2012-10-03 08:00:28

Comparing /work/SRC/openSUSE:Factory/libotr (Old)
 and  /work/SRC/openSUSE:Factory/.libotr.new (New)


Package is libotr, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/libotr/libotr.changes2012-02-16 
16:18:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.libotr.new/libotr.changes   2012-10-03 
08:00:30.0 +0200
@@ -1,0 +2,28 @@
+Wed Sep 26 11:40:40 UTC 2012 - nmo.marq...@gmail.com
+
+- Update the license fields (bnc#782253)
+- Move COPYING and COPYING.LIB documentation to their respective
+  (sub)packages.
+
+---
+Sun Sep 23 16:42:20 UTC 2012 - nmo.marq...@gmail.com
+
+- Update to version 4.0.0:
+  + Support v3 of the OTR protocol
+  + The main new feature: sensibly handle the case where a user is
+logged in multiple times to the same IM account
+  + instance tags, to support multiple simultaneous logins
+  + support for asynchronous private key generation
+  + the ability to provide an extra symmetric key to applications
+(with forward secrecy)
+  + applications can supply a formation conversion callback if they
+do not natively use XHTML-style UTF8 markup
+  + error messages formerly provided by libotr are now handled
+using callbacks to the application, for better i18n support
+  + otrl_message_sending now handles message fragmentation
+internally
+  + Added support for one-way authentication using an explicit
+question, based on the SOUPS 2008 user study
+- Soname bump to 5
+
+---

Old:

  libotr-3.2.0.tar.bz2

New:

  libotr-4.0.0.tar.gz



Other differences:
--
++ libotr.spec ++
--- /var/tmp/diff_new_pack.VJnVvh/_old  2012-10-03 08:00:33.0 +0200
+++ /var/tmp/diff_new_pack.VJnVvh/_new  2012-10-03 08:00:33.0 +0200
@@ -19,13 +19,14 @@
 Name:   libotr
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libtool
-Version:3.2.0
+BuildRequires:  pkgconfig
+Version:4.0.0
 Release:0
 Url:http://www.cypherpunks.ca/otr/
 Summary:Off The Record messaging library toolkit
-License:LGPL-2.1+
+License:LGPL-2.1 and GPL-2.0
 Group:  Development/Libraries/C and C++
-Source: http://www.cypherpunks.ca/otr/%{name}-%{version}.tar.bz2
+Source: http://www.cypherpunks.ca/otr/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -40,14 +41,15 @@
 secrecy If you lose control of your private keys, no previous
 conversation is compromised.
 
-%package -n libotr2
+%package -n libotr5
 Summary:Off The Record messaging library toolkit
+License:LGPL-2.1
 Group:  Development/Libraries/C and C++
 #openSUSE 10.3
 Provides:   %{name} = %{version}
 Obsoletes:  %{name} = 3.0.0
 
-%description -n libotr2
+%description -n libotr5
 Off-the-Record (OTR) Messaging allows you to have private conversations
 over instant messaging by providing: Encryption No one else can read
 your instant messages. Authentication You are assured the correspondent
@@ -61,14 +63,17 @@
 
 %package devel
 Summary:Include files and development libraries
+License:LGPL-2.1 and GPL-2.0
 Group:  Development/Libraries/C and C++
-Requires:   libotr2 = %{version} libgcrypt-devel
+Requires:   libgcrypt-devel
+Requires:   libotr5 = %{version}
 
 %description devel
 Headers and development libraries for libotr
 
 %package tools
 Summary:Off The Record messaging library toolkit
+License:GPL-2.0
 Group:  Development/Libraries/C and C++
 
 %description tools
@@ -105,24 +110,26 @@
 
 %files tools
 %defattr (-, root, root)
+%doc COPYING
 %{_bindir}/otr*
 %{_mandir}/man1/otr*
 
-%files -n libotr2
+%files -n libotr5
 %defattr (-, root, root)
-%{_libdir}/libotr.so.2*
+%doc COPYING.LIB
+%{_libdir}/libotr.so.5*
 
 %files devel
 %defattr (-, root, root)
-%doc COPYING README COPYING.LIB AUTHORS NEWS ChangeLog
+%doc COPYING README AUTHORS NEWS ChangeLog
 %dir %{_includedir}/libotr
 %{_includedir}/libotr/*.h
 %{_libdir}/libotr.so
 %{_datadir}/aclocal/libotr.m4
 %{_libdir}/pkgconfig/libotr.pc
 
-%post -n libotr2 -p /sbin/ldconfig
+%post -n libotr5 -p /sbin/ldconfig
 
-%postun -n libotr2 -p /sbin/ldconfig
+%postun -n libotr5 -p /sbin/ldconfig
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libQtWebKit4 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libQtWebKit4 for openSUSE:Factory 
checked in at 2012-10-03 08:03:35

Comparing /work/SRC/openSUSE:Factory/libQtWebKit4 (Old)
 and  /work/SRC/openSUSE:Factory/.libQtWebKit4.new (New)


Package is libQtWebKit4, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libQtWebKit4/libQtWebKit4.changes
2012-08-27 16:22:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libQtWebKit4.new/libQtWebKit4.changes   
2012-10-03 08:03:37.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 19 02:24:00 UTC 2012 - dmuel...@suse.com
+
+- Sync with Qt 4.8.3
+
+---

Old:

  qwebview-4.8.2.tar.bz2

New:

  qwebview-4.8.3.tar.bz2



Other differences:
--
++ libQtWebKit4.spec ++
--- /var/tmp/diff_new_pack.7ZWFJe/_old  2012-10-03 08:03:51.0 +0200
+++ /var/tmp/diff_new_pack.7ZWFJe/_new  2012-10-03 08:03:51.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   libQtWebKit4
 %define tar_version 2.2.0
-%define qt_version 4.8.2
+%define qt_version 4.8.3
 Version:%qt_version+%tar_version
 Release:0
 Summary:Open source Web Browser engine based on Qt4
@@ -106,9 +106,7 @@
 %patch8 -p1
 %patch9 -p1
 %patch10
-%ifarch %arm
 %patch11
-%endif
 %patch12
 %patch13
 %patch14

++ qwebview-4.8.2.tar.bz2 - qwebview-4.8.3.tar.bz2 ++
 no output (probably identical)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libtasn1 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libtasn1 for openSUSE:Factory 
checked in at 2012-10-03 08:03:45

Comparing /work/SRC/openSUSE:Factory/libtasn1 (Old)
 and  /work/SRC/openSUSE:Factory/.libtasn1.new (New)


Package is libtasn1, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libtasn1/libtasn1.changes2012-07-23 
10:15:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.libtasn1.new/libtasn1.changes   2012-10-03 
08:03:52.0 +0200
@@ -1,0 +2,11 @@
+Fri Sep 28 09:23:57 UTC 2012 - meiss...@suse.com
+
+- updated to version 2.14
+  This release adds asn1_read_node_value() to obtain a node's value. This
+  is to deprecate the export of the node_asn internal structure for the
+  upcoming 3.x release. The ASN1_DATA_NODE type and the ASN1_ETYPE_*
+  constants were added to support the new function.
+- removed upstreamed libtasn1-stdio.h patch
+- make check
+
+---

Old:

  libtasn1-2.12.tar.bz2
  libtasn1-stdio.h.patch

New:

  libtasn1-2.14.tar.gz



Other differences:
--
++ libtasn1.spec ++
--- /var/tmp/diff_new_pack.ve7hjE/_old  2012-10-03 08:03:58.0 +0200
+++ /var/tmp/diff_new_pack.ve7hjE/_new  2012-10-03 08:03:58.0 +0200
@@ -16,18 +16,19 @@
 #
 
 
+%define somajor 3
+
 Name:   libtasn1
 BuildRequires:  info
 BuildRequires:  pkg-config
-Version:2.12
+Version:2.14
 Release:0
 Url:http://ftp.gnu.org/gnu/libtasn1/
 Summary:ASN.1 parsing library
 License:LGPL-2.1+ and GPL-3.0
 Group:  Productivity/Networking/Security
-Source: %{name}-%{version}.tar.bz2
+Source: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
 Source99:   baselibs.conf
-Patch1: libtasn1-stdio.h.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %install_info_prereq
 
@@ -36,18 +37,18 @@
 can be found at http://www.gnu.org/software/gnutls and
 http://www.gnutls.org
 
-%package -n libtasn1-3
+%package -n libtasn1-%{somajor}
 Summary:ASN.1 parsing library
 Group:  Productivity/Networking/Security
 Requires:   %{name} = %{version}
 
-%description -n libtasn1-3
+%description -n libtasn1-%{somajor}
 This is the ASN.1 library used in GNUTLS. More up to date information
 can be found at http://www.gnu.org/software/gnutls and
 http://www.gnutls.org
 
 %package devel
-Requires:   %{name} = %{version}
+Requires:   libtasn1-%{somajor} = %{version}
 Summary:ASN.1 parsing library
 Group:  Productivity/Networking/Security
 
@@ -57,8 +58,7 @@
 http://www.gnutls.org
 
 %prep
-%setup
-%patch1 -p1
+%setup -q
 
 %build
 %configure --disable-static
@@ -68,18 +68,18 @@
 %makeinstall
 rm $RPM_BUILD_ROOT/%{_libdir}/*.la
 
+%check
+make check
+
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %postun
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
-%post -n libtasn1-3 -p /sbin/ldconfig
-
-%postun -n libtasn1-3 -p /sbin/ldconfig
+%post -n libtasn1-%{somajor} -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%postun -n libtasn1-%{somajor} -p /sbin/ldconfig
 
 %files
 %defattr(-, root, root)
@@ -89,9 +89,9 @@
 %{_mandir}/man3/*.3.gz
 %{_infodir}/*.info.gz
 
-%files -n libtasn1-3
+%files -n libtasn1-%{somajor}
 %defattr(-, root, root)
-%{_libdir}/*.so.*
+%{_libdir}/*.so.%{somajor}*
 
 %files devel
 %defattr(-, root, root)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libwpd for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libwpd for openSUSE:Factory checked 
in at 2012-10-03 08:03:59

Comparing /work/SRC/openSUSE:Factory/libwpd (Old)
 and  /work/SRC/openSUSE:Factory/.libwpd.new (New)


Package is libwpd, Maintainer is pmla...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libwpd/libwpd.changes2012-02-16 
16:19:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.libwpd.new/libwpd.changes   2012-10-03 
08:04:01.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 27 21:42:58 CEST 2012 - fridrich.st...@suse.com
+
+- upgrade to version 0.9.6:
+  - Experimental support of Zip storage along with Ole.
+  - Add WPX_SEEK_END enum member in order to speed up the Zip
+operations.
+  - Numerous fixes of coverity and cppcheck warnings and errors.
+- upstream patch to really enable Zip stream.
+- package build depends on zlib-devel.
+
+---

Old:

  libwpd-0.9.4.tar.bz2

New:

  libwpd-0.9.6-zipstream.patch
  libwpd-0.9.6.tar.bz2



Other differences:
--
++ libwpd.spec ++
--- /var/tmp/diff_new_pack.QMwU4B/_old  2012-10-03 08:04:02.0 +0200
+++ /var/tmp/diff_new_pack.QMwU4B/_new  2012-10-03 08:04:02.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
-
 Name:   libwpd
 # note: the main package is empty, it only sets a sane name for the source rpm
-BuildRequires:  doxygen gcc-c++ pkgconfig
-License:LGPL-2.1+
-Group:  Productivity/Publishing/Word
-Version:0.9.4
+BuildRequires:  doxygen
+BuildRequires:  gcc-c++
+BuildRequires:  pkgconfig
+BuildRequires:  zlib-devel
+Version:0.9.6
 Release:0
 Summary:Library for Importing WordPerfect (tm) Documents
+License:LGPL-2.1+
+Group:  Productivity/Publishing/Word
 Source: libwpd-%{version}.tar.bz2
+Patch0: libwpd-0.9.6-zipstream.patch
 Url:http://libwpd.sourceforge.net
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -38,10 +41,10 @@
 %define libname libwpd-0_9-9
 
 %package -n %libname
-Group:  System/Libraries
 # remove the old non-versioned package (built in the bs for instance)
 Obsoletes:  libwpd  %version
 Summary:Library for Importing WordPerfect (tm) Documents
+Group:  System/Libraries
 
 %description -n %libname
 libwpd is a general purpose library for reading or interpreting data
@@ -50,9 +53,10 @@
 as an in-process component.
 
 %package devel
-Group:  Development/Libraries/C and C++
 Summary:Library for importing WordPerfect (tm) documents
-Requires:   %{libname} = %{version} libstdc++-devel
+Group:  Development/Libraries/C and C++
+Requires:   %{libname} = %{version}
+Requires:   libstdc++-devel
 
 %description devel
 libwpd is a general purpose library for reading (or, interpreting data
@@ -61,16 +65,16 @@
 an in-process component.
 
 %package devel-doc
-Group:  Documentation
 Summary:Documentation for the libwpd API
+Group:  Documentation
 Requires:   libwpd-devel
 
 %description devel-doc
 This package contains documentation for the libwpd API.
 
 %package tools
-Group:  Productivity/Publishing/Word
 Summary:Library for importing WordPerfect (tm) documents
+Group:  Productivity/Publishing/Word
 
 %description tools
 Tools to transform WordPerfect Documents into other formats. Currently
@@ -78,6 +82,7 @@
 
 %prep
 %setup -q
+%patch0 -p0 -b .zipstream
 
 %build
 export CXXFLAGS=%optflags -fvisibility-inlines-hidden

++ libwpd-0.9.6-zipstream.patch ++
--- src/lib/WPXStreamImplementation.cpp
+++ src/lib/WPXStreamImplementation.cpp
@@ -22,6 +22,10 @@
  * For further information visit http://libwpd.sourceforge.net
  */
 
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
 #include WPXStreamImplementation.h
 #include WPXOLEStream.h
 #ifdef BUILD_ZIP_STREAM
--- src/lib/WPXZipStream.cpp
+++ src/lib/WPXZipStream.cpp
@@ -20,6 +20,10 @@
  * For further information visit http://libwpd.sourceforge.net
  */
 
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
 #ifdef BUILD_ZIP_STREAM
 
 #include string
++ libwpd-0.9.4.tar.bz2 - libwpd-0.9.6.tar.bz2 ++
 55088 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mailman for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package mailman for openSUSE:Factory checked 
in at 2012-10-03 08:04:09

Comparing /work/SRC/openSUSE:Factory/mailman (Old)
 and  /work/SRC/openSUSE:Factory/.mailman.new (New)


Package is mailman, Maintainer is jmate...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mailman/mailman.changes  2012-03-05 
18:00:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.mailman.new/mailman.changes 2012-10-03 
08:04:11.0 +0200
@@ -1,0 +2,9 @@
+Tue Oct  2 13:10:52 UTC 2012 - jmate...@suse.com
+
+- removed SuSEconfig dependency
+  * SuSEconfig.mailman is moved to a new location, and works
+pretty much the same way as before. which may or may not
+be a good thing, perhaps this functionality should be
+removed completely
+
+---

Old:

  SuSEconfig.mailman

New:

  mailman-generate-sysconfig



Other differences:
--
++ mailman.spec ++
--- /var/tmp/diff_new_pack.8Lu0Ns/_old  2012-10-03 08:04:12.0 +0200
+++ /var/tmp/diff_new_pack.8Lu0Ns/_new  2012-10-03 08:04:12.0 +0200
@@ -41,7 +41,7 @@
 Source1:README.SuSE
 Source2:mailman-2.1-manpages.tgz
 %if %DISTRIBUTABLE
-Source4:SuSEconfig.mailman
+Source4:mailman-generate-sysconfig
 %else
 Source4:SuSEconfig.mailman-SuSE
 %endif
@@ -146,7 +146,7 @@
 echo %{m_gid}  $RPM_BUILD_ROOT/%{mailman_confd}/mailman.mail-gid
 # SuSEconfig stuff:
 install -m 644 %{S:7} $RPM_BUILD_ROOT/var/adm/fillup-templates/
-install -m 755 %{S:4} $RPM_BUILD_ROOT/sbin/conf.d/SuSEconfig.mailman
+install -m 755 %{S:4} $RPM_BUILD_ROOT/usr/lib/mailman/bin/
 install -m 644 %{S:8} %{buildroot}/usr/lib/mailman/sgidlist
 # start script:
 ln -sf ../../etc/init.d/mailman $RPM_BUILD_ROOT/usr/sbin/rcmailman
@@ -200,7 +200,7 @@
 # use Mailman facilities for updating old data
 usr/lib/mailman/bin/update
 if test -z $YAST_IS_RUNNING ; then
-   echo Please remember to run 'SuSEconfig --module mailman' to configure 
mailman
+   echo Please remember to run 
'/usr/lib/mailman/bin/mailman-generate-sysconfig' to configure mailman
 fi
 # re-create the list aliases 
 usr/lib/mailman/bin/genaliases  /dev/null
@@ -247,7 +247,6 @@
 %config(noreplace) %attr(-, mailman, mailman) /var/lib/mailman/data/aliases
 %ghost %attr(0664, mailman, mailman) /var/lib/mailman/data/aliases.db
 /var/adm/fillup-templates/*
-/sbin/conf.d/*
 /usr/sbin/*
 /etc/init.d/*
 %dir /etc/apache2

++ README.SuSE ++
--- /var/tmp/diff_new_pack.8Lu0Ns/_old  2012-10-03 08:04:12.0 +0200
+++ /var/tmp/diff_new_pack.8Lu0Ns/_new  2012-10-03 08:04:12.0 +0200
@@ -22,7 +22,7 @@
MAILMAN_DEFAULT_EMAIL_HOST
MAILMAN_DEFAULT_URL_HOST
MAILMAN_VIRTUAL_HOSTS
-   and run SuSEconfig -module mailman.
+   and run /usr/lib/mailman/bin/mailman-generate-sysconfig.
 
 2) Call /usr/lib/mailman/bin/mmsitepass as user root to set your site
master password.

++ mailman-generate-sysconfig ++
#!/bin/bash
#
# Copyright (c) 1995-2002 SuSE Linux AG, Nuernberg, Germany.
# All rights reserved.
#
# Author: Vladim�r Linek feedb...@suse.de
# Heiko Rommel   feedb...@suse.de
#


#
# check if we are started as root
# only one of UID and USER must be set correctly
#

if test $UID != 0 -a $USER != root; then
echo You must be root to start $0.
exit 1
fi

if test ! -x /bin/hostname; then
echo You need /bin/hostname to run $0.
exit 1
fi

r=$ROOT

warn_user(){
tput bold
echo -e \t*** WARNING ***
echo -e $1
echo -e \t*** WARNING ***
tput sgr0
}

#
# load sysconfig for mailman
#

mailmansysconf=$r/etc/sysconfig/mailman
test -f $mailmansysconf || {
echo ERROR - can not find $mailmansysconf!!
echo This should not happen.  Exit...
exit 1
}
. $mailmansysconf


#
# go and replace some general site secific options
#

HOST=`/bin/hostname --fqdn`

MM_CFG=$r/usr/lib/mailman/Mailman/mm_cfg.py

mmcfgdist=$r/usr/lib/mailman/Mailman/mm_cfg.py.dist
install -m 0644 -o root -g mailman $mmcfgdist ${MM_CFG}.SuSEconfig || {
echo ERROR - can not find $mmcfgdist!!
echo This should not happen.  Exit...
exit 1

}

( test $MAILMAN_DEFAULT_HTTPS = yes  echo DEFAULT_URL_PATTERN = 
'https://%s/mailman/' || echo DEFAULT_URL_PATTERN = 'http://%s/mailman/' ) 
 ${MM_CFG}.SuSEconfig

( test -z $MAILMAN_DEFAULT_NNTP_HOST  echo DEFAULT_NNTP_HOST = '${HOST}' 
|| echo DEFAULT_NNTP_HOST = '$MAILMAN_DEFAULT_NNTP_HOST' )  
${MM_CFG}.SuSEconfig

( test -z $MAILMAN_DEFAULT_EMAIL_HOST  echo DEFAULT_EMAIL_HOST = 
'${HOST}' || echo DEFAULT_EMAIL_HOST = '$MAILMAN_DEFAULT_EMAIL_HOST' )  
${MM_CFG}.SuSEconfig

( test -z $MAILMAN_DEFAULT_URL_HOST  echo DEFAULT_URL_HOST = '${HOST}' || 
echo 

commit Mesa for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2012-10-03 08:04:42

Comparing /work/SRC/openSUSE:Factory/Mesa (Old)
 and  /work/SRC/openSUSE:Factory/.Mesa.new (New)


Package is Mesa, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2012-09-25 
14:18:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2012-10-03 
08:04:45.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 25 15:28:52 UTC 2012 - tobias.johannes.klausm...@mni.thm.de
+
+- Update the Mesa 9.0 Git Snapshot
+  + Add the Git CommitID to the buildscript
+  + Minor cleanup of the buildscript
+
+---

Old:

  mesa-8.98.5.tar.bz2

New:

  mesa-8.98.8.tar.bz2



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.oaDLIZ/_old  2012-10-03 08:04:48.0 +0200
+++ /var/tmp/diff_new_pack.oaDLIZ/_new  2012-10-03 08:04:48.0 +0200
@@ -17,11 +17,12 @@
 
 
 %define glamor 1
-%define _version 8.98.5
+%define _version 8.98.8
 %define _name_archive mesa
+%define _id b1ce5749b996d6ce3dcf9bbd1537c46d14e62adb
 
 Name:   Mesa
-Version:8.98.5
+Version:8.98.8
 Release:0
 BuildRequires:  autoconf = 2.60
 BuildRequires:  automake
@@ -540,7 +541,6 @@
 install -m 644 src/mesa/drivers/osmesa/osmesa.pc \
$RPM_BUILD_ROOT/usr/%{_lib}/pkgconfig
 
-#for dir in ../xc/doc/man/{GL/gl,GL/glx,GLU}; do
 for dir in ../xc/doc/man/{GL/gl,GL/glx}; do
 pushd $dir
   xmkmf -a

++ mesa-8.98.5.tar.bz2 - mesa-8.98.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mesa-8.98.5/configure.ac new/mesa-8.98.8/configure.ac
--- old/mesa-8.98.5/configure.ac2012-09-15 00:27:51.0 +0200
+++ new/mesa-8.98.8/configure.ac2012-09-25 21:05:20.0 +0200
@@ -859,13 +859,12 @@
 xyesno)
 # DRI-based GLX
 PKG_CHECK_MODULES([GLPROTO], [glproto = $GLPROTO_REQUIRED])
-GL_PC_REQ_PRIV=glproto = $GLPROTO_REQUIRED
 if test x$driglx_direct = xyes; then
 if test x$have_libdrm != xyes; then
 AC_MSG_ERROR([Direct rendering requires libdrm = 
$LIBDRM_REQUIRED])
 fi
 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto = $DRI2PROTO_REQUIRED])
-GL_PC_REQ_PRIV=$GL_PC_REQ_PRIV libdrm = $LIBDRM_REQUIRED dri2proto 
= $DRI2PROTO_REQUIRED
+GL_PC_REQ_PRIV=$GL_PC_REQ_PRIV libdrm = $LIBDRM_REQUIRED
 fi
 
 # find the DRI deps for libGL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mesa-8.98.5/docs/devinfo.html 
new/mesa-8.98.8/docs/devinfo.html
--- old/mesa-8.98.5/docs/devinfo.html   2012-09-15 00:27:51.0 +0200
+++ new/mesa-8.98.8/docs/devinfo.html   2012-09-25 21:05:20.0 +0200
@@ -169,7 +169,7 @@
   ddMESA_MAJOR, MESA_MINOR and MESA_TINY/dd
   dtMakefile.am/dt
   ddPACKAGE_VERSION/dd
-  dtautoconf.ac/dt
+  dtconfigure.ac/dt
   ddAC_INIT/dd
   dtsrc/mesa/main/version.h/dt
   ddMESA_MAJOR, MESA_MINOR, MESA_PATCH and MESA_VERSION_STRING/dd
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mesa-8.98.5/docs/relnotes-9.0.html 
new/mesa-8.98.8/docs/relnotes-9.0.html
--- old/mesa-8.98.5/docs/relnotes-9.0.html  2012-09-15 00:27:51.0 
+0200
+++ new/mesa-8.98.8/docs/relnotes-9.0.html  2012-09-25 21:05:20.0 
+0200
@@ -80,11 +80,10 @@
 /li
 liRemoved support for GL_ARB_shadow_ambient extension/li
 liRemoved Gallium3D - nvfx driver (use nv30 instead)/li
-/ul
-
-p
+li
 libGLU has been moved into its own repository, found at a 
href=http://cgit.freedesktop.org/mesa/glu/;http://cgit.freedesktop.org/mesa/glu//a
-/p
+/li
+/ul
 
 
 /body
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mesa-8.98.5/docs/relnotes.html 
new/mesa-8.98.8/docs/relnotes.html
--- old/mesa-8.98.5/docs/relnotes.html  2012-09-15 00:27:51.0 +0200
+++ new/mesa-8.98.8/docs/relnotes.html  2012-09-25 21:05:20.0 +0200
@@ -14,12 +14,14 @@
 /p
 
 ul
-lia href=relnotes-8.1.html8.1 release notes/a
+lia href=relnotes-9.0.html9.0 release notes/a
 lia href=relnotes-8.0.4.html8.0.4 release notes/a
 lia href=relnotes-8.0.3.html8.0.3 release notes/a
 lia href=relnotes-8.0.2.html8.0.2 release notes/a
 lia href=relnotes-8.0.1.html8.0.1 release notes/a
 lia href=relnotes-8.0.html8.0 release notes/a
+lia href=relnotes-7.11.2.html7.11.2 release notes/a
+lia href=relnotes-7.11.1.html7.11.1 release notes/a
 lia href=relnotes-7.11.html7.11 release notes/a
 lia href=relnotes-7.10.3.html7.10.3 release notes/a
 lia href=relnotes-7.10.2.html7.10.2 release notes/a
diff -urN 

commit netatalk for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package netatalk for openSUSE:Factory 
checked in at 2012-10-03 08:04:52

Comparing /work/SRC/openSUSE:Factory/netatalk (Old)
 and  /work/SRC/openSUSE:Factory/.netatalk.new (New)


Package is netatalk, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/netatalk/netatalk.changes2012-02-14 
11:25:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.netatalk.new/netatalk.changes   2012-10-03 
08:04:53.0 +0200
@@ -1,0 +2,36 @@
+Tue Oct  2 08:52:49 UTC 2012 - pgaj...@suse.com
+
+- update to 2.2.4:
+FIX: Missing UAM links
+FIX: Lockup in AFP logout on Fedora 17
+FIX: Reset signal handlers and alarm timer after successfull PAM 
+ authentication. Fixes a problem with AFP disconnects caused 
+ by pam_smbpass.so messing with our handlers and timer.
+FIX: afpd: Fix a possible problem with sendfile on Solaris derived 
+ platforms
+NEW: afpd: support for mdnsresponder
+NEW: afpd: new LDAP config option ldap_uuid_string
+UPD: based on Unicode 6.1.0
+UPD: experimental systemd service files: always run both afpd 
+ and cnid_metad
+UPD: afpd: Ensure our umask is not altered by eg pam_umask
+UPD: afpd: Use GSS_C_NO_NAME as server principal when Kerberos 
+ options -fqdn and -krb5service are not set, from Jamie Gilbertson
+UPD: afpd: Changed behaviour for TimeMachine volumes in case there’s a 
+ problem talking to the CNID daemons. Previously the volume was 
+ flagged read-only and an AFP message was sent to the client. 
+ As this might result in TimeMachine assuming the backup sparse 
+ bundle is damaged, we now just switch the CNID database 
+ to an in-memory tdb without the additional stuff.
+FIX: afpd: sendfile() on FreeBSD was broken, courtesy of Denis Ahrens
+FIX: afpd: Dont use searchdb when doing partial name search
+FIX: afpd: Fix a possible bug handling disconnected sessions, 
+ NetAFP Bug ID #16
+FIX: afpd: Close IPC fds in afpd session child inherited from the afpd 
+ master process
+FIX: dbd: Don’t remove BerkeleyDB if it’s still in use by eg cnid_dbd, 
+ fixes bug introduced in 2.2.2
+FIX: debian initscript: start avahi-daemon (if available) before atalkd
+FIX: Zeroconf could not advertise non-ASCII time machine volume name
+
+---

Old:

  netatalk-2.2.2.tar.bz2

New:

  netatalk-2.2.4.tar.bz2



Other differences:
--
++ netatalk.spec ++
--- /var/tmp/diff_new_pack.NXL01u/_old  2012-10-03 08:04:54.0 +0200
+++ /var/tmp/diff_new_pack.NXL01u/_new  2012-10-03 08:04:54.0 +0200
@@ -16,7 +16,6 @@
 #
 
 
-
 Name:   netatalk
 BuildRequires:  cups
 BuildRequires:  cups-devel
@@ -44,12 +43,14 @@
 %definenetatalk_pkgconfdir /etc/netatalk
 #
 PreReq: %insserv_prereq %fillup_prereq
-Requires:   db-utils libldap-2_4-2 cyrus-sasl
+Requires:   cyrus-sasl
+Requires:   db-utils
+Requires:   libldap-2_4-2
 %if 0%{?suse_version}  1140
 ##Requires:   %{?systemd_requires}
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.2.2
+Version:2.2.4
 Release:0
 Summary:AppleTalk for Linux
 License:GPL-2.0+
@@ -82,7 +83,8 @@
 %package devel
 Summary:Appletalk for Linux
 Group:  Development/Libraries/C and C++
-Requires:   %{name} = %{version} glibc-devel
+Requires:   %{name} = %{version}
+Requires:   glibc-devel
 
 %description devel
 Netatalk is a freely-available Open Source AFP fileserver. It also

++ netatalk-2.2.2.tar.bz2 - netatalk-2.2.4.tar.bz2 ++
 128400 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit notify-osd for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package notify-osd for openSUSE:Factory 
checked in at 2012-10-03 08:05:22

Comparing /work/SRC/openSUSE:Factory/notify-osd (Old)
 and  /work/SRC/openSUSE:Factory/.notify-osd.new (New)


Package is notify-osd, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/notify-osd/notify-osd.changes2011-09-23 
02:14:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.notify-osd.new/notify-osd.changes   
2012-10-03 08:05:23.0 +0200
@@ -1,0 +2,8 @@
+Thu Sep  6 16:51:28 UTC 2012 - nmo.marq...@gmail.com
+
+- Update to version 0.3.34
+  + Migrate do GSettings
+  + Bug fixes
+- Remove notify-osd-link-libm.patch; merged upstream.
+
+---

Old:

  notify-osd-0.9.32.tar.gz
  notify-osd-link-libm.patch

New:

  notify-osd-0.9.34.tar.gz



Other differences:
--
++ notify-osd.spec ++
--- /var/tmp/diff_new_pack.YFb5Tz/_old  2012-10-03 08:05:24.0 +0200
+++ /var/tmp/diff_new_pack.YFb5Tz/_new  2012-10-03 08:05:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package notify-osd
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,22 +16,17 @@
 #
 
 
-
 Name:   notify-osd
-Version:0.9.32
-Release:1
-License:GPL-3.0+
+Version:0.9.34
+Release:0
 Summary:Streamlined Notification Daemon
-Url:https://launchpad.net/notify-osd
+License:GPL-3.0+
 Group:  System/X11/Utilities
+Url:https://launchpad.net/notify-osd
 Source: %{name}-%{version}.tar.gz
 # PATCH-FEATURE-UPSTREAM notify-osd-leolik.patch -- Extend the configuration 
capabilities, patch by Roman Sukochev (Leolik). Taken from 
https://launchpad.net/~leolik/+archive/leolik. Note that upstream didn't accept 
this patch.
 Patch0: notify-osd-leolik.patch
-# PATCH-FIX-UPSTREAM notify-osd-link-libm.patch lp#853871 vu...@opensuse.org 
-- Link to libm
-Patch1: notify-osd-link-libm.patch
 BuildRequires:  fdupes
-# needed for patch1
-BuildRequires:  gnome-common
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.1.6
@@ -51,11 +46,8 @@
 %prep
 %setup -q
 %patch0 -p0
-%patch1 -p1
 
 %build
-# needed for patch1
-NOCONFIGURE=1 gnome-autogen.sh
 %configure
 %__make %{?_smp_mflags}
 
@@ -78,6 +70,9 @@
 %{_datadir}/%{name}/
 %{_datadir}/dbus-1/services/org.freedesktop.Notifications.service
 %{_datadir}/glib-2.0/schemas/com.canonical.NotifyOSD.gschema.xml
+%dir %{_datadir}/GConf
+%dir %{_datadir}/GConf/gsettings
+%{_datadir}/GConf/gsettings/notify-osd.convert
 %{_libexecdir}/%{name}
 
 %changelog

++ notify-osd-0.9.32.tar.gz - notify-osd-0.9.34.tar.gz ++
 7366 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gjs for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gjs for openSUSE:Factory checked in 
at 2012-10-03 08:47:13

Comparing /work/SRC/openSUSE:Factory/gjs (Old)
 and  /work/SRC/openSUSE:Factory/.gjs.new (New)


Package is gjs, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gjs/gjs.changes  2012-06-29 11:30:54.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gjs.new/gjs.changes 2012-10-03 
08:47:15.0 +0200
@@ -1,0 +2,74 @@
+Mon Sep 24 18:54:41 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.34.0:
+  + stack: Fix gjs_dumpstack (bgo#683992).
+
+---
+Tue Sep 18 21:03:52 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.14:
+  + Bugs fixed: bgo#684064.
+- Add pkgconfig(libffi) BuildRequires: since gjs uses ffi
+  functions, confiure now checks for libffi presence.
+
+---
+Tue Sep  4 19:08:07 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.10:
+  + Throw an exception when registering a GType that already exists
+  + Object: don't access priv-info if it's NULL
+  + Misc bug fixes.
+- Drop gjs-avoid_crash.patch: fixed upstream.
+
+---
+Mon Aug 27 18:13:21 UTC 2012 - dims...@opensuse.org
+
+- Add gjs-avoid_crash.patch: Fix crashes in gnome-shell.
+
+---
+Mon Aug 20 17:12:32 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.9:
+  + Several changes in the GC system.
+  + Fix memory leaks.
+  + Fix compiler warnings.
+
+---
+Tue Jul 17 20:16:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.4:
+  + Build: link everything to gio
+  + Fix memory leaks
+  + Fix various bugs and issues caught by the Clang static
+analyzer.
+
+---
+Tue Jun 29 17:39:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.3:
+  + Introduce special marshalling for GErrors
+  + Gio: Split GDBus implementation into helpers
+  + Gio: modernize DBus bindings
+  + Trace signal closures from the gobject instead of the context
+keep-alive.
+
+---
+Fri Jun 29 11:04:30 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.33.2:
+  + gi: Improve error message when we get a non-function for a
+callback
+  + Fold libgjs-gdbus.so into libgjs.so
+  + GDBus: fix NotImplementedError message
+  + system: add getpid(), getuid(), getgid()
+  + Handle arrays of filenames
+  + Rename GjsDBus to GjsPrivate
+  + Import a new format module
+  + Add argument names to our function's toString
+  + Support Function.prototype.length
+  + Fix various memory leaks.
+- Rename typelib-1_0-GjsDBus-1_0 subpackage to
+  typelib-1_0-GjsPrivate-1_0, following upstream change.
+- Drop gjs-getpid_uid_gid.patch: fixed upstream.
+
+---

Old:

  gjs-1.32.0.tar.xz
  gjs-getpid_uid_gid.patch

New:

  gjs-1.34.0.tar.xz



Other differences:
--
++ gjs.spec ++
--- /var/tmp/diff_new_pack.Z1X2ho/_old  2012-10-03 08:47:18.0 +0200
+++ /var/tmp/diff_new_pack.Z1X2ho/_new  2012-10-03 08:47:18.0 +0200
@@ -17,24 +17,23 @@
 
 
 Name:   gjs
-Version:1.32.0
+Version:1.34.0
 Release:0
 # FIXME: find out if tapsets should really be in devel package or in main 
package
 Summary:JavaScript bindings based on gobject-introspection and Mozilla
 License:MIT
 Group:  Development/Libraries/GNOME
 Url:http://live.gnome.org/Gjs
-Source: 
http://download.gnome.org/sources/gjs/1.32/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM gjs-getpid_uid_gid.patch bnc#751211 bgo#646187 
dims...@opensuse.org -- Add getpid(), getuid() getgid(), taken from upstream 
git.
-Patch0: gjs-getpid_uid_gid.patch
+Source: 
http://download.gnome.org/sources/gjs/1.34/%{name}-%{version}.tar.xz
 BuildRequires:  gcc-c++
 BuildRequires:  python
 BuildRequires:  readline-devel
 BuildRequires:  systemtap-sdt-devel
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(dbus-glib-1)
-BuildRequires:  pkgconfig(glib-2.0) = 2.31.0
-BuildRequires:  pkgconfig(gobject-introspection-1.0) = 1.31.22
+BuildRequires:  pkgconfig(glib-2.0) = 2.32.0
+BuildRequires:  pkgconfig(gobject-introspection-1.0) = 1.33.10
+BuildRequires:  pkgconfig(libffi)
 BuildRequires:  pkgconfig(mozjs185)
 Requires:   libgjs0 = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -45,7 +44,7 

commit at-spi2-atk for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package at-spi2-atk for openSUSE:Factory 
checked in at 2012-10-03 08:47:14

Comparing /work/SRC/openSUSE:Factory/at-spi2-atk (Old)
 and  /work/SRC/openSUSE:Factory/.at-spi2-atk.new (New)


Package is at-spi2-atk, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/at-spi2-atk/at-spi2-atk.changes  2012-07-09 
07:53:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-atk.new/at-spi2-atk.changes 
2012-10-03 08:47:18.0 +0200
@@ -1,0 +2,103 @@
+Tue Sep 25 06:43:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.0:
+  + Fix some crashes in atk_bridge_adaptor_cleanup (bgo#684434)
+  + When the cache is activated, register it on the main D-Bus
+connection.
+
+---
+Tue Sep 18 14:35:35 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.5.92:
+  + Fix atspi_hyperlink_get_uri (bgo#683182).
+  + Only initialize the cache when an AT is running.
+  + Fix various memory leaks (bgo#683979, bgo#684077).
+- Drop lang_package, removed upstream, see (bgo#678035) (RPM-wise
+  obsoleted by the -common package).
+- Remove  intltool and translation-update-upstream BuildRequires,
+  not needed anymore.
+- Cleanup spec, remove source service checkout support and checks
+  for obsolete versions of openSUSE.
+
+---
+Wed Sep  5 13:13:29 UTC 2012 - cfarr...@suse.com
+
+- License update: LGPL-2.0+
+  No GPL found in the package. COPYING is LGPL-2.0 (not 2.1).
+
+---
+Tue Sep  4 07:45:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.91:
+  + Removed the gtk 3.0 module (bgo#678315).
+- Drop the -gtk3 package, following upstream (RPM-wise obsoleted
+  by the -common package)
+- Move org.a11y.atspi.gschema.xml to -common: even though the gtk3
+  package has been removed, this is still referenced. So the
+  assumption that only the gtk3 module uses it was obviously wrong,
+  but as the gtk3 module was per default installed (incl. the
+  schema, there was never an issue reported).
+- Move glib schema handling macros from (dropped) -gtk3 package
+  to -common package (following the schema file).
+
+---
+Mon Aug 20 20:52:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.90:
+  + Don't leak a GError when option parsing fails (bgo#679296)
+  + Rework some inefficient code when removing clients and events
+(bgo#679295, bgo#679297).
+
+---
+Mon Aug  6 21:54:36 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.5:
+  + Implement GetLocalizedName for actions (bgo#680598).
+  + Allow to build out of source directory (bgo#680280).
+
+---
+Tue Jul 17 18:18:04 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.4:
+  + AtspiCollection should be implemented for all containers
+(bgo#679013)
+  + Don't create a (non-readable) subdirectory for the socket when
+root
+  + Plug ref count leaks (bgo#679285)
+  + Only create a directory and a socket when requested
+  + Only add items to the cache on children-changed if the children
+are included in the event
+  + Only send PropertyChange signals used for caching, absent
+listeners.
+- Drop at-spi2-atk-bnc770177: fixed upstream.
+
+---
+Mon Jul  9 07:24:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.3:
+  + Create a library (libatk-bridge), currently with
+atk_bridge_adaptor_init() and atk_bridge_adaptor_cleanup()
+functions, to facilitate linking directly into, ie GTK+ 3.
+  + Only register events at beginning if an AT is listening
+(bgo#678475).
+  + Use XDG_RUNTIME_DIR to hold the socket, rather than a
+potentially secure directory hard-coded under /tmp (bgo#678348)
+  + Fix various compiler warnings and build errors.
+- Create new subpackages libatk-bridge-2_0-0 and a devel package.
+- Add baselibs.conf (for libatk-bridge-2_0-0).
+
+---
+Sun Jul  8 17:29:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.2:
+  + The collection interface's MATCH_ANY fails for states
+(bgo#677211).
+
+---
+Sat Jul  7 19:25:58 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.5.1:
+  + Updated translations.
+- Disable update-translation-upstream, breaks build atm.
+
+---

Old:

  at-spi2-atk-2.4.0.tar.xz
  at-spi2-atk-bnc770177

New:

 

commit cogl for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package cogl for openSUSE:Factory checked in 
at 2012-10-03 08:47:15

Comparing /work/SRC/openSUSE:Factory/cogl (Old)
 and  /work/SRC/openSUSE:Factory/.cogl.new (New)


Package is cogl, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/cogl/cogl.changes2012-07-22 
15:08:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.cogl.new/cogl.changes   2012-10-03 
08:47:21.0 +0200
@@ -1,0 +2,106 @@
+Mon Sep 24 13:21:53 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.12.0:
+  + MSVC build updates to fix building with SDL support
+(bgo#682071)
+  + Updated translations.
+- Changes from version 1.11.6:
+  + Support latest libgbm api
+  + Improve error handling for cogl_texture_2d_new_from_foreign
+  + Avoid referencing contexts internally so Android
+  + More work to reduce our dependence on a global context
+internally.
+  + Recognize the latest Mesa GL vendor strings and the Software
+Rasterizer renderer string.
+  + Improved cogl-gles2 support by not depending on drivers
+allowing multiple vertex shaders in one program which isn't
+actually meant to be supported in GLES 2.0 anyway.
+  + Bugs fixed: bgo#683414, bgo#683818, bgo#683083.
+
+---
+Mon Sep  3 19:16:50 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.4:
+  + Fix the pkg-config requires for cogl-gles2
+  + Fix where we install cogl-gles2 headers
+  + Updates for the MSVC build
+  + Fix texture sub-region uploads when we don't have
+GL_EXT_unpack_subimage
+  + Update the KMS winsys backend to the latest libgbm api
+  + Fix a leak of primitive indices
+  + Add a UProf profiling timer around journal discard code
+  + Enable UProf profiling support to test-journal
+  + Bugs fixed: bgo#682340.
+- Add pkgconfig(glesv2) BuildRequires: new dependency for
+  cogl-gles2.
+- Create new sub-package libcogl-gles2-11 (also baselibs.conf)
+- Pass --enable-gles2 --enable-cogl-gles2 to configure, to enable
+  GLESv2 support.
+
+---
+Thu Aug 16 21:14:34 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.2:
+  + Add cogl_framebuffer_{fill,stroke}_path APIs consistent with
+other Cogl drawing APIs that replace cogl_path_fill/stroke().
+  + Switch from using glib types such as guint32/guint16/guint8 to
+using equivalent stdint.h types.
+  + Add a micro-benchmark for the journal
+  + Optimize the matrix stack so we can take immutable references
+of a matrix stack for logging into the journal more efficiently
+than having to copy large matrices for each journaled rectangle
+  + Add COGL_VERSION_{MAJOR,MINOR,MICRO} macros and
+COGL_VERSION_CHECK macros for applications to test what version
+of Cogl they are compiled against.
+  + Allow creation of non power of two (npot) CoglTexture2D
+textures with only basic npot support, not including repeating
+or mipmap support.
+  + Enable use of the GL_STREAM_DRAW buffer update hint on GLES 2.0
+  + Fix building Cogl with --disable-gl
+  + Add support for the WebOS version of SDL which supports access
+to GLES 1.1 and GLES 2.0
+  + Add cogl_matrix_init_translation to provide a more efficient
+way to initialize a matrix representing a translation without
+need to multiply matrices.
+  + Various documentation fixes for CoglQuaternion and CoglEular
+  + Updates for the MSVC build
+  + Add GPU architecture detection capabilities so we can
+differentiate drivers based on the hardware vendor, and the
+actual architecture of the GPU, such as deferred vs immediate
+mode.
+  + Fix framebuffer initialization to ensure swaps are throttled by
+default.
+  + Fix flushing of the depth state for some cases.
+  + Ported test-atlas-migration to be a standalone Cogl test
+  + Add GLES 2.0 API integration support so that existing GLES 2.0
+based code can easily be integrated within Cogl based
+applications. For example this is being used by webkit-clutter
+to add WebGL support.
+  + Add an optional libcogl-gles2 sub-library that provides a full
+GLES 2.0 api api to really lower the barrier as much as possible
+for being able to integrate existing GLES 2.0 based code into
+Cogl applications.
+  + Add a Cogl GLES 2.0 Gears example application to test the GLES
+2.0 integration support.
+  + Fix a bug with disabling of Cogl's debugging features
+  + Add api to directly convert a Eular to a Quaternion.
+  + Improve the wireframe debug option to work when a vertex shader
+is  in use.
+  + Add support for SDL2 which supports GLES 2.0
+  + Support the original GLSL extensions which had some different
+function names.
+  + Avoid using eglGetProcAddress for core 

commit perl-Image-ExifTool for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package perl-Image-ExifTool for 
openSUSE:Factory checked in at 2012-10-03 08:47:20

Comparing /work/SRC/openSUSE:Factory/perl-Image-ExifTool (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Image-ExifTool.new (New)


Package is perl-Image-ExifTool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Image-ExifTool/perl-Image-ExifTool.changes  
2012-09-27 10:26:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Image-ExifTool.new/perl-Image-ExifTool.changes 
2012-10-03 08:47:23.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 21:36:35 UTC 2012 - greg.freem...@gmail.com
+
+- add perl-File-RandomAccess sub-package to match package in graphics
+- remove stale comments about doc files
+
+---



Other differences:
--
++ perl-Image-ExifTool.spec ++
--- /var/tmp/diff_new_pack.6nPJSg/_old  2012-10-03 08:47:24.0 +0200
+++ /var/tmp/diff_new_pack.6nPJSg/_new  2012-10-03 08:47:24.0 +0200
@@ -27,9 +27,10 @@
 Source: 
http://www.cpan.org/authors/id/E/EX/EXIFTOOL/%{cpan_name}-%{version}.tar.gz
 BuildRequires:  perl
 BuildRequires:  perl-macros
-Conflicts:  exiftool  %{version}
+Requires:   perl-File-RandomAccess = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
+Conflicts:  exiftool  %{version}
 %{perl_requires}
 
 %description
@@ -133,6 +134,14 @@
 
 See html/index.html for more details about ExifTool features overall.
 
+%package -n perl-File-RandomAccess
+Summary:Random Access Reads of Sequential File or Scalar
+Group:  Development/Libraries/Perl
+
+%description -n perl-File-RandomAccess
+Allows random access to sequential file by buffering the file if necessary.
+Also allows access to data in memory to be accessed as if it were a file.
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
@@ -159,15 +168,22 @@
 %doc exif2iptc.args exif2xmp.args gps2xmp.args iptc2exif.args iptc2xmp.args 
iptcCore.args
 %doc pdf2xmp.args xmp2exif.args xmp2gps.args xmp2iptc.args xmp2pdf.args
 
-%files -f %{name}.files
+%files
 %defattr(644,root,root,755)
 %exclude %{_bindir}/exiftool
 %exclude %{_mandir}/man1/exiftool.1.gz
-# No idea why this had such a long % doc list
-# % doc Changes exif2xmp.args ExifTool_config gps2xmp.args gpx.fmt gpx_wpt.fmt 
iptc2xmp.args kml.fmt perl-Image-ExifTool.spec README xmp2exif.args 
xmp2gps.args xmp2iptc.args
 %doc Changes ExifTool_config README html
+%{perl_vendorlib}/Image/ExifTool
+%doc %{_mandir}/man3/Image::ExifTool*.3*
+%{perl_vendorlib}/Image/ExifTool.pm
+%dir %{perl_vendorlib}/Image
+%doc %{perl_vendorlib}/Image/ExifTool.pod
+
+%files -n perl-File-RandomAccess
+%defattr(-,root,root)
+%dir %{perl_vendorlib}/File
 %{perl_vendorlib}/File/RandomAccess.pm
-%{perl_vendorlib}/Image/ExifTool/*
-%doc %{_mandir}/man3/*
+%doc %{perl_vendorlib}/File/RandomAccess.pod
+%doc %{_mandir}/man3/File::RandomAccess*.3*
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit vim for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2012-10-03 08:47:23

Comparing /work/SRC/openSUSE:Factory/vim (Old)
 and  /work/SRC/openSUSE:Factory/.vim.new (New)


Package is vim, Maintainer is idon...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/vim/vim.changes  2012-09-17 14:12:31.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2012-10-03 
08:47:25.0 +0200
@@ -1,0 +2,5 @@
+Tue Oct  2 12:54:03 UTC 2012 - idon...@suse.com
+
+- Add Obsoletes/Provides for vim-plugin-matchit package 
+
+---



Other differences:
--
++ vim.spec ++
--- /var/tmp/diff_new_pack.c3OkZA/_old  2012-10-03 08:47:27.0 +0200
+++ /var/tmp/diff_new_pack.c3OkZA/_new  2012-10-03 08:47:27.0 +0200
@@ -135,6 +135,9 @@
 %if 0%{?suse_version} = 1120
 BuildArch:  noarch
 %endif
+# Used to be in vim-plugins package
+Obsoletes:  vim-plugin-matchit = 1.13.2
+Provides:   vim-plugin-matchit = 1.13.2
 
 %description data
 Vim (Vi IMproved) is an almost compatible version of the UNIX editor


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit openexr for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package openexr for openSUSE:Factory checked 
in at 2012-10-03 09:20:45

Comparing /work/SRC/openSUSE:Factory/openexr (Old)
 and  /work/SRC/openSUSE:Factory/.openexr.new (New)


Package is openexr, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openexr/openexr.changes  2012-08-08 
10:57:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.openexr.new/openexr.changes 2012-10-03 
09:20:46.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 27 14:51:27 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  No GPL licensed files found in the package
+
+---
+Thu Sep 27 09:20:21 UTC 2012 - idon...@suse.com
+
+- Update baselibs.conf 
+
+---



Other differences:
--
++ openexr.spec ++
--- /var/tmp/diff_new_pack.d4l5A7/_old  2012-10-03 09:20:48.0 +0200
+++ /var/tmp/diff_new_pack.d4l5A7/_new  2012-10-03 09:20:48.0 +0200
@@ -20,7 +20,7 @@
 Version:1.7.1
 Release:0
 Summary:Utilities for work with HDR images in OpenEXR format
-License:BSD-3-Clause ; GPL-2.0+
+License:BSD-3-Clause
 Group:  Productivity/Graphics/Other
 Url:http://www.openexr.com/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.d4l5A7/_old  2012-10-03 09:20:48.0 +0200
+++ /var/tmp/diff_new_pack.d4l5A7/_new  2012-10-03 09:20:48.0 +0200
@@ -1 +1 @@
-libIlmImf6
+libIlmImf7

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit OpenGTL for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package OpenGTL for openSUSE:Factory checked 
in at 2012-10-03 09:21:01

Comparing /work/SRC/openSUSE:Factory/OpenGTL (Old)
 and  /work/SRC/openSUSE:Factory/.OpenGTL.new (New)


Package is OpenGTL, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/OpenGTL/OpenGTL.changes  2012-06-05 
15:33:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.OpenGTL.new/OpenGTL.changes 2012-10-03 
09:21:04.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:56:27 UTC 2012 - asterios.dra...@gmail.com
+
+- Added a patch (ld_link_fix.patch) to fix 'ld' link the llvm JIT library
+  (bnc#778260, kde#304903).
+
+---

New:

  ld_link_fix.patch



Other differences:
--
++ OpenGTL.spec ++
--- /var/tmp/diff_new_pack.H1id5e/_old  2012-10-03 09:21:05.0 +0200
+++ /var/tmp/diff_new_pack.H1id5e/_new  2012-10-03 09:21:05.0 +0200
@@ -31,6 +31,8 @@
 Source0:http://download.opengtl.org/%{name}-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE GTLImageIO-Extensions-Installdir.patch -- Change 
GTLImageIO Extensions installation path to use the OpenGTL version
 Patch0: GTLImageIO-Extensions-Installdir.patch
+# PATCH-FIX-UPSTREAM ld_link_fix.patch bnc#778260 kde#304903 
asterios.dra...@gmail.com -- Fix 'ld' not wanting to link the llvm JIT library
+Patch1: ld_link_fix.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  libpng-devel
@@ -133,6 +135,7 @@
 %prep
 %setup -q
 %patch0
+%patch1 -p1
 
 %build
 mkdir build

++ ld_link_fix.patch ++
# HG changeset patch
# User Cyrille Berger cber...@cberger.net
# Date 1325437627 -3600
# Node ID 95a8c6853b972f8f1b0b1acdad6d94a17048d5e5
# Parent  53f0d400f06da6fc3a63a92ca10a89947ced0b9b
Fix: stupid 'ld' not wanting to link the JIT module by using a different 
symbol, hopefully, one that is trully unique to that library

diff -r 53f0d400f06da6fc3a63a92ca10a89947ced0b9b -r 
95a8c6853b972f8f1b0b1acdad6d94a17048d5e5 OpenGTL/GTLCore/CMakeLists.txt
--- a/OpenGTL/GTLCore/CMakeLists.txtWed Dec 28 16:01:43 2011 +0100
+++ b/OpenGTL/GTLCore/CMakeLists.txtSun Jan 01 18:07:07 2012 +0100
@@ -135,9 +135,9 @@
 add_library(GTLCore SHARED ${GTLCore_SRCS} ${llvm_objects})
 
 if(NOT MSVC AND NOT APPLE)
-set(EXTRA_GTLCORE_LINK_OPTIONS 
-Wl,-u,_ZN4llvm15ExecutionEngine9createJITEPNS_6ModuleEPSsPNS_16JITMemoryManagerENS_10CodeGenOpt5LevelEbNS_9CodeModel5ModelE
 )
+set(EXTRA_GTLCORE_LINK_OPTIONS -Wl,-u,_ZTVN4llvm3JITE )
 elseif(APPLE)
-set(EXTRA_GTLCORE_LINK_OPTIONS 
-Wl,-u,__ZN4llvm15ExecutionEngine9createJITEPNS_6ModuleEPSsPNS_16JITMemoryManagerENS_10CodeGenOpt5LevelEbNS_9CodeModel5ModelE
 )
+set(EXTRA_GTLCORE_LINK_OPTIONS -Wl,-u,__ZTVN4llvm3JITE )
 endif()
 
 target_link_libraries(GTLCore ${LLVM_LDFLAGS} ${LLVM_LIBS} 
${EXTRA_GTLCORE_LINK_OPTIONS})
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit openscap for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package openscap for openSUSE:Factory 
checked in at 2012-10-03 09:21:12

Comparing /work/SRC/openSUSE:Factory/openscap (Old)
 and  /work/SRC/openSUSE:Factory/.openscap.new (New)


Package is openscap, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openscap/openscap.changes2012-09-14 
12:32:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.openscap.new/openscap.changes   2012-10-03 
09:21:14.0 +0200
@@ -1,0 +2,13 @@
+Fri Sep 28 07:54:36 UTC 2012 - meiss...@suse.com
+
+- updated to 0.9.0:
+  * few public headers were renamed to follow common schema
+  * cve and cce modules are not build by default - these modules are not
+utilized by oscap tool and thus untested.
+  * --enable-bindings configure option was split into --enable-python and
+support of SCAP datastream support was improved
+  * plus fixes in OVAL and XCCDF modules. oscap tool reports support of
+XCCDF 1.2 and OVAL 5.10.1
+- libopenscap.so major version changed from 1 to 2.
+
+---

Old:

  openscap-0.8.5.tar.gz

New:

  openscap-0.9.0.tar.gz



Other differences:
--
++ openscap.spec ++
--- /var/tmp/diff_new_pack.4sxe20/_old  2012-10-03 09:21:16.0 +0200
+++ /var/tmp/diff_new_pack.4sxe20/_new  2012-10-03 09:21:16.0 +0200
@@ -16,11 +16,11 @@
 #
 
 
-%define soname 1
+%define soname 2
 %define with_bindings 0
 
 Name:   openscap
-Version:0.8.5
+Version:0.9.0
 Release:1.0
 Source: 
https://fedorahosted.org/releases/o/p/openscap/%name-%version.tar.gz
 Source1:oscap-scan.init
@@ -151,7 +151,7 @@
 %if 0%{?with_bindings}
 %configure --disable-silent-rules
 %else
-%configure --disable-silent-rules --disable-bindings
+%configure --disable-silent-rules --disable-bindings --disable-python
 %endif
 %__make %{?_smp_mflags}
 

++ openscap-0.8.5.tar.gz - openscap-0.9.0.tar.gz ++
/work/SRC/openSUSE:Factory/openscap/openscap-0.8.5.tar.gz 
/work/SRC/openSUSE:Factory/.openscap.new/openscap-0.9.0.tar.gz differ: char 5, 
line 1



-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parted for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package parted for openSUSE:Factory checked 
in at 2012-10-03 09:21:39

Comparing /work/SRC/openSUSE:Factory/parted (Old)
 and  /work/SRC/openSUSE:Factory/.parted.new (New)


Package is parted, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parted/parted.changes2012-07-30 
20:38:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.parted.new/parted.changes   2012-10-03 
09:21:42.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 27 13:40:56 UTC 2012 - pu...@suse.com
+
+- add parted-workaround-windows7-gpt-implementation.patch
+  (bnc#781688) 
+
+---

New:

  parted-workaround-windows7-gpt-implementation.patch



Other differences:
--
++ parted.spec ++
--- /var/tmp/diff_new_pack.MfWxQG/_old  2012-10-03 09:21:44.0 +0200
+++ /var/tmp/diff_new_pack.MfWxQG/_new  2012-10-03 09:21:44.0 +0200
@@ -46,6 +46,7 @@
 Patch18:parted-fix-cciss-partition-naming.patch
 Patch19:dummy-bootcode-only-for-x86.patch
 Patch20:parted-stdio.h.patch
+Patch21:parted-workaround-windows7-gpt-implementation.patch
 Requires:   /sbin/udevadm
 BuildRequires:  check-devel
 BuildRequires:  device-mapper-devel = 1.02.33
@@ -114,6 +115,7 @@
 %patch18 -p1
 %patch19 -p1
 %patch20 -p1
+%patch21 -p1
 
 %build
 export CFLAGS=%{optflags} `ncursesw6-config --cflags`

++ parted-workaround-windows7-gpt-implementation.patch ++
bnc#781688
Index: parted-2.4/libparted/labels/gpt.c
===
--- parted-2.4.orig/libparted/labels/gpt.c
+++ parted-2.4/libparted/labels/gpt.c
@@ -488,7 +488,7 @@ _has_hybrid_pmbr (const PedDevice *dev)
 
   if ((mbr.PartitionRecord[0].OSType == EFI_PMBR_OSTYPE_EFI) 
   (mbr.PartitionRecord[0].StartingLBA == PED_CPU_TO_LE32(1)) 
-  (mbr.PartitionRecord[0].SizeInLBA == 
PED_CPU_TO_LE32(efi_gpt_expected_size)))
+  ((mbr.PartitionRecord[0].SizeInLBA == 
PED_CPU_TO_LE32(efi_gpt_expected_size)) || (mbr.PartitionRecord[0].SizeInLBA == 
PED_CPU_TO_LE32(0x
 /* pMBR is not hybrid */
 has_hybrid_pmbr = 0;
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-Mail-SPF for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package perl-Mail-SPF for openSUSE:Factory 
checked in at 2012-10-03 09:22:46

Comparing /work/SRC/openSUSE:Factory/perl-Mail-SPF (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mail-SPF.new (New)


Package is perl-Mail-SPF, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mail-SPF/perl-Mail-SPF.changes  
2012-09-21 14:55:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mail-SPF.new/perl-Mail-SPF.changes 
2012-10-03 09:22:48.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep 21 13:54:45 UTC 2012 - sweet_...@gmx.de
+
+- cleanup spec file style
+- build requires Mail::SPF::Test (needed for test suite)
+- add skip_test.patch,
+  see https://rt.cpan.org/Public/Bug/Display.html?id=78214
+
+---

New:

  skip_test.patch



Other differences:
--
++ perl-Mail-SPF.spec ++
--- /var/tmp/diff_new_pack.JY3wz5/_old  2012-10-03 09:22:49.0 +0200
+++ /var/tmp/diff_new_pack.JY3wz5/_new  2012-10-03 09:22:49.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Mail-SPF (Version 2.007)
+# spec file for package perl-Mail-SPF
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,30 +15,40 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Mail-SPF
 # tar ball's version number is wrongly generated by Module::Build
 %define real_name Mail-SPF-v2.8.0
 Summary:An object-oriented implementation of Sender Policy Framework
-Version:2.008
-Release:4
-Group:  Development/Libraries/Perl
 License:Artistic-1.0
+Group:  Development/Libraries/Perl
+Version:2.008
+Release:0
 Url:http://search.cpan.org/perldoc?Mail::SPF
-AutoReqProv:on
 Source: %{real_name}.tar.gz
-BuildRequires:  perl-Error perl-Net-CIDR-Lite perl-Net-DNS perl-NetAddr-IP 
perl-Sys-Hostname-Long perl-URI
+# disable some tests which fails since Net::DNS 0.68, see
+# https://rt.cpan.org/Public/Bug/Display.html?id=78214
+Patch0: skip_test.patch
 BuildRequires:  perl-macros
-BuildRequires:  perl(Net::DNS::Resolver::Programmable) perl-Test-Pod
-Requires:   perl-Net-CIDR-Lite perl-Net-DNS perl-Net-IP 
perl-Sys-Hostname-Long 
+BuildRequires:  perl(Error)
+BuildRequires:  perl(Mail::SPF::Test)
+BuildRequires:  perl(Net::CIDR::Lite)
+BuildRequires:  perl(Net::DNS)
+BuildRequires:  perl(Net::DNS::Resolver::Programmable)
+BuildRequires:  perl(NetAddr::IP)
+BuildRequires:  perl(Sys::Hostname::Long)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(URI)
+Requires:   perl(Net::CIDR::Lite)
+Requires:   perl(Net::DNS)
+Requires:   perl(Net::IP)
+Requires:   perl(Sys::Hostname::Long)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 BuildArch:  noarch 
   
 Requires:   perl(Error)
   
-Requires:   perl(NetAddr::IP) = 4 
   
 Requires:   perl(Net::DNS) = 0.58 
   
+Requires:   perl(NetAddr::IP) = 4
 Requires:   perl(URI) = 1.13  
   
 
 %description
@@ -51,6 +61,7 @@
 
 %prep
 %setup -q -n %{real_name}
+%patch0 -p1
 
 %build
 %{__perl} Build.PL installdirs=vendor

++ skip_test.patch ++
--- Mail-SPF-v2.8.0/t/10.00-rfc4408.t.orig  2012-01-30 09:59:22.0 
+0100
+++ Mail-SPF-v2.8.0/t/10.00-rfc4408.t   2012-09-20 18:15:55.702419094 +0200
@@ -6,6 +6,7 @@ use Test::More;
 
 eval(use Mail::SPF::Test);
 plan(skip_all = Mail::SPF::Test required for testing Mail::SPF's RFC 
compliance) if $@;
+plan(skip_all = skipped (fails since Net::DNS 0.68, see 
https://rt.cpan.org/Public/Bug/Display.html?id=78214));
 
 require('t/Mail-SPF-Test-lib.pm');
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit pinta for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package pinta for openSUSE:Factory checked 
in at 2012-10-03 09:55:26

Comparing /work/SRC/openSUSE:Factory/pinta (Old)
 and  /work/SRC/openSUSE:Factory/.pinta.new (New)


Package is pinta, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/pinta/pinta.changes  2012-05-25 
16:18:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.pinta.new/pinta.changes 2012-10-03 
09:55:27.0 +0200
@@ -1,0 +2,12 @@
+Thu Sep 27 14:50:38 UTC 2012 - i...@marguerite.su
+
+- update to 1.4
+  * http://pinta-project.com/Releases.Release%201-4.ashx
+
+---
+Wed Jun 13 04:50:23 UTC 2012 - Matthias Mailänder
+
+- Update to 1.3
+  * http://pinta-project.com/Releases.1-3.ashx
+
+---

Old:

  pinta-1.1.tar.bz2

New:

  pinta-1.4.tar.gz



Other differences:
--
++ pinta.spec ++
--- /var/tmp/diff_new_pack.g9JzCS/_old  2012-10-03 09:55:31.0 +0200
+++ /var/tmp/diff_new_pack.g9JzCS/_new  2012-10-03 09:55:31.0 +0200
@@ -17,20 +17,20 @@
 
 
 Name:   pinta
-Version:1.1
+Version:1.4
 Release:0
 Summary:Simple Paint Application
 License:MIT
 Group:  Productivity/Graphics/Bitmap Editors
 Url:http://pinta-project.com/
-Source0:%{name}-%{version}.tar.bz2
+Source0:%{name}-%{version}.tar.gz
 BuildRequires:  glade-sharp2
 BuildRequires:  gtk-sharp2
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  mono-devel = 2.8
 BuildRequires:  mono-addins
 BuildRequires:  update-desktop-files
+Requires:   gnome-icon-theme
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -46,18 +46,21 @@
 %build
 %configure --prefix=%{_prefix} --libdir=%{_prefix}/lib
 
-make %{?_smp_mflags}
+%__make %{?jobs:-j%jobs}
 
 %install
-%make_install
+%__make install DESTDIR=%{buildroot}
 
 %find_lang %{name}
 
 %suse_update_desktop_file -n %{name}
 
+%clean
+%{__rm} -rf '%{buildroot}'
+
 %files -f %{name}.lang
 %defattr(-, root, root)
-%doc license-mit.txt license-pdn.txt todo.txt
+%doc license-mit.txt license-pdn.txt readme.md
 %{_bindir}/%{name}
 %{_prefix}/lib/%{name}
 %{_mandir}/man1/pinta.1.gz

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Beaker for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-Beaker for openSUSE:Factory 
checked in at 2012-10-03 09:56:01

Comparing /work/SRC/openSUSE:Factory/python-Beaker (Old)
 and  /work/SRC/openSUSE:Factory/.python-Beaker.new (New)


Package is python-Beaker, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-Beaker/python-Beaker.changes  
2012-05-29 10:34:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Beaker.new/python-Beaker.changes 
2012-10-03 09:56:03.0 +0200
@@ -1,0 +2,22 @@
+Sat Sep 22 20:26:45 UTC 2012 - os-...@jacraig.com
+
+- Update to 1.6.4:
+  * Warning: Session hashing for encrypted sessions using PyCrypto has
+changed. This will result in sessions being invalidated upon upgrading
+if PyCrypto is used.
+  * Fix bug with key_length not being coerced to a int for comparison.
+  * Fix bug with cookie invalidation not clearing the cookie data.
+  * Added ability to pass in cookie_path for the Session.
+  * Add NSS crypto support to Beaker.
+  * Fix security bug with pycrypto not securing data such that an attacker
+could possibly determine parts of the encrypted payload. See CVE-2012-3458
+http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-3458.
+  * Add ability to specify schema for database-backed sessions.
+  * Fix issue with long key names in memcached backend.
+- Fix sed script so it removes the shebang instead of inserting d throughout
+  the pbkdf2.py file.
+- Test suite now succeeds (for Python 2 package) but didn't add it to build
+  because it takes too long.
+- Update URL to what is given in setup.py.
+
+---
python3-Beaker.changes: same change

Old:

  Beaker-1.6.3.tar.gz

New:

  Beaker-1.6.4.tar.gz



Other differences:
--
++ python-Beaker.spec ++
--- /var/tmp/diff_new_pack.aZGSVl/_old  2012-10-03 09:56:04.0 +0200
+++ /var/tmp/diff_new_pack.aZGSVl/_new  2012-10-03 09:56:04.0 +0200
@@ -17,9 +17,9 @@
 
 
 Name:   python-Beaker
-Version:1.6.3
+Version:1.6.4
 Release:0
-Url:http://beaker.groovie.org
+Url:http://beaker.rtfd.org/
 Summary:A Session and Caching library with WSGI Middleware
 License:BSD-3-Clause
 Group:  Development/Languages/Python
@@ -68,7 +68,7 @@
 
 %prep
 %setup -q -n Beaker-%{version}
-sed -i id beaker/crypto/pbkdf2.py # Fix non-executable script
+sed -i 1d beaker/crypto/pbkdf2.py # Fix non-executable script
 
 %build
 python setup.py build

++ python3-Beaker.spec ++
--- /var/tmp/diff_new_pack.aZGSVl/_old  2012-10-03 09:56:04.0 +0200
+++ /var/tmp/diff_new_pack.aZGSVl/_new  2012-10-03 09:56:04.0 +0200
@@ -15,19 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python3-Beaker
-Version:1.6.3
+Version:1.6.4
 Release:0
-Url:http://beaker.groovie.org
+Url:http://beaker.rtfd.org/
 Summary:A Session and Caching library with WSGI Middleware
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python3
+BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
-BuildRequires:  python3-2to3
 %if 0%{?suse_version}  0%{?suse_version} = 1140
 %{!?python3_sitelib: %global python3_sitelib %(python3 -c from 
distutils.sysconfig import get_python_lib; print(get_python_lib()))}
 %{!?py3_ver: %global py3_ver %(python3 -c import sys; 
version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); 
print(version) 2/dev/null || echo PYTHON-NOT-FOUND)}
@@ -70,7 +71,7 @@
 
 %prep
 %setup -q -n Beaker-%{version}
-sed -i id beaker/crypto/pbkdf2.py # Fix non-executable script
+sed -i 1d beaker/crypto/pbkdf2.py # Fix non-executable script
 
 %build
 python3 setup.py build

++ Beaker-1.6.3.tar.gz - Beaker-1.6.4.tar.gz ++
 2069 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-distutils-extra for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-distutils-extra for 
openSUSE:Factory checked in at 2012-10-03 09:59:15

Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old)
 and  /work/SRC/openSUSE:Factory/.python-distutils-extra.new (New)


Package is python-distutils-extra, Maintainer is cth...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes
2012-09-21 14:55:58.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes
   2012-10-03 09:59:17.0 +0200
@@ -1,0 +2,9 @@
+Sat Sep 29 19:48:14 UTC 2012 - os-...@jacraig.com
+
+- Update to 2.37:
+  * Handle Glade .ui files correctly when generating the copyright file. Also
+ignore backup files.
+  * auto.py: Recognize manpages which have comments before the initial .TH
+comment.
+
+---

Old:

  python-distutils-extra-2.36.tar.gz

New:

  python-distutils-extra-2.37.tar.gz



Other differences:
--
++ python-distutils-extra.spec ++
--- /var/tmp/diff_new_pack.LZJoUU/_old  2012-10-03 09:59:18.0 +0200
+++ /var/tmp/diff_new_pack.LZJoUU/_new  2012-10-03 09:59:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-distutils-extra
-Version:2.36
+Version:2.37
 Release:0
 Summary:Distutils/Setuptools Adapter
 License:GPL-2.0

++ python-distutils-extra-2.36.tar.gz - python-distutils-extra-2.37.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-distutils-extra-2.36/DistUtilsExtra/__init__.py 
new/python-distutils-extra-2.37/DistUtilsExtra/__init__.py
--- old/python-distutils-extra-2.36/DistUtilsExtra/__init__.py  2012-08-15 
11:12:23.0 +0200
+++ new/python-distutils-extra-2.37/DistUtilsExtra/__init__.py  2012-09-17 
12:36:36.0 +0200
@@ -1 +1 @@
-__version__ = '2.36'
+__version__ = '2.37'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/DistUtilsExtra/auto.py 
new/python-distutils-extra-2.37/DistUtilsExtra/auto.py
--- old/python-distutils-extra-2.36/DistUtilsExtra/auto.py  2012-08-15 
11:14:16.0 +0200
+++ new/python-distutils-extra-2.37/DistUtilsExtra/auto.py  2012-08-20 
09:22:33.0 +0200
@@ -320,10 +320,15 @@
 
 mans = {}
 for f in src_fileglob(src, '*.[0123456789]'):
-line = open(f).readline()
-if line.startswith('.TH '):
-src_mark(src, f)
-mans.setdefault(f[-1], []).append(f)
+with open(f) as fd:
+for line in fd:
+if line.startswith('.\'):
+continue
+if line.startswith('.TH '):
+src_mark(src, f)
+mans.setdefault(f[-1], []).append(f)
+break
+
 v = attrs.setdefault('data_files', [])
 for section, files in mans.items():
 v.append((os.path.join('share', 'man', 'man' + section), files))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/PKG-INFO 
new/python-distutils-extra-2.37/PKG-INFO
--- old/python-distutils-extra-2.36/PKG-INFO2012-08-15 11:20:06.0 
+0200
+++ new/python-distutils-extra-2.37/PKG-INFO2012-09-17 12:49:30.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: python-distutils-extra
-Version: 2.36
+Version: 2.37
 Summary: Add support for i18n, documentation and icons to distutils
 Home-page: UNKNOWN
 Author: Sebastian Heinlein, Martin Pitt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-distutils-extra-2.36/python_distutils_extra.egg-info/PKG-INFO 
new/python-distutils-extra-2.37/python_distutils_extra.egg-info/PKG-INFO
--- old/python-distutils-extra-2.36/python_distutils_extra.egg-info/PKG-INFO
2012-08-15 11:20:06.0 +0200
+++ new/python-distutils-extra-2.37/python_distutils_extra.egg-info/PKG-INFO
2012-09-17 12:49:30.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: python-distutils-extra
-Version: 2.36
+Version: 2.37
 Summary: Add support for i18n, documentation and icons to distutils
 Home-page: UNKNOWN
 Author: Sebastian Heinlein, Martin Pitt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/test/auto.py 
new/python-distutils-extra-2.37/test/auto.py
--- old/python-distutils-extra-2.36/test/auto.py2012-07-18 
15:16:37.0 +0200
+++ new/python-distutils-extra-2.37/test/auto.py2012-08-20 

commit python-simplejson for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-simplejson for 
openSUSE:Factory checked in at 2012-10-03 10:06:32

Comparing /work/SRC/openSUSE:Factory/python-simplejson (Old)
 and  /work/SRC/openSUSE:Factory/.python-simplejson.new (New)


Package is python-simplejson, Maintainer is kkae...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/python-simplejson/python-simplejson.changes  
2012-09-06 09:03:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-simplejson.new/python-simplejson.changes 
2012-10-03 10:06:34.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 19:35:09 UTC 2012 - os-...@jacraig.com
+
+- Update to 2.6.2:
+  * JSONEncoderForHTML was not exported in the simplejson module
+
+---

Old:

  simplejson-2.6.1.tar.gz

New:

  simplejson-2.6.2.tar.gz



Other differences:
--
++ python-simplejson.spec ++
--- /var/tmp/diff_new_pack.rB9786/_old  2012-10-03 10:06:35.0 +0200
+++ /var/tmp/diff_new_pack.rB9786/_new  2012-10-03 10:06:35.0 +0200
@@ -18,7 +18,7 @@
 
 %define modname simplejson
 Name:   python-%{modname}
-Version:2.6.1
+Version:2.6.2
 Release:0
 Url:http://github.com/simplejson/simplejson
 Summary:Simple, fast, extensible JSON encoder/decoder for Python

++ simplejson-2.6.1.tar.gz - simplejson-2.6.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/CHANGES.txt 
new/simplejson-2.6.2/CHANGES.txt
--- old/simplejson-2.6.1/CHANGES.txt2012-07-28 06:59:14.0 +0200
+++ new/simplejson-2.6.2/CHANGES.txt2012-09-21 21:25:20.0 +0200
@@ -1,3 +1,8 @@
+Version 2.6.2 released 2012-09-21
+
+* JSONEncoderForHTML was not exported in the simplejson module
+  https://github.com/simplejson/simplejson/issues/41
+
 Version 2.6.1 released 2012-07-27
 
 * raw_decode() now skips whitespace before the object
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/PKG-INFO 
new/simplejson-2.6.2/PKG-INFO
--- old/simplejson-2.6.1/PKG-INFO   2012-07-28 07:01:49.0 +0200
+++ new/simplejson-2.6.2/PKG-INFO   2012-09-21 21:26:47.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: simplejson
-Version: 2.6.1
+Version: 2.6.2
 Summary: Simple, fast, extensible JSON encoder/decoder for Python
 Home-page: http://github.com/simplejson/simplejson
 Author: Bob Ippolito
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/conf.py new/simplejson-2.6.2/conf.py
--- old/simplejson-2.6.1/conf.py2012-07-28 06:55:50.0 +0200
+++ new/simplejson-2.6.2/conf.py2012-09-21 21:25:57.0 +0200
@@ -44,7 +44,7 @@
 # The short X.Y version.
 version = '2.6'
 # The full version, including alpha/beta/rc tags.
-release = '2.6.1'
+release = '2.6.2'
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/setup.py 
new/simplejson-2.6.2/setup.py
--- old/simplejson-2.6.1/setup.py   2012-07-28 06:55:46.0 +0200
+++ new/simplejson-2.6.2/setup.py   2012-09-21 21:25:54.0 +0200
@@ -7,7 +7,7 @@
 DistutilsPlatformError
 
 IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '2.6.1'
+VERSION = '2.6.2'
 DESCRIPTION = Simple, fast, extensible JSON encoder/decoder for Python
 LONG_DESCRIPTION = open('README.rst', 'r').read()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/simplejson/__init__.py 
new/simplejson-2.6.2/simplejson/__init__.py
--- old/simplejson-2.6.1/simplejson/__init__.py 2012-07-28 06:55:40.0 
+0200
+++ new/simplejson-2.6.2/simplejson/__init__.py 2012-09-21 21:25:52.0 
+0200
@@ -97,7 +97,7 @@
 $ echo '{ 1.2:3.4}' | python -m simplejson.tool
 Expecting property name: line 1 column 2 (char 2)
 
-__version__ = '2.6.1'
+__version__ = '2.6.2'
 __all__ = [
 'dump', 'dumps', 'load', 'loads',
 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
@@ -109,7 +109,7 @@
 from decimal import Decimal
 
 from decoder import JSONDecoder, JSONDecodeError
-from encoder import JSONEncoder
+from encoder import JSONEncoder, JSONEncoderForHTML
 def _import_OrderedDict():
 import collections
 try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/simplejson-2.6.1/simplejson/tests/test_encode_for_html.py 
new/simplejson-2.6.2/simplejson/tests/test_encode_for_html.py

commit python-urlgrabber for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-urlgrabber for 
openSUSE:Factory checked in at 2012-10-03 10:09:24

Comparing /work/SRC/openSUSE:Factory/python-urlgrabber (Old)
 and  /work/SRC/openSUSE:Factory/.python-urlgrabber.new (New)


Package is python-urlgrabber, Maintainer is jmate...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/python-urlgrabber/python-urlgrabber.changes  
2011-09-23 12:43:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-urlgrabber.new/python-urlgrabber.changes 
2012-10-03 10:09:26.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct  1 09:53:26 UTC 2012 - sasc...@suse.de
+
+- Fixed wrong license header in urlgrabber/__init__.py (bnc#781323)
+- Updated upstream URL, the project moved the baseurl.org (yum)
+
+---



Other differences:
--
++ python-urlgrabber.spec ++
--- /var/tmp/diff_new_pack.aqI9I1/_old  2012-10-03 10:09:27.0 +0200
+++ /var/tmp/diff_new_pack.aqI9I1/_new  2012-10-03 10:09:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-urlgrabber
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,12 @@
 #
 
 
-
 Name:   python-urlgrabber
 Version:3.9.1
 Release:0
-Url:http://linux.duke.edu/projects/urlgrabber/
+Url:http://urlgrabber.baseurl.org
 Summary:A high-level cross-protocol url-grabber
-License:LGPL
+License:LGPL-2.1
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/u/urlgrabber/urlgrabber-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -44,6 +43,7 @@
 
 %prep
 %setup -q -n urlgrabber-%{version}
+sed -i 13d urlgrabber/__init__.py # Remove wrong license header, fixes 
bnc#781323
 
 %build
 python setup.py build

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit shotwell for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package shotwell for openSUSE:Factory 
checked in at 2012-10-03 10:09:58

Comparing /work/SRC/openSUSE:Factory/shotwell (Old)
 and  /work/SRC/openSUSE:Factory/.shotwell.new (New)


Package is shotwell, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/shotwell/shotwell.changes2012-09-20 
15:48:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.shotwell.new/shotwell.changes   2012-10-03 
10:10:04.0 +0200
@@ -1,0 +2,19 @@
+Fri Sep 28 20:34:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.13.0:
+  + The Shotwell Extras plugins now include support for publishing
+photos to Tumblr
+  + Shotwell correctly handles dates before 1969
+  + Shotwell lets you remove sensitive information from photos
+before publishing them to social media sites
+  + Shotwell regenerates thumbnails automatically, making migrating
+libraries between computers easier
+  + The Picasa connector now uses OAuth authentication for enhanced
+security
+  + Bug fixes
+  + Updated translations.
+- Drop shotwell-0.12.3-libgphoto25.patch: fixed upstream.
+- Add pkgconfig(json-glib-1.0) BuildRequires: new dependency.
+- Remove obsolete openSUSE version conditions (= 11.3).
+
+---

Old:

  shotwell-0.12.3-libgphoto25.patch
  shotwell-0.12.3.tar.bz2

New:

  shotwell-0.13.0.tar.xz



Other differences:
--
++ shotwell.spec ++
--- /var/tmp/diff_new_pack.VlEGvh/_old  2012-10-03 10:10:05.0 +0200
+++ /var/tmp/diff_new_pack.VlEGvh/_new  2012-10-03 10:10:05.0 +0200
@@ -17,38 +17,37 @@
 
 
 Name:   shotwell
-Version:0.12.3
+Version:0.13.0
 Release:0
 Summary:Photo Manager for GNOME
 License:LGPL-2.1+
 Group:  Productivity/Graphics/Viewers
 Url:http://yorba.org/shotwell/
-Source: 
http://yorba.org/download/shotwell/0.12/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM shotwell-0.12.3-libgphoto25.patch -- 
http://redmine.yorba.org/issues/5553
-Patch1: shotwell-0.12.3-libgphoto25.patch 
+Source: 
http://yorba.org/download/shotwell/0.13/%{name}-%{version}.tar.xz
 BuildRequires:  libraw-devel-static
 BuildRequires:  update-desktop-files
-BuildRequires:  vala = 0.15.2
+BuildRequires:  vala = 0.17.2
 BuildRequires:  pkgconfig(atk)
 BuildRequires:  pkgconfig(gconf-2.0)
 BuildRequires:  pkgconfig(gdk-2.0)
 BuildRequires:  pkgconfig(gdk-x11-2.0)
-BuildRequires:  pkgconfig(gee-1.0)
-BuildRequires:  pkgconfig(gexiv2) = 0.3.91
-BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(gstreamer-0.10)
-BuildRequires:  pkgconfig(gstreamer-base-0.10)
-BuildRequires:  pkgconfig(gstreamer-pbutils-0.10)
-BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(gudev-1.0)
-BuildRequires:  pkgconfig(libexif)
-BuildRequires:  pkgconfig(libgphoto2)
-BuildRequires:  pkgconfig(libsoup-2.4)
-BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(gee-1.0) = 0.5.0
+BuildRequires:  pkgconfig(gexiv2) = 0.3.92
+BuildRequires:  pkgconfig(gio-unix-2.0) = 2.20
+BuildRequires:  pkgconfig(gstreamer-0.10) = 0.10.28
+BuildRequires:  pkgconfig(gstreamer-base-0.10) = 0.10.28
+BuildRequires:  pkgconfig(gstreamer-pbutils-0.10) = 0.10.32
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.0.11
+BuildRequires:  pkgconfig(gudev-1.0) = 145
+BuildRequires:  pkgconfig(json-glib-1.0)
+BuildRequires:  pkgconfig(libexif) = 0.6.16
+BuildRequires:  pkgconfig(libgphoto2) = 2.4.2
+BuildRequires:  pkgconfig(libsoup-2.4) = 2.26.0
+BuildRequires:  pkgconfig(libxml-2.0) = 2.6.32
 BuildRequires:  pkgconfig(rest-0.7)
-BuildRequires:  pkgconfig(sqlite3)
-BuildRequires:  pkgconfig(unique-3.0)
-BuildRequires:  pkgconfig(webkitgtk-3.0)
+BuildRequires:  pkgconfig(sqlite3) = 3.5.9
+BuildRequires:  pkgconfig(unique-3.0) = 3.0.0
+BuildRequires:  pkgconfig(webkitgtk-3.0) = 1.4.0
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %glib2_gsettings_schema_requires
@@ -62,7 +61,6 @@
 %lang_package
 %prep
 %setup -q
-%patch1 -p1
 
 %build
 # We can't use the configure macro: it's not a standard autotools configure 
script
@@ -86,21 +84,15 @@
 %clean
 rm -rf %{buildroot}
 
-%if 0%{?suse_version}  1130
-
 %post
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%endif
-
-%if 0%{?suse_version}  1130
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%endif
 
 %files
 %defattr(-,root,root)
@@ -110,6 +102,7 @@
 %dir %{_datadir}/gnome/help/%{name}/
 %doc %{_datadir}/gnome/help/%{name}/C/
 %{_bindir}/shotwell
+%{_bindir}/shotwell-settings-migrator
 %{_bindir}/shotwell-video-thumbnailer
 

commit slib for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2012-10-03 10:10:10

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2012-09-14 
12:38:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2012-10-03 
10:10:13.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 26 21:03:01 UTC 2012 - dims...@opensuse.org
+
+- Fix %triggerpostun -- guile1 - scriptlet: the binary to check
+  for is called guile1, and not anymore guile (due to parallel
+  installation needs of guile1 and guile2) Fixes bnc#780827.
+- Extend post-install script to always trigger when guile is
+  already installed. This special casing with too old guile1
+  should never affect us anymore. Only minimal changes to the
+  scripts done, in order to have small change for a maintenance
+  update.
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.EiRWqz/_old  2012-10-03 10:10:14.0 +0200
+++ /var/tmp/diff_new_pack.EiRWqz/_new  2012-10-03 10:10:14.0 +0200
@@ -15,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   slib
-License:SUSE-SLIB
-Group:  Development/Languages/Scheme
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq
 PreReq: guile1 coreutils
-AutoReqProv:on
 Version:3b3
-Release:1
+Release:0
 Summary:Portable Scheme Library
+License:SUSE-SLIB
+Group:  Development/Languages/Scheme
 Url:http://swissnet.ai.mit.edu/~jaffer/SLIB.html
 Source: %{name}-%{version}.tar.bz2
 # this is not upstreamable (bnc#754532):
@@ -80,8 +77,8 @@
 exit 0
 
 %triggerpostun -- guile1
-# Delete slib library files, only if guile was uninstalled.
-if ! test -e usr/bin/guile ; then
+# Delete slib library files, only if guile1 was uninstalled.
+if ! test -e usr/bin/guile1 ; then
 rm -f usr/share/guile/site/slib
 rm -f usr/share/guile/site/slibcat
 rmdir --ignore-fail-on-non-empty usr/share/guile/site
@@ -95,11 +92,16 @@
 # We need new guile for registration, see Incompatible change in guile 1.8.2.
 # During update must be slib-3a5 installed first (See Conflits: slib  3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site ] ; then
+if [ -d usr/share/guile/site -o -e usr/bin/guile1 ] ; then
   GUILE_VERSION=`guile1 -c (display (version)) | sed s:\.::g`
   # guile is instaled
   if [ $GUILE_VERSION -ge 182 ]; then
   # we have guile = 1.8.2
+if [ ! -d usr/share/guile/site ] ; then
+  # This is in orderd to fixup eventually removed guile/site folders
+  # which could have happened due to bnc#780827.
+  mkdir usr/share/guile/site
+fi
 if [ ! -e usr/share/guile/site/slib ] ; then
   # link slib library into guile
   ln -sf ../../slib usr/share/guile/site/slib

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit storeBackup for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package storeBackup for openSUSE:Factory 
checked in at 2012-10-03 10:10:51

Comparing /work/SRC/openSUSE:Factory/storeBackup (Old)
 and  /work/SRC/openSUSE:Factory/.storeBackup.new (New)


Package is storeBackup, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/storeBackup/storeBackup.changes  2012-01-19 
09:44:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.storeBackup.new/storeBackup.changes 
2012-10-03 10:10:54.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  1 07:35:14 UTC 2012 - a...@suse.de
+
+- Really package README.SUSE and storebackup.config.default (bnc#780664).
+
+---



Other differences:
--
++ storeBackup.spec ++
--- /var/tmp/diff_new_pack.Hlq60S/_old  2012-10-03 10:10:55.0 +0200
+++ /var/tmp/diff_new_pack.Hlq60S/_new  2012-10-03 10:10:55.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package storeBackup
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,11 @@
 Url:http://storebackup.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-Requires:   sh-utils bzip2 textutils fileutils e2fsprogs
+Requires:   bzip2
+Requires:   e2fsprogs
+Requires:   fileutils
+Requires:   sh-utils
+Requires:   textutils
 
 %description 
 storeBackup is a disk-to-disk backup tool for Linux. It should run on
@@ -66,8 +70,8 @@
${RPM_BUILD_ROOT}/etc/cron.daily/   
\
${RPM_BUILD_ROOT}/etc/storebackup.d/
 #
-cp -a %{S:1}   
./storebackup.config.default
-cp -a %{S:2}   ./README.SUSE
+cp -a %{S:1}   
./doc/storebackup.config.default
+cp -a %{S:2}   
./doc/README.SUSE
 cp -a %{S:3}   ./doc/
 cp -aRpv bin/ lib/ 
${RPM_BUILD_ROOT}/usr/lib/storeBackup/
 cp -a cron-storebackup 
${RPM_BUILD_ROOT}/etc/cron.daily/storebackup

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sysconfig for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package sysconfig for openSUSE:Factory 
checked in at 2012-10-03 10:11:14

Comparing /work/SRC/openSUSE:Factory/sysconfig (Old)
 and  /work/SRC/openSUSE:Factory/.sysconfig.new (New)


Package is sysconfig, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/sysconfig/sysconfig.changes  2012-08-13 
19:54:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.sysconfig.new/sysconfig.changes 2012-10-03 
10:11:17.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 27 20:12:07 UTC 2012 - mlati...@suse.com
+
+- version 0.76.5
+- Added support for NOZEROCONF option to disable zero config route.
+
+---

Old:

  sysconfig-0.76.4.tar.bz2

New:

  sysconfig-0.76.5.tar.bz2



Other differences:
--
++ sysconfig.spec ++
--- /var/tmp/diff_new_pack.67DZyB/_old  2012-10-03 10:11:18.0 +0200
+++ /var/tmp/diff_new_pack.67DZyB/_new  2012-10-03 10:11:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sysconfig
-Version:0.76.4
+Version:0.76.5
 Release:0
 Summary:The sysconfig scheme and traditional network scripts
 License:GPL-2.0+

++ sysconfig-0.76.4.tar.bz2 - sysconfig-0.76.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sysconfig-0.76.4/config/sysconfig.config-network 
new/sysconfig-0.76.5/config/sysconfig.config-network
--- old/sysconfig-0.76.4/config/sysconfig.config-network2012-07-20 
14:01:52.0 +0200
+++ new/sysconfig-0.76.5/config/sysconfig.config-network2012-09-27 
22:06:14.0 +0200
@@ -392,3 +392,11 @@
 #
 WIRELESS_REGULATORY_DOMAIN=''
 
+## Type:   yesno
+## Default:no
+#
+# This variable is used to disable the Zero Configuration Networking
+# (zeroconf) route (169.254.0.0) on local interfaces.
+#
+NOZEROCONF='no'
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sysconfig-0.76.4/scripts/ifup-route 
new/sysconfig-0.76.5/scripts/ifup-route
--- old/sysconfig-0.76.4/scripts/ifup-route 2012-07-20 14:01:42.0 
+0200
+++ new/sysconfig-0.76.5/scripts/ifup-route 2012-09-27 22:07:16.0 
+0200
@@ -147,7 +147,7 @@
 fi
 # Calling 'ip' if there is no interface (ifdown called from udev for remove
 # event) would trigger automatic module loading (Bug 199456)
-if [ -d /sys/class/net/$INTERFACE ] ; then
+if [ -d /sys/class/net/$INTERFACE -a $NOZEROCONF != yes ] ; then
# Don't add this route if interface has no v4 address (Bug 65557)
test -z `ip -4 a l dev $INTERFACE 2/dev/null`  islinklocal=
if test -n $islinklocal ; then

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit taskwarrior for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package taskwarrior for openSUSE:Factory 
checked in at 2012-10-03 10:11:29

Comparing /work/SRC/openSUSE:Factory/taskwarrior (Old)
 and  /work/SRC/openSUSE:Factory/.taskwarrior.new (New)


Package is taskwarrior, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/taskwarrior/taskwarrior.changes  2012-04-03 
09:20:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.taskwarrior.new/taskwarrior.changes 
2012-10-03 10:11:31.0 +0200
@@ -1,0 +2,13 @@
+Thu Sep 27 12:40:50 UTC 2012 - mvysko...@suse.com
+
+- update to taskwarrion 2.1.2
+  * User defined attributes
+  * new 'until' date, after which they're deleted
+  * allow duplication of completed tasks
+  * new 'udas' subcommand
+  * new 'indended' format for the 'project' attribute, defaults in 'projects'
+and 'summary' reports
+  * several performance optimizations, and a lot of bugfixes
+se ChangeLog for details
+
+---

Old:

  task-2.0.0.tar.gz

New:

  task-2.1.2.tar.gz



Other differences:
--
++ taskwarrior.spec ++
--- /var/tmp/diff_new_pack.E6XAW5/_old  2012-10-03 10:11:33.0 +0200
+++ /var/tmp/diff_new_pack.E6XAW5/_new  2012-10-03 10:11:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   taskwarrior
-Version:2.0.0
+Version:2.1.2
 Release:0
 Summary:Command-line todo list manager
 License:MIT
@@ -73,7 +73,7 @@
 %define zshdir %(ls -1d %{_datadir}/zsh/[4-9]*)
 
 install -m 0755 -d %{buildroot}%{_sysconfdir}/bash_completion.d/
-mv %{scriptsdir}bash/task_completion.sh 
%{buildroot}%{_sysconfdir}/bash_completion.d/task
+mv %{scriptsdir}bash/task.sh %{buildroot}%{_sysconfdir}/bash_completion.d/
 rmdir %{scriptsdir}bash
 
 install -m 0755 -d %{buildroot}%{zshdir}/functions/
@@ -97,8 +97,7 @@
 %{_datadir}/doc/task
 %{_datadir}/man/man1/task*
 %{_datadir}/man/man5/task*
-
-%config %{_sysconfdir}/bash_completion.d/task
+%config %{_sysconfdir}/bash_completion.d/task.sh
 %{zshdir}/functions/_task
 %{_datadir}/vim/site/ftdetect/task.vim
 %{_datadir}/vim/site/syntax/task*.vim

++ task-2.0.0.tar.gz - task-2.1.2.tar.gz ++
 9669 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit transmission for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package transmission for openSUSE:Factory 
checked in at 2012-10-03 10:12:53

Comparing /work/SRC/openSUSE:Factory/transmission (Old)
 and  /work/SRC/openSUSE:Factory/.transmission.new (New)


Package is transmission, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/transmission/transmission.changes
2012-09-03 18:56:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.transmission.new/transmission.changes   
2012-10-03 10:12:56.0 +0200
@@ -1,0 +2,30 @@
+Thu Sep 27 14:54:26 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.71:
+  + Mac: Fix crasher on 10.6 Snow Leopard
+- Changes from version 2.70:
+  + All Platforms:
+- Improved speed with the µTP protocol
+- Fix bug that caused some incoming encrypted peer connections
+  to fail
+- Fix bugs with the speed limit scheduler
+- Fix crasher with magnet links
+  + GTK+:
+- Require GTK+ 3.4
+  + Qt:
+- Control speed limit from the icon tray
+- Improved behavior when clicking on torrents in the torrent
+  list
+- Fix bug where torrent files were not deleted
+- Fix bug with unicode characters in the default location
+  + Web Client:
+- The file inspector tab displays files nested under
+  directories
+- Improved scrolling on iPad
+- Fix incorrectly rendered characters
+- Fix bug involving attempts to post notifications without
+  permission
+- Mac fixes.
+- Spec file cleanup using spec-cleaner.
+
+---

Old:

  transmission-2.61.tar.xz

New:

  transmission-2.71.tar.xz



Other differences:
--
++ transmission.spec ++
--- /var/tmp/diff_new_pack.9dhzCw/_old  2012-10-03 10:13:01.0 +0200
+++ /var/tmp/diff_new_pack.9dhzCw/_new  2012-10-03 10:13:01.0 +0200
@@ -17,11 +17,19 @@
 
 
 Name:   transmission
+Version:2.71
+Release:0
+Summary:Lightweight, yet powerful BitTorrent client
+License:GPL-2.0 ; MIT
+Group:  Productivity/Networking/Other
+Url:http://www.transmissionbt.com/
+Source0:
http://download.m0k.org/transmission/files/%{name}-%{version}.tar.xz
+Source1:transmission-qt.desktop
+# PATCH-FIX-UPSTREAM transmission-fix-qt-translations-dir.patch 
https://trac.transmissionbt.com/ticket/4050
+Patch1: transmission-fix-qt-translations-dir.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel = 2.32.0
 BuildRequires:  intltool
-BuildRequires:  pkgconfig(gtk+-3.0) = 3.2.0
 %if 0%{?WITH_APPINDICATOR}
 BuildRequires:  libappindicator-devel = 0.4.90
 %endif
@@ -31,21 +39,13 @@
 BuildRequires:  libqt4-devel
 BuildRequires:  openssl-devel
 BuildRequires:  update-desktop-files
-Version:2.61
-Release:0
-Summary:Lightweight, yet powerful BitTorrent client
-License:GPL-2.0 ; MIT
-Group:  Productivity/Networking/Other
-Source0:
http://download.m0k.org/transmission/files/%{name}-%{version}.tar.xz
-Source1:transmission-qt.desktop
-# PATCH-FIX-UPSTREAM transmission-fix-qt-translations-dir.patch 
https://trac.transmissionbt.com/ticket/4050
-Patch1: transmission-fix-qt-translations-dir.patch
-Url:http://www.transmissionbt.com/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig(glib-2.0) = 2.32.0
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.4.0
 Requires:   %{name}-common = %{version}
+Provides:   %{name}-ui = %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
-Provides:   %{name}-ui = %{version}
 
 %description
 Transmission is a fast, easy, and free multi-platform BitTorrent client
@@ -61,10 +61,10 @@
 Requires:   %{name}-common = %{version}
 # For canberra-gtk-play binary
 Requires:   canberra-gtk-play
-Requires(post): update-alternatives
-Requires(postun): update-alternatives
 Recommends: %{name}-gtk-lang
 Provides:   %{name}-ui = %{version}
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 
 %description gtk
 Transmission is a fast, easy, and free multi-platform BitTorrent client
@@ -80,10 +80,10 @@
 Summary:Lightweight, yet powerful BitTorrent client
 Group:  Productivity/Networking/Other
 Requires:   %{name}-common = %{version}
-Requires(post): update-alternatives
-Requires(postun): update-alternatives
 Recommends: %{name}-qt-lang
 Provides:   %{name}-ui = %{version}
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 
 %description qt
 Transmission is a fast, easy, 

commit usb_modeswitch for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package usb_modeswitch for openSUSE:Factory 
checked in at 2012-10-03 10:13:12

Comparing /work/SRC/openSUSE:Factory/usb_modeswitch (Old)
 and  /work/SRC/openSUSE:Factory/.usb_modeswitch.new (New)


Package is usb_modeswitch, Maintainer is se...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/usb_modeswitch/usb_modeswitch.changes
2012-07-22 15:27:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.usb_modeswitch.new/usb_modeswitch.changes   
2012-10-03 10:13:13.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 28 12:59:57 UTC 2012 - gschlot...@suse.com
+
+- huawei-timing.patch:
+   *fixed timing issues with huawei devices (E173, ...)
+bnc#740354 
+
+---

New:

  huawei-timing.patch



Other differences:
--
++ usb_modeswitch.spec ++
--- /var/tmp/diff_new_pack.56h4WB/_old  2012-10-03 10:13:15.0 +0200
+++ /var/tmp/diff_new_pack.56h4WB/_new  2012-10-03 10:13:15.0 +0200
@@ -31,6 +31,7 @@
 Source2:%{name}-data.rpmlintrc
 Source3:   1bbb:f017
 Patch0:add_alcatel_ot_x220d.patch
+Patch1: huawei-timing.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libusb-devel 
 BuildRequires:  tcl
@@ -65,6 +66,7 @@
 %prep
 %setup -q -a1 -n %{source_name}-%{version}
 %patch0
+%patch1 -p1 -d %{source_name}-data-%{date}
 
 %build
 CFLAGS=%{optflags} make

++ huawei-timing.patch ++
diff -u -r usb-modeswitch-data-20120531.org/40-usb_modeswitch.rules 
usb-modeswitch-data-20120531/40-usb_modeswitch.rules
--- usb-modeswitch-data-20120531.org/40-usb_modeswitch.rules2012-09-28 
14:15:48.751958694 +0200
+++ usb-modeswitch-data-20120531/40-usb_modeswitch.rules2012-09-28 
14:16:49.063343878 +0200
@@ -443,6 +443,9 @@
 # Huawei E173s
 ATTRS{idVendor}==12d1, ATTRS{idProduct}==1c0b, RUN+=usb_modeswitch 
'%b/%k'
 
+# Huawei E173s
+ATTRS{idVendor}==12d1, ATTRS{idProduct}==1c00, RUN+=usb_modeswitch -w 
3000 '%b/%k'
+
 # Huawei E173 (Moviestar)
 ATTRS{idVendor}==12d1, ATTRS{idProduct}==1c24, RUN+=usb_modeswitch 
'%b/%k'
 
diff -u -r usb-modeswitch-data-20120531.org/usb_modeswitch.d/12d1:1c0b 
usb-modeswitch-data-20120531/usb_modeswitch.d/12d1:1c0b
--- usb-modeswitch-data-20120531.org/usb_modeswitch.d/12d1:1c0b 2012-09-28 
14:15:48.754958714 +0200
+++ usb-modeswitch-data-20120531/usb_modeswitch.d/12d1:1c0b 2012-09-28 
14:17:35.495640324 +0200
@@ -5,3 +5,4 @@
 
 MessageContent=55534243123456780011062001
 
+WaitBefore=3
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit vim-plugins for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package vim-plugins for openSUSE:Factory 
checked in at 2012-10-03 10:13:22

Comparing /work/SRC/openSUSE:Factory/vim-plugins (Old)
 and  /work/SRC/openSUSE:Factory/.vim-plugins.new (New)


Package is vim-plugins, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/vim-plugins/vim-plugins.changes  2012-09-26 
16:28:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.vim-plugins.new/vim-plugins.changes 
2012-10-03 10:13:29.0 +0200
@@ -1,0 +2,5 @@
+Tue Oct  2 08:19:02 UTC 2012 - pu...@suse.com
+
+- drop matchit plugin - it's part of standard vim installation 
+
+---

Old:

  vimplugin-matchit-1.13.2.tar.bz2



Other differences:
--
++ vim-plugins.spec ++
--- /var/tmp/diff_new_pack.tBPeF0/_old  2012-10-03 10:13:32.0 +0200
+++ /var/tmp/diff_new_pack.tBPeF0/_new  2012-10-03 10:13:32.0 +0200
@@ -24,7 +24,6 @@
 %definecolorschemes_version1.0
 %definediffchanges_version 0.6.346dae2
 %definelocateopen_version  1.3
-%definematchit_version 1.13.2
 %definematrix_version  1.10
 %defineminibufexpl_version 6.3.2
 %definemultiplesearch_version  1.3
@@ -64,7 +63,6 @@
 Source5:vimplugin-colorschemes-%{colorschemes_version}.tar.bz2
 Source6:vimplugin-diffchanges-%{diffchanges_version}.tar.bz2
 Source7:vimplugin-locateopen-%{locateopen_version}.tar.bz2
-Source8:vimplugin-matchit-%{matchit_version}.tar.bz2
 Source9:vimplugin-matrix-%{matrix_version}.tar.bz2
 Source10:   vimplugin-minibufexpl-%{minibufexpl_version}.tar.bz2
 Source11:   vimplugin-multiplesearch-%{multiplesearch_version}.tar.bz2
@@ -214,22 +212,6 @@
   :LocateSource somefile.vim
   :LocateRead somefile.txt
 
-%package -n vim-plugin-matchit
-Version:%matchit_version
-Release:0
-Summary:Extended % matching for HTML, LaTeX, and many other languages
-License:SUSE-Vim
-Group:  Productivity/Text/Editors
-Requires:   vim
-
-%description -n vim-plugin-matchit
-The matchit.vim script allows you to configure % to match more than just single
-characters.  You can match words and even regular expressions.  Also, matching
-treats strings and comments (as recognized by the syntax highlighting
-mechanism) intelligently.  The default ftplugins include settings for several
-languages: Ada, ASP with VBS, Csh, DTD, Essbase, Fortran, HTML, JSP (same as
-HTML), LaTeX, Lua, Pascal, SGML, Shell, Tcsh, Vim, XML.
-
 %package -n vim-plugin-matrix
 Version:%matrix_version
 Release:0
@@ -552,7 +534,7 @@
 This plugin offers the many features for Ruby on Rails application development.
 
 %prep
-%setup -q -c -n %{name} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 
-a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 
-a29 -a30 -a31
+%setup -q -c -n %{name} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a9 -a10 -a11 -a12 -a13 
-a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 -a29 
-a30 -a31
 # --- patch locateopen --
 pushd vimplugin-locateopen-%locateopen_version
 %patch1
@@ -613,16 +595,6 @@
   vim -u NONE -U NONE -X -n '+set nobackup nomore' '+helptags 
%vimplugin_dir/doc/' '+qa!'  /dev/null  /dev/null
 fi
 
-# documentation: vim-plugin-matchit
-
-%post -n vim-plugin-matchit
-vim -u NONE -U NONE -X -n '+set nobackup nomore' '+helptags 
%vimplugin_dir/doc/' '+qa!'  /dev/null  /dev/null
-
-%postun -n vim-plugin-matchit
-if [ $1 == 0 ]; then
-  vim -u NONE -U NONE -X -n '+set nobackup nomore' '+helptags 
%vimplugin_dir/doc/' '+qa!'  /dev/null  /dev/null
-fi
-
 # documentation: vim-plugin-multiplesearch
 
 %post -n vim-plugin-multiplesearch
@@ -843,11 +815,6 @@
 %defattr(-,root,root,0755)
 %vimplugin_dir/plugin/locateopen.vim
 
-%files -n vim-plugin-matchit
-%defattr(-,root,root,0755)
-%vimplugin_dir/doc/matchit.txt
-%vimplugin_dir/plugin/matchit.vim
-
 %files -n vim-plugin-matrix
 %defattr(-,root,root,0755)
 %vimplugin_dir/plugin/matrix.vim

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit w3m for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package w3m for openSUSE:Factory checked in 
at 2012-10-03 10:13:37

Comparing /work/SRC/openSUSE:Factory/w3m (Old)
 and  /work/SRC/openSUSE:Factory/.w3m.new (New)


Package is w3m, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/w3m/w3m.changes  2012-03-26 11:08:36.0 
+0200
+++ /work/SRC/openSUSE:Factory/.w3m.new/w3m.changes 2012-10-03 
10:13:38.0 +0200
@@ -1,0 +2,16 @@
+Fri Sep 28 12:43:43 UTC 2012 - cfarr...@suse.com
+
+- license update: ISC
+  w3m permissive license much more akin to ISC (spdx.org/licenses/ISC) than
+  to either BSD or MIT
+
+---
+Thu Sep 27 14:05:50 UTC 2012 - crrodrig...@opensuse.org
+
+- Build with OPENSSL_NO_SSL_INTERN, poor's man visibility
+  to avoid ABI breaks between different openssl version.
+
+- Also define _GNU_SOURCE to allow some extra optimizations
+  with recent GCC versions. 
+
+---



Other differences:
--
++ w3m.spec ++
--- /var/tmp/diff_new_pack.SIMBbW/_old  2012-10-03 10:13:40.0 +0200
+++ /var/tmp/diff_new_pack.SIMBbW/_new  2012-10-03 10:13:40.0 +0200
@@ -27,7 +27,7 @@
 Version:0.5.3
 Release:0
 Summary:A text-based WWW browser
-License:BSD-3-Clause ; MIT
+License:ISC
 Group:  Productivity/Networking/Web/Browsers
 Provides:   w3m_ssl = %version
 Provides:   web_browser
@@ -107,7 +107,7 @@
 %patch502 -p1
 
 %build
-export CFLAGS=$RPM_OPT_FLAGS -DUSE_BUFINFO -fno-strict-aliasing 
`ncursesw6-config --cflags`
+export CFLAGS=$RPM_OPT_FLAGS -DUSE_BUFINFO -DOPENSSL_NO_SSL_INTERN 
-D_GNU_SOURCE -fno-strict-aliasing `ncursesw6-config --cflags`
 pushd ../gc*
 ./configure --prefix=/usr --disable-shared --disable-threads
 make

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit weechat for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package weechat for openSUSE:Factory checked 
in at 2012-10-03 10:13:46

Comparing /work/SRC/openSUSE:Factory/weechat (Old)
 and  /work/SRC/openSUSE:Factory/.weechat.new (New)


Package is weechat, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/weechat/weechat.changes  2012-06-05 
15:36:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.weechat.new/weechat.changes 2012-10-03 
10:13:48.0 +0200
@@ -1,0 +2,22 @@
+Sun Sep 30 07:41:09 UTC 2012 - g...@opensuse.org
+
+- update to version 0.3.9:
+  * add plugin script (replacement of weeget.py and script.pl)
+  * add support of SSL in relay plugin
+  * add color for offline nicks
+  * add system resource limits for WeeChat process
+  * add zoom on merged buffer (default key: alt+x)
+  * add Day changed to in logger backlog
+  * add command line option -r (or --run-command) to run
+command(s) after startup of WeeChat
+  * add option swap for command /buffer
+  * generate alternate IRC nicks dynamically (when all nicks are
+already in use)
+  * fix rejoin of password protected IRC channels
+  * fix freeze in irc and relay plugins with sockets
+  * allow update for some variables of hdata
+  * add japanese user's guide, scripting guide and tester's guide
+  * many bugs fixed
+- drop obsolete weechat-fix-cmake-guile.patch
+
+---

Old:

  weechat-0.3.8.tar.bz2
  weechat-fix-cmake-guile.patch

New:

  weechat-0.3.9.tar.bz2



Other differences:
--
++ weechat.spec ++
--- /var/tmp/diff_new_pack.w81lhq/_old  2012-10-03 10:13:49.0 +0200
+++ /var/tmp/diff_new_pack.w81lhq/_new  2012-10-03 10:13:49.0 +0200
@@ -20,15 +20,13 @@
 %endif
 
 Name:   weechat
-Version:0.3.8
+Version:0.3.9
 Release:0
 Summary:Portable, Fast, Light and Extensible Chat Client
 License:GPL-3.0+
 Group:  Productivity/Networking/IRC
 Source: http://www.weechat.org/files/src/weechat-%{version}.tar.bz2
 Source1:weechat.desktop
-# PATCH-FIX-UPSTREAM weechat-fix-cmake-guile.patch 
https://savannah.nongnu.org/patch/index.php?7790 g...@opensuse.org -- Fixes the 
include dir for guile no being passed to the guild script plugin cmake file
-Patch0: weechat-fix-cmake-guile.patch
 Url:http://www.weechat.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake
@@ -135,7 +133,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 modified=$(sed -n '/^/n;s/ - .*$//;p;q' %{_sourcedir}/%{name}.changes)
 DATE=\$(date -d ${modified} +%%b %%e %%Y)\
 TIME=\$(date -d ${modified} +%%R)\
@@ -196,6 +193,7 @@
 %{_libdir}/weechat/plugins/logger.so
 %{_libdir}/weechat/plugins/relay.so
 %{_libdir}/weechat/plugins/rmodifier.so
+%{_libdir}/weechat/plugins/script.so
 %{_libdir}/weechat/plugins/xfer.so
 %doc %{_mandir}/man1/weechat-curses.1*
 %{_datadir}/applications/%{name}.desktop

++ weechat-0.3.8.tar.bz2 - weechat-0.3.9.tar.bz2 ++
 172349 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit wget for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package wget for openSUSE:Factory checked in 
at 2012-10-03 10:14:46

Comparing /work/SRC/openSUSE:Factory/wget (Old)
 and  /work/SRC/openSUSE:Factory/.wget.new (New)


Package is wget, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/wget/wget.changes2012-07-30 
11:49:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.wget.new/wget.changes   2012-10-03 
10:14:47.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 27 13:46:49 UTC 2012 - crrodrig...@opensuse.org
+
+- Add wget-openssl-no-intern.patch to Build with OPENSSL_NO_SSL_INTERN,
+  which is openssl's poor man's version of visibility, to avoid breaking
+  applications ABI on library internal changes. 
+
+---

New:

  wget-openssl-no-intern.patch



Other differences:
--
++ wget.spec ++
--- /var/tmp/diff_new_pack.cLesMG/_old  2012-10-03 10:14:48.0 +0200
+++ /var/tmp/diff_new_pack.cLesMG/_new  2012-10-03 10:14:48.0 +0200
@@ -30,6 +30,7 @@
 Patch1: wget-libproxy.patch
 Patch3: wget-sni.patch
 Patch4: wget-stdio.h.patch
+Patch5: wget-openssl-no-intern.patch
 BuildRequires:  libpng-devel
 %if 0%{suse_version}  1110
 BuildRequires:  libproxy-devel
@@ -53,6 +54,7 @@
 %endif
 %patch3
 %patch4 -p1
+%patch5
 
 %build
 %if 0%{suse_version}  1110

++ wget-openssl-no-intern.patch ++
--- src/openssl.c.orig
+++ src/openssl.c
@@ -29,6 +29,7 @@ Corresponding Source for a non-source fo
 shall include the source code for the parts of OpenSSL used as well
 as that of the covered work.  */
 
+#define OPENSSL_NO_SSL_INTERN
 #include wget.h
 
 #include assert.h
@@ -429,7 +430,7 @@ ssl_connect_wget (int fd, const char *ho
   if (!SSL_set_fd (conn, FD_TO_SOCKET (fd)))
 goto error;
   SSL_set_connect_state (conn);
-  if (SSL_connect (conn) = 0 || conn-state != SSL_ST_OK)
+  if (SSL_connect (conn) = 0 || SSL_get_state(conn) != SSL_ST_OK)
 goto error;
 
   ctx = xnew0 (struct openssl_transport_context);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit words for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package words for openSUSE:Factory checked 
in at 2012-10-03 10:14:58

Comparing /work/SRC/openSUSE:Factory/words (Old)
 and  /work/SRC/openSUSE:Factory/.words.new (New)


Package is words, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/words/words.changes  2012-09-17 
14:15:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.words.new/words.changes 2012-10-03 
10:15:00.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 27 08:11:11 UTC 2012 - a...@suse.de
+
+- Remove reference to obsolete /etc/sysconfig/suseconfig.
+
+---



Other differences:
--
++ SuSEconfig.words ++
--- /var/tmp/diff_new_pack.uOC8eI/_old  2012-10-03 10:15:02.0 +0200
+++ /var/tmp/diff_new_pack.uOC8eI/_new  2012-10-03 10:15:02.0 +0200
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (c) 2011 SuSE Linux AG, Nuernberg, Germany.  All rights reserved.
+# Copyright (c) 2012 SuSE Linux AG, Nuernberg, Germany.  All rights reserved.
 #
 # Author: Egmont Koblinger egm...@suselinux.hu
 #
@@ -13,20 +13,12 @@
 exit 1
 fi
 
-test -f $ROOT/etc/sysconfig/suseconfig || { echo No /etc/sysconfig/suseconfig 
found.  exit 1 ; }
-. $ROOT/etc/sysconfig/suseconfig
-
 test -f $ROOT/etc/sysconfig/language || { echo No /etc/sysconfig/language 
found.  exit 1 ; }
 . $ROOT/etc/sysconfig/language
 
 test -f $ROOT/etc/sysconfig/words || { echo No /etc/sysconfig/words found. 
 exit 1 ; }
 . $ROOT/etc/sysconfig/words
 
-if test -n $ENABLE_SUSECONFIG -a $ENABLE_SUSECONFIG = no ; then
-   echo SuSEconfig is disabled in $ROOT/etc/sysconfig/suseconfig. Exit...
-   exit 0
-fi
-
 # which dictionaries are installed?
 if [ -f $ROOT/usr/share/dict/american ]; then
INSTALLED_AMERICAN=yes

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xemacs for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package xemacs for openSUSE:Factory checked 
in at 2012-10-03 10:15:18

Comparing /work/SRC/openSUSE:Factory/xemacs (Old)
 and  /work/SRC/openSUSE:Factory/.xemacs.new (New)


Package is xemacs, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xemacs/xemacs.changes2012-08-23 
15:32:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.xemacs.new/xemacs.changes   2012-10-03 
10:15:20.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  1 09:17:47 UTC 2012 - wer...@suse.de
+
+- ia64 memeory layout is definitly not comparable with i86 nor x86_64 
+
+---



Other differences:
--
++ xemacs.spec ++
--- /var/tmp/diff_new_pack.QiaJLB/_old  2012-10-03 10:15:23.0 +0200
+++ /var/tmp/diff_new_pack.QiaJLB/_new  2012-10-03 10:15:23.0 +0200
@@ -140,9 +140,8 @@
 # therefore we use XFontSet support:
 %{!?enable_xfs:%global enable_xfs 1}
 %ifarch ia64
-# FIXME! I didn't build and test!
-# But according to x86_64 and less, we can safely open it in this version
-%global enable_pdump 1
+# ia64 has different memory laylout then x86 or x86_64 have!
+%global enable_pdump 0
 %else
 %global enable_pdump 1
 %endif


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xf86-video-intel for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-intel for 
openSUSE:Factory checked in at 2012-10-03 10:15:39

Comparing /work/SRC/openSUSE:Factory/xf86-video-intel (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-intel.new (New)


Package is xf86-video-intel, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-intel/xf86-video-intel.changes
2012-09-18 14:01:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-intel.new/xf86-video-intel.changes   
2012-10-03 10:15:42.0 +0200
@@ -1,0 +2,23 @@
+Sat Sep 29 12:54:19 UTC 2012 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 2.20.9:
+  And so it came to pass that a critical bug was uncovered in UXA. The
+  kernel does not like to pageflip when the pipe is off, yet due to the
+  delayed nature of a pageflip and the relaxed checking performed by UXA,
+  we could request a pageflip after turning off the display (DPMS). The
+  kernel rejected that pageflip and the error handling path failed to
+  restore sanity, and when the screen came back it was stuck on the image
+  seen before it went to sleep. (Note that there are also some related
+  kernel bugs, but this update should prevent the most conspicious of the
+  freezes.) Many thanks to Timo Aaltonen for his efforts in tracking down
+  the issue.
+- In other news:
+  + Prepare for xorg-1.4, the api is being tweaked again.
+  + Handle early FreeScreen in UXA.
+https://bugs.freedesktop.org/show_bug.cgi?id=55346
+  + Reenable XvMC support
+  + Do not replace the GPU bo when uploading into the shadow/CPU copy
+https://bugs.freedesktop.org/show_bug.cgi?id=54978
+  + Fix use of an uninitialised GC when drawing glyphs to a depth=1 pixmap
+
+---

Old:

  xf86-video-intel-2.20.8.tar.bz2

New:

  xf86-video-intel-2.20.9.tar.bz2



Other differences:
--
++ xf86-video-intel.spec ++
--- /var/tmp/diff_new_pack.gGPEng/_old  2012-10-03 10:15:43.0 +0200
+++ /var/tmp/diff_new_pack.gGPEng/_new  2012-10-03 10:15:43.0 +0200
@@ -19,7 +19,7 @@
 %define glamor 1
 
 Name:   xf86-video-intel
-Version:2.20.8
+Version:2.20.9
 Release:0
 Summary:Intel video driver for the Xorg X server
 License:MIT

++ xf86-video-intel-2.20.8.tar.bz2 - xf86-video-intel-2.20.9.tar.bz2 ++
 1970 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xorg-x11-server for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2012-10-03 10:17:49

Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and  /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New)


Package is xorg-x11-server, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2012-09-25 14:18:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2012-10-03 10:17:50.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 24 19:52:16 UTC 2012 - opens...@cboltz.de
+
+- /usr/bin/Xorg is no longer listed in /etc/permissions - remove 
+  %set_permissions and %verify_permissions and re-enable rpm permission
+  check (bnc#632737 #c27)
+
+---



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.7tK6lr/_old  2012-10-03 10:17:53.0 +0200
+++ /var/tmp/diff_new_pack.7tK6lr/_new  2012-10-03 10:17:53.0 +0200
@@ -400,15 +400,9 @@
 install -m 755 $RPM_SOURCE_DIR/xorg-backtrace 
%{buildroot}%{_bindir}/xorg-backtrace
 install -D xorg-x11-server.macros 
%{buildroot}%{_sysconfdir}/rpm/macros.xorg-server
 
-%ifnarch s390 s390x
-%verifyscript
-%verify_permissions -e /usr/bin/Xorg
-%endif
-
 %post
 %ifnarch s390 s390x
 %{fillup_only -an displaymanager}
-%set_permissions /usr/bin/Xorg
 if [ -f etc/X11/xorg.conf ]; then
  # Document how to restore previous input driver behaviour in xorg.conf files 
created
  # on openSUSE = 11.1
@@ -453,7 +447,7 @@
 %{_localstatedir}/lib/xkb/compiled/README.compiled
 %ifnarch s390 s390x
 %{_sysconfdir}/modprobe.d/50-nvidia.conf
-%verify(not mode) %{_bindir}/Xorg
+%{_bindir}/Xorg
 %{_bindir}/X
 %{_bindir}/cvt
 %{_bindir}/gtf

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xterm for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package xterm for openSUSE:Factory checked 
in at 2012-10-03 10:17:58

Comparing /work/SRC/openSUSE:Factory/xterm (Old)
 and  /work/SRC/openSUSE:Factory/.xterm.new (New)


Package is xterm, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xterm/xterm.changes  2012-08-07 
21:53:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.xterm.new/xterm.changes 2012-10-03 
10:18:00.0 +0200
@@ -1,0 +2,86 @@
+Mon Oct  1 13:59:52 UTC 2012 - meiss...@suse.com
+
+- Patch #282 - 2012/09/28
+  * improve configure check for XkbKeycodeToKeysym, fixing a regression
+on some older systems in the patch #280 changes.
+  * add  clarification in manpage for alwaysBoldMode and veryBoldColors
+resources (prompted by Derek Martin question about using the former
+with TrueType fonts).
+  * add  alternateScroll  resource  and corresponding control sequences
+which  modify  the  scroll-forw  and  scroll-back actions: when the
+alternate screen is displayed, wheel mouse up/down will send cursor
+keys (Debian #683942).
+  * improve  rendering  for the case when a Unicode character is absent
+in  the  bold  font  but  present in the normal font by temporarily
+falling back to the normal font (Debian #359006, Debian #408666).
+  * provide  configure  option  --enable-double-buffer  and  ifdef's to
+allow  comparisons  with/without double-buffering. The default uses
+normal buffering.
+  * add  feature  to  optionally  scroll  current page before clearing,
+ontrolled  by  resource setting cdXtraScroll (prompted by patch by
+Richard Wagenblast):
+  * integrated  patches  from  Arch  Linux  forum  posting  (patches by
+Richard Wagenblast):
+   + modify reallocation limit of line-data when resizing screen so
+ that  lost  text  will  be  restored  if the screen is first
+ shrunk and then grown.
+   + modify output to use double-buffering to reduce flicker.
+  * modify  scroll-lock  action  to  handle on/off/toggle keywords like
+other actions. Previously the optional parameter was interpreted as
+an integer.
+  * extend  DECSCUSR  to  provide a way to set the cursor to a vertical
+bar (patch by Paul Bolle).
+  * add  -8,  -c,  -d  and -u options to 88colors2.pl and 256colors2.pl
+scripts.  No current terminal emulator recognizes C1 controls while
+handling  UTF-8  encodingâ\200\224see  notes in patch #119 and patch #109
+regarding  utf8controlsâ\200\224but  the -u and -8 options are useful for
+demonstrating this point.
+  * improve  speed  when  changing color palettes using OSC controls by
+deferring repaint while followup controls might be additional color
+palette changes.
+  * modify  SGR 38 and SGR 48 to accept RGB index, matching the closest
+entry in xterm's palette.
+  * extend  SGR 38  and  SGR 48  to accept colon as parameter separator
+(request by Paul LeoNerd Evans).
+  * modify fullscreen action to allow it to toggle the full-screen mode
+rather  than  only  set  or  unset  it  (prompted  by  Eeri  Kask's
+suggestion to support _NET_WM_TOGGLE). This implementation does not
+yet use _NET_WM_TOGGLE.
+  * add  support  for  _NET_WM_STATE_MAXIMIZED_VERT and
+_NET_WM_STATE_MAXIMIZED_HORZ  EWMH  properties  (suggested  by Eeri
+Kask).
+  * make  fullscreen  mode  work  with  the tek4014 window. This change
+makes  only the currently active window to be changed to fullscreen
+rather than changing both windows.
+  * modify  TekClear function to discard pending output before clearing
+the tek4014 display (patch by Kevin Ryde).
+  * fix  deleteIsDEL  feature,  broken in patch #280 changes (report by
+Mike Thornburg, forwarded by Jeremy Huddleston).
+  * fix   a   special   case   of   wrapping   double-width  characters
+(report/test-case by Ken Winstein).
+  * add E3 extended capability to xterm-basic to match ncurses 20120728
+patch.
+  * fix incorrect transformation ofrow-parameterfor
+ClearCurBackground in patch #279 which caused incorrect painting in
+some scrolling scenarios (report by Chuck Silvers).
+  * fix typo in manpage description of +maximized option (Paul Maier).
+  * change  default  for  configure  option  --with-xpm,  turning it on
+unless requested otherwise.
+  * add configure option --with-icon-name which can be used to override
+the default icon used in icon-themes.
+  * extend  activeIcon  resource  to  provide default value which tells
+xterm  to  determine  the  window  manager's name and automatically
+enable  the  feature  for  fvwm  and  window  maker.  The  explicit
+true/false values can be used to override this behavior.
+  * add  mini xterm 

commit yast2-nfs-client for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-nfs-client for 
openSUSE:Factory checked in at 2012-10-03 10:18:09

Comparing /work/SRC/openSUSE:Factory/yast2-nfs-client (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-nfs-client.new (New)


Package is yast2-nfs-client, Maintainer is mvid...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-nfs-client/yast2-nfs-client.changes
2012-09-10 15:21:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-nfs-client.new/yast2-nfs-client.changes   
2012-10-03 10:18:10.0 +0200
@@ -1,0 +2,8 @@
+Thu Sep 20 12:57:40 UTC 2012 - mfi...@suse.com
+
+- added support for IPv6 in square brackets
+- expanded testsuite for IPv6 checks
+- bnc#719538
+- 2.21.8 
+
+---

Old:

  yast2-nfs-client-2.21.7.tar.bz2

New:

  yast2-nfs-client-2.21.8.tar.bz2



Other differences:
--
++ yast2-nfs-client.spec ++
--- /var/tmp/diff_new_pack.0sVf2g/_old  2012-10-03 10:18:11.0 +0200
+++ /var/tmp/diff_new_pack.0sVf2g/_new  2012-10-03 10:18:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-nfs-client
-Version:2.21.7
+Version:2.21.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -25,7 +25,7 @@
 
 BuildRequires:  perl-XML-Writer
 BuildRequires:  update-desktop-files
-BuildRequires:  yast2
+BuildRequires:  yast2 = 2.23.6
 BuildRequires:  yast2-devtools
 BuildRequires:  yast2-testsuite
 # yast2-nfs-client depends on nfs-utils in term that edits nfs-utils' options.
@@ -34,7 +34,7 @@
 BuildRequires:  nfs-client  1.2.9
 #ag_showexports moved to yast2 base
 #Wizard::SetDesktopTitleAndIcon
-Requires:   yast2 = 2.21.22
+Requires:   yast2 = 2.23.6
 #idmapd_conf agent
 Requires:   yast2-nfs-common
 # showmount, #150382, #286300

++ yast2-nfs-client-2.21.7.tar.bz2 - yast2-nfs-client-2.21.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-client-2.21.7/VERSION 
new/yast2-nfs-client-2.21.8/VERSION
--- old/yast2-nfs-client-2.21.7/VERSION 2012-08-27 09:55:05.0 +0200
+++ new/yast2-nfs-client-2.21.8/VERSION 2012-09-21 13:54:20.0 +0200
@@ -1 +1 @@
-2.21.7
+2.21.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-client-2.21.7/src/routines.ycp 
new/yast2-nfs-client-2.21.8/src/routines.ycp
--- old/yast2-nfs-client-2.21.7/src/routines.ycp2012-08-27 
11:57:13.0 +0200
+++ new/yast2-nfs-client-2.21.8/src/routines.ycp2012-10-01 
10:42:15.0 +0200
@@ -24,16 +24,17 @@
 import Package;
 import Report;
 import IP;
+import Hostname;
 import String;
 
 /**
- * @param spec server:/path/specification
- * @return `couple(server, /path/specification)
+ * @param spec  server:/path/specification
+ * @return  `couple(server, /path/specification)
  */
 define term SpecToServPath(string spec) ``{
 // split using :/ (because of IPv6)
 integer path_begin = search( spec, :/);
-   string serv = ;
+string serv = ;
 
 // no :/ inside = server: or [/]path
 if( path_begin == nil )
@@ -43,180 +44,200 @@
 path_begin = size( spec) -1;
 }
 
-   if (path_begin != nil) {
-   serv = substring(spec, 0, path_begin);
-   spec = substring(spec, path_begin+1);
-   }
-   return `couple(serv, spec);
+if (path_begin != nil) {
+serv = substring(spec, 0, path_begin);
+spec = substring(spec, path_begin+1);
+}
+return `couple(serv, spec);
 }
 
 
 /**
  * Creates a list of ui table items for nfs fstab entries
- * @param fstablist of nfs fstab entries
- * @return itemized table entries
+ * @param fstab list of nfs fstab entries
+ * @return  itemized table entries
  * @example UI::ChangeWidget(`id(`fstable), `Items, 
FstabTableItems(nfs_entries));
  */
 define listterm FstabTableItems(listmap fstab) ``{
-   integer count = 0;
-   return maplist(map entry, fstab, ``{
-   term sp = SpecToServPath(entry[spec]:);
-   term it = `item(`id(count),
-   sp[0]: +  ,
-   sp[1]: +  ,
-   entry[file]: +  ,
-   entry[vfstype]: ,
-   entry[mntops]: +  );
-
-   count = count+1;
-   return it;
-   });
+integer count = 0;
+return maplist(map entry, fstab, ``{
+term sp = SpecToServPath(entry[spec]:);
+

commit accerciser for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package accerciser for openSUSE:Factory 
checked in at 2012-10-03 10:23:47

Comparing /work/SRC/openSUSE:Factory/accerciser (Old)
 and  /work/SRC/openSUSE:Factory/.accerciser.new (New)


Package is accerciser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/accerciser/accerciser.changes2012-04-20 
15:10:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.accerciser.new/accerciser.changes   
2012-10-03 10:23:50.0 +0200
@@ -1,0 +2,59 @@
+Tue Sep 25 06:43:32 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + help: fix link to gnome-help a11y help page.
+  + help: adapt Galician and Spanish translations after link fix.
+  + Updated translations.
+
+---
+Tue Sep 18 09:39:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Tue Sep  4 07:38:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Use yelp-tools instead of gnome-doc-utils
+  + Updated translations.
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstreams switch.
+
+---
+Tue Aug 21 07:24:47 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Do not check for 'toolkit-accessibility' gsettings key
+  + Bump minimum version of Python to 2.7
+  + Updated translations.
+
+---
+Tue Aug  7 09:42:52 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + Revert Add a trailing underscore to identifiers which are
+Python keywords
+  + Upated translations.
+
+---
+Tue Jun 26 17:51:27 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + Add a trailing underscore to identifiers which are Python
+keywords
+  + Remove markup from strings in .ui files
+  + bgo#675989: Use python object attributes instead of gobject
+ones
+  + bgo#674884: Use XDG base directory instead of $HOME
+  + bgo#671179: Unexpected behaviours in ipython_view
+  + bgo#671261: UnicodeDecodeError breaks the interface viewer
+  + bgo#674166: Settings in wrong path
+  + bgo#654418: Strings with context are not getting properly
+localized even though the translations have been provided
+  + bgo#663777: WidgetHasText validator fails for widgets which
+don't need to implement getText()
+  + bgo#678517: Macaroon script recorder is broken
+  + Updated translations.
+
+---

Old:

  accerciser-3.4.1.tar.xz

New:

  accerciser-3.6.0.tar.xz



Other differences:
--
++ accerciser.spec ++
--- /var/tmp/diff_new_pack.8tmQBm/_old  2012-10-03 10:23:51.0 +0200
+++ /var/tmp/diff_new_pack.8tmQBm/_new  2012-10-03 10:23:51.0 +0200
@@ -20,18 +20,18 @@
 Summary:Accessibility debugging tool
 License:BSD-3-Clause
 Group:  Development/Tools/Other
-Version:3.4.1
+Version:3.6.0
 Release:0
 Url:http://live.gnome.org/Accerciser
-Source0:
http://download.gnome.org/sources/accerciser/3.4/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/accerciser/3.6/%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
 # pyatspi is a virtual name that is provided by the default at-spi stack
 BuildRequires:  pyatspi
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(atspi-2) = 2.1.5
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.1.13
 BuildRequires:  pkgconfig(pygobject-3.0) = 2.90.3
@@ -88,10 +88,7 @@
 %files
 %defattr(-, root, root)
 %doc AUTHORS COPYING NEWS README
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/%{name}/
-%doc %{_datadir}/gnome/help/%{name}/C/
+%doc %{_datadir}/help/C/%{name}/
 %{_bindir}/%{name}
 %{python_sitelib}/%{name}
 %{_datadir}/%{name}/

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit aisleriot for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package aisleriot for openSUSE:Factory 
checked in at 2012-10-03 10:23:56

Comparing /work/SRC/openSUSE:Factory/aisleriot (Old)
 and  /work/SRC/openSUSE:Factory/.aisleriot.new (New)


Package is aisleriot, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/aisleriot/aisleriot.changes  2012-04-20 
15:10:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.aisleriot.new/aisleriot.changes 2012-10-03 
10:24:00.0 +0200
@@ -1,0 +2,22 @@
+Tue Sep 25 06:43:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Fix help link
+  + Updated translations.
+
+---
+Sun Aug 19 21:45:37 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Many games fixes
+  + Updated translations.
+
+---
+Mon Jun  4 19:36:58 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.0:
+  + Build fixes.
+  + Many games fixes.
+  + Updated translations.
+
+---

Old:

  aisleriot-3.4.1.tar.xz

New:

  aisleriot-3.6.0.tar.xz



Other differences:
--
++ aisleriot.spec ++
--- /var/tmp/diff_new_pack.8c19dv/_old  2012-10-03 10:24:03.0 +0200
+++ /var/tmp/diff_new_pack.8c19dv/_new  2012-10-03 10:24:03.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   aisleriot
-Version:3.4.1
+Version:3.6.0
 Release:0
 Summary:Solitaire Card Games for GNOME
 License:GPL-3.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.gnome.org
-Source0:
http://download.gnome.org/sources/aisleriot/3.4/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/aisleriot/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  guile-devel
 BuildRequires:  intltool
 BuildRequires:  lsb-release
@@ -32,9 +32,9 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(cairo)
-BuildRequires:  pkgconfig(gconf-2.0)
-BuildRequires:  pkgconfig(gobject-2.0) = 2.31.13
-BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gconf-2.0) = 2.0
+BuildRequires:  pkgconfig(gobject-2.0) = 2.32.0
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.4.0
 BuildRequires:  pkgconfig(libcanberra-gtk3)
 BuildRequires:  pkgconfig(librsvg-2.0)
 Requires:   guile
@@ -71,7 +71,6 @@
 
 %install
 %make_install
-%suse_update_desktop_file -N FreeCell -G Solitaire freecell
 %suse_update_desktop_file -N AisleRiot -G Solitaire sol
 %find_lang %{name} %{?no_lang_C}
 %find_gconf_schemas
@@ -101,7 +100,6 @@
 %endif
 %doc %{_datadir}/help/C/aisleriot/
 %{_bindir}/sol
-%{_datadir}/applications/freecell.desktop
 %{_datadir}/applications/sol.desktop
 %{_datadir}/aisleriot/
 %dir %{_libdir}/aisleriot

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit dia for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package dia for openSUSE:Factory checked in 
at 2012-10-03 10:24:11

Comparing /work/SRC/openSUSE:Factory/dia (Old)
 and  /work/SRC/openSUSE:Factory/.dia.new (New)


Package is dia, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/dia/dia.changes  2012-08-23 16:02:56.0 
+0200
+++ /work/SRC/openSUSE:Factory/.dia.new/dia.changes 2012-10-03 
10:24:12.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 25 17:35:23 CEST 2012 - sbra...@suse.cz
+
+- Add dia-libemf-64bit.patch: Fix 64-bit build with libEMF, which
+  is now available on all platforms (bgo#675495).
+
+---

New:

  dia-libemf-64bit.patch



Other differences:
--
++ dia.spec ++
--- /var/tmp/diff_new_pack.tWNxOW/_old  2012-10-03 10:24:13.0 +0200
+++ /var/tmp/diff_new_pack.tWNxOW/_new  2012-10-03 10:24:13.0 +0200
@@ -21,10 +21,14 @@
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
+%if 0%{?suse_version}  1210
+BuildRequires:  libEMF-devel
+%else
 %ifarch %ix86
-# libEMF is not on x86_64
+# libEMF was not on x86_64 before 12.2
 BuildRequires:  libEMF-devel
 %endif
+%endif
 BuildRequires:  libgnomeui-devel
 BuildRequires:  libtool
 BuildRequires:  libxslt-devel
@@ -58,6 +62,8 @@
 Patch18:dia-swig-2x.patch
 # PATCH-FIX-UPSTREAM dia-glib-2.31.patch bgo#655335 dims...@opensuse.org -- 
Fix build with glib 2.31.
 Patch19:dia-glib-2.31.patch
+# PATCH-FIX-UPSTREAM dia-libemf-64bit.patch bgo#675495 sbra...@suse.cz -- Fix 
build with libEMF on 64-bit platforms.
+Patch20:dia-libemf-64bit.patch
 Url:http://live.gnome.org/Dia
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Recommends: %{name}-lang
@@ -83,6 +89,7 @@
 %patch17 -p1
 %patch18
 %patch19 -p1
+%patch20 -p1
 cp $RPM_SOURCE_DIR/font-test*dia .
 
 %build


++ dia-libemf-64bit.patch ++
From 222d8f1b5c47408900638955b094b6a6e28dcc20 Mon Sep 17 00:00:00 2001
From: Hans Breuer h...@breuer.org
Date: Sun, 20 May 2012 17:35:26 +
Subject: Bug 675495 - Compile error with libEMF on 64bit

We have to define STRICT to make libemf/64 work. Otherwise there is
wmf.cpp:1383:40: error: cast from 'void*' to 'W32::HDC' loses precision
---
Index: dia-0.97.2/plug-ins/wmf/wmf.cpp
===
--- dia-0.97.2.orig/plug-ins/wmf/wmf.cpp
+++ dia-0.97.2/plug-ins/wmf/wmf.cpp
@@ -53,9 +53,14 @@ typedef W32::LOGFONTW LOGFONTW;
 #include pango/pangowin32.h
 
 #elif HAVE_LIBEMF
+/* We have to define STRICT to make libemf/64 work. Otherwise there is
+wmf.cpp:1383:40: error: cast from 'void*' to 'W32::HDC' loses precision
+ */
+#define STRICT
   namespace W32 {
 #  include emf.h
   }
+#undef STRICT
 #else
 #  include wmf_gdi.h
 #  define SAVE_EMF



-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gcalctool for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gcalctool for openSUSE:Factory 
checked in at 2012-10-03 10:24:27

Comparing /work/SRC/openSUSE:Factory/gcalctool (Old)
 and  /work/SRC/openSUSE:Factory/.gcalctool.new (New)


Package is gcalctool, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gcalctool/gcalctool.changes  2012-05-22 
08:14:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.gcalctool.new/gcalctool.changes 2012-10-03 
10:24:28.0 +0200
@@ -1,0 +2,41 @@
+Tue Sep 25 06:44:18 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.6.0:
+  + Updated translations.
+
+---
+Mon Sep 17 10:40:58 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.5.92:
+  + Allow multiple instances of gcalctool.
+
+---
+Tue Sep  4 08:31:55 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.5.91:
+  + Updated translations.
+
+---
+Tue Aug 21 21:47:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.5.90.1:
+  + Remove reference to removed source file.
+- Changes from version 6.5.90:
+  + Replace lex/bison parser with hand-written parser.
+  + Use g_warning not g_error when unable to parse currency file.
+- Drop bison and flex BuildRequires: no longer required.
+
+---
+Wed Jul 18 08:10:13 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.5.3:
+  + Set window icon correctly
+
+---
+Wed May 16 19:16:13 UTC 2012 - dims...@opensuse.org
+
+- Update to version 6.5.1:
+  + Port to GtkApplication.
+  + Replace menubar with a GMenu.
+
+---

Old:

  gcalctool-6.4.2.1.tar.xz

New:

  gcalctool-6.6.0.tar.xz



Other differences:
--
++ gcalctool.spec ++
--- /var/tmp/diff_new_pack.bEJkDM/_old  2012-10-03 10:24:30.0 +0200
+++ /var/tmp/diff_new_pack.bEJkDM/_new  2012-10-03 10:24:30.0 +0200
@@ -17,16 +17,14 @@
 
 
 Name:   gcalctool
-Version:6.4.2.1
+Version:6.6.0
 Release:0
 Summary:A GNOME Calculator Application
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
 Url:http://www.gnome.org
-Source: 
http://download.gnome.org/sources/gcalctool/6.4/%{name}-%{version}.tar.xz
-BuildRequires:  bison
+Source: 
http://download.gnome.org/sources/gcalctool/6.6/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  flex
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
@@ -48,14 +46,11 @@
 
 %build
 %configure
-%__make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
-%if 0%{?suse_version} = 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
-%suse_update_desktop_file -N Gnome Calculator -G Calculator %name Calculator
+%make_install
+%suse_update_desktop_file -N Gnome Calculator -G Calculator %{name} 
Calculator
 %find_lang %{name} %{?no_lang_C}
 %fdupes %{buildroot}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gcr for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gcr for openSUSE:Factory checked in 
at 2012-10-03 10:24:36

Comparing /work/SRC/openSUSE:Factory/gcr (Old)
 and  /work/SRC/openSUSE:Factory/.gcr.new (New)


Package is gcr, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gcr/gcr.changes  2012-04-20 15:14:24.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gcr.new/gcr.changes 2012-10-03 
10:24:38.0 +0200
@@ -1,0 +2,54 @@
+Tue Sep 25 15:31:42 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Tue Sep 18 19:43:57 UTC 2012 - zai...@opensuse.org
+
+- Enable parallel building again.
+
+---
+Tue Sep 18 13:29:01 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Mon Aug 20 16:57:41 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Don't fail preconditions when pkcs11 isn't initialized in gcr.
+  + Fix regression in ASN.1 parsing.
+  + Build fixes.
+  + Updated translations.
+
+---
+Mon Aug  6 19:20:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + Use p11-kit/pkcs11.h instead of shipping a copy with gck.
+  + Documentation fixes.
+  + Updated translations.
+
+---
+Wed Jul 18 08:11:52 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Add debug output to GcrSecretExchange
+  + Fix invalid warning when sending a secret exchange
+  + Remove support code for old glib versions
+  + Documentation fixes
+  + Updated translations.
+
+---
+Mon Jun 25 19:49:50 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + Rework DER parsing so we can parse odd PKCS#12 files.
+  + Use GBytes, bump glib dependency.
+  + Enable gnome2 keyring storage.
+  + Documentation fixes.
+  + Updated translations.
+
+---

Old:

  gcr-3.4.1.tar.xz

New:

  gcr-3.6.0.tar.xz



Other differences:
--
++ gcr.spec ++
--- /var/tmp/diff_new_pack.jWsQUu/_old  2012-10-03 10:24:39.0 +0200
+++ /var/tmp/diff_new_pack.jWsQUu/_new  2012-10-03 10:24:39.0 +0200
@@ -17,14 +17,13 @@
 
 
 Name:   gcr
-Version:3.4.1
+Version:3.6.0
 Release:0
-# FIXME: Verify if parallel build works again. Last checked in version 3.3.2
 Summary:Library for Crypto UI related task
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org
-Source0:
http://download.gnome.org/sources/gcr/3.4/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/gcr/3.6/%{name}-%{version}.tar.xz
 # For directory ownership
 BuildRequires:  dbus-1
 BuildRequires:  gobject-introspection-devel
@@ -37,7 +36,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(glib-2.0) = 2.30.0
+BuildRequires:  pkgconfig(glib-2.0) = 2.32.0
 BuildRequires:  pkgconfig(gmodule-no-export-2.0)
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
@@ -151,9 +150,7 @@
 
 %build
 %configure
-# Parallel build seems broken.
-#make %{?_smp_mflags}
-make
+make %{?_smp_mflags}
 
 %install
 %make_install

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdl for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gdl for openSUSE:Factory checked in 
at 2012-10-03 10:25:04

Comparing /work/SRC/openSUSE:Factory/gdl (Old)
 and  /work/SRC/openSUSE:Factory/.gdl.new (New)


Package is gdl, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdl/gdl.changes  2012-05-03 10:55:54.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gdl.new/gdl.changes 2012-10-03 
10:25:05.0 +0200
@@ -1,0 +2,42 @@
+Wed Sep 26 20:55:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Thu Sep  6 07:35:54 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Updated translations.
+- Rename libgdl-3-4 subpackage to libgdl-3-5, following upstreams
+  soname bump.
+
+---
+Mon Aug  6 19:15:37 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + Fix various layout bugs from previous changes
+  + Remove public members in structs
+  + Deprecate macros and replace them with access functions
+(+ adding some new access functions for now private members)
+  + Constructor for GdlDockBar loses 'dock' argument with gobj
+(bgo#667158)
+  * test-dock crashes (bgo#680655).
+
+---
+Mon Jul 23 18:47:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + New handling of hidden/not existing windows in layout.
+- Rename libgdl-3-0 to libgdl-3-4, followin upstreams soname bump.
+
+---
+Wed Jun 27 17:43:05 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + skip-taskbar property
+  + Fix hidden buttons
+  + Various deprecations and code improvements
+  + Improve Documentation
+
+---

Old:

  gdl-3.4.2.tar.xz

New:

  gdl-3.6.0.tar.xz



Other differences:
--
++ gdl.spec ++
--- /var/tmp/diff_new_pack.vaFPdr/_old  2012-10-03 10:25:06.0 +0200
+++ /var/tmp/diff_new_pack.vaFPdr/_new  2012-10-03 10:25:06.0 +0200
@@ -17,17 +17,17 @@
 
 
 Name:   gdl
-Version:3.4.2
+Version:3.6.0
 Release:0
 Summary:Gnome Devtool Libraries
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://ftp.gnome.org/pub/GNOME/sources/gdl/0.7/
-Source: 
http://download.gnome.org/sources/gdl/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdl/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk3-devel
-BuildRequires:  intltool
+BuildRequires:  intltool = 0.40.4
 BuildRequires:  libxml2-devel
 BuildRequires:  translation-update-upstream
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,14 +37,14 @@
 intended to be shared between GNOME development tools, including
 gnome-debug, gnome-build, and anjuta2.
 
-%package -n libgdl-3-2
+%package -n libgdl-3-5
 Summary:Gnome Devtool Libraries
 Group:  System/Libraries
 Recommends: %{name}-lang
 Provides:   gdl = %{version}
 Obsoletes:  gdl  %{version}
 
-%description -n libgdl-3-2
+%description -n libgdl-3-5
 Gnome Devtool Libraries contains components and libraries that are
 intended to be shared between GNOME development tools, including
 gnome-debug, gnome-build, and anjuta2.
@@ -63,7 +63,7 @@
 %package devel
 Summary:Gnome Devtool Libraries -- Development Files
 Group:  Development/Libraries/GNOME
-Requires:   libgdl-3-2 = %{version}
+Requires:   libgdl-3-5 = %{version}
 Requires:   typelib-1_0-Gdl-3 = %{version}
 
 %description devel
@@ -86,14 +86,14 @@
 %find_lang %{name}-3
 %fdupes -s %{buildroot}
 
-%post -n libgdl-3-2 -p /sbin/ldconfig
+%post -n libgdl-3-5 -p /sbin/ldconfig
 
-%postun -n libgdl-3-2 -p /sbin/ldconfig
+%postun -n libgdl-3-5 -p /sbin/ldconfig
 
 %clean
 rm -rf %{buildroot}
 
-%files -n libgdl-3-2
+%files -n libgdl-3-5
 %defattr(-, root, root)
 %doc AUTHORS COPYING ChangeLog NEWS README
 %{_libdir}/*.so.*

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gedit for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gedit for openSUSE:Factory checked 
in at 2012-10-03 10:25:41

Comparing /work/SRC/openSUSE:Factory/gedit (Old)
 and  /work/SRC/openSUSE:Factory/.gedit.new (New)


Package is gedit, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gedit/gedit.changes  2012-06-10 
21:51:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.gedit.new/gedit.changes 2012-10-03 
10:25:43.0 +0200
@@ -1,0 +2,32 @@
+Mon Sep 24 20:57:54 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Wed Sep 19 18:18:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + Handle a command line specifying a big line number
+  + Extensive snippet collection for docbook
+  + Misc bugfixes
+  + Updated translations.
+
+---
+Fri Aug 31 07:11:25 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Improvements in snippets plugin
+  + Use autoreconf instead gnome-autogen
+  + Misc bugfixes
+  + Updated translations.
+
+---
+Sat Jul 21 13:13:04 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.1:
+  + Improved html snippets
+  + Misc bugfixes
+  + Updated translations.
+
+---

Old:

  gedit-3.4.2.tar.xz

New:

  gedit-3.6.0.tar.xz



Other differences:
--
++ gedit.spec ++
--- /var/tmp/diff_new_pack.nlyKsl/_old  2012-10-03 10:25:44.0 +0200
+++ /var/tmp/diff_new_pack.nlyKsl/_new  2012-10-03 10:25:44.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   gedit
-Version:3.4.2
+Version:3.6.0
 Release:0
 Summary:Small and lightweight UTF-8 text editor
 License:GPL-2.0+
 Group:  Productivity/Text/Editors
 Url:http://www.gnome.org
-Source: 
http://download.gnome.org/sources/gedit/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gedit/3.6/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE gedit-desktop.patch -- adds more MIME types and change 
icon
 Patch0: gedit-desktop.patch
 BuildRequires:  enchant-devel
@@ -92,10 +92,10 @@
 %configure \
 --disable-scrollkeeper \
 --enable-python
-make %{?jobs:-j%jobs} V=1
+make %{?_smp_mflags} V=1
 
 %install
-%makeinstall
+%make_install
 find %{buildroot} -type f -name '*.la' -delete -print
 %suse_update_desktop_file -N gedit -G Text Editor gedit TextEditor
 %find_lang %{name} %{?no_lang_C}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit glade for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package glade for openSUSE:Factory checked 
in at 2012-10-03 10:26:06

Comparing /work/SRC/openSUSE:Factory/glade (Old)
 and  /work/SRC/openSUSE:Factory/.glade.new (New)


Package is glade, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/glade/glade.changes  2012-05-22 
10:09:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.glade.new/glade.changes 2012-10-03 
10:26:11.0 +0200
@@ -1,0 +2,42 @@
+Wed Sep 19 19:56:31 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.14.0:
+  + Updated GtkAssistant support (bgo#664276)
+  + Set new property accel-group on action groups to make menu item
+accel work properly (bgo#684041)
+  + Do not abort if a project has a uninstantiable or abstract
+class object instead load it as an object stub and let the user
+decide what to do (bgo#646259)
+  + Fixed runtime warning on GladeBaseEditor and GladeSignalEditor
+dispose methods
+  + Do not explicit set window bg as it should be handled by gtk.
+  + Sync close-button with the original gedit widget.
+  + Use new documentation infrastructure
+  + Added load/save/edit support for style class name=foo/
+/style, (bgo#658035)
+  + Use Action Appearance not supported for GTK 2.12 but added to
+widgets in Glade 3.8.2 (bgo#679589)
+  + Added glade_displayable_value_set_disabled() functions to
+disable GdkModifierType reserved values
+  + Added build/mingw-w64 directory with script to cross compile
+and create windows installer using nsis
+  + Fixes bug #675977 Don't hard-code library search paths
+  + And many others cleanups and fixes
+  + Bugs fixed: #679487, bgo#679721
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstreams port to the new documentation infrastructure.
+- Rename libgladeui-2-0 to libgladeui-2-4, following upstreams
+  soname bump.
+
+---
+Sat May 12 20:44:59 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.13.0:
+  + Implemented Glade UI in glade.
+  + Implemented GladePreferences dialog (bgo#588981).
+  + Replaced deprecated font and color selection dialogs with font
+and color chooser dialogs.
+  + Added GladeSignalEditor::detail-suggestions signal
+  + Updated translations.
+
+---

Old:

  glade-3.12.1.tar.xz

New:

  glade-3.14.0.tar.xz



Other differences:
--
++ glade.spec ++
--- /var/tmp/diff_new_pack.bNkld6/_old  2012-10-03 10:26:12.0 +0200
+++ /var/tmp/diff_new_pack.bNkld6/_new  2012-10-03 10:26:12.0 +0200
@@ -17,20 +17,20 @@
 
 
 Name:   glade
-Version:3.12.1
+Version:3.14.0
 Release:0
 Summary:User Interface Builder for GTK+
 License:GPL-2.0+
 Group:  Development/Tools/GUI Builders
 Url:http://glade.gnome.org/
-Source: 
http://download.gnome.org/sources/glade/3.12/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/glade/3.14/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(gtk+-3.0) = 3.4.0
+BuildRequires:  yelp-tools
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.5.17
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(pygobject-3.0) = 2.90.4
 Recommends: %{name}-lang
@@ -40,12 +40,12 @@
 Glade is a RAD tool to enable quick  easy development of user
 interfaces for the Gtk+ toolkit and the GNOME desktop environment.
 
-%package -n libgladeui-2-0
+%package -n libgladeui-2-4
 Summary:User Interface Builder for GTK+
 Group:  Development/Tools/GUI Builders
 Recommends: %{name}-lang
 
-%description -n libgladeui-2-0
+%description -n libgladeui-2-4
 Glade is a RAD tool to enable quick  easy development of user
 interfaces for the Gtk+ toolkit and the GNOME desktop environment.
 
@@ -63,7 +63,7 @@
 %package -n libgladeui-2-devel
 Summary:User Interface Builder for GTK+ -- Development Files
 Group:  Development/Libraries/C and C++
-Requires:   libgladeui-2-0 = %{version}
+Requires:   libgladeui-2-4 = %{version}
 Requires:   typelib-1_0-Gladeui-2_0 = %{version}
 # The gtk-doc documentation is not parallel installable (bnc#646997)
 Conflicts:  libgladeui-1-devel
@@ -99,21 +99,15 @@
 %desktop_database_postun
 %icon_theme_cache_postun
 
-%post -n libgladeui-2-0 -p /sbin/ldconfig
+%post -n libgladeui-2-4 -p /sbin/ldconfig
 
-%postun -n libgladeui-2-0 -p /sbin/ldconfig
+%postun 

commit gedit-plugins for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gedit-plugins for openSUSE:Factory 
checked in at 2012-10-03 10:25:58

Comparing /work/SRC/openSUSE:Factory/gedit-plugins (Old)
 and  /work/SRC/openSUSE:Factory/.gedit-plugins.new (New)


Package is gedit-plugins, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gedit-plugins/gedit-plugins.changes  
2012-05-07 22:47:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.gedit-plugins.new/gedit-plugins.changes 
2012-10-03 10:26:00.0 +0200
@@ -1,0 +2,23 @@
+Mon Sep 24 20:57:25 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Use the textview instead of the overlay for the overlayed color
+button.
+
+---
+Wed Sep 19 18:19:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Color picker now shows an overlayed color button when a
+hexadecimal color is selected
+  + Misc bugfixes
+  + Updated translations.
+
+---
+Sun Aug 19 11:05:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.1:
+  + Misc bugfixes
+  + Updated translations.
+
+---

Old:

  gedit-plugins-3.4.0.tar.xz

New:

  gedit-plugins-3.6.0.tar.xz



Other differences:
--
++ gedit-plugins.spec ++
--- /var/tmp/diff_new_pack.fhDfzj/_old  2012-10-03 10:26:01.0 +0200
+++ /var/tmp/diff_new_pack.fhDfzj/_new  2012-10-03 10:26:01.0 +0200
@@ -21,9 +21,9 @@
 Summary:A collection of plugins for gedit
 License:GPL-2.0+
 Group:  Productivity/Editors/Other
-Version:3.4.0
+Version:3.6.0
 Release:0
-Source: 
http://download.gnome.org/sources/gedit-plugins/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gedit-plugins/3.6/%{name}-%{version}.tar.xz
 Url:http://live.gnome.org/GeditPlugins
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
@@ -32,9 +32,9 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(dbus-python)
 BuildRequires:  pkgconfig(gedit) = 3.2.1
-BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(gtksourceview-3.0)
-BuildRequires:  pkgconfig(libpeas-gtk-1.0)
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.4.0
+BuildRequires:  pkgconfig(gtksourceview-3.0) = 3.0.0
+BuildRequires:  pkgconfig(libpeas-gtk-1.0) = 1.0.0
 BuildRequires:  pkgconfig(vte-2.90)
 Requires:   %{name}-lang = %{version}
 Requires:   gedit

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-desktop for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gnome-desktop for openSUSE:Factory 
checked in at 2012-10-03 10:26:27

Comparing /work/SRC/openSUSE:Factory/gnome-desktop (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-desktop.new (New)


Package is gnome-desktop, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gnome-desktop/gnome-desktop.changes  
2012-05-22 10:09:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-desktop.new/gnome-desktop.changes 
2012-10-03 10:26:29.0 +0200
@@ -1,0 +2,120 @@
+Tue Sep 25 20:46:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0.1:
+  + gnome-xkb-info: Fix introspection element-type annotations
+(bgo#684802).
+
+---
+Mon Sep 24 10:57:03 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + gnome-xkb-info: Fix a memory leak (bgo#684140)
+  + Updated translations.
+
+---
+Fri Sep  7 18:08:07 UTC 2012 - vu...@opensuse.org
+
+- Remove %IS_DEFAULT_GNOME_DESKTOP conditionals for everything
+  related to the documentation: now that they were ported to
+  yelp-tools, they can't conflict with some old GNOME 2 docs.
+- Remove libgnome-desktop-3-2 Conflicts in
+  libgnome-desktop-3_0-common: the file conflict is now gone (with
+  the port to yelp-tools), and since we never had this new package
+  in Factory, the Conflicts is useless.
+
+---
+Tue Sep  4 19:12:56 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + gnome-xkb-info: Honor the 'show-all-sources' gsettings key
+(bgo#682240)
+  + Make 'Mirrored Displays' string consistent with the
+control-center (bgo#592412)
+  + Thumbnails: Determine the correct mime type when we still know
+the filename (bgo#655406)
+  + Remove the temporary file when saving a thumbnail fails and
+show an error when saving a thumbnail fails (bgo#681942)
+  + Updated translations.
+
+---
+Wed Aug 22 08:51:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + GnomeBG:
+- Fix crash if default background not found
+- Don't use C99 declarations
+  + Import libgsystem and use it to read thumbnails with O_NOATIME
+  + gnome-xkb-info:
+- Parse XKB options
+- Use glib's slice allocator for small structures
+  + Increase the size of thumbnails to 256
+  + Bugs fixed: bgo#680326, bgo#680354, bgo#681897, bgo#681929,
+bgo#682004, bgo#682252.
+  + Updated translations.
+
+---
+Wed Aug 15 08:08:15 UTC 2012 - dims...@opensuse.org
+
+- Split out a libgnome-3_0-common package containing the data
+  files. Having them in the library package hinders parallel
+  installability of more than one libgnome-desktop package. This
+  package conflicts with libgnome-desktop-3-2 because of common
+  files.
+
+---
+Tue Aug  7 07:36:36 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + Update to new GMutex API
+  + GnomeWallClock: add ignore-date property
+  + Port to new documentation infrastructure
+  + gnome-bg: load the default background if the configured one is
+invalid
+  + Updated translations.
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstreams switch to the new documentation
+  infrastructure.
+- Drop special handling for openSUSE 11.1, 11.2 and 11.3: they are
+  end of life.
+
+---
+Tue Jul 17 11:36:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Fix many documentation syntax warnings.
+  + Bugs fixed: bgo#672030, bgo#679858.
+
+---
+Tue Jun 26 16:48:47 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + gnome-bg:
+- Fix color conversion for solid backgrounds
+- Force property update when doing new crossfade frame
+  + gnome-rr:
+- Add gnome_rr_output_get_ids_from_edid()
+- Document the default DPI setting
+- Revert Allow rotation if the virtual size has the correct
+  number of pixels
+  + pnp-ids:
+- Add test program
+- Add loop for speed testing the ID fetching
+  + Move thumbnails into XDG_CACHE_HOME
+  + Updated translations.
+
+---
+Fri Jun  8 15:16:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Add api to parse and describe XML layouts (bgo#676583)
+  + Make monitor labels translucent and click-through (bgo#675696)
+  + Fix a crash in background 

commit gnome-dictionary for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gnome-dictionary for 
openSUSE:Factory checked in at 2012-10-03 10:26:50

Comparing /work/SRC/openSUSE:Factory/gnome-dictionary (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-dictionary.new (New)


Package is gnome-dictionary, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gnome-dictionary/gnome-dictionary.changes
2012-03-29 13:53:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-dictionary.new/gnome-dictionary.changes   
2012-10-03 10:26:54.0 +0200
@@ -1,0 +2,17 @@
+Tue Sep 25 16:14:28 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+- Replace pkgconfig(gnome-doc-utils) BuildRequires with yelp-tools:
+  even though not specified in NEWS, this release switched to the
+  new documentation infrastructure.
+
+---
+Thu Jun  7 21:47:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Drop usage of deprecated methods
+  + Use the new GMenu API
+  + Updated translations.
+
+---

Old:

  gnome-dictionary-3.4.0.tar.xz

New:

  gnome-dictionary-3.6.0.tar.xz



Other differences:
--
++ gnome-dictionary.spec ++
--- /var/tmp/diff_new_pack.hjcDKe/_old  2012-10-03 10:26:57.0 +0200
+++ /var/tmp/diff_new_pack.hjcDKe/_new  2012-10-03 10:26:57.0 +0200
@@ -17,17 +17,17 @@
 
 
 Name:   gnome-dictionary
-Version:3.4.0
+Version:3.6.0
 Release:0
 Summary:Utility to look up words in dictionary sources
 License:GPL-2.0+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org
-Source: 
http://download.gnome.org/sources/gnome-dictionary/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-dictionary/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  intltool = 0.40.0
 BuildRequires:  update-desktop-files
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0) = 2.28.0
-BuildRequires:  pkgconfig(gnome-doc-utils) = 0.3.2
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.0.0
 Recommends: %{name}-lang
 Conflicts:  gnome-utils  3.3.1
@@ -96,9 +96,7 @@
 %{_mandir}/man1/%{name}.1%{?ext_man}
 %{_datadir}/glib-2.0/schemas/org.gnome.dictionary.gschema.xml
 %{_datadir}/applications/%{name}.desktop
-%dir %{_datadir}/gnome/help/%{name}
-%doc %{_datadir}/gnome/help/%{name}/C/
-%doc %{_datadir}/omf/%{name}/%{name}-C.omf
+%doc %{_datadir}/help/C/%{name}/
 
 %files lang -f %{name}.lang
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libgsf for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libgsf for openSUSE:Factory checked 
in at 2012-10-03 10:27:19

Comparing /work/SRC/openSUSE:Factory/libgsf (Old)
 and  /work/SRC/openSUSE:Factory/.libgsf.new (New)


Package is libgsf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libgsf/libgsf.changes2012-05-07 
22:48:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgsf.new/libgsf.changes   2012-10-03 
10:27:20.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep  3 18:57:48 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.14.24:
+  + Fix namespace issues (bgo#672512)
+  + Fix build after introspection implementation (bgo#673029).
+- Pass --enable-introspection to configure: it's currently disabled
+  by default.
+
+---

Old:

  libgsf-1.14.23.tar.xz

New:

  libgsf-1.14.24.tar.xz



Other differences:
--
++ libgsf.spec ++
--- /var/tmp/diff_new_pack.ul3nlG/_old  2012-10-03 10:27:21.0 +0200
+++ /var/tmp/diff_new_pack.ul3nlG/_new  2012-10-03 10:27:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libgsf
-Version:1.14.23
+Version:1.14.24
 Release:0
 Summary:Extensible I/O abstraction library for dealing with structured 
file formats
 License:GPL-2.0+ ; LGPL-2.1+
@@ -30,7 +30,7 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(glib-2.0) = 2.26.0
-BuildRequires:  pkgconfig(gobject-introspection-1.0) = 0.6.4
+BuildRequires:  pkgconfig(gobject-introspection-1.0) = 1.0.0
 BuildRequires:  pkgconfig(libxml-2.0) = 2.4.16
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # bug437293
@@ -112,7 +112,8 @@
 
 %build
 %configure --with-pic \
---disable-static
+--disable-static \
+--enable-introspection
 make %{?_smp_mflags}
 
 %install

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit liblouis for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package liblouis for openSUSE:Factory 
checked in at 2012-10-03 10:27:43

Comparing /work/SRC/openSUSE:Factory/liblouis (Old)
 and  /work/SRC/openSUSE:Factory/.liblouis.new (New)


Package is liblouis, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/liblouis/liblouis.changes2012-09-13 
00:03:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.liblouis.new/liblouis.changes   2012-10-03 
10:27:45.0 +0200
@@ -1,0 +2,31 @@
+Tue Sep 25 06:46:24 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.1:
+  + Braille Table Improvements
+- Fix encoding problem in italian table and added more
+  character definitions.
+- Rename it-it-g1.utb to it-it-comp6.utb and it-it-g1.utb2 to
+  it-it-comp8.utb.
+  + Bug fixes:
+- Fix outputPos and inlen where an input character generates
+  multiple output characters.
+
+---
+Mon Sep 17 09:40:42 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.0:
+  + New features:
+- New Braille tables
+  . Estonian grade 0
+  . Portuguese 8 dot Computer braille
+- UTF-8 support in tables
+- Improvements to the python bindings
+- Add a doctest infrastructure
+- Support for Python 3 in the Python bindings
+  + Improved C-based test framework
+  + Improved documentation
+  + Braille table improvements
+  + Bug fixes
+- Remove checks for outdated openSUSE versions (= 11.2).
+
+---
python-louis.changes: same change

Old:

  liblouis-2.4.1.tar.gz

New:

  liblouis-2.5.1.tar.gz



Other differences:
--
++ liblouis.spec ++
--- /var/tmp/diff_new_pack.kckSNC/_old  2012-10-03 10:27:46.0 +0200
+++ /var/tmp/diff_new_pack.kckSNC/_new  2012-10-03 10:27:46.0 +0200
@@ -20,9 +20,8 @@
 
 Name:   liblouis
 %define _name   liblouis
-Version:2.4.1
+Version:2.5.1
 Release:0
-# FIXME: on update to  2.4.1, change = to  in Obsoletes
 Summary:Braille Translator and Back-Translator
 License:LGPL-3.0+
 Group:  Productivity/Other
@@ -36,9 +35,6 @@
 BuildRequires:  python
 Requires:   liblouis2 = %{version}
 %py_requires
-%if %suse_version = 1110
-%define python_sitelib %{py_sitedir}
-%endif
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -67,7 +63,7 @@
 Group:  System/Libraries
 # We used to have a package named liblouis, until 2.4.1.
 Provides:   %{name} = %{version}
-Obsoletes:  %{name} = %{version}
+Obsoletes:  %{name}  %{version}
 
 %description -n liblouis2
 Liblouis is an open-source braille translator and back-translator.

++ python-louis.spec ++
--- /var/tmp/diff_new_pack.kckSNC/_old  2012-10-03 10:27:46.0 +0200
+++ /var/tmp/diff_new_pack.kckSNC/_new  2012-10-03 10:27:46.0 +0200
@@ -20,9 +20,8 @@
 
 Name:   python-louis
 %define _name   liblouis
-Version:2.4.1
+Version:2.5.1
 Release:0
-# FIXME: on update to  2.4.1, change = to  in Obsoletes
 Summary:Braille Translator and Back-Translator - Python Bindings
 License:LGPL-3.0+
 Group:  Development/Languages/Python
@@ -36,9 +35,6 @@
 BuildRequires:  python
 Requires:   liblouis2 = %{version}
 %py_requires
-%if %suse_version = 1110
-%define python_sitelib %{py_sitedir}
-%endif
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -67,7 +63,7 @@
 Group:  Development/Languages/Python
 # We used to have a package named liblouis, until 2.4.1.
 Provides:   %{name} = %{version}
-Obsoletes:  %{name} = %{version}
+Obsoletes:  %{name}  %{version}
 
 %description -n liblouis2
 Liblouis is an open-source braille translator and back-translator.

++ liblouis-2.4.1.tar.gz - liblouis-2.5.1.tar.gz ++
 192220 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libnice for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libnice for openSUSE:Factory checked 
in at 2012-10-03 10:28:13

Comparing /work/SRC/openSUSE:Factory/libnice (Old)
 and  /work/SRC/openSUSE:Factory/.libnice.new (New)


Package is libnice, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libnice/libnice.changes  2012-07-18 
17:24:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.libnice.new/libnice.changes 2012-10-03 
10:28:15.0 +0200
@@ -1,0 +2,23 @@
+Fri Sep 14 20:05:54 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.1.3:
+  + Dribble mode: You can set remote candidates while gathering the
+local ones
+  + Add support for GStreamer 1.0, will compile plugins for both
+1.0 and 0.10 by default
+  + Cache GSocketAddress in UdpBsdSocket, creating it is very slow
+- Add gstreamer-libnice sub package: the new GStreamer 1.0 plugin.
+- No longer recommend gstreamer-0_10-libnice from libnice10, but
+  newly add supplements to the two gstreamer plugin sub packages,
+  triggering automatic installation when libnice and any the
+  respective gstreamer version is installed.
+- Replace gstreamer-0_10-devel (and even older gstreamer010-devel)
+  BuildRequires, in favor of new pkgconfig() style variants:
+  + For gstreamer 0.10:
+- gstreamer-0.10
+- gstreamer-base-0.10
+  + For gstreamer 1.0
+- gstreamer-1.0
+- gstreamer-base-1.0
+
+---

Old:

  libnice-0.1.2.tar.gz

New:

  libnice-0.1.3.tar.gz



Other differences:
--
++ libnice.spec ++
--- /var/tmp/diff_new_pack.QmpMI2/_old  2012-10-03 10:28:16.0 +0200
+++ /var/tmp/diff_new_pack.QmpMI2/_new  2012-10-03 10:28:16.0 +0200
@@ -17,49 +17,51 @@
 
 
 Name:   libnice
-Version:0.1.2
+Version:0.1.3
 Release:0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version}  1030
-BuildRequires:  gstreamer-0_10-devel
-%else
-BuildRequires:  gstreamer010-devel
-%endif
-BuildRequires:  glib2-devel = 2.13
-BuildRequires:  libgupnp-igd-devel
-Url:http://nice.freedesktop.org/
-Source: http://nice.freedesktop.org/releases/%{name}-%{version}.tar.gz
 Summary:Interactive Connectivity Establishment implementation
 License:MPL-1.1 or LGPL-2.1
 Group:  System/Libraries
+Url:http://nice.freedesktop.org/
+Source: http://nice.freedesktop.org/releases/%{name}-%{version}.tar.gz
+BuildRequires:  libgupnp-igd-devel
+BuildRequires:  pkgconfig(glib-2.0) = 2.13
+BuildRequires:  pkgconfig(gstreamer-0.10) = 0.10.0
+BuildRequires:  pkgconfig(gstreamer-1.0) = 0.11.91
+BuildRequires:  pkgconfig(gstreamer-base-0.10) = 0.10.0
+BuildRequires:  pkgconfig(gstreamer-base-1.0) = 0.11.91
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 libnice is an implementation of the IETF's draft Interactive
 Connectivity Establishment standard (ICE).
 
-
-
 %package -n libnice10
 Summary:Interactive Connectivity Establishment implementation
 Group:  System/Libraries
-Recommends: gstreamer-0_10-libnice
 
 %description -n libnice10
 libnice is an implementation of the IETF's draft Interactive
 Connectivity Establishment standard (ICE).
 
+%package -n gstreamer-libnice
+Summary:Interactive Connectivity Establishment implementation - 
GStreamer 1.0
+Group:  System/Libraries
+Supplements:packageand(libnice10:gstreamer)
 
+%description -n gstreamer-libnice
+libnice is an implementation of the IETF's draft Interactive
+Connectivity Establishment standard (ICE)
 
 %package -n gstreamer-0_10-libnice
-Summary:Interactive Connectivity Establishment implementation - 
GStreamer plug-in
+Summary:Interactive Connectivity Establishment implementation - 
GStreamer 0.10
 Group:  System/Libraries
+Supplements:packageand(libnice10:gstreamer-0_10)
 
 %description -n gstreamer-0_10-libnice
 libnice is an implementation of the IETF's draft Interactive
 Connectivity Establishment standard (ICE).
 
-
-
 %package devel
 Summary:Interactive Connectivity Establishment implementation - 
development files
 Group:  Development/Libraries/C and C++
@@ -71,36 +73,35 @@
 libnice is an implementation of the IETF's draft Interactive
 Connectivity Establishment standard (ICE).
 
-
-
 %prep
 %setup -q
 
 %build
 %configure --disable-static
-%{__make}
+make
 
 %check
-%{__make} check \
-%if 0%{?qemu_user_space_build}
-|| echo ignore test suite failure in qemu, it is not threadsafe
-%endif
+# make check disabled - Since version 0.1.3, libnice tries to interact with NM 
during make check
+#make check \
+#%if 

commit libproxy for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libproxy for openSUSE:Factory 
checked in at 2012-10-03 10:28:49

Comparing /work/SRC/openSUSE:Factory/libproxy (Old)
 and  /work/SRC/openSUSE:Factory/.libproxy.new (New)


Package is libproxy, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libproxy/libproxy-plugins.changes
2012-06-10 23:13:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.libproxy.new/libproxy-plugins.changes   
2012-10-03 10:28:51.0 +0200
@@ -16 +16 @@
-  + Introduce build_mozjs defnies, currently set to 0
+  + Introduce build_mozjs defines, currently set to 0
@@ -18 +18 @@
-  + conditionally buildrequire pkgconfig(mozjs185)
+  + Conditionally buildrequire pkgconfig(mozjs185)
libproxy.changes: same change



Other differences:
--
libproxy.spec: same change
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libpt2 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libpt2 for openSUSE:Factory checked 
in at 2012-10-03 10:29:55

Comparing /work/SRC/openSUSE:Factory/libpt2 (Old)
 and  /work/SRC/openSUSE:Factory/.libpt2.new (New)


Package is libpt2, Maintainer is dli...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libpt2/libpt2.changes2012-06-06 
10:28:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.libpt2.new/libpt2.changes   2012-10-03 
10:29:56.0 +0200
@@ -1,0 +2,14 @@
+Thu Aug 23 22:33:52 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.10.7:
+  + Add global flag to prevent trying to get canonical name when
+doing host lookup by name.
+  + Add support for GNU/Hurd.
+- Changes from version 2.10.6:
+  + Add encryption (StartTLS) support for LDAP
+  + Use more intuitive Pulse default device name.
+  + IPv6 support for PDNS.
+  + Disable IPv6 by default.
+  + Various bug fixes and other code changes.
+
+---

Old:

  ptlib-2.10.5.tar.bz2

New:

  ptlib-2.10.7.tar.xz



Other differences:
--
++ libpt2.spec ++
--- /var/tmp/diff_new_pack.f4hLxH/_old  2012-10-03 10:29:58.0 +0200
+++ /var/tmp/diff_new_pack.f4hLxH/_new  2012-10-03 10:29:58.0 +0200
@@ -23,16 +23,16 @@
 
 Name:   libpt2
 %define _name   ptlib
-Version:2.10.5
+Version:2.10.7
 Release:0
-# FIXME: when upgrading, check if the dc plugin builds with the current 
version of libdc1394
-%define _version 2_10_5
+# FIXME: when upgrading, check if the dc plugin builds with the current 
version of libdc1394. - Last check: 2.10.7 / 23.8.2012
+%define _version 2_10_7
 Summary:Portable Windows Library from Equivalence Pty. Ltd. version 2
 License:MPL-1.0
 Group:  System/Libraries
 Url:http://www.opalvoip.org/
 # https://sourceforge.net/projects/opalvoip
-Source: %{_name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/ptlib/2.10/%{_name}-%{version}.tar.xz
 # PATCH-MISSING-TAG libpt2-fix-avc-plugin.patch je...@suse.com -- Fix build 
for avc-plugin. 
 Patch1: libpt2-fix-avc-plugin.patch 
 BuildRequires:  SDL-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libsigc++2 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libsigc++2 for openSUSE:Factory 
checked in at 2012-10-03 10:30:17

Comparing /work/SRC/openSUSE:Factory/libsigc++2 (Old)
 and  /work/SRC/openSUSE:Factory/.libsigc++2.new (New)


Package is libsigc++2, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libsigc++2/libsigc++2.changes2011-09-23 
02:10:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsigc++2.new/libsigc++2.changes   
2012-10-03 10:30:18.0 +0200
@@ -1,0 +2,12 @@
+Mon Sep 24 07:57:39 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.2.11:
+  + Fix comma operator in libsigc++ lambda expressions (bgo#342911)
+  + Added SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE
+(bgo#672555)
+  + Use std::size_t and std::ptrdiff_t instead
+  + Fix 'make check' with gcc 4.7.
+  + Enable test_lambda in 'make check' (bgo#669128).
+- Clean spec-file using spec-cleaner.
+
+---

Old:

  libsigc++-2.2.10.tar.bz2

New:

  libsigc++-2.2.11.tar.xz



Other differences:
--
++ libsigc++2.spec ++
--- /var/tmp/diff_new_pack.nVm0x8/_old  2012-10-03 10:30:20.0 +0200
+++ /var/tmp/diff_new_pack.nVm0x8/_new  2012-10-03 10:30:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libsigc++2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,20 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libsigc++2
 %define _name libsigc++
-BuildRequires:  gcc-c++ pkg-config
-Version:2.2.10
-Release:1
-Group:  System/Libraries
-License:LGPL-2.1+
+Version:2.2.11
+Release:0
 Summary:Typesafe Signal Framework for C++
+License:LGPL-2.1+
+Group:  System/Libraries
 Url:http://libsigc.sourceforge.net/
-Source: 
http://download.gnome.org/sources/libsigc++/2.2/%{_name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/libsigc++/2.2/%{_name}-%{version}.tar.xz
 Source99:   baselibs.conf
+BuildRequires:  gcc-c++
+BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -40,9 +39,8 @@
 of use unmatched by other C++ callback libraries.
 
 %package -n libsigc-2_0-0
-License:LGPL-2.1+
-Group:  System/Libraries
 Summary:Typesafe Signal Framework for C++
+Group:  System/Libraries
 Provides:   %{name} = %{version}
 Obsoletes:  %{name}  %{version}
 
@@ -55,10 +53,10 @@
 of use unmatched by other C++ callback libraries.
 
 %package devel
-License:LGPL-2.1+
-Group:  Development/Libraries/C and C++
 Summary:Typesafe Signal Framework for C++
-Requires:   libsigc-2_0-0 = %{version} libstdc++-devel
+Group:  Development/Libraries/C and C++
+Requires:   libsigc-2_0-0 = %{version}
+Requires:   libstdc++-devel
 
 %description devel
 This library implements a full callback system for use in widget
@@ -75,19 +73,16 @@
 # FIXME: Cannot autoreconf, bad templates:
 #ACLOCAL=aclocal -I scripts autoreconf -f -i
 %configure --disable-static --with-pic
-%{__make} %{?jobs:-j%jobs}
-
-%check
-export MALLOC_CHECK_=2 MALLOC_PERTURB_=$((${RANDOM:-256} % 256))
-%{__make} check
-unset MALLOC_CHECK_ MALLOC_PERTURB_
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 rm -f %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%check
+export MALLOC_CHECK_=2 MALLOC_PERTURB_=$((${RANDOM:-256} % 256))
+make check
+unset MALLOC_CHECK_ MALLOC_PERTURB_
 
 %post -n libsigc-2_0-0 -p /sbin/ldconfig
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libsoup for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libsoup for openSUSE:Factory checked 
in at 2012-10-03 10:30:38

Comparing /work/SRC/openSUSE:Factory/libsoup (Old)
 and  /work/SRC/openSUSE:Factory/.libsoup.new (New)


Package is libsoup, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libsoup/libsoup.changes  2012-04-20 
15:18:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsoup.new/libsoup.changes 2012-10-03 
10:30:40.0 +0200
@@ -1,0 +2,157 @@
+Mon Sep 24 17:55:56 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.40.0:
+  + Updated translations.
+
+---
+Mon Sep 17 22:23:04 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.39.92:
+  + Fixed some g_warnings (and a possible crash) with the
+soup_request_send_async() (bgo#683404).
+  + Fixed a hang with SoupSessionSync (bgo#682923).
+  + Handle empty Cache-Control headers.
+  + Updated translations.
+
+---
+Tue Sep  4 15:11:54 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.91:
+  + Added missing annotations.
+  + Fixed a crash (bgo#682569)
+  + Fixed the SoupMessage:network-event signal
+  + Bugs fixed: bgo#683200
+  + Updated translations.
+
+---
+Tue Aug 21 08:44:52 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.90:
+  + Added SoupMultipartInputStream, for handling multipart
+responses (particularly multipart/x-mixed-replace) (bgo#656684)
+  + Fixed a potential crash in SoupSessionAsync after the session
+is finalized
+  + Fixed a regression in soup_tls_is_public_suffix() (bgo#681085)
+  + Added a SOUP_MESSAGE_IDEMPOTENT flag, so that apps can bypass
+the POSTs must be sent on new connections check, which was
+causing evolution-ews to have to create a new connection for
+every request (bgo#681493)
+  + Changed SoupSession so that pending SoupMessages now hold a ref
+on the session. It is possible that this will break code that
+was depending on the old, dumb, behavior (where unreffing the
+session with messages pending would cause those messages to be
+cancelled), in which case this will be reverted before 2.40.
+  + Fixed memory leaks found by valgrind
+  + Cleaned up some code in SoupCache (bgo#681509)
+  + Updated translations.
+
+---
+Tue Aug  7 09:23:03 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.5:
+  + Fixed several bugs in the soup-message-io updates that could
+cause hangs or I/O errors (bgo#679527)
+  + Fixed SoupServer:async-context to work properly again
+  + Further fixes to soup_uri_normalize() when using the
+unescape_extra parameter. (bgo#680018)
+  + Fixed soup_xmlrpc_parse_method_call() to handle the case where
+there is no params element (which is legal) (bgo#671661)
+  + Fixed the deprecation warning on soup_message_headers_get()
+(bgo#680143)
+  + Added warnings to some erroneous SoupSocket usages rather than
+returning bogus data (bgo#673083)
+  + Fixed build under Windows/MinGW
+  + SoupSocket no longer emits the readable signal when a socket
+is disconnected if that socket is non-blocking
+  + Updated public suffix list to the current version
+  + Updated translations.
+
+---
+Tue Jul 17 18:07:18 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.4.1:
+  + Fixed indentation problems in tld-parser.py so it will work
+under python 3 (bgo#680089)
+  + Actually fixed cookies in non-suffixed/private domains, which
+still didn't work after the last fix (bgo#679230)
+  + Updated translations.
+
+---
+Tue Jul 17 09:51:32 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.4:
+  + Fixed the SoupRequest codepaths to properly retry in the case
+where the server closes a persistent connection when we try to
+use it (bgo#679527)
+  + Fixed the content-type and content-length of requests retrieved
+from SoupCache (bgo#680029)
+  + Fixed the handling of cookies in non-suffixed and private
+domains (localhost, foo.local, etc., bgo#679230)
+  + Fixed cookie parsing to allow attribute values on secure and
+ HttpOnly (bgo#678753)
+  + Fixed a (rare) crash when closing the stream returned from
+SoupRequestHTTP.
+  + Bugs fixed: bgo#671770, bgo#678909, bgo#680055, bgo#680018.
+  + Updated translations.
+
+---
+Tue Jun 26 17:10:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.39.3:
+  + Added new functions for comparing 

commit libwebkit for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libwebkit for openSUSE:Factory 
checked in at 2012-10-03 10:32:03

Comparing /work/SRC/openSUSE:Factory/libwebkit (Old)
 and  /work/SRC/openSUSE:Factory/.libwebkit.new (New)


Package is libwebkit, Maintainer is dmzh...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libwebkit/libwebkit.changes  2012-08-23 
16:05:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libwebkit.new/libwebkit.changes 2012-10-03 
10:32:04.0 +0200
@@ -1,0 +2,246 @@
+Sat Sep 22 11:40:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.9.92:
+  + Properly expose legend elements to ATs.
+  + The new accessibility CanvasRole is now mapped to
+ATK_ROLE_CANVAS.
+  + Fix the build in Windows platform.
+  + Fix an infinite loop in accessibility code.
+  + Fix the build with GStreamer 0.11.
+  + Fix a crash in network backend with non-UTF8 HTTP header names.
+  + Properly close audio device after playing sound.
+  + Sanitize the suggested filename when building the download
+destination URI in WebKit2.
+  + Fix a crash in WebKit2 when navigating between pages in the
+history cache.
+  + Purge unused favicons from IconDatabase after 30 days.
+  + Fix a crash in
+AccessibilityObject::accessibilityPlatformIncludesObject().
+  + Fix a crash in WebCore::HTMLSelectElement::selectedIndex().
+  + Fix caret-moved events not emitted for certain content.
+  + Fix incorrect/unexpected characters in the text of certain
+accessibles.
+  + Implement AccessibilityUIElement::titleUIElement() and
+AccessibilityUIElement::stringValue().
+  + Fix LLint build with -g -02.
+
+---
+Fri Sep 14 07:06:06 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.9.91:
+  + Fix more API breaks in DOM bindings introduced in previous
+versions.
+  + Properly process GDK_SMOOTH_SCROLL events.
+
+---
+Sat Sep  8 06:52:11 UTC 2012 - vu...@opensuse.org
+
+- Add pkgconfig(gudev-1.0) BuildRequires: this is needed for the
+  gamepad support. It's disabled right now, but this build
+  dependency doesn't harm us, so add it to have it automatically
+  enabled when it becomes ready.
+
+---
+Thu Aug 30 19:17:21 UTC 2012 - dims...@opensuse.org
+
+- Switch to GStreamer 1.0:
+  + Pass --with-gstreamer=1.0 to configure
+  + Replace pkgconfig(gstreamer*-0.10) BuildRequires with
+pkgconfig(gstramer*-1.0).
+
+---
+Thu Aug 23 20:19:35 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.9.90:
+  + WebKit2 GTK+ improvements:
+- change spellchecker languages API a bit
+- add destroy notify parameter to
+  webkit_web_context_register_uri_scheme()
+- replace webkit_web_view_replace_content() with
+  webkit_web_view_load_alternate_html()
+- rename WebKitWebView print-requested signal to print
+- API to set preferred languages
+- add webkit_uri_response_get_suggested_filename()
+- add API to save a web page in MHTML format
+- implement smart separators for context menu
+  + Make WebKitWebView work again inside a GtkOverlay by not using
+a native window for Accelerated Compositing implementation.
+  + Fix several API breaks in DOM bindings introduced in 1.9.6.
+  + Fix invalid UTF-8 data passed to the spellchecker.
+  + Fix caret-moved events not emitted for certain content.
+  + Expose ROLE_TOGGLE_BUTTON instead of ROLE_PUSH_BUTTON when
+aria-pressed is present.
+  + Fix several memory leaks.
+- Add pkgconfig(xcomposite) BuildRequires: new dependency for
+  accelerated output.
+- Introduce _withwk2 defines in order to easy toggle webkit2 on and
+  off.
+- Introduce wk2sover defines: webkitgtk and webkit2gtk do not
+  share the same sover.
+- Drop webkit-fixbuild.patch: fixed upstream.
+
+---
+Thu Aug 16 23:59:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.9.6:
+  + WebKit2 GTK+ improvements:
+- add spell checker API
+- add WebKitWebView::submit-form signal
+- paste primary selection when middle clicking in X11
+  + Add API to get the suggested filename from a
+WebKitNetworkResponse.
+  + Add webkit_web_view_get_snapshot() to WebKit1 API
+  + Make sure WebKitWebView always has a main resource and it has
+already been set when the load has been committed, even for
+pages loaded from the history cache in WebKit2
+  + Fix a run time critical warning when gdk_window_get_cursor() is
+called before WebKitWebView has been realized in WebKit2
+  + Fix continuous insertion of newlines in Etherpad
+  + Fix several memory leaks
+- 

commit mousetweaks for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package mousetweaks for openSUSE:Factory 
checked in at 2012-10-03 10:33:05

Comparing /work/SRC/openSUSE:Factory/mousetweaks (Old)
 and  /work/SRC/openSUSE:Factory/.mousetweaks.new (New)


Package is mousetweaks, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/mousetweaks/mousetweaks.changes  2012-05-22 
08:16:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.mousetweaks.new/mousetweaks.changes 
2012-10-03 10:33:07.0 +0200
@@ -1,0 +2,37 @@
+Mon Sep 24 20:18:07 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Use bug tracker url in README that is also browsable with GNOME
+account
+  + Sync description in doap file with README and add homepage
+information
+  + Updated translations.
+
+---
+Mon Sep 17 22:17:41 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Mon Sep  3 18:46:31 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Remove outdated help files (bgo#681268)
+  + Updated translations.
+- Drop gnome-doc-utils-devel BuildRequires: there is no help to be
+  built.
+- Remove --disable-scrollkeeper configure parameter: no longer
+  known.
+
+---
+Wed Jul 18 09:09:10 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Use xdg runtime dir for pid file (bgo#675447)
+  + Switch to g_clear_object
+  + Add missing break statement in switch statement
+  + Remove outdated reference to gnome-panel applets from man page
+  + Updated translations.
+
+---

Old:

  mousetweaks-3.4.2.tar.xz

New:

  mousetweaks-3.6.0.tar.xz



Other differences:
--
++ mousetweaks.spec ++
--- /var/tmp/diff_new_pack.XDuBac/_old  2012-10-03 10:33:08.0 +0200
+++ /var/tmp/diff_new_pack.XDuBac/_new  2012-10-03 10:33:08.0 +0200
@@ -17,15 +17,14 @@
 
 
 Name:   mousetweaks
-Version:3.4.2
+Version:3.6.0
 Release:0
 Summary:Tweak mouse settings in GNOME
 License:GPL-3.0
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org
-Source0:
http://download.gnome.org/sources/mousetweaks/3.4/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/mousetweaks/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gsettings-desktop-schemas)
@@ -48,11 +47,11 @@
 translation-update-upstream
 
 %build
-%configure --disable-scrollkeeper
-make %{?jobs:-j%jobs}
+%configure
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 %find_lang %{name} %{?no_lang_C}
 %fdupes %{buildroot}
 
@@ -68,13 +67,6 @@
 %files
 %defattr(-, root, root)
 %doc AUTHORS NEWS README TODO
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/%{name}/
-%doc %{_datadir}/gnome/help/%{name}/C/
-%dir %{_datadir}/omf/
-%dir %{_datadir}/omf/%{name}/
-%doc %{_datadir}/omf/%{name}/%{name}-C.omf
 %{_bindir}/*
 %{_mandir}/man1/*.1.gz
 %{_datadir}/GConf/gsettings/mousetweaks.convert

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit NetworkManager-openconnect for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-openconnect for 
openSUSE:Factory checked in at 2012-10-03 10:33:15

Comparing /work/SRC/openSUSE:Factory/NetworkManager-openconnect (Old)
 and  /work/SRC/openSUSE:Factory/.NetworkManager-openconnect.new (New)


Package is NetworkManager-openconnect, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/NetworkManager-openconnect/NetworkManager-openconnect.changes
2012-04-12 09:42:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-openconnect.new/NetworkManager-openconnect.changes
   2012-10-03 10:33:17.0 +0200
@@ -1,0 +2,27 @@
+Mon Aug 13 08:44:32 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.6.2:
+  + Ensure IPv6 UI components appear in the editor.
+
+---
+Tue Aug  7 18:23:42 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.6.0:
+  + Do not fail if no IPv6 address is retrieved.
+  + Ensure invalid IPv6 address triggers an error.
+
+---
+Fri Jun 29 06:57:47 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.5.95:
+  + Better handling of connection cancellation.
+  + Add IPv6 support.
+  + Allow building with gnutls instead of openssl.
+  + Use multiple domains if given.
+  + Store passwords in GNOME keyring.
+  + Updated translations.
+- Add pkgconfig(gnome-keyring-1) BuildRequires: New dependency.
+- Drop NetworkManager-openconnect-0.9.4-dropping_privs_check.patch:
+  fixed upstream.
+
+---

Old:

  NetworkManager-openconnect-0.9.4-dropping_privs_check.patch
  NetworkManager-openconnect-0.9.4.0.tar.xz

New:

  NetworkManager-openconnect-0.9.6.2.tar.xz



Other differences:
--
++ NetworkManager-openconnect.spec ++
--- /var/tmp/diff_new_pack.k4C8rH/_old  2012-10-03 10:33:18.0 +0200
+++ /var/tmp/diff_new_pack.k4C8rH/_new  2012-10-03 10:33:18.0 +0200
@@ -17,25 +17,24 @@
 
 
 Name:   NetworkManager-openconnect
-Version:0.9.4.0
+Version:0.9.6.2
 Release:0
 Summary:NetworkManager VPN support for OpenConnect
 License:GPL-2.0+ ; LGPL-2.1
 Group:  Productivity/Networking/System
 Url:http://www.gnome.org/projects/NetworkManager
 Source0:
http://download.gnome.org/sources/NetworkManager-openconnect/0.9/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM 
NetworkManager-openconnect-0.9.4-dropping_privs_check.patch bnc#732915 
toddrme2...@gmail.com -- Taken from git, add check for success when dropping 
privs
-Patch0: NetworkManager-openconnect-0.9.4-dropping_privs_check.patch
 BuildRequires:  intltool
-BuildRequires:  openconnect-devel
+BuildRequires:  openconnect-devel = 3.02
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(NetworkManager) = 0.9.4
+BuildRequires:  pkgconfig(NetworkManager) = 0.9.6
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gconf-2.0)
+BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(libnm-glib) = 0.9.4
-BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.4
-BuildRequires:  pkgconfig(libnm-util) = 0.9.4
+BuildRequires:  pkgconfig(libnm-glib) = 0.9.6
+BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.6
+BuildRequires:  pkgconfig(libnm-util) = 0.9.6
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   %{name}-frontend
 Requires:   NetworkManager = 0.8.995
@@ -63,7 +62,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 translation-update-upstream
 
 %build

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit NetworkManager-openvpn for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-openvpn for 
openSUSE:Factory checked in at 2012-10-03 10:33:51

Comparing /work/SRC/openSUSE:Factory/NetworkManager-openvpn (Old)
 and  /work/SRC/openSUSE:Factory/.NetworkManager-openvpn.new (New)


Package is NetworkManager-openvpn, Maintainer is gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/NetworkManager-openvpn/NetworkManager-openvpn.changes
2012-03-29 11:41:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-openvpn.new/NetworkManager-openvpn.changes
   2012-10-03 10:33:53.0 +0200
@@ -1,0 +2,13 @@
+Tue Aug  7 18:25:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.6.0:
+  + Updated translations.
+
+---
+Fri Jun 29 06:57:51 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.5.95:
+  + Add option to randomize connect order to openvpn servers/peers
+  + Updated translations.
+
+---

Old:

  NetworkManager-openvpn-0.9.4.0.tar.xz

New:

  NetworkManager-openvpn-0.9.6.0.tar.xz



Other differences:
--
++ NetworkManager-openvpn.spec ++
--- /var/tmp/diff_new_pack.iu18AY/_old  2012-10-03 10:33:54.0 +0200
+++ /var/tmp/diff_new_pack.iu18AY/_new  2012-10-03 10:33:54.0 +0200
@@ -20,7 +20,7 @@
 Summary:NetworkManager VPN support for OpenVPN
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Version:0.9.4.0
+Version:0.9.6.0
 Release:0
 # FIXME .desktop icons are currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
@@ -30,13 +30,13 @@
 Patch0: nm-openvpn-desktop.patch
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(NetworkManager) = 0.9.4
+BuildRequires:  pkgconfig(NetworkManager) = 0.9.6
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(libnm-glib) = 0.9.4
-BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.4
-BuildRequires:  pkgconfig(libnm-util) = 0.9.4
+BuildRequires:  pkgconfig(libnm-glib) = 0.9.6
+BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.6
+BuildRequires:  pkgconfig(libnm-util) = 0.9.6
 Requires:   %{name}-frontend
 Requires:   NetworkManager = 0.8.995
 Requires:   openvpn


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit NetworkManager-pptp for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-pptp for 
openSUSE:Factory checked in at 2012-10-03 10:34:00

Comparing /work/SRC/openSUSE:Factory/NetworkManager-pptp (Old)
 and  /work/SRC/openSUSE:Factory/.NetworkManager-pptp.new (New)


Package is NetworkManager-pptp, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-pptp/NetworkManager-pptp.changes  
2012-03-29 11:42:03.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-pptp.new/NetworkManager-pptp.changes 
2012-10-03 10:34:01.0 +0200
@@ -1,0 +2,13 @@
+Tue Aug  7 18:25:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.6.0:
+  + Update FSF Address.
+
+---
+Fri Jun 29 06:57:56 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.5.95:
+  + Fix sensitivity of auth methods when checking/unchecking MPPE
+  + Updated translations.
+
+---

Old:

  NetworkManager-pptp-0.9.4.0.tar.xz

New:

  NetworkManager-pptp-0.9.6.0.tar.xz



Other differences:
--
++ NetworkManager-pptp.spec ++
--- /var/tmp/diff_new_pack.whxX7A/_old  2012-10-03 10:34:02.0 +0200
+++ /var/tmp/diff_new_pack.whxX7A/_new  2012-10-03 10:34:02.0 +0200
@@ -21,7 +21,7 @@
 Summary:NetworkManager VPN support for PPTP
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Version:0.9.4.0
+Version:0.9.6.0
 Release:0
 # FIXME .desktop icons are currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
@@ -32,13 +32,13 @@
 BuildRequires:  grep
 BuildRequires:  intltool
 BuildRequires:  ppp-devel
-BuildRequires:  pkgconfig(NetworkManager) = 0.9.4
+BuildRequires:  pkgconfig(NetworkManager) = 0.9.6
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(libnm-glib) = 0.9.4
-BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.4
-BuildRequires:  pkgconfig(libnm-util) = 0.9.4
+BuildRequires:  pkgconfig(libnm-glib) = 0.9.6
+BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.6
+BuildRequires:  pkgconfig(libnm-util) = 0.9.6
 Requires:   %{name}-frontend = %{version}
 Requires:   NetworkManager = 0.8.995
 Requires:   pptp


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit NetworkManager-vpnc for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-vpnc for 
openSUSE:Factory checked in at 2012-10-03 10:34:13

Comparing /work/SRC/openSUSE:Factory/NetworkManager-vpnc (Old)
 and  /work/SRC/openSUSE:Factory/.NetworkManager-vpnc.new (New)


Package is NetworkManager-vpnc, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-vpnc/NetworkManager-vpnc.changes  
2012-03-29 11:42:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-vpnc.new/NetworkManager-vpnc.changes 
2012-10-03 10:34:15.0 +0200
@@ -1,0 +2,12 @@
+Tue Aug  7 18:28:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.6.0:
+  + Support for Application Version setting
+
+---
+Fri Jun 29 06:58:01 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.9.5.95:
+  + Updated translations.
+
+---

Old:

  NetworkManager-vpnc-0.9.4.0.tar.xz

New:

  NetworkManager-vpnc-0.9.6.0.tar.xz



Other differences:
--
++ NetworkManager-vpnc.spec ++
--- /var/tmp/diff_new_pack.0CcUq5/_old  2012-10-03 10:34:16.0 +0200
+++ /var/tmp/diff_new_pack.0CcUq5/_new  2012-10-03 10:34:16.0 +0200
@@ -20,7 +20,7 @@
 Summary:NetworkManager VPN Support for vpnc
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Version:0.9.4.0
+Version:0.9.6.0
 Release:0
 # FIXME .desktop icon is currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
@@ -31,13 +31,13 @@
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(NetworkManager) = 0.9.4
+BuildRequires:  pkgconfig(NetworkManager) = 0.9.6
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(libnm-glib) = 0.9.4
-BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.4
-BuildRequires:  pkgconfig(libnm-util) = 0.9.4
+BuildRequires:  pkgconfig(libnm-glib) = 0.9.6
+BuildRequires:  pkgconfig(libnm-glib-vpn) = 0.9.6
+BuildRequires:  pkgconfig(libnm-util) = 0.9.6
 Requires:   %{name}-frontend
 Requires:   NetworkManager = 0.8.995
 Requires:   gnome-keyring


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit orca for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package orca for openSUSE:Factory checked in 
at 2012-10-03 10:36:08

Comparing /work/SRC/openSUSE:Factory/orca (Old)
 and  /work/SRC/openSUSE:Factory/.orca.new (New)


Package is orca, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orca/orca.changes2012-05-22 
08:17:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.orca.new/orca.changes   2012-10-03 
10:36:09.0 +0200
@@ -1,0 +2,129 @@
+Mon Sep 17 21:27:48 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.5.92:
+  + LibreOffice Writer documents should be fully readable and
+navigable via the braille display.
+  + Orca modifier gets stuck on in Bypass Mode (bgo#683795).
+  + Outdated documentation needs to be removed (bgo#683447).
+  + Fix for broken tag in several help translations.
+  + Updated translations.
+- Add pkgconfig(atk) and pkgconfig(atk-bridge-2.0)
+  BuildRequires, configure now checks for them.
+
+---
+Tue Sep  4 08:51:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + More UnicodeDecodeErrors (bgo#681892)
+  + Updated translations.
+
+---
+Tue Aug 21 09:05:42 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + WebKitGtk:
+- Make WebKitGtk content fully braille scrollable without
+  having to use caret navigation
+- Fixes for Orca failing to display certain text-only inline
+  WebKitGtk lists and sections
+- Work around the bogus caretOffset we get for WebKitGtk
+  content which doesn't have the caret
+- Don't display the braille EOL indicator for non-editable
+  WebKitGtk paragraphs
+- Handle cases where the default script returns an empty string
+  for WebKitGtk content
+- Fix for Orca skipping over WebKitGtk list items when
+  scrolling in braille
+- bgo#664557: Orca does not always reflect the caret location
+  in braille for WebKitGtk content
+- bgo#681441: Orca should present inline lists and sections
+  from WebKitGtk on the same line in braille
+- bgo#681387: Orca displays no braille when lists which are not
+  listboxes claim focus in WebKitGtk content
+- bgo#681363: Do not display roles for non-widget lists, list
+  items, and panels in WebKitGtk content
+  + Use new documentation infrastructure
+  + Move Gecko list presentation code into general presentation code
+  + Bugs fixed: bgo#681569, bgo#626032
+  + Updated translations.
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstream.
+
+---
+Mon Aug  6 21:56:17 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + WebKitGtk
+- Cannot perform braille scrolling amongst objects in WebKitGtk
+  content (bgo#677320)
+- SayAll does not work as expected when focus is on a link in
+  WebKitGtk content (bgo#681294)
+- Fix for traceback when determining whether a MouseButtonEvent
+  should be ignored
+  + Updated translations.
+
+---
+Tue Jul 17 08:44:55 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Structural navigation should not kick in when in editable
+WebKitGtk objects
+  + Access object extents as a bounding box
+  + bgo#679514: settings_test.py script fails because of some still
+remaining yaml files
+  + Updated translations.
+
+---
+Mon Jun 25 17:33:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.3:
+  + bgo#677748: Launcher icon needs 256x256 variant
+  + Fix for Orca not presenting the 'Command not found' label in
+the gnome-shell run dialog
+  + Work around for Orca not presenting the gnome-shell run dialog
+text in braille
+  + Handle text implementations which report a caret offset of -1
+when at the end
+  + Eliminate unneeded and/or problematic imports
+  + Remove more old, no-longer-used/needed code
+  + Updated translations.
+
+---
+Thu Jun  7 17:57:50 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Improve Orca's presentation of gnome-shell/clutter dialog boxes
+  + Handle traceback seen with embedded object chars in Yelp
+  + Fix a bug in the state change notifiers
+  + Don't ignore MouseButtonEvent instances due to timestamp
+  + Fix for Orca saying Primary for mnemonic Ctrl++
+  + Fix for speech keybindings failing when no speech settings have
+been saved
+  + Remove the now-redundant 'orca -q/--quit' and 'orca
+-f/--forcequit' (pkill works reliably)
+  + Ensure we 

commit p11-kit for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package p11-kit for openSUSE:Factory checked 
in at 2012-10-03 10:37:16

Comparing /work/SRC/openSUSE:Factory/p11-kit (Old)
 and  /work/SRC/openSUSE:Factory/.p11-kit.new (New)


Package is p11-kit, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/p11-kit/p11-kit.changes  2012-03-19 
09:58:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.p11-kit.new/p11-kit.changes 2012-10-03 
10:37:19.0 +0200
@@ -1,0 +2,28 @@
+Fri Sep  7 11:04:40 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.14:
+  + Change default for user-config to merge
+  + Always URI-encode the 'id' attribute in PKCS#11 URIs
+  + Expect a .module extension on module configs
+  + Windows compatibility fixes
+  + Testing fixes
+  + Build fixes
+
+---
+Mon Jul 23 06:26:02 UTC 2012 - zai...@opensuse.org
+
+- Update to version 0.13:
+  + Don't allow reading of PIN files larger than 4096 bytes
+  + If a module is not marked as critical then ignore init failure
+  + Use preconditions to check for input problems and out of memory
+  + Add enable-in and disable-in options to module config
+  + Fix the flags in pin.h
+  + Use gcc extensions to check varargs during compile
+  + Fix crasher when a duplicate module is present
+  + Fix broken hashmap behavior
+  + Testing fixes
+  + Win32 build fixes
+  + 'p11-kit -h' now works
+  + Documentation fixes
+
+---

Old:

  p11-kit-0.12.tar.gz

New:

  p11-kit-0.14.tar.gz



Other differences:
--
++ p11-kit.spec ++
--- /var/tmp/diff_new_pack.fITFbx/_old  2012-10-03 10:37:20.0 +0200
+++ /var/tmp/diff_new_pack.fITFbx/_new  2012-10-03 10:37:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   p11-kit
-Version:0.12
+Version:0.14
 Release:0
 Summary:Library to work with PKCS#11 modules
 License:BSD-3-Clause

++ p11-kit-0.12.tar.gz - p11-kit-0.14.tar.gz ++
 14199 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit pixman for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package pixman for openSUSE:Factory checked 
in at 2012-10-03 10:37:38

Comparing /work/SRC/openSUSE:Factory/pixman (Old)
 and  /work/SRC/openSUSE:Factory/.pixman.new (New)


Package is pixman, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/pixman/pixman.changes2012-06-10 
23:13:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.pixman.new/pixman.changes   2012-10-03 
10:37:41.0 +0200
@@ -1,0 +2,19 @@
+Sat Jul 21 15:35:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.26.2:
+  + Some bug fixes.
+  + Custom build rules for ARM/iwMMXt.
+  + An important bug fix for MMX/x86.
+
+---
+Thu Jun 21 11:55:21 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.26.0:
+  + New support for MIPS DSPr2 ASE.
+  + Improved performance with the iwMMXt instruction set.
+  + New support for the  Loongson SIMD instruction set.
+  + Several bugs fixed.
+  + Cleanups.
+  + Performance improvements.
+
+---

Old:

  pixman-0.24.4.tar.gz

New:

  pixman-0.26.2.tar.gz



Other differences:
--
++ pixman.spec ++
--- /var/tmp/diff_new_pack.FCf5eO/_old  2012-10-03 10:37:42.0 +0200
+++ /var/tmp/diff_new_pack.FCf5eO/_new  2012-10-03 10:37:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pixman
-Version:0.24.4
+Version:0.26.2
 Release:0
 Summary:Pixel manipulation library
 License:MIT

++ pixman-0.24.4.tar.gz - pixman-0.26.2.tar.gz ++
 82371 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-atspi for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-atspi for openSUSE:Factory 
checked in at 2012-10-03 10:38:00

Comparing /work/SRC/openSUSE:Factory/python-atspi (Old)
 and  /work/SRC/openSUSE:Factory/.python-atspi.new (New)


Package is python-atspi, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-atspi/python-atspi.changes
2012-03-29 14:04:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-atspi.new/python-atspi.changes   
2012-10-03 10:38:03.0 +0200
@@ -1,0 +2,54 @@
+Tue Sep 25 21:27:15 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.0:
+  + Install caret focus tracker into $bindir, rather than
+$pythondir/examples.
+  + Fix incorrect FSF address in file headers.
+
+---
+Tue Sep 18 15:34:27 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.5.92:
+  + Fix missing argument for set_current_value method (bgo#683302).
+  + Include interim focus tracker as an example.
+- Add hack to set executable bit to example interim focus tracker.
+
+---
+Tue Sep  4 08:54:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.91:
+  + Fix autogen.sh for non-sourcedir build.
+
+---
+Mon Aug  6 21:55:41 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.5:
+  + Add getLocalizedName for actions.
+
+---
+Tue Jul 17 21:14:17 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.4:
+  + Wrap all interfaces (bgo#679044).
+
+---
+Wed Jun 27 17:25:00 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.3:
+  + Fix truth evaluation for accessibles in Python 3.
+  + dict.iteritems() is no longer supported in Python 3
+(bgo#678497)
+  + Re-add setTimeout (it seems that it was lost among the Python 3
+updates).
+- Changes from version 2.5.2:
+  + More Python 3 fixes.
+  + Fix getStates regression (bgo#677070)
+
+---
+Tue May  1 17:30:07 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.5.1:
+  + Add setTimeout.
+  + Some clean-ups for Python 3.
+
+---

Old:

  pyatspi-2.4.0.tar.xz

New:

  pyatspi-2.6.0.tar.xz



Other differences:
--
++ python-atspi.spec ++
--- /var/tmp/diff_new_pack.diPnae/_old  2012-10-03 10:38:04.0 +0200
+++ /var/tmp/diff_new_pack.diPnae/_new  2012-10-03 10:38:04.0 +0200
@@ -18,13 +18,13 @@
 
 Name:   python-atspi
 %define _name   pyatspi
-Version:2.4.0
+Version:2.6.0
 Release:0
 Summary:Assistive Technology Service Provider Interface - Python 
bindings
 License:LGPL-2.0
 Group:  Development/Libraries/Python
 Url:http://www.gnome.org/
-Source0:
http://download.gnome.org/sources/pyatspi/2.4/%{_name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/pyatspi/2.6/%{_name}-%{version}.tar.xz
 BuildRequires:  fdupes
 # Needed to have typelib() Requires.
 BuildRequires:  gobject-introspection
@@ -34,13 +34,13 @@
 # The bindings are really useful only if the at-spi registry is running. But
 # it's not a strict runtime dependency.
 Recommends: at-spi2-core
-# Old versions of at-spi 1.x provided the same files
-Conflicts:  at-spi  1.29.3
 # Virtual package, so that apps can depend on it, without having to know which
 # at-spi stack is used. Only the default at-spi stack should define it.
 Provides:   pyatspi
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
+# Old versions of at-spi 1.x provided the same files
+Conflicts:  at-spi  1.29.3
 %py_requires
 
 %description
@@ -54,10 +54,10 @@
 
 %build
 %configure
-%__make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 %fdupes %{buildroot}%{python_sitelib}
 
 %clean
@@ -66,6 +66,7 @@
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING README
+%{_bindir}/magFocusTracker.py
 %{python_sitelib}/pyatspi/
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-qt4 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package python-qt4 for openSUSE:Factory 
checked in at 2012-10-03 10:38:41

Comparing /work/SRC/openSUSE:Factory/python-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.python-qt4.new (New)


Package is python-qt4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/python-qt4/python-qt4.changes2012-07-09 
10:03:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-qt4.new/python-qt4.changes   
2012-10-03 10:38:42.0 +0200
@@ -1,0 +2,12 @@
+Mon Oct  1 05:48:14 UTC 2012 - ei...@heavensinferno.net
+
+- Update to the latest upstream version:
+  - Added support for Qt v4.8.3.
+  - Added support for Qt v5-beta1 (QtCore, QtGui, QtHelp, QtNetwork, QtSql,
+QtSvg, QtWebKit and QtXml only).
+  - Implemented __str__ and __unicode__ for QChar.
+  - Added the missing QPointF operator*(qreal, QPointF).
+  - Added the customcompleter.py example.
+  - SIP v4.14 is now required.
+
+---
--- /work/SRC/openSUSE:Factory/python-qt4/python3-qt4.changes   2012-07-09 
10:03:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-qt4.new/python3-qt4.changes  
2012-10-03 10:38:42.0 +0200
@@ -1,0 +2,13 @@
+Mon Oct  1 05:49:09 UTC 2012 - ei...@heavensinferno.net
+
+- Updated to the latest upstream version:
+
+  - Added support for Qt v4.8.3.
+  - Added support for Qt v5-beta1 (QtCore, QtGui, QtHelp, QtNetwork, QtSql,
+QtSvg, QtWebKit and QtXml only).
+  - Implemented __str__ and __unicode__ for QChar.
+  - Added the missing QPointF operator*(qreal, QPointF).
+  - Added the customcompleter.py example.
+  - SIP v4.14 is now required.
+
+---

Old:

  PyQt-x11-gpl-4.9.4.tar.gz

New:

  PyQt-x11-gpl-4.9.5.tar.gz



Other differences:
--
++ python-qt4.spec ++
--- /var/tmp/diff_new_pack.fBvyTH/_old  2012-10-03 10:38:44.0 +0200
+++ /var/tmp/diff_new_pack.fBvyTH/_new  2012-10-03 10:38:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-qt4
-Version:4.9.4
+Version:4.9.5
 Release:0
 Summary:PyQt - python bindings for Qt 4
 License:SUSE-GPL-2.0-with-FLOSS-exception or GPL-3.0 or SUSE-NonFree
@@ -34,7 +34,7 @@
 BuildRequires:  libqt4-devel
 BuildRequires:  phonon-devel
 BuildRequires:  python-devel
-BuildRequires:  python-sip-devel
+BuildRequires:  python-sip-devel = 4.14
 %requires_gedbus-1-python
 %requires_gelibqt4-x11
 %if 0%{?sles_version} == 10

++ python3-qt4.spec ++
--- /var/tmp/diff_new_pack.fBvyTH/_old  2012-10-03 10:38:44.0 +0200
+++ /var/tmp/diff_new_pack.fBvyTH/_new  2012-10-03 10:38:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-qt4
-Version:4.9.4
+Version:4.9.5
 Release:0
 Summary:PyQt - python bindings for Qt 4
 License:SUSE-GPL-2.0-with-FLOSS-exception or GPL-3.0 or SUSE-NonFree

++ PyQt-x11-gpl-4.9.4.tar.gz - PyQt-x11-gpl-4.9.5.tar.gz ++
/work/SRC/openSUSE:Factory/python-qt4/PyQt-x11-gpl-4.9.4.tar.gz 
/work/SRC/openSUSE:Factory/.python-qt4.new/PyQt-x11-gpl-4.9.5.tar.gz differ: 
char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit seahorse-sharing for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package seahorse-sharing for 
openSUSE:Factory checked in at 2012-10-03 10:39:40

Comparing /work/SRC/openSUSE:Factory/seahorse-sharing (Old)
 and  /work/SRC/openSUSE:Factory/.seahorse-sharing.new (New)


Package is seahorse-sharing, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/seahorse-sharing/seahorse-sharing.changes
2012-03-29 14:06:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.seahorse-sharing.new/seahorse-sharing.changes   
2012-10-03 10:39:42.0 +0200
@@ -1,0 +2,12 @@
+Tue Sep 25 15:38:38 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Stable release: no changes since previous release.
+
+---
+Tue Sep 18 12:52:39 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---

Old:

  seahorse-sharing-3.4.0.tar.xz

New:

  seahorse-sharing-3.6.0.tar.xz



Other differences:
--
++ seahorse-sharing.spec ++
--- /var/tmp/diff_new_pack.ycfDGa/_old  2012-10-03 10:39:43.0 +0200
+++ /var/tmp/diff_new_pack.ycfDGa/_new  2012-10-03 10:39:43.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   seahorse-sharing
-Version:3.4.0
+Version:3.6.0
 Release:0
 Summary:Sharing of PGP public keys via DNS-SD and HKP
 License:GPL-2.0+
 Group:  Productivity/Security
 Url:http://projects.gnome.org/seahorse/
-Source: 
http://download.gnome.org/sources/seahorse-sharing/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/seahorse-sharing/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  gpg2
 BuildRequires:  gpgme-devel
 BuildRequires:  intltool

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit skelcd-control-openSUSE for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package skelcd-control-openSUSE for 
openSUSE:Factory checked in at 2012-10-03 10:40:02

Comparing /work/SRC/openSUSE:Factory/skelcd-control-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.skelcd-control-openSUSE.new (New)


Package is skelcd-control-openSUSE, Maintainer is loci...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/skelcd-control-openSUSE/skelcd-control-openSUSE.changes
  2012-07-02 11:16:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.skelcd-control-openSUSE.new/skelcd-control-openSUSE.changes
 2012-10-03 10:40:04.0 +0200
@@ -1,0 +2,5 @@
+Tue Oct  2 15:37:29 UTC 2012 - bwiedem...@suse.com
+
+- update to 12.3 repos
+
+---



Other differences:
--
++ control.xml ++
--- /var/tmp/diff_new_pack.1mcSDH/_old  2012-10-03 10:40:05.0 +0200
+++ /var/tmp/diff_new_pack.1mcSDH/_new  2012-10-03 10:40:05.0 +0200
@@ -200,18 +200,18 @@
extra_urls config:type=list
!-- Default update repository, bnc #381360 --
extra_url
-   baseurlhttp://download.opensuse.org/update/12.2//baseurl
+   baseurlhttp://download.opensuse.org/update/12.3//baseurl
 aliasrepo-update/alias
-nameopenSUSE-12.2-Update/name
+nameopenSUSE-12.3-Update/name
prod_dir//prod_dir
enabled config:type=booleantrue/enabled
autorefresh config:type=booleantrue/autorefresh
priority config:type=integer99/priority
/extra_url
extra_url
-   
baseurlhttp://download.opensuse.org/update/12.2-non-oss//baseurl
+   
baseurlhttp://download.opensuse.org/update/12.3-non-oss//baseurl
 aliasrepo-update-non-oss/alias
-nameopenSUSE-12.2-Update-Non-Oss/name
+nameopenSUSE-12.3-Update-Non-Oss/name
prod_dir//prod_dir
enabled config:type=booleantrue/enabled
autorefresh config:type=booleantrue/autorefresh
@@ -220,45 +220,45 @@
 
!-- Replacement for EXTRAURLS and OPTIONALURLS --
extra_url
-   
baseurlhttp://download.opensuse.org/distribution/12.2/repo/oss//baseurl
+   
baseurlhttp://download.opensuse.org/distribution/12.3/repo/oss//baseurl
 aliasrepo-oss/alias
-nameopenSUSE-12.2-Oss/name
+nameopenSUSE-12.3-Oss/name
prod_dir//prod_dir
enabled config:type=booleantrue/enabled
autorefresh config:type=booleantrue/autorefresh
priority config:type=integer99/priority
/extra_url
extra_url
-   
baseurlhttp://download.opensuse.org/distribution/12.2/repo/non-oss//baseurl
+   
baseurlhttp://download.opensuse.org/distribution/12.3/repo/non-oss//baseurl
 aliasrepo-non-oss/alias
-nameopenSUSE-12.2-Non-Oss/name
+nameopenSUSE-12.3-Non-Oss/name
prod_dir//prod_dir
enabled config:type=booleantrue/enabled
autorefresh config:type=booleantrue/autorefresh
priority config:type=integer99/priority
/extra_url
extra_url
-   
baseurlhttp://download.opensuse.org/debug/distribution/12.2/repo/oss//baseurl
+   
baseurlhttp://download.opensuse.org/debug/distribution/12.3/repo/oss//baseurl
 aliasrepo-debug/alias
-nameopenSUSE-12.2-Debug/name
+nameopenSUSE-12.3-Debug/name
prod_dir//prod_dir
enabled config:type=booleanfalse/enabled
autorefresh config:type=booleantrue/autorefresh
priority config:type=integer99/priority
/extra_url
 extra_url
-
baseurlhttp://download.opensuse.org/debug/update/12.2//baseurl
+
baseurlhttp://download.opensuse.org/debug/update/12.3//baseurl
 aliasrepo-debug-update/alias
-nameopenSUSE-12.2-Update-Debug/name
+nameopenSUSE-12.3-Update-Debug/name
 prod_dir//prod_dir
 enabled config:type=booleanfalse/enabled
 autorefresh config:type=booleantrue/autorefresh
 priority config:type=integer99/priority
 /extra_url
 extra_url
-
baseurlhttp://download.opensuse.org/debug/update/12.2-non-oss//baseurl
+
baseurlhttp://download.opensuse.org/debug/update/12.3-non-oss//baseurl
 

commit sound-juicer for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package sound-juicer for openSUSE:Factory 
checked in at 2012-10-03 10:40:11

Comparing /work/SRC/openSUSE:Factory/sound-juicer (Old)
 and  /work/SRC/openSUSE:Factory/.sound-juicer.new (New)


Package is sound-juicer, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/sound-juicer/sound-juicer.changes
2012-03-29 14:06:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.sound-juicer.new/sound-juicer.changes   
2012-10-03 10:40:12.0 +0200
@@ -1,0 +2,20 @@
+Thu Aug  9 07:06:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.0:
+  + GStreamer 1.0 port
+  + Remove use of some deprecated APIs
+  + Various bug fixes
+  + Updated translations.
+- Change pkgconfig(libmusicbrainz4) BuildRequires to
+  pkgconfig(libmusicbrainz5) following upstream port to new
+  library.
+- Change gstreamer010-plugins-base-devel to pkgconfig()
+  BuildRequires for gstreamer 1.0 following upstream port to
+  gstreamer 1.0: gstreamer-1.0, gstreamer-pbutils-1.0,
+  gstreamer-plugins-base-1.0.
+- Drop unneeded gstreamer010-plugins-good BuildRequires.
+- Change gconf2-devel BuildRequires to pkgconfig(gconf-2.0).
+- Add explicit pkgconfig() BuildRequires for libraries we were
+  taking for granted: glib-2.0, gobject-2.0, gthread-2.0.
+
+---

Old:

  sound-juicer-3.4.0.tar.xz

New:

  sound-juicer-3.5.0.tar.xz



Other differences:
--
++ sound-juicer.spec ++
--- /var/tmp/diff_new_pack.ImG2fq/_old  2012-10-03 10:40:13.0 +0200
+++ /var/tmp/diff_new_pack.ImG2fq/_new  2012-10-03 10:40:13.0 +0200
@@ -17,26 +17,29 @@
 
 
 Name:   sound-juicer
-Version:3.4.0
+Version:3.5.0
 Release:0
 Summary:Clean and Lean GNOME CD Ripper
 License:GPL-2.0+
 Group:  Productivity/Multimedia/CD/Grabbers
 Url:http://www.burtonini.com/blog/computers/sound-juicer/
-Source0:
http://download.gnome.org/sources/sound-juicer/3.4/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/sound-juicer/3.5/%{name}-%{version}.tar.xz
 BuildRequires:  brasero-devel
 BuildRequires:  fdupes
-BuildRequires:  gconf2-devel
 BuildRequires:  gnome-doc-utils-devel
-BuildRequires:  gstreamer010-plugins-base-devel
-BuildRequires:  gstreamer010-plugins-good
 BuildRequires:  intltool
 BuildRequires:  libcanberra-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(gconf-2.0)
+BuildRequires:  pkgconfig(glib-2.0) = 2.32
+BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(gstreamer-1.0)
+BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
+BuildRequires:  pkgconfig(gstreamer-plugins-base-1.0)
+BuildRequires:  pkgconfig(gthread-2.0)
 BuildRequires:  pkgconfig(libdiscid)
-BuildRequires:  pkgconfig(libmusicbrainz4)
-Requires:   gstreamer010-plugins-good
+BuildRequires:  pkgconfig(libmusicbrainz5)
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %gconf_schemas_prereq
@@ -56,9 +59,9 @@
 make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 %if 0%{?suse_version} = 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
+rm %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
 %endif
 %suse_update_desktop_file %{name} AudioVideo Player Audio
 %find_lang %{name} %{?no_lang_C}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sound-theme-freedesktop for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package sound-theme-freedesktop for 
openSUSE:Factory checked in at 2012-10-03 10:40:26

Comparing /work/SRC/openSUSE:Factory/sound-theme-freedesktop (Old)
 and  /work/SRC/openSUSE:Factory/.sound-theme-freedesktop.new (New)


Package is sound-theme-freedesktop, Maintainer is gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/sound-theme-freedesktop/sound-theme-freedesktop.changes
  2011-09-23 12:46:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.sound-theme-freedesktop.new/sound-theme-freedesktop.changes
 2012-10-03 10:40:28.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 25 21:39:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.8:
+  + Change default bell sound.
+
+---

Old:

  sound-theme-freedesktop-0.7.tar.bz2

New:

  sound-theme-freedesktop-0.8.tar.bz2



Other differences:
--
++ sound-theme-freedesktop.spec ++
--- /var/tmp/diff_new_pack.VESaBM/_old  2012-10-03 10:40:29.0 +0200
+++ /var/tmp/diff_new_pack.VESaBM/_new  2012-10-03 10:40:29.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package sound-theme-freedesktop (Version 0.7)
+# spec file for package sound-theme-freedesktop
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,15 @@
 #
 
 
-
 Name:   sound-theme-freedesktop
-Version:0.7
-Release:1
+Version:0.8
+Release:0
 # For details on the licenses used, see README
-License:GPL-2.0+
 Summary:freedesktop.org sound theme
-Url:http://0pointer.de/public/sound-theme-freedesktop.tar.gz
+License:GPL-2.0+
 Group:  System/Libraries
-Source: %{name}-%{version}.tar.bz2
+Url:http://0pointer.de/public/sound-theme-freedesktop.tar.gz
+Source: 
http://people.freedesktop.org/~mccann/dist/%{name}-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  glib2-devel
 BuildRequires:  intltool

++ sound-theme-freedesktop-0.7.tar.bz2 - 
sound-theme-freedesktop-0.8.tar.bz2 ++
 10118 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/sound-theme-freedesktop-0.7/CREDITS new/sound-theme-freedesktop-0.8/CREDITS
--- old/sound-theme-freedesktop-0.7/CREDITS 1970-01-01 01:00:00.0 
+0100
+++ new/sound-theme-freedesktop-0.8/CREDITS 2012-06-26 19:35:06.0 
+0200
@@ -0,0 +1,77 @@
+alarm-clock-elapsed
+Copyright: Tim/corsica_s
+URL: http://www.freesound.org/samplesViewSingle.php?id=67091
+License: CC-BY-SA (relicensed with permission from author)
+
+audio-channel-front-center
+audio-channel-front-left
+audio-channel-front-right
+audio-channel-rear-center
+audio-channel-rear-left
+audio-channel-rear-right
+audio-channel-side-left
+audio-channel-side-right
+audio-test-signal
+Copyright: The ALSA developers
+URL: 
http://git.alsa-project.org/?p=alsa-utils.git;a=tree;f=speaker-test/samples;hb=HEAD
+License: GPLv2+
+
+audio-volume-change
+Copyright: Lucas McCallister
+URL: http://www.freesound.org/samplesViewSingle.php?id=67091
+License: CC-BY-SA (relicensed with permission from author)
+
+trash-empty
+Copyright: Dr. Richard Boulanger et al
+URL: http://www.archive.org/details/Berklee44v10
+License: CC-BY Attribution 3.0 Unported
+
+complete
+Copyright: Dr. Richard Boulanger et al
+URL: http://www.archive.org/details/Berklee44v11
+License: CC-BY Attribution 3.0 Unported
+
+bell
+Copyright: Dr. Richard Boulanger et al
+URL: http://www.archive.org/details/Berklee44v12
+License: CC-BY Attribution 3.0 Unported
+
+
+camera-shutter
+screen-capture
+Copyright: freesound user horsthorstensen
+URL: http://www.freesound.org/samplesViewSingle.php?id=72714
+License: CC-BY-SA (relicensed with permission from author)
+
+device-added
+device-removed
+power-plug
+power-unplug
+network-connectivity-established
+network-connectivity-lost
+message
+dialog-information
+dialog-warning
+Copyright: Ivica Bukvic
+URL: 

commit telepathy-gabble for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package telepathy-gabble for 
openSUSE:Factory checked in at 2012-10-03 10:42:47

Comparing /work/SRC/openSUSE:Factory/telepathy-gabble (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-gabble.new (New)


Package is telepathy-gabble, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-gabble/telepathy-gabble.changes
2012-09-03 18:56:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-gabble.new/telepathy-gabble.changes   
2012-10-03 10:42:49.0 +0200
@@ -1,0 +2,24 @@
+Wed Sep 12 06:54:47 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.17.1:
+  + Enhancements:
+- fdo#32612: Old-style Tube channels have been removed.
+- Tube and Text channels are no longer announced together.
+  + Fixes:
+- Make sure capability discovery works for the camera-v1
+  capability bundle, avoiding an iChat bug in which it repeats
+  failed capability discovery requests in a rapid loop
+  (fdo#54634)
+- Fix some race conditions and other brokenness in the tests
+- Add pkgconfig(glib-2.0) BuildRequires so it can be versioned.
+
+---
+Mon Aug 27 08:11:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.0:
+  + Fix calls with android devices.
+  + Implement WLM jidlookup. This makes possible to add MSN
+contacts using XMPP.
+  + Fix google caps parsing.
+
+---

Old:

  telepathy-gabble-0.16.2.tar.gz

New:

  telepathy-gabble-0.17.1.tar.gz



Other differences:
--
++ telepathy-gabble.spec ++
--- /var/tmp/diff_new_pack.vY7IwT/_old  2012-10-03 10:42:50.0 +0200
+++ /var/tmp/diff_new_pack.vY7IwT/_new  2012-10-03 10:42:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   telepathy-gabble
-Version:0.16.2
+Version:0.17.1
 Release:0
 Summary:XMPP connection manager for Telepathy
 License:LGPL-2.1+
@@ -30,8 +30,9 @@
 BuildRequires:  libxslt-devel
 BuildRequires:  python-xml
 BuildRequires:  sqlite3-devel
-BuildRequires:  telepathy-glib-devel = 0.18.0
+BuildRequires:  telepathy-glib-devel = 0.19.7
 BuildRequires:  pkgconfig(dbus-glib-1)
+BuildRequires:  pkgconfig(glib-2.0) = 2.30
 Recommends: ca-certificates
 # doc subpackage removed during 12.2 development
 Provides:   %{name}-doc = %{version}

++ telepathy-gabble-0.16.2.tar.gz - telepathy-gabble-0.17.1.tar.gz ++
 15793 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-mission-control for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package telepathy-mission-control for 
openSUSE:Factory checked in at 2012-10-03 10:43:05

Comparing /work/SRC/openSUSE:Factory/telepathy-mission-control (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-mission-control.new (New)


Package is telepathy-mission-control, Maintainer is 
gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/telepathy-mission-control/telepathy-mission-control.changes
  2012-07-17 13:17:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.telepathy-mission-control.new/telepathy-mission-control.changes
 2012-10-03 10:43:07.0 +0200
@@ -1,0 +2,70 @@
+Fri Sep 21 07:07:22 UTC 2012 - dims...@opensuse.org
+
+- Update to version 5.13.2:
+  + Configuration changes:
+- Accounts are now stored in the telepathy/mission-control
+  subdirectory  of g_get_user_data_dir(). On Unix, this usually
+  means ~/.local/share/telepathy/mission-control (follows
+  $XDG_DATA_HOME and $XDG_DATA_DIRS variables)
+- ./configure --with-accounts-dir (at build time) and
+  $MC_ACCOUNTS_DIR (at runtime) no longer change where new
+  accounts are stored. They now set what Mission Control
+  considers to be the old location for accounts; accounts in
+  that directory will be moved into the new location. Using
+  this option is deprecated.
+  + Enhancements:
+- Migrate accounts and avatars from ~/.mission-control to the
+  location described above (fdo#35896)
+- More removals of obsolete code and interfaces (fdo#54633)
+  + Fixes:
+- Recover from incomplete password migrations caused by
+  upgrading to Empathy 3 while running MC 5.12.1 or older
+  (fdo#42088)
+- Omit generated file mcp-signals-marshal.h from tarballs
+
+---
+Mon Sep 10 11:21:20 UTC 2012 - dims...@opensuse.org
+
+- Update to version 5.13.1:
+  + Changes:
+- On Unix platforms, umask() is now required.
+- If a connection manager announces two or more channels in the
+  same NewChannels signal, behave as if it had announced each
+  channel separately (fdo#52305)
+- Improve mc-tool: display Account.Storage settings, add
+  Supersedes, add dump subcommand (fdo#53202)a
+- More internal reorganisation (fdo#54151)
+  + Fixes:
+- Passwords are now deleted from gnome-keyring correctly
+  (fdo#42088)
+- When migrating Butterfly accounts to Haze, do the migration
+  even if Butterfly isn't installed, and copy the password as
+  well as the username (deb#686835)
+- If compiled with UPower support, do not attempt to connect
+  while going to sleep
+- Set up the altered-one signal for account storage backends
+  correctly (fdo#52231)
+- If service-activated under both names
+  o.fd.Telepathy.MissionControl5 and
+  o.fd.Telepathy.AccountManager simultaneously, avoid one or
+  both failing to activate due to a race condition (fdo#53220)
+- When built for Android, don't use GSettings (fdo#53497).
+
+---
+Tue Jul 24 21:33:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 5.13.0:
+  + Changes:
+- Remove support for many deprecated interfaces (fdo#49753,
+  fdo#24762, fdo#24899, fdo#24914, fdo#49648)
+  + Fixes:
+- Stop using deprecated telepathy-glib symbols.
+- fix access to freed memory (fdo#51842)
+- fix existing channel dispatching after using present/delegate
+- Invalid GValue in libaccounts storage plugin (fdo#48646)
+- Do not change RequestedPresence when disabling the account,
+  otherwise it won't reconnect when enabling it (fdo#52259)
+- Let client decide which storage provider to use when creating
+  an account (fdo#52231).
+
+---

Old:

  telepathy-mission-control-5.12.1.tar.gz

New:

  telepathy-mission-control-5.13.2.tar.gz



Other differences:
--
++ telepathy-mission-control.spec ++
--- /var/tmp/diff_new_pack.pVvHnl/_old  2012-10-03 10:43:08.0 +0200
+++ /var/tmp/diff_new_pack.pVvHnl/_new  2012-10-03 10:43:08.0 +0200
@@ -19,7 +19,7 @@
 Url:http://mission-control.sourceforge.net/
 
 Name:   telepathy-mission-control
-Version:5.12.1
+Version:5.13.2
 Release:0
 Summary:Telepathy Mission Control instant messaging connection manager
 License:LGPL-2.1
@@ -32,7 +32,7 @@
 BuildRequires:  libgnome-keyring-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  python-xml
-BuildRequires:  telepathy-glib-devel = 0.17.5
+BuildRequires:  telepathy-glib-devel = 0.19.0
 

commit tomboy for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package tomboy for openSUSE:Factory checked 
in at 2012-10-03 10:43:14

Comparing /work/SRC/openSUSE:Factory/tomboy (Old)
 and  /work/SRC/openSUSE:Factory/.tomboy.new (New)


Package is tomboy, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/tomboy/tomboy.changes2012-05-22 
08:19:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.tomboy.new/tomboy.changes   2012-10-03 
10:43:16.0 +0200
@@ -1,0 +2,57 @@
+Tue Sep 25 06:47:07 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.12.0:
+  + Stable release - No changes compared to 1.11.7.
+
+---
+Tue Sep 18 13:05:06 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.7:
+  + Updated translations.
+
+---
+Mon Aug 20 20:36:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.6:
+  + Updated translations.
+
+---
+Mon Aug  6 18:44:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.5:
+  + Fix Evolution add-in gmime dependency for Ubuntu 12.04
+  + Add match count in note search (bg0#666194)
+  + Updated translations.
+
+---
+Tue Jul 17 08:12:28 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.4:
+  + Sanitize sync url (bgo#679148)
+  + Fix Gtk# url in windows install (bgo#678847)
+  + Updated translations.
+
+---
+Wed Jun 27 17:25:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.3:
+  + Updated translations.
+- Changes from version 1.11.2:
+  + Performance fix for note deletion (bgo#518431)
+  + Bump Mono profile to 4.0
+  + Ignore acronyms in spell-check (bgo#675783)
+  + Update documentation, command-line usage
+  + Updated translations.
+
+---
+Wed May 16 17:26:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.11.1:
+  + Allow cmdline args to be passed to add-ins (bgo#338860).
+  + Fix for multi-monitor configurations and notes off the screen
+(bgo#619888).
+  + Fix Typo in manpage '---note-path' (bgo#672963).
+  + Fix for RemoveBrokenLinks-with-search.
+  + Updated translations.
+
+---

Old:

  tomboy-1.10.2.tar.xz

New:

  tomboy-1.12.0.tar.xz



Other differences:
--
++ tomboy.spec ++
--- /var/tmp/diff_new_pack.rU0JdL/_old  2012-10-03 10:43:19.0 +0200
+++ /var/tmp/diff_new_pack.rU0JdL/_new  2012-10-03 10:43:19.0 +0200
@@ -19,13 +19,13 @@
 %define build_applet 0
 
 Name:   tomboy
-Version:1.10.2
+Version:1.12.0
 Release:0
 Summary:GNOME Note Taking Application
 License:LGPL-2.1+
 Group:  Productivity/Office/Other
 Url:http://projects.gnome.org/tomboy/
-Source: 
http://download.gnome.org/sources/tomboy/1.10/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/tomboy/1.12/%{name}-%{version}.tar.xz
 BuildRequires:  dbus-1-x11
 BuildRequires:  dbus-sharp-devel
 BuildRequires:  dbus-sharp-glib-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-10-03 10:46:13

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-05-22 10:10:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-10-03 10:46:15.0 +0200
@@ -1,0 +2,13 @@
+Tue Sep 18 11:45:56 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.4.3:
+  + Report unsupported errors from quvi
+  + Fix *.ts files being ignored (most of them aren't Qt Linguist
+files)
+  + Don't show zero length coming from quvi
+  + Don't add JPEG files as entries in Podcasts
+  + Make RSS feeds ending in '/' parseable
+  + Make resolution test case pass with newer versions of glib
+  + Build fixes.
+
+---

Old:

  totem-pl-parser-3.4.2.tar.xz

New:

  totem-pl-parser-3.4.3.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.X034As/_old  2012-10-03 10:46:16.0 +0200
+++ /var/tmp/diff_new_pack.X034As/_new  2012-10-03 10:46:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.4.2
+Version:3.4.3
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit vala for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package vala for openSUSE:Factory checked in 
at 2012-10-03 10:46:23

Comparing /work/SRC/openSUSE:Factory/vala (Old)
 and  /work/SRC/openSUSE:Factory/.vala.new (New)


Package is vala, Maintainer is ma...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/vala/vala.changes2012-07-18 
17:52:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.vala.new/vala.changes   2012-10-03 
10:46:25.0 +0200
@@ -1,0 +2,72 @@
+Mon Sep 24 20:17:27 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.18.0:
+  + Bug fixed: bgo#683922.
+
+---
+Sun Sep 16 20:56:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.7:
+  + Add libgnome-menu-3.0 bindings.
+  + Bug fixes and binding updates.
+
+---
+Mon Sep  3 18:48:07 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.6:
+  + Bug fixes and binding updates.
+
+---
+Mon Aug 20 10:52:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.5:
+  + Support subclassing of GLib.Source.
+  + Switch pango bindings to .gir.
+  + Add gstreamer-1.0 core bindings.
+  + Add gst-plugins-base-1.0 bindings.
+  + Add gobject-introspection-1.0 bindings.
+  + Bug fixes and binding updates.
+
+---
+Mon Aug  6 18:26:01 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.4:
+  + Warn when accessing static members with an instance reference.
+  + Recompute length when casting between array types.
+  + Support [GenericAccessors] attribute for interfaces.
+  + Deprecate implicit .begin for async methods.
+  + Drop Dova profile.
+  + Drop POSIX profile.
+  + Bug fixes and binding updates.
+
+---
+Tue Jul 17 08:10:40 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.3:
+  + Require and target GLib = 2.18.
+  + Support async creation methods.
+  + Bug fixes and binding updates.
+
+---
+Mon Jun 25 06:58:38 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.2:
+  + Bug fixes and binding updates.
+
+---
+Sun Jun 24 21:48:00 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.1:
+  + Improve assertion messages.
+  + Add --enable-gobject-tracing commandline option.
+  + Bug fixes and binding updates.
+
+---
+Sun Jun 24 20:07:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.17.0:
+  + Support simple method-level profiling.
+  + Add VALA_CHECK_MODULES and VALA_PROG_VAPIGEN to vala.m4.
+  + Bug fixes and binding updates
+
+---

Old:

  vala-0.16.1.tar.xz

New:

  vala-0.18.0.tar.xz



Other differences:
--
++ vala.spec ++
--- /var/tmp/diff_new_pack.ko3Hne/_old  2012-10-03 10:46:29.0 +0200
+++ /var/tmp/diff_new_pack.ko3Hne/_new  2012-10-03 10:46:29.0 +0200
@@ -17,23 +17,23 @@
 
 
 Name:   vala
-Version:0.16.1
+Version:0.18.0
 Release:0
-%define vala_version 0.16
-%define vala_libversion 0_16
+%define vala_version 0.18
+%define vala_libversion 0_18
 # The priority defines which version of vala, in case of multiple ones are 
installed
 # is to be used by default. The rule-of-thumb for vala is to use MAJORMINOR 
without
 # decimal separator, hoping they will not get to the idea to crate a 0.100 
release.
-%define vala_priority 16
+%define vala_priority 18
 Summary:Programming language for GNOME
 License:LGPL-2.0
 Group:  Development/Languages/Other
 Url:http://live.gnome.org/Vala
-Source0:
http://download.gnome.org/sources/vala/0.16/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/vala/0.18/%{name}-%{version}.tar.xz
 BuildRequires:  bison
 BuildRequires:  fdupes
 BuildRequires:  flex
-BuildRequires:  glib2-devel
+BuildRequires:  glib2-devel = 2.18.0
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 # Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xtrabackup for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package xtrabackup for openSUSE:Factory 
checked in at 2012-10-03 10:46:32

Comparing /work/SRC/openSUSE:Factory/xtrabackup (Old)
 and  /work/SRC/openSUSE:Factory/.xtrabackup.new (New)


Package is xtrabackup, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xtrabackup/xtrabackup.changes2012-08-15 
11:21:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.xtrabackup.new/xtrabackup.changes   
2012-10-03 10:46:34.0 +0200
@@ -1,0 +2,23 @@
+Tue Oct  2 18:03:21 UTC 2012 - andreas.stie...@gmx.de
+
+- update to 2.0.3
+- new features:
+  * innobackupex now supports new --move-back option that can be used 
+instead of --copy-back in case there isn’t enough free disk space 
+on the server to copy files. As this option removes backup files, 
+it must be used with caution.
+- bug fixes:
+  * Symlink for innobackupex-1.5.1 binary has been broken in the 
+previous version of XtraBackup.
+  * XtraBackup 2.0.2 was not backwards compatible which caused 
+incremental backups created with previous versions to fail on 
+prepare.
+  * Fix a regression that may potentially lead to a 5x increase in 
+disk space occupied by incremental backups.
+  * Fix a regression which caused incorrect handling of compressed 
+tablespaces with the page size of 16K, that were created between
+the last full or incremental and the next incremental backup.
+- packaging changes:
+  * improve upgrade from generic packages
+
+---

Old:

  percona-xtrabackup-2.0.2-nodoc.tar.gz

New:

  percona-xtrabackup-2.0.3-nodoc.tar.gz



Other differences:
--
++ xtrabackup.spec ++
--- /var/tmp/diff_new_pack.dKecPT/_old  2012-10-03 10:46:36.0 +0200
+++ /var/tmp/diff_new_pack.dKecPT/_new  2012-10-03 10:46:36.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0
 Group:  Productivity/Databases/Tools
 Name:   xtrabackup
-Version:2.0.2
+Version:2.0.3
 Release:0
 Url:http://www.percona.com/software/percona-xtrabackup/
 Source: percona-xtrabackup-%{version}-nodoc.tar.gz
@@ -33,6 +33,10 @@
 Patch0: percona-xtrabackup-2.0.2-nodoc.patch
 Patch1: mysql-5.1.59-nodoc.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# This is to ease migration from Percona's generic packages
+Provides:   percona-xtrabackup = %{version}
+Obsoletes:  percona-xtrabackup  %{version}
+#
 Requires:   mysql
 BuildRequires:  autoconf
 BuildRequires:  automake

++ percona-xtrabackup-2.0.2-nodoc.tar.gz - 
percona-xtrabackup-2.0.3-nodoc.tar.gz ++
/work/SRC/openSUSE:Factory/xtrabackup/percona-xtrabackup-2.0.2-nodoc.tar.gz 
/work/SRC/openSUSE:Factory/.xtrabackup.new/percona-xtrabackup-2.0.3-nodoc.tar.gz
 differ: char 5, line 1

++ xtrabackup-nodoc.sh ++
--- /var/tmp/diff_new_pack.dKecPT/_old  2012-10-03 10:46:37.0 +0200
+++ /var/tmp/diff_new_pack.dKecPT/_new  2012-10-03 10:46:37.0 +0200
@@ -14,7 +14,7 @@
 # published by the Open Source Initiative.
 #
 
-XTRABACKUP_VERSION=2.0.2
+XTRABACKUP_VERSION=2.0.3
 MYSQL51_VERSION=5.1.59
 MYSQL55_VERSION=5.5.17
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yelp-tools for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package yelp-tools for openSUSE:Factory 
checked in at 2012-10-03 10:46:45

Comparing /work/SRC/openSUSE:Factory/yelp-tools (Old)
 and  /work/SRC/openSUSE:Factory/.yelp-tools.new (New)


Package is yelp-tools, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/yelp-tools/yelp-tools.changes2012-04-20 
15:21:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.yelp-tools.new/yelp-tools.changes   
2012-10-03 10:46:47.0 +0200
@@ -1,0 +2,20 @@
+Mon Sep 24 21:17:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Stable release - no changes compared to 3.5.92.
+
+---
+Mon Sep 17 21:18:01 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.5.92:
+  + yelp-check: Updated usage for 'yelp-check status'.
+  + yelp-build: Fixed 'yelp-build epub --help'.
+
+---
+Tue Sep  4 15:09:41 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + yelp-check: Handle local files in hrefs (bgo#673746)
+  + Fixed xmllint/xsltproc version checks.
+
+---

Old:

  yelp-tools-3.4.1.tar.xz

New:

  yelp-tools-3.6.0.tar.xz



Other differences:
--
++ yelp-tools.spec ++
--- /var/tmp/diff_new_pack.Pt6dFQ/_old  2012-10-03 10:46:50.0 +0200
+++ /var/tmp/diff_new_pack.Pt6dFQ/_new  2012-10-03 10:46:50.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   yelp-tools
-Version:3.4.1
+Version:3.6.0
 Release:0
 Summary:Collection of utilities to help create documentation
 License:GPL-2.0+
 Group:  Development/Tools/Other
 Url:http://projects.gnome.org/yelp/
-Source: 
http://download.gnome.org/sources/yelp-tools/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/yelp-tools/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  itstool
 BuildRequires:  libxml2-tools
 BuildRequires:  libxslt

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yelp-xsl for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package yelp-xsl for openSUSE:Factory 
checked in at 2012-10-03 10:46:57

Comparing /work/SRC/openSUSE:Factory/yelp-xsl (Old)
 and  /work/SRC/openSUSE:Factory/.yelp-xsl.new (New)


Package is yelp-xsl, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/yelp-xsl/yelp-xsl.changes2012-05-22 
10:10:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.yelp-xsl.new/yelp-xsl.changes   2012-10-03 
10:46:58.0 +0200
@@ -1,0 +2,27 @@
+Mon Sep 24 21:17:25 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Mon Sep 17 21:21:40 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Tue Sep  4 15:11:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Updated translations.
+
+---
+Mon Aug 20 17:37:22 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Added support for depth attribute on section links
+  + Improved various bits of the build process
+  + Corrected jQuery.Syntax license info
+  + Updated translations.
+
+---

Old:

  yelp-xsl-3.4.2.tar.xz

New:

  yelp-xsl-3.6.0.tar.xz



Other differences:
--
++ yelp-xsl.spec ++
--- /var/tmp/diff_new_pack.Rilf6B/_old  2012-10-03 10:46:59.0 +0200
+++ /var/tmp/diff_new_pack.Rilf6B/_new  2012-10-03 10:46:59.0 +0200
@@ -18,35 +18,34 @@
 
 
 Name:   yelp-xsl
-Version:3.4.2
+Version:3.6.0
 Release:0
 Summary:XSL stylesheets for the yelp help browser
 License:GPL-2.0+ and LGPL-2.1+ and MIT
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/yelp-xsl/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/yelp-xsl/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  itstool
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(libxslt)
-BuildArch:  noarch
 # The lang subpackage is obsoleted now that translationed are
 # merged inline in xml file, since 3.1.1.
 Obsoletes:  %{name}-lang  %{version}
+BuildArch:  noarch
 
 %description
 This package contains XSL stylesheets that are used by the yelp help browser.
 
-
 %prep
 %setup -q
 
 %build
 %configure
-%__make %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 
 %files
 %defattr(-, root, root)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit zenity for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package zenity for openSUSE:Factory checked 
in at 2012-10-03 10:47:09

Comparing /work/SRC/openSUSE:Factory/zenity (Old)
 and  /work/SRC/openSUSE:Factory/.zenity.new (New)


Package is zenity, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/zenity/zenity.changes2012-03-29 
14:10:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.zenity.new/zenity.changes   2012-10-03 
10:47:11.0 +0200
@@ -1,0 +2,22 @@
+Wed Sep 26 07:14:36 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Add an option to set a custom dialog icon (bgo#684329)
+  + Add an option to request dialogs being modal (bgo#684322)
+  + Port to new documentation infrastructure
+  + Fix the ComboBoxText construction so the dropmenu works
+  + Fix various compiler warnings
+  + Added support to --imagelist on tree
+  + Do not crash in --forms --add-list without column values
+(bgo#676406)
+  + Now the --pulsate option works properly (bgo#567663)
+  + Fix segmentation fault in --list option (bgo#673529)
+  + Updated translations.
+- Drop zenity-add-sentinel.patch: fixed upstream.
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstreams port to the new documentation infrastructure.
+- No longer pass --disable-scrollkeeper to configure: it's no
+  longer a known parameter after the port to yelp-tools.
+- Remove conditions for end-of-life openSUSE versions.
+
+---

Old:

  zenity-3.4.0.tar.xz
  zenity-add-sentinel.patch

New:

  zenity-3.6.0.tar.xz



Other differences:
--
++ zenity.spec ++
--- /var/tmp/diff_new_pack.OPdt7B/_old  2012-10-03 10:47:12.0 +0200
+++ /var/tmp/diff_new_pack.OPdt7B/_new  2012-10-03 10:47:12.0 +0200
@@ -16,21 +16,18 @@
 #
 
 
-
 Name:   zenity
-Version:3.4.0
+Version:3.6.0
 Release:0
 Summary:GNOME Command Line Dialog Utility
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/zenity/3.4/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM zenity-add-sentinel.patch bgo#656757 dims...@opensuse.org 
-- Add sentinel to g_object_get function call.
-Patch0: zenity-add-sentinel.patch
+Source: 
http://download.gnome.org/sources/zenity/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libnotify)
@@ -51,19 +48,14 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 translation-update-upstream
 
 %build
-%configure\
-   --disable-scrollkeeper
-%__make %{?jobs:-j%jobs}
+%configure
+make %{?_smp_mflags}
 
 %install
-%makeinstall
-%if 0%{?suse_version} = 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
+%make_install
 %find_lang %{name} %{?no_lang_C}
 %fdupes %{buildroot}
 
@@ -73,10 +65,7 @@
 %files
 %defattr (-, root, root)
 %doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/%{name}/
-%doc %{_datadir}/gnome/help/%{name}/C/
+%doc %{_datadir}/help/C/%{name}/
 %{_bindir}/gdialog
 %{_bindir}/zenity
 %{_datadir}/zenity/

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit chmsee.906 for openSUSE:12.1:Update

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package chmsee.906 for openSUSE:12.1:Update 
checked in at 2012-10-03 11:44:01

Comparing /work/SRC/openSUSE:12.1:Update/chmsee.906 (Old)
 and  /work/SRC/openSUSE:12.1:Update/.chmsee.906.new (New)


Package is chmsee.906, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-08-23 02:41:28.555381587 +0200
+++ /work/SRC/openSUSE:12.1:Update/.chmsee.906.new/chmsee.changes   
2012-10-03 11:44:09.0 +0200
@@ -0,0 +1,223 @@
+---
+Sun Sep 16 21:02:23 UTC 2012 - w...@rosenauer.org
+
+- Update to version 1.99.14 (bnc#780651)
+  * compatibility with Gecko = 15
+- use fdupes
+
+---
+Wed Jun  6 10:47:44 CEST 2012 - mweckbec...@suse.de
+
+- chmsee-newer-firefox.patch: make it work with 13.x 
+
+---
+Sun Mar 11 19:28:29 UTC 2012 - w...@rosenauer.org
+
+- Update to version 1.99.08
+  * compatibility with Gecko 10
+- increased compatibility to Gecko 11
+- link to major version xulrunner link (bnc#750673)
+
+---
+Fri Mar  9 22:11:56 UTC 2012 - zai...@opensuse.org
+
+- Change the xulrunner-devel BuildRequires: to pkgconfig(libxul),
+  fixes build for openSUSE 12.1
+
+---
+Mon Feb  6 13:37:39 UTC 2012 - w...@rosenauer.org
+
+- Update to version 1.99.07
+- Update chmsee-newer-firefox.patch to build against Gecko 10.
+- Change versioned Requires for xulrunner from = to =, to allow
+  xulrunner to be updated even if it breaks chmsee (bnc#745303).
+
+---
+Sun Dec 25 08:03:30 UTC 2011 - w...@rosenauer.org
+
+- Update to version 1.99.06
+- Adapted chmsee-newer-firefox.patch for xulrunner 9
+
+---
+Wed Nov 16 10:41:54 UTC 2011 - vu...@opensuse.org
+
+- Add chmsee-newer-firefox.patch: declare chmsee compatible with
+  Firefox 8.
+
+---
+Fri Sep 30 07:43:55 UTC 2011 - w...@rosenauer.org
+
+- Update to version 1.99.05:
+  + Transformed into a xulrunner application
+- Packaging completely reworked since everything changed, and
+  there's no easy make install any more.
+
+---
+Wed May  4 09:50:29 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.3.1.1:
+  + Fix a bug cause of opening an unextracted chm with subpage
+failure
+  + Change Gecko version to support xulrunner 2.0.1
+  + Updated translations.
+
+---
+Sat Feb 12 17:00:59 CET 2011 - vu...@opensuse.org
+
+- Call relevant macros in %post/%postun:
+  + %desktop_database_post/postun because the package ships at
+least one desktop file.
+  + %icon_theme_cache_post/postun because the package ships themed
+icons.
+  + %mime_database_post/postun because the package ships a mime
+type definition.
+- Pass %{?no_lang_C} to %find_lang so that english documentation
+  can be packaged with the program, and not in the lang subpackage.
+- Split translations in lang subpackage.
+- Remove shared-mime-info PreReq: if it's not there, then we simply
+  don't need to update the mime database.
+
+---
+Mon Jan 17 20:09:01 CET 2011 - dims...@opensuse.org
+
+- Update to version 1.3.0:
+  + Use XDG Base Directory Specification for config and bookshelf
+cache
+  + Startup splash screen removed
+  + Add global font setting
+  + Fix a bug which get homepage from #STRINGS
+  + Change PrevNext page hotkey from Alt to Control
+  + Fix filter bug in cs_tree_view
+  + Remove extracting progressbar.
+
+---
+Thu Dec  9 10:29:46 CET 2010 - vu...@opensuse.org
+
+- Build against mozilla-xulrunner20-devel on 11.4 and later.
+
+---
+Tue Aug 10 00:20:13 CEST 2010 - vu...@opensuse.org
+
+- Update to version 1.2.0:
+  + Add previous and next page function
+  + Improve language charset setting
+  + Open specified page in file.chm::page.html format
+  + Display progress bar during file extraction
+  + Fix hhk keyword parse problem
+  + Fix filename case insensitive checking bug
+  + Need gtk+ = 2.20 for gecko multi-threads compatible
+
+---
+Fri Jul 16 09:21:54 CEST 2010 - w...@rosenauer.org
+
+- Build against mozilla-xulrunner192 where available
+- Removed build option to use xulrunner 

commit chmsee for openSUSE:12.1:Update

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package chmsee for openSUSE:12.1:Update 
checked in at 2012-10-03 11:44:10

Comparing /work/SRC/openSUSE:12.1:Update/chmsee (Old)
 and  /work/SRC/openSUSE:12.1:Update/.chmsee.new (New)


Package is chmsee, Maintainer is p...@novell.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.xDnjBY/_old  2012-10-03 11:44:11.0 +0200
+++ /var/tmp/diff_new_pack.xDnjBY/_new  2012-10-03 11:44:11.0 +0200
@@ -1 +1 @@
-link package='chmsee.531' cicount='copy' /
+link package='chmsee.906' cicount='copy' /

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit patchinfo.906 for openSUSE:12.2:Update

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.906 for 
openSUSE:12.2:Update checked in at 2012-10-03 11:44:17

Comparing /work/SRC/openSUSE:12.2:Update/patchinfo.906 (Old)
 and  /work/SRC/openSUSE:12.2:Update/.patchinfo.906.new (New)


Package is patchinfo.906, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo
  packagerwrosenauer/packager
  categoryrecommended/category
  ratinglow/rating
  summarychmsee: Update to version 1.99.14/summary
  descriptionThis update fixes the following issue for chmsee:
- bnc#780651: fixed compatibility with Gecko = 15/description
  issue tracker=bnc id=780651GNOME:Apps/chmsee: Bug/issue
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit coreutils for openSUSE:11.4:Update

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package coreutils for openSUSE:11.4:Update 
checked in at 2012-10-03 11:44:34

Comparing /work/SRC/openSUSE:11.4:Update/coreutils (Old)
 and  /work/SRC/openSUSE:11.4:Update/.coreutils.new (New)


Package is coreutils, Maintainer is p...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.1fJbRa/_old  2012-10-03 11:44:35.0 +0200
+++ /var/tmp/diff_new_pack.1fJbRa/_new  2012-10-03 11:44:35.0 +0200
@@ -1,8 +1 @@
-link  package=coreutils.import5176  cicount=copy
-patches
-  !-- apply name=patch / apply a patch on the source directory  --
-  !-- topadd%define build_with_feature_x 1/topadd add a line on the top 
(spec file only) --
-  !-- addfile.patch/add add a patch to be applied after %setup (spec file 
only) --
-  !-- deletefilename/delete delete a file --
-/patches
-/link
+link package='coreutils.950' cicount='copy' /

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit coreutils for openSUSE:12.1:Update

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package coreutils for openSUSE:12.1:Update 
checked in at 2012-10-03 11:44:37

Comparing /work/SRC/openSUSE:12.1:Update/coreutils (Old)
 and  /work/SRC/openSUSE:12.1:Update/.coreutils.new (New)


Package is coreutils, Maintainer is p...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.urARJO/_old  2012-10-03 11:44:39.0 +0200
+++ /var/tmp/diff_new_pack.urARJO/_new  2012-10-03 11:44:39.0 +0200
@@ -1 +1 @@
-link package='coreutils.490' cicount='copy' /
+link package='coreutils.950' cicount='copy' /

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gtkmm3 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gtkmm3 for openSUSE:Factory checked 
in at 2012-10-03 15:08:07

Comparing /work/SRC/openSUSE:Factory/gtkmm3 (Old)
 and  /work/SRC/openSUSE:Factory/.gtkmm3.new (New)


Package is gtkmm3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gtkmm3/gtkmm3.changes2012-04-12 
09:25:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtkmm3.new/gtkmm3.changes   2012-10-03 
15:08:15.0 +0200
@@ -1,0 +2,89 @@
+Thu Sep 27 21:33:00 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.13:
+  + Gtk:
+- ApplicationWindow: Add get_id().
+- Container: Add forall(), propagate_draw(),
+  get_focus_child() and get_path_for_child().
+- IconView: Add get_item_row() and get_item_column()
+  and reorderable, tooltip-column and item-padding properties.
+- LevelBar: Added properties and signal.
+- PrintJob: Added get/set_page_ranges().
+- Settings: Added the enable_primary_paste property.
+- Widget: Add has_visible_focus().
+- Window: Add set_startup_id(), is_active(), 
+  has_toplevel_focus(), set_default_geometry(), 
+  resize_to_geometry(), has_group().
+  Add the focus-visible and attached-to properties.
+  + Build:
+- Use std::time_t instead of ::time_t.
+- Use std::size_t and std::ptrdiff_t.
+
+---
+Fri Aug 31 07:19:51 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.12:
+  + Gtk:
+- Added the LevelBar widget
+- Application:
+  . Added get_active_window()
+  . Don't call add_window() before the application is
+registered
+- CellRendererText: Added the placeholder_text property
+- Entry: Add input purpose and input hints methods
+- MenuButton: Added get/set_popup(), deprecated get/set_menu()
+- Settings: Deprecate the gtk-touchscreen-property
+- TextView: Added input purpose and input hints methods
+- Widget: Added insert_action_group()
+  + Updated documentation (bgo#670212).
+- Add doxygen and xsltproc BuildRequires: the tarball does not
+  contain built documentation anymore, so we need those tools to
+  build it now.
+
+---
+Wed Jul 18 08:19:13 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.6:
+  + Gtk:
+- AppChooserDialog: Fix property name in constructors
+- Application:
+  . run(): Do not show the window until activation, fix a crash
+  . Added get_window_by_id()
+- Button: Addedset/get_always_show_image() and the property
+- Added Gtk::MenuButton
+- Added Gtk::SearchEntry
+- WidgetPath: Added to_string(), iter_get_siblings() and
+  iter_list_regions()
+- Fix wrap_init() for Quartz
+  + Gdk:
+- Pixbuf: Added  const version of save() and friends
+- Screen: Added get_monitor_workarea().
+
+---
+Tue Jun 26 18:03:55 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Application:
+- Document that ID may now be empty.
+- Pass 0 (NULL) rather than  to GApplication.
+  + Builder: Add create_from_resource() and add_from_resource().
+(bgo#674545)
+  + Entry: Undeprecate the activate signal. (bgo#655500)
+  + StyleContext:
+- Add render_icon() and render_insertion_cursor() and deprecate
+  some functions. (bgo#675632)
+- Add get_style_property(). (bgo#674746)
+  + UIManager: Add add_ui_from_resource(). (bgo#674545)
+  + Widget: Deprecate draw_insertion_cursor(). (bgo#675632)
+  + Documentation:
+- Application: add_window(): Correct the documentation.
+- Container: Document several rarely used virtual functions
+  (bgo#670206)
+- Widget: Document get_style_property_value() and
+  get_style_property(). (bgo#673303)
+  + Build: Make the list of gdk targets non-automagic. Otherwise,
+it is difficult e.g. to build a wayland-only gtkmm on a build
+machine that has gdk with both x11 and wayland targets
+installed. (bgo#673963)
+
+---

Old:

  gtkmm-3.4.0.tar.xz

New:

  gtkmm-3.5.13.tar.xz



Other differences:
--
++ gtkmm3.spec ++
--- /var/tmp/diff_new_pack.JPlyg2/_old  2012-10-03 15:08:19.0 +0200
+++ /var/tmp/diff_new_pack.JPlyg2/_new  2012-10-03 15:08:19.0 +0200
@@ -21,20 +21,22 @@
 
 Name:   gtkmm3
 %define _name gtkmm
-Version:3.4.0
+Version:3.5.13
 Release:0
 Summary:C++ Interface for GTK3 (a GUI Library for X)
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gtkmm.org/
-Source: 

commit gtk3 for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2012-10-03 15:08:34

Comparing /work/SRC/openSUSE:Factory/gtk3 (Old)
 and  /work/SRC/openSUSE:Factory/.gtk3.new (New)


Package is gtk3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2012-07-18 
17:19:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2012-10-03 
15:08:37.0 +0200
@@ -1,0 +2,163 @@
+Tue Sep 25 06:45:49 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Add support for blur to CSS shadows
+  + Bugs fixed: bgo#679883, bgo#684258, bgo#684606, bgo#684607
+  + Updated translations.
+
+---
+Wed Sep 19 07:19:28 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.18:
+  + GMenu:
+- Support namespaces for actions
+- Allow submenus to have actions for opening
+- New function: gtk_menu_shell_bind_model
+  + CSS:
+- Parse and support CSS animations
+- Support cross-fading and transitions
+  + OS X:
+- Adjust scrollbar and scale behavior according to platform
+  + Bugs fixed: bgo#643611, bgo#658694, bgo#670390, bgo#671786,
+bgo#674108, bgo#676890, bgo#677559, bgo#680962, bgo#682630,
+bgo#682831, bgo#683474, bgo#683627, bgo#683718, bgo#683738,
+bgo#683874, bgo#683896, bgo#684038, bgo#684076, bgo#684096,
+bgo#684156.
+  + Updated translations.
+
+---
+Wed Sep  5 06:58:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.16:
+  + Fix critical warnings on startup of nautilus.
+
+---
+Tue Sep  4 08:18:30 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.14:
+  + Input method support
+- Propagate input purpose and hints to individual IMs
+- Add a hint to suppress on-screen keyboards
+  + GtkEntry can now set Pango attributes for its text
+  + GtkEntry and GtkTextView show 'selection handles' when used
+with touch devices
+  + GtkSpinButton can be oriented vertically
+  + Bugs fixed: bgo#645065, bgo#661973, bgo#672046, bgo#672431,
+bgo#676787, bgo#679144, bgo#681617, bgo#682129, bgo#682291,
+bgo#682552, bgo#682662, bgo#682724, bgo#682825, bgo#682919,
+bgo#683001, bgo#683168
+  + Updated translations.
+
+---
+Tue Aug 21 08:17:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.12:
+  + GtkApplication:
+- Add gtk_application_get_active_window to get the active
+  window
+- Add gtk_widget_insert_action_group to allow more flexibility
+  when associating widgets with actions
+  + GtkMenuButton:
+- The gtk_menu_button_set_menu function is getting renamed
+  to gtk_menu_button_set_popup. The old name is still available
+  for now, but will be removed before 3.6
+  + GtkToolbar:
+- Use CSS properties instead of style properties for padding
+  + Input method support:
+- GtkEntry and GtkTextView now have input-purpose and
+  input-hints properties that let applications provide useful
+  hints to input methods, like 'this entry is for a phone nr'.
+  + Bugs fixed: bgo#373279, bgo#651244, bgo#673478, bgo#681577,
+bgo#681591, bgo#681613, bgo#682193, bgo#682235
+  + Updated translations.
+
+---
+Tue Aug  7 07:03:44 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.10:
+  + Wayland:
+- Add keyboard handling
+- Improve clipboard handling
+- Add default settings implementation
+  + GDK thread support has been deprecated
+  + Bugs fixed: bgo#679910, bgo#679978, bgo#680754, bgo#680803,
+bgo#680822, bgo#680901, bgo#680949, bgo#680988, bgo#681005,
+bgo#681006, bgo#681064
+  + Updated translations.
+- Add docbook-xsl-stylesheets and xsltproc BuildRequires: new
+  dependencies in order to build the man pages.
+
+---
+Tue Jul 17 08:34:20 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.8:
+  + gtk-launch: A new commandline utility to launch an application
+from its desktop file
+  + GtkStrengthBar: A new widget for displaying the strength or
+level or some quantity
+  + Wayland: Updates for changes in the Wayland protocol
+  + Bugs fixed: bgo#667808, bgo#671437, bgo#671817, bgo#675990,
+bgo#677347, bgo#677491, bgo#678828, bgo#678829, bgo#679092,
+bgo#679166, bgo#679228, bgo#679409, bgo#679449, bgo#679454,
+bgo#679537, bgo#679705, bgo#677892, bgo#679342.
+  + Updated translations.
+
+---
+Mon Jul 16 20:36:11 UTC 2012 - dims...@opensuse.org
+
+- Update to 

commit libcanberra for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libcanberra for openSUSE:Factory 
checked in at 2012-10-03 15:09:22

Comparing /work/SRC/openSUSE:Factory/libcanberra (Old)
 and  /work/SRC/openSUSE:Factory/.libcanberra.new (New)


Package is libcanberra, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libcanberra/libcanberra.changes  2012-07-03 
13:57:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcanberra.new/libcanberra.changes 
2012-10-03 15:09:30.0 +0200
@@ -1,0 +2,22 @@
+Tue Sep 25 11:52:28 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.30:
+  + Minor bug fixes
+  + Explicitly require x11 for GTK linking
+  + Port to GStreamer 1.0.
+- Add pkgconfig(glib-2.0) BuildRequires so it can be versioned.
+- Add pkgconfig(x11) BuildRequires: new explicit dependency.
+- Drop libcanberra-gst10.patch: fixed upstream.
+- Drop libtool BuildRequires and call to ./autogen.sh: no patch
+  requires bootstrapping.
+
+---
+Mon Sep  3 16:07:52 UTC 2012 - dims...@opensuse.org
+
+- Add libcanberra-gst10.patch: Port libcanberra to GStreamer 1.0.
+- Add libtool BuildRequires and call ./autogen.sh in build, as
+  above patch touches the build system
+- Replace pkgconfig(gstreamer-0.10) BuildRequires with
+  pkgconfig(gstreamer-1.0).
+
+---

Old:

  libcanberra-0.29.tar.xz

New:

  libcanberra-0.30.tar.xz



Other differences:
--
++ libcanberra.spec ++
--- /var/tmp/diff_new_pack.0ksg1v/_old  2012-10-03 15:09:31.0 +0200
+++ /var/tmp/diff_new_pack.0ksg1v/_new  2012-10-03 15:09:31.0 +0200
@@ -19,7 +19,7 @@
 %define build_gtk3 1
 
 Name:   libcanberra
-Version:0.29
+Version:0.30
 Release:0
 Summary:Portable sound event library
 License:LGPL-2.0+
@@ -28,20 +28,22 @@
 Source: 
http://0pointer.de/lennart/projects/libcanberra/%{name}-%{version}.tar.xz
 Source1:libcanberra-gtk-module.sh
 Source99:   baselibs.conf
-#PATCH-FIX-UPSTREAM libcanberra-multi-backend.patch bnc#753243 
dims...@opensuse.org -- Set the multi backend as default and allow it actually 
to work.
+#PATCH-FIX-UPSTREAM libcanberra-multi-backend.patch bnc#753243 fdo#51662 
dims...@opensuse.org -- Set the multi backend as default and allow it actually 
to work.
 Patch0: libcanberra-multi-backend.patch
 BuildRequires:  gtk-doc
 BuildRequires:  libltdl-devel
 BuildRequires:  lynx
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(alsa)
-BuildRequires:  pkgconfig(gstreamer-0.10)
+BuildRequires:  pkgconfig(glib-2.0) = 2.32
+BuildRequires:  pkgconfig(gstreamer-1.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
 %if %build_gtk3
 BuildRequires:  pkgconfig(gtk+-3.0)
 %endif
 BuildRequires:  pkgconfig(libpulse) = 0.9.11
 BuildRequires:  pkgconfig(vorbisfile)
+BuildRequires:  pkgconfig(x11)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define debug_package_requires libcanberra0 = %{version}-%{release}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libcryptui for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libcryptui for openSUSE:Factory 
checked in at 2012-10-03 15:09:29

Comparing /work/SRC/openSUSE:Factory/libcryptui (Old)
 and  /work/SRC/openSUSE:Factory/.libcryptui.new (New)


Package is libcryptui, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libcryptui/libcryptui.changes2012-04-20 
15:17:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcryptui.new/libcryptui.changes   
2012-10-03 15:09:31.0 +0200
@@ -1,0 +2,21 @@
+Tue Sep 25 15:32:31 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Stable release: no changes from previous release.
+
+---
+Tue Sep 18 13:47:36 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Wed Jul 18 11:01:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Make the default key chooser window size bigger
+  + Bump dependency versions, and fix deprecetions
+  + Documentation fixes.
+- Add pkgconfig(gthread-2.0) BuildRequires so it can be versioned.
+
+---

Old:

  libcryptui-3.4.1.tar.xz

New:

  libcryptui-3.6.0.tar.xz



Other differences:
--
++ libcryptui.spec ++
--- /var/tmp/diff_new_pack.1UB8F5/_old  2012-10-03 15:09:32.0 +0200
+++ /var/tmp/diff_new_pack.1UB8F5/_new  2012-10-03 15:09:32.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   libcryptui
-Version:3.4.1
+Version:3.6.0
 Release:0
 # FIXME: find out why building introspection support for this package requires 
libtool
 Summary:Library for prompting for PGP keys
 License:LGPL-2.1+ ; GPL-2.0+
 Group:  Productivity/Security
 Url:http://projects.gnome.org/seahorse/
-Source: 
http://download.gnome.org/sources/libcryptui/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/libcryptui/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gpg2
 BuildRequires:  gpgme-devel
@@ -33,7 +33,8 @@
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gnome-keyring-1)
-BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gthread-2.0) = 2.32.0
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.0.0
 BuildRequires:  pkgconfig(ice)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(sm)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libgnomekbd for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libgnomekbd for openSUSE:Factory 
checked in at 2012-10-03 15:09:36

Comparing /work/SRC/openSUSE:Factory/libgnomekbd (Old)
 and  /work/SRC/openSUSE:Factory/.libgnomekbd.new (New)


Package is libgnomekbd, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libgnomekbd/libgnomekbd.changes  2012-03-29 
14:00:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgnomekbd.new/libgnomekbd.changes 
2012-10-03 15:09:45.0 +0200
@@ -1,0 +2,21 @@
+Tue Sep 25 14:58:33 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Sat Aug 25 13:30:49 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Updated translations.
+
+---
+Sun Jun 10 13:23:03 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.2:
+  + Removed xmodmap support, would be handled in g-s-d through the
+scripts.
+  + Some minor build fixes.
+- Rebase libgnomekbd-default-group-switch.patch.
+
+---

Old:

  libgnomekbd-3.4.0.2.tar.xz

New:

  libgnomekbd-3.6.0.tar.xz



Other differences:
--
++ libgnomekbd.spec ++
--- /var/tmp/diff_new_pack.4e6CBN/_old  2012-10-03 15:09:47.0 +0200
+++ /var/tmp/diff_new_pack.4e6CBN/_new  2012-10-03 15:09:47.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   libgnomekbd
-Version:3.4.0.2
+Version:3.6.0
 Release:0
 Summary:GNOME Keyboard Library
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/libgnomekbd/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/libgnomekbd/3.6/%{name}-%{version}.tar.xz
 # PATCH-FEATURE-OPENSUSE libgnomekbd-default-group-switch.patch 
vu...@opensuse.org -- We use shifts_toggle to switch between groups in openSUSE
 Patch0: libgnomekbd-default-group-switch.patch
 # For %%desktop_database_* macros

++ libgnomekbd-default-group-switch.patch ++
--- /var/tmp/diff_new_pack.4e6CBN/_old  2012-10-03 15:09:47.0 +0200
+++ /var/tmp/diff_new_pack.4e6CBN/_new  2012-10-03 15:09:47.0 +0200
@@ -1,7 +1,7 @@
-diff --git a/libgnomekbd/gkbd-keyboard-config.c 
b/libgnomekbd/gkbd-keyboard-config.c
-index 51c6ce4..7c01781 100644
 a/libgnomekbd/gkbd-keyboard-config.c
-+++ b/libgnomekbd/gkbd-keyboard-config.c
+Index: libgnomekbd-3.5.2/libgnomekbd/gkbd-keyboard-config.c
+===
+--- libgnomekbd-3.5.2.orig/libgnomekbd/gkbd-keyboard-config.c
 libgnomekbd-3.5.2/libgnomekbd/gkbd-keyboard-config.c
 @@ -35,7 +35,7 @@
   */
  
@@ -9,5 +9,5 @@
 -#define DEFAULT_GROUP_SWITCH grp:shift_caps_toggle
 +#define DEFAULT_GROUP_SWITCH grp:shifts_toggle
  
- #define XMODMAP_CMD xmodmap
- 
+ const gchar GKBD_KEYBOARD_CONFIG_KEY_MODEL[] = model;
+ const gchar GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS[] = layouts;

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libgnomesu for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libgnomesu for openSUSE:Factory 
checked in at 2012-10-03 15:09:43

Comparing /work/SRC/openSUSE:Factory/libgnomesu (Old)
 and  /work/SRC/openSUSE:Factory/.libgnomesu.new (New)


Package is libgnomesu, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libgnomesu/libgnomesu.changes2012-02-28 
19:24:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.libgnomesu.new/libgnomesu.changes   
2012-10-03 15:09:47.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep  6 12:27:29 UTC 2012 - tittiatc...@gmail.com
+
+- Add a Supplements for gnome-session and xdg-utils, to ensure that
+  gnomesu is automatically installed when the user installs GNOME.
+  Until now, we were relying on the patterns.
+
+---



Other differences:
--
++ libgnomesu.spec ++
--- /var/tmp/diff_new_pack.divbVZ/_old  2012-10-03 15:09:49.0 +0200
+++ /var/tmp/diff_new_pack.divbVZ/_new  2012-10-03 15:09:49.0 +0200
@@ -82,6 +82,8 @@
 # obsolete in 9.3
 Provides:   xsu
 Obsoletes:  xsu
+# Ensure that gnomesu always gets installed
+Supplements:packageand(xdg-utils:gnome-session)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libgweather for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libgweather for openSUSE:Factory 
checked in at 2012-10-03 15:09:50

Comparing /work/SRC/openSUSE:Factory/libgweather (Old)
 and  /work/SRC/openSUSE:Factory/.libgweather.new (New)


Package is libgweather, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libgweather/libgweather.changes  2012-03-19 
09:58:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.libgweather.new/libgweather.changes 
2012-10-03 15:09:52.0 +0200
@@ -1,0 +2,61 @@
+Tue Sep 25 14:39:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Tue Sep 18 17:42:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Updated translations.
+
+---
+Mon Sep  3 18:44:53 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Updated coordinates of two Italian cities
+  + Updated translations.
+
+---
+Mon Aug 20 20:34:18 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Updated translations.
+
+---
+Mon Aug  6 18:59:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.5:
+  + Updated translations.
+
+---
+Tue Jul 17 16:10:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + Updated translations.
+- Changes from version 3.5.1:
+  + libgweather:
+- Various introspection updates and fixes
+- GWeatherLocation is now a boxed type and used as such through
+  out the library
+- Each GWeatherLocation is now strongly associated with world
+  level location, and this is reflected in GWeatherInfo
+- Fixed retrieving US weather for non US locales
+- Applied symbol filtering to avoid exposing non public API
+  + Updated translations.
+- Changes from version 3.5.0:
+  + libgweather: Port to GSettings
+  + Misc:
+- Use upstream gettext
+- Autotools build system fixes
+  + Updated translations.
+- Drop gconf2-devel BuildRequires: ported to gsettings.
+- Replace %gconf_* schema handling macros with %glib2_*
+  equivalents, following the port to GSettings.
+- Remove --disable-schemas-install configure parameter, as it is
+  no longer known to configure after the port to GSettings.
+- Rename libgweather-3-0 to libgweather-3-1, following upstreams
+  soname bump.
+- Update baselibs.conf, following the new package names.
+
+---

Old:

  libgweather-3.4.1.tar.xz

New:

  libgweather-3.6.0.tar.xz



Other differences:
--
++ libgweather.spec ++
--- /var/tmp/diff_new_pack.P2Xk7f/_old  2012-10-03 15:09:53.0 +0200
+++ /var/tmp/diff_new_pack.P2Xk7f/_new  2012-10-03 15:09:53.0 +0200
@@ -17,17 +17,16 @@
 
 
 Name:   libgweather
-Version:3.4.1
+Version:3.6.0
 Release:0
 Summary:Library to get online weather information
 License:GPL-2.0+
 Group:  Development/Libraries/GNOME
 Url:http://developer.gnome.org/libgweather/
-Source: 
http://download.gnome.org/sources/libgweather/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/libgweather/3.6/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 # PATCH-FEATURE-OPENSUSE libgweather-bnc428346-bundle.patch bnc428346 
vu...@novell.com -- Support a bundle directory so that bundle-lang-gnome-* 
doesn't conflict with libgweather-lang.
 Patch1: libgweather-bnc428346-bundle.patch
-BuildRequires:  gconf2-devel
 # For directory ownership
 BuildRequires:  gnome-icon-theme
 BuildRequires:  gobject-introspection-devel
@@ -47,12 +46,12 @@
 Group:  Development/Libraries/GNOME
 # For directory ownership
 Requires:   gnome-icon-theme
-Requires:   libgweather-3-0 = %{version}
+Requires:   libgweather-3-1 = %{version}
 Recommends: %{name}-lang
 Provides:   %{name} = %{version}
 Obsoletes:  %{name}  %{version}
 BuildArch:  noarch
-%gconf_schemas_prereq
+%glib2_gsettings_schema_requires
 
 %description data
 This is a library to download weather information from online sources.
@@ -61,7 +60,7 @@
 %package devel
 Summary:Library to get online weather information
 Group:  Development/Libraries/GNOME
-Requires:   libgweather-3-0 = %{version}
+Requires:   libgweather-3-1 = %{version}
 Requires:   typelib-1_0-GWeather-3_0 = %{version}
 # prior to version 2.21.x, 

commit libwnck for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package libwnck for openSUSE:Factory checked 
in at 2012-10-03 15:09:58

Comparing /work/SRC/openSUSE:Factory/libwnck (Old)
 and  /work/SRC/openSUSE:Factory/.libwnck.new (New)


Package is libwnck, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libwnck/libwnck.changes  2012-05-22 
10:10:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.libwnck.new/libwnck.changes 2012-10-03 
15:10:00.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  4 15:32:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.4.3:
+  + Add deprecation attributes to deprecated functions
+  + Require gtk+-3.0 = 3.4.0
+  + Updated translations.
+
+---

Old:

  libwnck-3.4.2.tar.xz

New:

  libwnck-3.4.3.tar.xz



Other differences:
--
++ libwnck.spec ++
--- /var/tmp/diff_new_pack.WYrK30/_old  2012-10-03 15:10:02.0 +0200
+++ /var/tmp/diff_new_pack.WYrK30/_new  2012-10-03 15:10:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libwnck
-Version:3.4.2
+Version:3.4.3
 Release:0
 # WARNING: After changing versions please call Re or rpmbuild to auto-update 
spec file:
 #%(sh %{_sourcedir}/%{name}_spec-update.sh %{_sourcedir} %{name} libwnck-1)
@@ -32,7 +32,7 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.4.0
 BuildRequires:  pkgconfig(libstartup-notification-1.0)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit metacity for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package metacity for openSUSE:Factory 
checked in at 2012-10-03 15:10:06

Comparing /work/SRC/openSUSE:Factory/metacity (Old)
 and  /work/SRC/openSUSE:Factory/.metacity.new (New)


Package is metacity, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/metacity/metacity.changes2012-08-15 
11:20:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.metacity.new/metacity.changes   2012-10-03 
15:10:09.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep  3 09:18:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.34.8:
+  + Port themes documentation to yelp-tools
+  + Updated translations.
+- Replace gnome-doc-utils-devel BuildRequires with yelp-tools,
+  following upstreams port.
+
+---

Old:

  metacity-2.34.5.tar.xz

New:

  metacity-2.34.8.tar.xz



Other differences:
--
++ metacity.spec ++
--- /var/tmp/diff_new_pack.gZRK0p/_old  2012-10-03 15:10:10.0 +0200
+++ /var/tmp/diff_new_pack.gZRK0p/_new  2012-10-03 15:10:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   metacity
-Version:2.34.5
+Version:2.34.8
 Release:0
 Summary:A Window Manager for the GNOME Desktop
 License:GPL-2.0+
@@ -31,7 +31,6 @@
 Patch11:metacity-bnc385553-buggy-intel-xinerama.diff
 Url:http://www.gnome.org
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gtk2-devel = 2.24.0
 BuildRequires:  intltool
 BuildRequires:  libSM-devel
@@ -44,6 +43,7 @@
 BuildRequires:  startup-notification-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  yelp-tools
 BuildRequires:  zenity
 BuildRequires:  pkgconfig(gio-2.0) = 2.25.10
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) = 3.3.0
@@ -151,15 +151,12 @@
 
 %files tools
 %defattr (-, root, root)
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/creating-metacity-themes/
-%doc %{_datadir}/gnome/help/creating-metacity-themes/C/
+%doc %{_datadir}/help/C/creating-metacity-themes/
 # Ship translations there too; arguably, they should live in a lang
 # subpackage but we don't expect more translations to appear, and
 # it'd be a shame to create a tools-lang subpackage just for one
 # translation.
-%doc %{_datadir}/gnome/help/creating-metacity-themes/de/
+%doc %{_datadir}/help/de/creating-metacity-themes/
 %{_bindir}/metacity-theme-viewer
 %{_bindir}/metacity-window-demo
 %dir %{_datadir}/metacity

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit opal for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package opal for openSUSE:Factory checked in 
at 2012-10-03 15:10:15

Comparing /work/SRC/openSUSE:Factory/opal (Old)
 and  /work/SRC/openSUSE:Factory/.opal.new (New)


Package is opal, Maintainer is lzw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/opal/opal.changes2012-06-10 
23:01:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.opal.new/opal.changes   2012-10-03 
15:10:16.0 +0200
@@ -1,0 +2,31 @@
+Mon Aug 27 09:35:57 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.10.7:
+  + Fixed SIP authentication so cannot ever get into continuous
+retry of bad credentials.
+  + Fixed OpenPhone status indication of invalid credentials on
+register/subscribe.
+  + Fixed race condition searching for H.323 connections.
+  + Remove obsolete stack align hack for ffmpeg
+- Changes from version 3.10.6:
+  + Fix H.323 using H.263+ only.
+  + Fixed ordering of media formats from H.245 TCS, so now
+correctly opens preferred codec indicated by remote.
+  + Only to NAT refresh for SIP REGISTER and SUBSCRIBE handlers.
+  + Increase default RTP payload size.
+  + Removed very old NetMeeting compatible H.261 media formats as
+they now seem to cause other endpoints issues.
+  + Fixed H.323 transmit channel only using target bit rate not max
+bit rate.
+  + Fixed shut down of RTP session when using STUN.
+  + Fixed handling of SIP 491 Request Pending response.
+  + Only use re-INVITE to resolve the multiple codec in response
+SDP when in 2xx response, not 183's etc.
+  + Correctly handled INVITE with SDP when call on hold.
+  + Include sessionID in H.323 OLC Ack for standard session ID
+numbers (audio/video) even though not strictly necessary.
+  + Fixed H.323 bandwidth control on individual channel.
+  + Several bug fixes and other code changes.
+- Drop opal-fix-SILK-test.patch: fixed upstream.
+
+---

Old:

  opal-3.10.5.tar.bz2
  opal-fix-SILK-test.patch

New:

  opal-3.10.7.tar.xz



Other differences:
--
++ opal.spec ++
--- /var/tmp/diff_new_pack.WA1u9M/_old  2012-10-03 15:10:17.0 +0200
+++ /var/tmp/diff_new_pack.WA1u9M/_new  2012-10-03 15:10:17.0 +0200
@@ -47,17 +47,15 @@
 License:MPL-1.0
 Group:  System/Libraries
 Url:http://www.opalvoip.org/
-Version:3.10.5
+Version:3.10.7
 Release:0
 # FIXME: we should probably list all plugins in %files to make sure we don't 
lose some when updating the package.
-%define _version 3_10_5
-Source0:
http://sourceforge.net/projects/opalvoip/files/v3.10%20Luyten/Stable%205/%{name}-%{version}.tar.bz2
+%define _version 3_10_7
+Source0:
http://ftp.gnome.org/pub/GNOME/sources/opal/3.10/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM opal-system-libgsm.patch vu...@novell.com -- Fix 
detection of system libgsm
 Patch1: opal-system-libgsm.patch
 # PATCH-FIX-UPSTREAM opal-fix-ambiguous.patch vu...@novell.com -- Fix 
ambiguous code
 Patch2: opal-fix-ambiguous.patch
-# PATCH-FIX-UPSTREAM opal-fix-SILK-test.patch zai...@opensuse.org  -- Fix SILK 
testsuite linker error.
-Patch3: opal-fix-SILK-test.patch
 # PATCH-FIX-UPSTREAM opal-use-pkgconfig-for-PTLib.patch zai...@opensuse.org  
-- Use pkgconfig for PTLib, taken from upstream svn, fixes build.
 Patch4: opal-use-pkgconfig-for-PTLib.patch 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -100,7 +98,6 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 %patch4 -p1
 # this subdir contains GPL - to avoid license issues delete it before build
 rm -rf plugins/LID/VPB

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rygel for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package rygel for openSUSE:Factory checked 
in at 2012-10-03 15:10:23

Comparing /work/SRC/openSUSE:Factory/rygel (Old)
 and  /work/SRC/openSUSE:Factory/.rygel.new (New)


Package is rygel, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/rygel/rygel.changes  2012-08-23 
16:06:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.rygel.new/rygel.changes 2012-10-03 
15:10:25.0 +0200
@@ -1,0 +2,187 @@
+Tue Sep 25 14:45:19 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.16.0:
+  + Install header files for librygel-server and librygel-renderer.
+  + Add more API documentation.
+  + Fix Rygel HTTP GET test failure on recent libsoup.
+  + Updated translations.
+
+---
+Tue Sep 18 15:13:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.15.4:
+  + Fix seeking issue
+  + Fix server doc generation.
+  + Fix hierarchy, signals and properties doc generation.
+  + Fix tarball to include everything necessary to rebuild from
+vala code.
+  + Fix tarball to include the upstart, sysv and systemd files.
+  + MediaExport:
+- Drop the file extension filter and rely on content-types.
+  + Bugs fixed: bgo#671361
+  + Updated translations.
+- Drop our own rygel.service: the tarball contains the example now.
+
+---
+Fri Sep  7 16:34:48 UTC 2012 - vu...@opensuse.org
+
+- Add libunistring-devel BuildRequires: this is an optional
+  dependency we missed a while ago, used for collation.
+- Package systemd service file:
+  + Add systemd BuildRequires.
+  + Add %{?systemd_requires}.
+  + Ship rygel.service (taken from git, as it's not in the
+tarball), and install it as %{_unitdir}/rygel.service.
+  + Add %service_add_{pre,post,preun,postun} calls in scriptlets.
+
+---
+Tue Sep  4 11:15:46 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.15.3:
+  + Update/Add some copyright headers
+  + Fix the AVC_MP4_BL_CIF15_AAC_520 transcoder and enable it by
+default
+  + Disable broken transmuxing. Was only working by chance anyway
+  + Add start-up scripts for upstart, systemd and debian systemv
+  + MediaExport:
+- Fix a regression in searching introduced in 0.15.2
+- Fix uploading. This was a regression we introduced while
+  fixing uploading for the N9. The new method works for Tracker
+  and MediaExport
+  + Bugs fixed: bgo#683028
+  + Updated translations.
+
+---
+Mon Sep  3 07:31:50 UTC 2012 - dims...@opensuse.org
+
+- Add pkgconfig(gstreamer-pbutils-0.10) BuildRequires: configure
+  checks explicitly for it.
+- Change gstreamer-0_10-devel BuildRequires to
+  pkgconfig(gstreamer-0.10).
+
+---
+Mon Aug 20 21:05:11 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.15.2:
+  + Prevent a critical if the thumbnail for a file does not exist.
+  + Fix all warnings from newer Vala.
+  + Let the plugins do the sorting to prevent that we slice before
+we sort.
+  + Move the default sort criteria into MediaContainer to allow
+containers to override it if necessary.
+  + Canonicalize common error messages.
+  + Add TwoPlayer to V1 downgrades.
+  + Small refactoring of the V1 handling.
+  + Fix debug builds.
+  + Add description property to MediaItem.
+  + Remove misc.vapi.
+  + Disable installing if --enable-uninstalled was used.
+  + Tracker:
+ - Sort browse results using SPARQL.
+ - Sort album containers by disc, track and title.
+  + MediaExport:
+- Sort browse and search results using SQL.
+- Fix a crash when a client tried to access a non-existent
+  query container.
+- Sort album containers by disc, track and title.
+- Properly collate query containers.
+  + Mediathek:
+- Extract date and description from RSS feed.
+- Sort by date descending (newest entry first) by default.
+  + Bugs fixed: bgo#639809, bgo#652375, bgo#661482, bgo#668376,
+bgo#680742, bgo#681452
+  + Updated translations.
+- Replace libgupnp-dlna-devel BuildRequires with
+  pkgconfig(gupnp-dlna-1.0): it is more preciese and matches what
+  configure is looking for.
+
+---
+Fri Aug 10 13:00:44 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.15.1:
+  + Fix setting of meta-data in AVTransport.
+  + Fix compatibility with various new Samsung devices.
+  + Fix content-range checking.
+  + Relay meta-data to player instances in AVTransport.
+  + Fall-back to template description if cached description is not
+readable.
+  + Add librygel-core, librygel-server and 

commit seahorse for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package seahorse for openSUSE:Factory 
checked in at 2012-10-03 15:10:30

Comparing /work/SRC/openSUSE:Factory/seahorse (Old)
 and  /work/SRC/openSUSE:Factory/.seahorse.new (New)


Package is seahorse, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/seahorse/seahorse.changes2012-05-22 
08:19:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.seahorse.new/seahorse.changes   2012-10-03 
15:10:32.0 +0200
@@ -1,0 +2,58 @@
+Tue Sep 25 15:36:09 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Updated translations.
+
+---
+Tue Sep 18 12:31:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Port to new documentation infrastructure
+  + Updated translations.
+- Replace gnome-doc-utils-devel BuildRequieres with yelp-tools:
+  following upstreams port to new documentation infrastructure.
+
+---
+Thu Sep  6 14:23:04 UTC 2012 - dims...@opensuse.org
+
+- No longer mangle Generic name and Name of the programs entry in
+  the menus / activities screen:
+  + Remove  -G Passwords and Keys -N Seahorse from the
+suse_update_desktop_file call (bnc#779068).
+
+---
+Mon Sep  3 09:32:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.91:
+  + Updated translations.
+
+---
+Mon Aug 20 17:25:13 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Updated translations.
+
+---
+Wed Jul 18 09:16:21 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.4:
+  + No keyring UI bits if failed to connect to Secret Service
+  + When Ctrl-F pressed in the main window, focus the filter box
+  + Add suggestion to generate entropy while generating a key
+  + Use libsecret instead of libgnome-keyring
+  + Use GcrSecureEntryBuffer and remove duplicate code.
+  + Align keyids with name/signatures in key properties.
+  + Unavailable entries were displayed incorrectly for signatures
+  + Fix icon sizes
+  + Remove unused code
+  + Migrate to GtkApplication
+  + Other bug fixes
+  + Build fixes
+  + Updated translations.
+- Replace pkgconfig(gnome-keyring-1) BuildRequires with
+  pkgconfig(libsecret-unstable), following upstreams switch.
+- Drop xz BuildRequires as it now comes for free in the build
+  system.
+- Drop seahorse-gpgme-keyring.patch: fixed upstream.
+
+---

Old:

  seahorse-3.4.1.tar.xz
  seahorse-gpgme-keyring.patch

New:

  seahorse-3.6.0.tar.xz



Other differences:
--
++ seahorse.spec ++
--- /var/tmp/diff_new_pack.83M6ZL/_old  2012-10-03 15:10:33.0 +0200
+++ /var/tmp/diff_new_pack.83M6ZL/_new  2012-10-03 15:10:33.0 +0200
@@ -17,17 +17,14 @@
 
 
 Name:   seahorse
-Version:3.4.1
+Version:3.6.0
 Release:0
 Summary:GNOME interface for gnupg
 License:GPL-2.0+
 Group:  Productivity/Security
 Url:http://projects.gnome.org/seahorse/
-Source: 
http://download.gnome.org/sources/seahorse/3.4/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM seahorse-gpgme-keyring.patch dims...@opensuse.org -- Fix 
typo in finalizing of GPGME keyring, taken from git.
-Patch0: seahorse-gpgme-keyring.patch
+Source: 
http://download.gnome.org/sources/seahorse/3.6/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gpg2
 BuildRequires:  gpgme-devel
 BuildRequires:  intltool
@@ -35,15 +32,14 @@
 BuildRequires:  openssh
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(avahi-client)
 BuildRequires:  pkgconfig(avahi-glib)
 BuildRequires:  pkgconfig(gck-1) = 3.3.4
 BuildRequires:  pkgconfig(gcr-3) = 3.3.4
 BuildRequires:  pkgconfig(gio-2.0)
-BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(libsecret-unstable) = 0.5
 BuildRequires:  pkgconfig(libsoup-2.4)
 Recommends: %{name}-lang
 Obsoletes:  %{name}-devel  %{version}
@@ -58,7 +54,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 translation-update-upstream
 
 %build
@@ -72,7 +67,7 @@
 %{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
 %endif
 %{__rm} -f 

  1   2   >