commit MozillaFirefox for openSUSE:11.4

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:11.4
checked in at Tue Jul 5 18:39:51 CEST 2011.




--- old-versions/11.4/UPDATES/all/MozillaFirefox/MozillaFirefox.changes 
2011-06-22 09:28:02.0 +0200
+++ 11.4/MozillaFirefox/MozillaFirefox.changes  2011-07-05 17:38:45.0 
+0200
@@ -1,0 +2,8 @@
+Fri Jul  1 06:45:08 UTC 2011 - w...@rosenauer.org
+
+- create upstream branding package again (supposedly empty)
+  (bnc#703401)
+- fix build on SLE11 (changes do not affect/are not applied for
+  later versions)
+
+---

calling whatdependson for 11.4-i586


New:

  mozilla-sle11.patch



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.ncavfX/_old  2011-07-05 18:39:26.0 +0200
+++ /var/tmp/diff_new_pack.ncavfX/_new  2011-07-05 18:39:26.0 +0200
@@ -34,7 +34,7 @@
 BuildRequires:  nss-shared-helper-devel
 License:MPLv1.1 or GPLv2+ or LGPLv2+
 Version:%{mainver}
-Release:0.
+Release:0.
 %define releasedate 2011061500
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
@@ -74,6 +74,7 @@
 Patch11:mozilla-ppc-ipc.patch
 Patch12:mozilla-repo.patch
 Patch13:mozilla-dump_syms-static.patch
+Patch14:mozilla-sle11.patch
 # Firefox/browser
 Patch30:firefox-linkorder.patch
 Patch31:firefox-browser-css.patch
@@ -162,7 +163,7 @@
 License:MPLv1.1 or GPLv2+ or LGPLv2+
 Summary:Upstream branding for MozillaFirefox
 Group:  Productivity/Networking/Web/Browsers
-Provides:   %{name}-branding = 4.0
+Provides:   %{name}-branding = 5.0
 Conflicts:  otherproviders(%{name}-branding)
 Supplements:packageand(%{name}:branding-upstream)
 #BRAND: Provide three files -
@@ -207,6 +208,9 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%if %suse_version < 1120
+%patch14 -p1
+%endif
 #
 %patch30 -p1
 %patch31 -p1
@@ -492,7 +496,6 @@
 %dir %{progdir}/distribution/
 %{progdir}/chrome/icons
 %{progdir}/components/
-#%exclude %{progdir}/defaults/profile/bookmarks.html
 %{progdir}/defaults/
 %{progdir}/dictionaries/
 %dir %{progdir}/extensions/
@@ -506,7 +509,6 @@
 %{progdir}/application.ini
 %{progdir}/blocklist.xml
 %{progdir}/dependentlibs.list
-#%{progdir}/greprefs.js
 %{progdir}/*.so
 %{progdir}/mozilla-xremote-client
 %{progdir}/omni.jar
@@ -550,11 +552,12 @@
 %dir %{progdir}/extensions/
 %endif
 
-#%files branding-upstream
-#%defattr(-,root,root)
-#%dir %{progdir}
-#%dir %{progdir}/defaults/
-#%{progdir}/defaults/profile/bookmarks.html
+# this package does not need to provide files but is needed to fulfill
+# requirements if no other branding package is to be installed
+
+%files branding-upstream
+%defattr(-,root,root)
+%dir %{progdir}
 
 %if %crashreporter
 


++ mozilla-cairo-return.patch ++
--- /var/tmp/diff_new_pack.ncavfX/_old  2011-07-05 18:39:27.0 +0200
+++ /var/tmp/diff_new_pack.ncavfX/_new  2011-07-05 18:39:27.0 +0200
@@ -1,6 +1,6 @@
 # HG changeset patch
 # User Wolfgang Rosenauer 
-# Parent e36e1a20cb5e1ba0e4bc3facac58029544d92e0a
+# Parent 43cb27a012f2532add0e9791c1b5a7d0c3b03f9b
 Bug 631155 - undefined return value in function '_cairo_surface_wrapper_flush'
 
 diff --git a/gfx/cairo/cairo/src/cairo-surface-wrapper.c 
b/gfx/cairo/cairo/src/cairo-surface-wrapper.c

++ mozilla-kde.patch ++
--- /var/tmp/diff_new_pack.ncavfX/_old  2011-07-05 18:39:27.0 +0200
+++ /var/tmp/diff_new_pack.ncavfX/_new  2011-07-05 18:39:27.0 +0200
@@ -2135,6 +2135,41 @@
  
  #define NS_UNIXSYSTEMPROXYSERVICE_CID  /* 
0fa3158c-d5a7-43de-9181-a285e74cf1d4 */\
   { 0x0fa3158c, 0xd5a7, 0x43de, \
+@@ -437,8 +443,34 @@ static const mozilla::Module::ContractID
+ 
+ static const mozilla::Module kUnixProxyModule = {
+   mozilla::Module::kVersion,
+   kUnixProxyCIDs,
+   kUnixProxyContracts
+ };
+ 
+ NSMODULE_DEFN(nsUnixProxyModule) = &kUnixProxyModule;
++
++nsresult
++nsUnixSystemProxySettings::GetProxyFromKDE(const nsACString& aScheme,
++   const nsACString& aHost,
++   PRInt32 aPort,
++   nsACString& aResult)
++{
++  nsCAutoString url;
++  url = aScheme;
++  url += "://";
++  url += aHost;
++  if( aPort >= 0 )
++  {
++url += ":";
++url += nsPrintfCString("%d", aPort);
++  }
++  nsCStringArray command;
++  command.AppendCString( NS_LITERAL_CSTRING( "GETPROXY" ));
++  command.AppendCString( url );
++  nsCStringArray result;
++  if( !nsKDEUtils::command( command, &result ) || result.Count() != 1 )
++return NS_ERROR_FAILURE;
++  aResult = *result[ 0 ];
++  return NS_OK;
++}
++
 diff --git a/toolkit/xre/Makefile.in b/toolkit/xre/Makefile.in
 --- a/toolkit/xre/Makefile.in
 +++ b/too

commit squid3 for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package squid3 for openSUSE:Factory
checked in at Tue Jul 5 15:19:56 CEST 2011.




--- squid3/squid3.changes   2011-05-03 19:58:47.0 +0200
+++ /mounts/work_src_done/STABLE/squid3/squid3.changes  2011-07-04 
23:16:49.0 +0200
@@ -1,0 +2,73 @@
+Mon Jul  4 22:05:17 UTC 2011 - ch...@computersalat.de
+
+- update to 3.1.14
+  - Regression Bug 3261: Could not create a DNS socket and exit
+- 3.1.13
+  - Regression Bug 3239: problems with myip/myport upgrade
+  - Bug 3153: hung ICAP RESPMOD transactions
+  - Update ssl_crtd to use 'OK' status inline with other helpers
+- remove obsolete upstream patches (10319,10320)
+
+---
+Mon Jun 27 13:42:53 UTC 2011 - ch...@computersalat.de
+
+- add upstream patches
+  o 10319, SourceFormat Enforcemen
+  o 10320, Bug 3153: additional compile fixes
+
+---
+Sun Jun 19 18:37:40 UTC 2011 - ch...@computersalat.de
+
+- update to 3.1.12.3
+  - Bug 3236: Port of %oa, % 3.1.12.3
+  o nobuilddates 3.1.12 -> 3.1.12.3
+- remove obsolete patches
+  o 3.1.11-unused
+  o 3.1.12-no-sslv2
+
+---
+Thu Jun  2 14:33:36 UTC 2011 - ch...@computersalat.de
+
+- update to 3.1.12.2
+  - Bug 3226: Tags from external ACLs do not correctly expire
+  - Bug 3215: Malformed IPv6 DNS reverse lookup
+  - Bug 3209: ssl-bumped requests forwarded unencrypted to the parent 
proxies/caches
+  - Bug 3205: SSL-bump starts then hangs
+  - Bug 3178: gcc-4.6 complains unused variables
+  - Bug 3122: Unknown record type in WCCPv2 Packet (6)
+  - Bug 2965 (partial): Compile errors on MinGW
+  - Fix to only ssl-bump CONNECT requests if they are about to be tunneled
+  - Fix cache manager display of -i/+i in regex ACL config display
+  - Fix cache manager display of cache_peer options userhash and sourcehash 
+  - Fix URL re-writer loosing many transaction details
+  - Fix always-true comparison in ICAP for some 32-bit platforms
+  - Support for 'slow' group ACLs in ssl_bump access control
+  - Support OpenSSL 1.0.0 built without SSLv2
+  - Support GCC 4.6 and binutils-gold
+  - Add CSS id attribute to BODY tag of generated error pages.
+  - Display WARNING and ERROR when max_filedescriptors has failed
+
+---
+Thu May  5 19:27:36 UTC 2011 - ch...@computersalat.de
+
+- update to 3.1.12.1
+  - Port from 3.2: Dynamic SSL Certificate generation
+  - Bug 3194: selinux may prevent ntlm_smb_lm_auth from using /tmp
+  - Bug 3185: 3.1.11 fails to compile on OpenBSD 4.8 and 4.9
+  - Bug 3183: Invalid URL accepted with url host part of only '@'
+  - Display ERROR in cache.log for invalid configured paths
+  - Cache Manager: send User-Agent header from cachemgr.cgi
+  - ... and many portability compile fixes for non-GCC systems.
+
+---

calling whatdependson for head-i586


Old:

  squid-3.1.10-swapdir.patch
  squid-3.1.11-unused.patch
  squid-3.1.12-no-sslv2.patch
  squid-3.1.12-nobuilddates.patch
  squid-3.1.12.tar.bz2

New:

  squid-3.1.12.3-nobuilddates.patch
  squid-3.1.12.3-swapdir.patch
  squid-3.1.14.tar.bz2



Other differences:
--
++ squid3.spec ++
--- /var/tmp/diff_new_pack.rCxG1L/_old  2011-07-05 14:56:54.0 +0200
+++ /var/tmp/diff_new_pack.rCxG1L/_new  2011-07-05 14:56:54.0 +0200
@@ -21,8 +21,8 @@
 
 Name:   squid3
 Summary:Squid Version 3 WWW Proxy Server
-Version:3.1.12
-Release:7
+Version:3.1.14
+Release:1
 License:GPLv2+
 Group:  Productivity/Networking/Web/Proxy
 AutoReqProv:on
@@ -45,18 +45,14 @@
 # please read every file if there is interest about what the patch changes
 # or just visit: http://www.squid-cache.org/Versions/v3/3.0/changesets/
 #
-#Patch0: 
http://www.squid-cache.org/Versions/v3/3.0/changesets/squid-3.0-9107.patch
+#Patch0: 
http://www.squid-cache.org/Versions/v3/3.1/changesets/squid-3.1-10319.patch
 #
 # some useful defaults for squid
 Patch100:   squid-3.1.12-config.patch
 # FIX SWAPDIR - make it a configure option
-Patch101:   squid-3.1.10-swapdir.patch
-# FIX for insecure SSLv2 - allow build without SSLv2
-Patch102:   squid-3.1.12-no-sslv2.patch
+Patch101:   squid-3.1.12.3-swapdir.patch
 # make build compare happy - remove build dates
-Patch103:   squid-3.1.12-nobuilddates.patch
-# PATCH-FIX-UPSTREAM squid-3.1.11-unused.patch idoen...@suse.de -- Remove 
write-only variables to fix gcc 4.6 compilation
-Patch104:   squid-3.1.11-unused.patch
+Patch102:   squid-3.1.12.3-nobuilddates.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %insserv_prereq %fill

drop kiwi-instsource-plugins-openSUSE-11-1 from openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

FYI: Package kiwi-instsource-plugins-openSUSE-11-1 was dropped from 
openSUSE:Factory at Tue Jul  5 14:55:54 CEST 2011.

You can find the latest sources of the package in the
   openSUSE:Dropped
repository:

https://build.opensuse.org/package/show?project=openSUSE:Dropped&package=kiwi-instsource-plugins-openSUSE-11-1

Remember to have fun...

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



commit perl-AnyEvent for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package perl-AnyEvent for openSUSE:Factory
checked in at Tue Jul 5 14:03:06 CEST 2011.




--- perl-AnyEvent/perl-AnyEvent.changes 2010-12-01 14:37:33.0 +0100
+++ /mounts/work_src_done/STABLE/perl-AnyEvent/perl-AnyEvent.changes
2011-06-12 00:05:45.0 +0200
@@ -1,0 +2,74 @@
+Sat Jun 11 22:03:01 UTC 2011 - pascal.ble...@opensuse.org
+
+- switch to bm.pl, as cpanspec created an RPM that didn't provide
+  perl(AnyEvent)
+
+---
+Sat Jun 11 01:27:13 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 5.34:
+  * AE::TLS didn't support both cert_file and key at the same time, due to some
+copy&paste bug
+  * improve AE::Handle timeout documentation slightly
+
+- changes from 5.33:
+  * AnyEvent::Handle on_connect_error - do not try to destroy a handle object
+when it's already gone
+  * update idna algorithm(s) to UTS#46 version 6.0.0
+  * preserve trailing dot in idn_to_ascii - testsuite says to preserve, uts46
+says it's an error, and testsuite makes more sense
+  * remove leading dots in idn_to_ascii - testsuite says to remove, uts46 says
+it's an error, and testsuite makes more sense
+  * fixed a bug in idn ignored character processing
+
+- changes from 5.31:
+  * work around a POE bug where POE would first poll for new events and invoke
+handlers BEFORE handling the message queue
+  * fix parsing of "domain" statement in resolv.conf
+  * stop_read now does just that in TLS mode; see its documentation for caveats
+  * update to common::sense 3.4 warning set (some warnings in perl impose an
+arbitrary 32kb limit on regex matches, which affects AnyEvent::Handle)
+  * AE::Handle had a broken rbuf_max method and missing wbuf_max method
+  * new experimental AE::Handle::resettls method
+
+- changes from 5.3:
+  * major IOAsync patch by Paul Evans - 0.33 is required, as the major issues
+with IO::Async have been solved in that version, including the availabilty
+of a default loop!
+  * implement new wbuf_max parameter for AnyEvent::Handle
+  * added Cocoa::EventLoop backend
+  * set CLOEXEC flag on parent-side fd's in AnyEvent::Util::run_cmd, to avoid
+leaking them to any child processes
+  * try to force files into the arch-dependend lib directory, for the
+half-"turly obsessive compulsive person"(s) that depend on it
+
+- changes from 5.29:
+  * convert EV backend to EV 4.00 API (so better upgrade EV too)
+  * AE::Handle: implement dynamic read_size adjustment, add max_read_size
+parameter, reduce default read_size to 2048
+  * add some FAQ entries for servers and/or on_eof vs. on_error
+  * reduce memory usage slightly when connect was used in AE::Handle
+  * work around more segfaults in Tk
+  * document tls_ctx => undef as valid
+  * detect WNOHANG value at compiletime
+  * include some probably linux-only support for building AnyEvent as part of
+the perl core
+  * make AnyEvent::Strict truly optional (in case somebody builds a minimal 
perl...)
+
+- changes from 5.28:
+  * due to a glitch, AnyEvent's internal getprotobyname wasn't actually used in
+tcp_server
+  * implement AnyEvent::CondVar->new method, which was documented but missing
+  * support autoloading of read types in unshift_read
+  * AnyEvent::Strict: do the test for invalid fh arguments differently,
+resulting in more informative error messages
+  * new AnyEvent::FAQ manpage
+  * clarify that you can actually call push_read etc. in on_read
+  * put keys and certs in /tmp, not into the current directory and document
+this in the SECURITY CONSIDERATIONS sections of AnyEvent::TLS
+  * support ";" as resolv.conf comment character in AnyEvent::DNS
+  * AnyEvent::Handle now croaks when negative timeouts are passed
+  * add a shitload of TCP_xxx sockopt name constants to AnyEvent::Util,
+undocumented, but who knows when they might come in handy
+
+---

calling whatdependson for head-i586


Old:

  AnyEvent-5.271.tar.bz2

New:

  AnyEvent-5.34.tar.gz



Other differences:
--
++ perl-AnyEvent.spec ++
--- /var/tmp/diff_new_pack.TNkUuU/_old  2011-07-05 14:02:02.0 +0200
+++ /var/tmp/diff_new_pack.TNkUuU/_new  2011-07-05 14:02:02.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-AnyEvent (Version 5.271)
+# spec file for package perl-AnyEvent
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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,24 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-Any

commit apparmor for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package apparmor for openSUSE:Factory
checked in at Tue Jul 5 13:45:39 CEST 2011.




--- apparmor/apparmor.changes   2011-03-24 21:33:19.0 +0100
+++ /mounts/work_src_done/STABLE/apparmor/apparmor.changes  2011-06-24 
16:06:28.0 +0200
@@ -1,0 +2,11 @@
+Fri Jun 24 16:02:21 CEST 2011 - je...@suse.de
+
+- Fixed building of pam_apparmor to properly link libpam (bnc#696553).
+- Fixed building of apache2-mod_apparmor to properly link (bnc#701821).
+
+---
+Wed Apr 27 17:28:58 UTC 2011 - opens...@cboltz.de
+
+- make the -doc and -profiles subpackages noarch (again)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ apparmor.spec ++
--- /var/tmp/diff_new_pack.aT7BqT/_old  2011-07-05 13:44:20.0 +0200
+++ /var/tmp/diff_new_pack.aT7BqT/_new  2011-07-05 13:44:20.0 +0200
@@ -46,7 +46,7 @@
 %endif
 Summary:AppArmor userlevel parser utility
 Version:2.6.0
-Release:1
+Release:56
 Group:  Productivity/Networking/Security
 Source0:apparmor-%{version}.tar.bz2
 Source1:%{name}-profile-editor.png
@@ -157,6 +157,7 @@
 License:GPLv2+
 Summary:AppArmor Documentation package
 Group:  Documentation/Other
+BuildArch:  noarch
 
 %description docs
 This package contains documentation for AppArmor.
@@ -301,6 +302,7 @@
 Obsoletes:  subdomain-profiles < %{version}
 Provides:   subdomain-profiles = %{version}
 Requires:   apparmor-parser(CAP_SYSLOG)
+BuildArch:  noarch
 
 %description profiles
 Base profiles. AppArmor is a file and network mandatory access control
@@ -707,7 +709,6 @@
 %files -n apache2-mod_apparmor
 %defattr(-,root,root)
 %{apache_module_path}/mod_apparmor.so
-%{apache_module_path}/mod_apparmor.la
 %doc %{_mandir}/man8/mod_apparmor.8.gz
 %endif
 

++ apparmor-2.5.1-unified-build ++
--- /var/tmp/diff_new_pack.aT7BqT/_old  2011-07-05 13:44:20.0 +0200
+++ /var/tmp/diff_new_pack.aT7BqT/_new  2011-07-05 13:44:20.0 +0200
@@ -304,6 +304,44 @@
  libraries/libapparmor/config.guess| 1502 -
  libraries/libapparmor/config.sub  | 1714 -
  libraries/libapparmor/configure   |13962 
--
+ AUTHORS   |1 
+ ChangeLog |1 
+ INSTALL   |  365 
+ Makefile.am   |2 
+ NEWS  |1 
+ changehat/Makefile.am |1 
+ changehat/mod_apparmor/Makefile.am|   23 
+ changehat/mod_apparmor/apache2-mod_apparmor.spec.in   |  215 
+ changehat/pam_apparmor/COPYING|   39 
+ changehat/pam_apparmor/Makefile.am|9 
+ changehat/pam_apparmor/pam_apparmor.changes   |   49 
+ changehat/pam_apparmor/pam_apparmor.spec.in   |   83 
+ changehat/tomcat_apparmor/Makefile.am |1 
+ changehat/tomcat_apparmor/tomcat_5_0/Makefile.am  |2 
+ changehat/tomcat_apparmor/tomcat_5_5/Makefile.am  |   13 
+ changehat/tomcat_apparmor/tomcat_5_5/build.xml|   11 
+ changehat/tomcat_apparmor/tomcat_5_5/src/Makefile.am  |1 
+ changehat/tomcat_apparmor/tomcat_5_5/src/jni_src/Makefile.am  |   17 
+ config.rpath  |  666 
+ configure.in  |  203 
+ deprecated/Makefile.am|2 
+ deprecated/management/Makefile.am |1 
+ deprecated/management/apparmor-dbus/Makefile.am   |2 
+ deprecated/management/apparmor-dbus/src/Makefile.am   |3 
+ deprecated/management/profile-editor/Makefile.am  |2 
+ deprecated/management/profile-editor/src/Makefile.am  |6 
+ deprecated/management/profile-editor/src/wxStyledTextCtrl/Makefile.am |4 
+ libraries/Makefile.am |1 
+ libraries/libapparmor/AUTHORS |2 
+ libraries/libapparmor/ChangeLog   |1 
+ libraries/libapparmor/INS

commit lilo for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package lilo for openSUSE:Factory
checked in at Tue Jul 5 13:44:02 CEST 2011.




--- lilo/lilo.changes   2011-06-28 12:00:09.0 +0200
+++ /mounts/work_src_done/STABLE/lilo/lilo.changes  2011-06-30 
16:06:38.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun 30 16:06:11 CEST 2011 - meiss...@suse.de
+
+- require just gcc, unversioned, and use `gcc -print-libgcc-file-name`
+  in linking calls.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ lilo.spec ++
--- /var/tmp/diff_new_pack.Wv7cqj/_old  2011-07-05 13:43:46.0 +0200
+++ /var/tmp/diff_new_pack.Wv7cqj/_new  2011-07-05 13:43:46.0 +0200
@@ -38,7 +38,7 @@
 Requires:   coreutils
 # for relinking the prep/chrp images in lilo
 %ifarch ppc ppc64
-Requires:   gcc = 4.6
+Requires:   gcc
 %endif
 # for nvram
 %if 0%{?suse_version} > 1000
@@ -67,7 +67,7 @@
 %endif
 # note: already outdated; download fresh sources from: 
https://alioth.debian.org/frs/?group_id=100507
 Version:22.8
-Release:58
+Release:63
 Source0:lilo-ppc-%{version}.tar.bz2
 Source1:
http://penguinppc.org/projects/yaboot/yaboot-%{yaboot_vers}.tar.bz2
 Source86:   lilo-%{version}.src.tar.bz2

++ lilo-libgcc.patch ++
--- /var/tmp/diff_new_pack.Wv7cqj/_old  2011-07-05 13:43:46.0 +0200
+++ /var/tmp/diff_new_pack.Wv7cqj/_new  2011-07-05 13:43:46.0 +0200
@@ -6,7 +6,7 @@
$obj_dir/chrp/prom.a \
 -  $obj_dir/common/zlib.a
 +  $obj_dir/common/zlib.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  #
  if [ "$no_addnote" = "false" ] ; then
case "$HOSTTYPE" in
@@ -18,7 +18,7 @@
$obj_dir/chrp/prom.a \
 -  $obj_dir/common/zlib.a
 +  $obj_dir/common/zlib.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  
  rm -f "$output"
  cp "$tmp/output" "$output"
@@ -30,7 +30,7 @@
$obj_dir/chrp/prom.a \
 -  $obj_dir/common/zlib.a
 +  $obj_dir/common/zlib.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  #
  objcopy \
-O aixcoff-rs6000 \
@@ -42,7 +42,7 @@
$obj_dir/chrp/prom.a \
 -  $obj_dir/common/zlib.a
 +  $obj_dir/common/zlib.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  
  objcopy \
-O elf32-powerpc \
@@ -52,7 +52,7 @@
$tmp/ps3-head.o \
$tmp/empty.o \
$obj_dir/ps3/ps3.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  
  # convert to RAW format
  objcopy -O binary --set-section-flags=.bss=contents,alloc,load,data 
$tmp/zImage.ps3 $tmp/zImage.ps3.bin

++ yaboot-libgcc.patch ++
--- /var/tmp/diff_new_pack.Wv7cqj/_old  2011-07-05 13:43:46.0 +0200
+++ /var/tmp/diff_new_pack.Wv7cqj/_new  2011-07-05 13:43:46.0 +0200
@@ -5,7 +5,7 @@
  
  second/yaboot: $(OBJS) util/addnote ld.script second/yaboot.a second/empty.o
 -  $(LD) -T ld.script $(LFLAGS) second/empty.o second/crt0.o 
second/yaboot.a -o $@
-+  $(LD) -T ld.script $(LFLAGS) second/empty.o second/crt0.o 
second/yaboot.a -o $@ /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  $(LD) -T ld.script $(LFLAGS) second/empty.o second/crt0.o 
second/yaboot.a -o $@ `gcc -print-libgcc-file-name`
chmod -x $@
cp $@ $@.chrp
util/addnote $@.chrp
@@ -17,7 +17,7 @@
$tmp/empty.o \
 -  $obj_dir/chrp/yaboot.a
 +  $obj_dir/chrp/yaboot.a \
-+  /usr/lib/gcc/powerpc64-suse-linux/4.6/libgcc.a
++  `gcc -print-libgcc-file-name`
  #
  if [ "$do_addnote" = "true" ] ; then
  echo add note section for RS6K






Remember to have fun...

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



commit perl-Test-Memory-Cycle for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package perl-Test-Memory-Cycle for 
openSUSE:Factory
checked in at Tue Jul 5 13:43:38 CEST 2011.




--- perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.changes   2011-04-09 
09:09:03.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.changes
  2011-07-05 12:52:23.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul  5 10:52:08 UTC 2011 - co...@novell.com
+
+- fix %attrs for older distros
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-Test-Memory-Cycle.spec ++
--- /var/tmp/diff_new_pack.tN32UD/_old  2011-07-05 13:43:18.0 +0200
+++ /var/tmp/diff_new_pack.tN32UD/_new  2011-07-05 13:43:18.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   perl-Test-Memory-Cycle
 Version:1.04
-Release:5
+Release:7
 License:GPL+ or Artistic
 %define cpan_name Test-Memory-Cycle
 Summary:Check for memory leaks and circular memory references
@@ -76,6 +76,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc %attr(644,-,-) Changes README
+%doc Changes README
 
 %changelog






Remember to have fun...

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



commit perl-File-Find-Rule for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package perl-File-Find-Rule for 
openSUSE:Factory
checked in at Tue Jul 5 12:44:32 CEST 2011.




--- perl-File-Find-Rule/perl-File-Find-Rule.changes 2011-01-11 
14:27:52.0 +0100
+++ 
/mounts/work_src_done/STABLE/perl-File-Find-Rule/perl-File-Find-Rule.changes
2011-06-17 09:24:55.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 17 07:24:19 UTC 2011 - vci...@novell.com
+
+- license correction (same as Perl) 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-File-Find-Rule.spec ++
--- /var/tmp/diff_new_pack.jfaPON/_old  2011-07-05 12:44:16.0 +0200
+++ /var/tmp/diff_new_pack.jfaPON/_new  2011-07-05 12:44:16.0 +0200
@@ -20,11 +20,11 @@
 
 Name:   perl-%cpan_name
 Version:0.32
-Release:1
+Release:3
 Provides:   %cpan_name
 Requires:   perl-Number-Compare perl-Text-Glob
 Group:  Development/Libraries/Perl
-License:Artistic
+License:GPL-1.0+ or Artistic
 Url:http://search.cpan.org/dist/File-Find-Rule/
 Summary:Alternative interface to File::Find
 Source: %cpan_name-%{version}.tar.bz2






Remember to have fun...

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



commit tinyca2 for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package tinyca2 for openSUSE:Factory
checked in at Tue Jul 5 12:44:03 CEST 2011.




--- tinyca2/tinyca2.changes 2011-01-15 17:37:13.0 +0100
+++ /mounts/work_src_done/STABLE/tinyca2/tinyca2.changes2011-07-05 
10:59:04.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul  5 08:55:19 UTC 2011 - lnus...@suse.de
+
+- move locales to system dir to avoid not owned directories
+
+---

calling whatdependson for head-i586




Other differences:
--
++ tinyca2.spec ++
--- /var/tmp/diff_new_pack.EZlZib/_old  2011-07-05 12:27:57.0 +0200
+++ /var/tmp/diff_new_pack.EZlZib/_new  2011-07-05 12:27:57.0 +0200
@@ -23,12 +23,12 @@
 Url:http://tinyca.sm-zone.net/
 %definelibdir  %{_datadir}/TinyCA2/lib
 %definetemplatesdir%{_datadir}/TinyCA2/templates
-%definelocaledir   %{_datadir}/TinyCA2/locale/
+%definelocaledir   %{_datadir}/locale/
 Group:  Productivity/Networking/Security
 License:GPLv2+
 Requires:   perl perl-Gtk2 perl-MIME-Base64
 Version:0.7.5
-Release:56
+Release:57
 Source0:%{name}-%{version}.tar.bz2
 Patch0: 0001-fix-combobox-strings-for-extended-key-usage.diff
 Patch1: 0002-add-support-for-Microsoft-extendedKeyUsage-attributes.diff
@@ -67,7 +67,8 @@
 
 %build
 # Configure pristine source
-perl -pi -e 
's:./lib:%{libdir}:g;s:./templates:%{templatesdir}:g;s:./locale:%{localedir}:g' 
tinyca2
+sed -i -e 's:./lib:%{libdir}:g;s:./templates:%{templatesdir}:g' tinyca2
+sed -i -e '/bindtextdomain/d' tinyca2
 make -C po
 
 %install
@@ -104,7 +105,6 @@
 %defattr(-,root,root)
 %doc CHANGES
 %dir %{_datadir}/TinyCA2
-%dir %{_datadir}/TinyCA2/locale
 %dir %{_datadir}/TinyCA2/lib
 %dir %{_datadir}/TinyCA2/templates
 %{_datadir}/TinyCA2/lib/*






Remember to have fun...

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



commit wm-icons for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package wm-icons for openSUSE:Factory
checked in at Tue Jul 5 12:27:34 CEST 2011.




--- wm-icons/wm-icons.changes   2011-04-19 23:38:13.0 +0200
+++ /mounts/work_src_done/STABLE/wm-icons/wm-icons.changes  2011-07-04 
18:35:00.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul  4 18:34:26 CEST 2011 - ti...@suse.de
+
+- Fix the installed manpage path
+
+---

calling whatdependson for head-i586




Other differences:
--
++ wm-icons.spec ++
--- /var/tmp/diff_new_pack.EjXsMj/_old  2011-07-05 12:20:01.0 +0200
+++ /var/tmp/diff_new_pack.EjXsMj/_new  2011-07-05 12:20:01.0 +0200
@@ -23,7 +23,7 @@
 Group:  System/X11/Icons
 AutoReqProv:on
 Version:0.4.0
-Release:1
+Release:4
 Summary:Window Manager Icons, themable icon distribution
 Url:http://wm-icons.sourceforge.net/
 Source0:
http://download.sourceforge.net/wm-icons/wm-icons-%{version}.tar.bz2
@@ -57,7 +57,7 @@
 make
 
 %install
-make prefix=$RPM_BUILD_ROOT%{prefix} ROOT_PREFIX=$RPM_BUILD_ROOT install
+make prefix=$RPM_BUILD_ROOT%{prefix} mandir=$RPM_BUILD_ROOT%{_mandir} 
ROOT_PREFIX=$RPM_BUILD_ROOT install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -70,6 +70,6 @@
 %{prefix}/bin/*
 %{prefix}/share/wm-icons
 %{prefix}/share/icons/wm-icons
-%{prefix}/man/man1/wm-icons-config.1.gz
+%{_mandir}/man?/*
 
 %changelog






Remember to have fun...

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



commit perl-Eval-Closure for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package perl-Eval-Closure for 
openSUSE:Factory
checked in at Tue Jul 5 12:19:50 CEST 2011.




--- perl-Eval-Closure/perl-Eval-Closure.changes 2011-05-04 13:07:09.0 
+0200
+++ /mounts/work_src_done/STABLE/perl-Eval-Closure/perl-Eval-Closure.changes
2011-06-04 20:58:04.0 +0200
@@ -1,0 +2,6 @@
+Sat Jun  4 18:30:04 UTC 2011 - l...@linux-schulserver.de
+
+- fix build on distributions with old Test::More module
+  ( perl-Eval-Closure-old_Test-More.patch )
+
+---

calling whatdependson for head-i586


New:

  perl-Eval-Closure-old_Test-More.patch



Other differences:
--
++ perl-Eval-Closure.spec ++
--- /var/tmp/diff_new_pack.j3mSyg/_old  2011-07-05 12:19:22.0 +0200
+++ /var/tmp/diff_new_pack.j3mSyg/_new  2011-07-05 12:19:22.0 +0200
@@ -19,13 +19,14 @@
 
 Name:   perl-Eval-Closure
 Version:0.05
-Release:1
+Release:3
 License:GPL+ or Artistic
 %define cpan_name Eval-Closure
-Summary:safely and cleanly create closures via string eval
+Summary:Safely and cleanly create closures via string eval
 Url:http://search.cpan.org/dist/Eval-Closure/
 Group:  Development/Libraries/Perl
 Source: 
http://www.cpan.org/authors/id/D/DO/DOY/%{cpan_name}-%{version}.tar.gz
+Patch1: perl-Eval-Closure-old_Test-More.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -59,6 +60,9 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%if 0%{?suse_version} >= 1110
+%patch1 -p1
+%endif
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ perl-Eval-Closure-old_Test-More.patch ++
Index: Eval-Closure-0.05/t/01-basic.t
===
--- Eval-Closure-0.05.orig/t/01-basic.t
+++ Eval-Closure-0.05/t/01-basic.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 use Eval::Closure;
@@ -45,4 +45,4 @@ use Eval::Closure;
 ok(!$code->(), "environment is clean");
 }
 
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/02-close-over.t
===
--- Eval-Closure-0.05.orig/t/02-close-over.t
+++ Eval-Closure-0.05/t/02-close-over.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 use Eval::Closure;
@@ -52,4 +52,4 @@ use Test::Requires 'PadWalker';
 # it'd be nice if we could test that closing over other things wasn't possible,
 # but perl's optimizer gets in the way of that
 
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/03-description.t
===
--- Eval-Closure-0.05.orig/t/03-description.t
+++ Eval-Closure-0.05/t/03-description.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 use Eval::Closure;
@@ -50,4 +50,4 @@ SOURCE
 "description is set"
 );
 }
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/04-canonicalize-source.t
===
--- Eval-Closure-0.05.orig/t/04-canonicalize-source.t
+++ Eval-Closure-0.05/t/04-canonicalize-source.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 
 use Eval::Closure;
 
@@ -28,4 +28,4 @@ use Eval::Closure;
 is($code->(), "foo", "got the right code");
 }
 
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/05-memoize.t
===
--- Eval-Closure-0.05.orig/t/05-memoize.t
+++ Eval-Closure-0.05/t/05-memoize.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 use Test::Requires 'Test::Output';
 
@@ -99,4 +99,4 @@ use Eval::Closure;
  "got the right description");
 }
 
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/10-errors.t
===
--- Eval-Closure-0.05.orig/t/10-errors.t
+++ Eval-Closure-0.05/t/10-errors.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 use Eval::Closure;
@@ -64,4 +64,4 @@ unlike(
 "with terse_error, does not include the source code"
 );
 
-done_testing;
+#done_testing;
Index: Eval-Closure-0.05/t/11-debugger.t
===
--- Eval-Closure-0.05.orig/t/11-debugger.t
+++ Eval-Closure-0.05/t/11-debugger.t
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 use strict;
 use warning

commit perl-Package-Stash-XS for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package perl-Package-Stash-XS for 
openSUSE:Factory
checked in at Tue Jul 5 12:18:47 CEST 2011.




--- perl-Package-Stash-XS/perl-Package-Stash-XS.changes 2011-03-31 
10:12:23.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Package-Stash-XS/perl-Package-Stash-XS.changes
2011-06-04 20:48:28.0 +0200
@@ -1,0 +2,6 @@
+Sat Jun  4 18:47:57 UTC 2011 - l...@linux-schulserver.de
+
+- fix build on distributions with old Test::More module
+  ( perl-Package-Stash-XS-old_Test-More.patch )
+
+---

calling whatdependson for head-i586


New:

  perl-Package-Stash-XS-old_Test-More.patch



Other differences:
--
++ perl-Package-Stash-XS.spec ++
--- /var/tmp/diff_new_pack.UZSr1A/_old  2011-07-05 12:15:12.0 +0200
+++ /var/tmp/diff_new_pack.UZSr1A/_new  2011-07-05 12:15:12.0 +0200
@@ -19,14 +19,15 @@
 
 Name:   perl-Package-Stash-XS
 Version:0.22
-Release:1
+Release:3
 License:GPL+ or Artistic
 %define cpan_name Package-Stash-XS
-Summary:faster and more correct implementation of the Package::Stash 
API
+Summary:Faster and more correct implementation of the Package::Stash 
API
 Url:http://search.cpan.org/dist/Package-Stash-XS/
 Group:  Development/Libraries/Perl
 #Source: 
http://www.cpan.org/authors/id/D/DO/DOY/Package-Stash-XS-%{version}.tar.gz
 Source: %{cpan_name}-%{version}.tar.bz2
+Patch1: perl-Package-Stash-XS-old_Test-More.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
@@ -41,6 +42,10 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%if 0%{?suse_version} <= 1110
+%patch1 -p1
+rm t/05-isa.t
+%endif
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"

++ perl-Package-Stash-XS-old_Test-More.patch ++
Index: Package-Stash-XS-0.22/t/01-basic.t
===
--- Package-Stash-XS-0.22.orig/t/01-basic.t
+++ Package-Stash-XS-0.22/t/01-basic.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 use Package::Stash;
@@ -417,4 +417,4 @@ like(exception {
 );
 }
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/02-extension.t
===
--- Package-Stash-XS-0.22.orig/t/02-extension.t
+++ Package-Stash-XS-0.22/t/02-extension.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 {
@@ -73,4 +73,4 @@ is(exception {
 
 ok(!defined($Foo::{baz}), '... the %baz slot has still not been created');
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/03-io.t
===
--- Package-Stash-XS-0.22.orig/t/03-io.t
+++ Package-Stash-XS-0.22/t/03-io.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 {
@@ -48,4 +48,4 @@ use Package::Stash;
 is($stash->get_symbol('baz'), *Foo::foo{IO}, "got the right baz");
 }
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/04-get.t
===
--- Package-Stash-XS-0.22.orig/t/04-get.t
+++ Package-Stash-XS-0.22/t/04-get.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 
 use Package::Stash;
 use Scalar::Util;
@@ -183,4 +183,4 @@ use Scalar::Util;
 }
 }
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/05-isa.t
===
--- Package-Stash-XS-0.22.orig/t/05-isa.t
+++ Package-Stash-XS-0.22/t/05-isa.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 
 use Package::Stash;
 
@@ -19,4 +19,4 @@ my @ISA = ('Bar');
 @{$stash->get_or_add_symbol('@ISA')} = @ISA;
 isa_ok('Foo', 'Bar');
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/06-addsub.t
===
--- Package-Stash-XS-0.22.orig/t/06-addsub.t
+++ Package-Stash-XS-0.22/t/06-addsub.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use lib 't/lib';
-use Test::More;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 BEGIN { $^P |= 0x210 } # PERLDBf_SUBLINE
@@ -43,4 +43,4 @@ $foo_stash->add_symbol(
 is $DB::sub{'Foo::dunk'}, sprintf "%s:%d-%d", "FileName", 100, 199,
 '... got the right %DB::sub value for dunk with specified args';
 
-done_testing;
+#done_testing;
Index: Package-Stash-XS-0.22/t/07-edge-cases.t
==

commit yast2-storage for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory
checked in at Tue Jul 5 12:14:59 CEST 2011.




--- yast2-storage/yast2-storage.changes 2011-06-09 15:49:34.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-storage/yast2-storage.changes
2011-07-05 09:36:48.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 01 09:54:28 CEST 2011 - aschn...@suse.de
+
+- fixed some typos (bnc #703246)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.s3VHyo/_old  2011-07-05 12:13:59.0 +0200
+++ /var/tmp/diff_new_pack.s3VHyo/_new  2011-07-05 12:13:59.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   yast2-storage
 Version:2.21.2
-Release:1
+Release:3
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-storage-2.21.2.tar.bz2

++ yast2-storage-2.21.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.21.2/configure 
new/yast2-storage-2.21.2/configure
--- old/yast2-storage-2.21.2/configure  2011-03-31 12:49:28.0 +0200
+++ new/yast2-storage-2.21.2/configure  2011-07-05 09:34:53.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-storage 2.21.0.
+# Generated by GNU Autoconf 2.68 for yast2-storage 2.21.2.
 #
 # Report bugs to .
 #
@@ -709,8 +709,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-storage'
 PACKAGE_TARNAME='yast2-storage'
-PACKAGE_VERSION='2.21.0'
-PACKAGE_STRING='yast2-storage 2.21.0'
+PACKAGE_VERSION='2.21.2'
+PACKAGE_STRING='yast2-storage 2.21.2'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1495,7 +1495,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures yast2-storage 2.21.0 to adapt to many kinds of systems.
+\`configure' configures yast2-storage 2.21.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1566,7 +1566,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-storage 2.21.0:";;
+ short | recursive ) echo "Configuration of yast2-storage 2.21.2:";;
esac
   cat <<\_ACEOF
 
@@ -1680,7 +1680,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-storage configure 2.21.0
+yast2-storage configure 2.21.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2133,7 +2133,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-storage $as_me 2.21.0, which was
+It was created by yast2-storage $as_me 2.21.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3063,7 +3063,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-storage'
- VERSION='2.21.0'
+ VERSION='2.21.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3185,7 +3185,7 @@
 
 
 
-VERSION="2.21.0"
+VERSION="2.21.2"
 RPMNAME="yast2-storage"
 MAINTAINER="Arvin Schnell "
 
@@ -16097,7 +16097,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yast2-storage $as_me 2.21.0, which was
+This file was extended by yast2-storage $as_me 2.21.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -16163,7 +16163,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-yast2-storage config.status 2.21.0
+yast2-storage config.status 2.21.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.21.2/configure.in 
new/yast2-storage-2.21.2/configure.in
--- old/yast2-storage-2.21.2/configure.in   2011-03-31 12:49:15.0 
+0200
+++ new/yast2-storage-2.21.2/configure.in   2011-07-05 09:34:44.0 
+0200
@@ -3,7 +3,7 @@
 dnl -- This file is generated by y2autoconf 2.18.11 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
-AC_INIT(yast2-storage, 2.21.0, http://bugs.opensuse.org/, yast2-storage)
+AC_INIT(yast2-storage, 2.21.2, http://bugs.opensuse.org/, yast2-storage)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 

commit colord for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package colord for openSUSE:Factory
checked in at Tue Jul 5 12:09:28 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/colord/colord.changes  2011-07-04 
15:32:47.0 +0200
@@ -0,0 +1,48 @@
+---
+Mon Jul  4 15:31:22 CEST 2011 - vu...@opensuse.org
+
+- Drop rpmlintrc as bnc#698250 got fixed and
+  suse-dbus-unauthorized-service/polkit-unauthorized-privilege
+  warnings are now gone.
+
+---
+Fri Jun 17 00:33:14 CEST 2011 - vu...@opensuse.org
+
+- Update to version 0.1.9:
+  + New Features:
+- Add a 'Format' property to the device interface
+- Add a new method Client:FindDeviceByProperty for when only a
+  property is known
+- Add methods to get the connected state of each object
+- Define the DATA_source profile metadata item
+- Define three metadata keys for the framework creator to set
+- Define two keys to allow the profile to contain the mapping
+  parameters
+  + Bugfixes:
+- Allow GUDEV to be disabled at compile time
+- Autodetect SANE in configure
+- Fix 3 small memory leaks
+- Fix a bug that caused a critical warning in client code
+- Only warn if we fail to get the PolicyKit authority
+- Save any additional disk device metadata in the property
+  database
+- Use upstream gettext instead the glib one
+- Write the new metadata entries in the utility programs
+- Add xz BuildRequires because we can't build a package for a
+  xz-compressed tarball without explicitly specifying that... See
+  bnc#697467 for more details.
+
+---
+Thu Jun 16 16:51:34 CEST 2011 - vu...@opensuse.org
+
+- Add docbook-utils BuildRequires to build man pages.
+- Add colord Recommends to libcolord1 as the library is not too
+  useful without the daemon.
+- Add shared-color-profiles Requires to colord, as we want to have
+  profiles.
+
+---
+Mon Jun  6 13:46:22 UTC 2011 - dims...@opensuse.org
+
+- Initial package, version 0.1.8.
+

calling whatdependson for head-i586


New:

  colord-0.1.9.tar.xz
  colord.changes
  colord.spec



Other differences:
--
++ colord.spec ++
#
# spec file for package colord
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   colord
Version:0.1.9
Release:1
License:GPLv2+
Summary:System Daemon for Managing Color Devices
Url:http://colord.hughsie.com/
Group:  System/Daemons
Source: 
http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
BuildRequires:  docbook-utils
BuildRequires:  intltool
BuildRequires:  sane-backends-devel
# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
BuildRequires:  xz
BuildRequires:  pkgconfig(dbus-1)
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(gio-unix-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gmodule-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(gudev-1.0)
BuildRequires:  pkgconfig(lcms2)
BuildRequires:  pkgconfig(libusb-1.0)
BuildRequires:  pkgconfig(polkit-gobject-1)
BuildRequires:  pkgconfig(sqlite3)
Requires:   shared-color-profiles
Recommends: %{name}-lang
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
colord is a system activated daemon that maps devices to color profiles.
It is used by gnome-color-manager for system integration and use when
there are no users logged in.

%package -n libcolord1

Summary:System Daemon for Managing Color Devices -- Library
Group:  System/Libraries
Recommends: %{name}

%description -n libcolord1
colord is a system activated daemon that maps devices to color profiles.
It is used by gnome-color-manager for system integration and use when
there are no users logged in.

%package -n libcolord-devel

Summary:System Daemon for Managing Color Devices -- Development Files
Group:  Development/Lang

commit apcupsd for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package apcupsd for openSUSE:Factory
checked in at Tue Jul 5 11:02:52 CEST 2011.




--- apcupsd/apcupsd.changes 2011-03-24 16:36:06.0 +0100
+++ /mounts/work_src_done/STABLE/apcupsd/apcupsd.changes2011-07-04 
21:06:29.0 +0200
@@ -1,0 +2,15 @@
+Mon Jul  4 20:36:19 CEST 2011 - sbra...@suse.cz
+
+- Updated to version 3.14.8:
+  * Implement battery calibration and self-test interval in apctest
+for USB models.
+  * Add support for turning the UPS off completely.
+  * Updates of SNMP code.
+  * Add support for reading battery voltage from the PowerSummary.
+  * Switch time/date output format to simplified ISO.
+  * Compilation warning fixes.
+  * Other bug fixes and improvements.
+  * Documentation improvements.
+- Removed HAL support.
+
+---
@@ -4,0 +20 @@
+  (reported later as bnc#703592)

calling whatdependson for head-i586


Old:

  apcupsd-3.14.5-const.patch
  apcupsd-3.14.6.tar.bz2

New:

  apcupsd-3.14.8.tar.bz2



Other differences:
--
++ apcupsd.spec ++
--- /var/tmp/diff_new_pack.R5zxtA/_old  2011-07-05 10:50:44.0 +0200
+++ /var/tmp/diff_new_pack.R5zxtA/_new  2011-07-05 10:50:44.0 +0200
@@ -19,23 +19,26 @@
 
 
 Name:   apcupsd
-BuildRequires:  apache2-devel distribution-release dos2unix gcc-c++ 
gconf2-devel gd-devel gnome-vfs2-devel gtk2-devel mailx ncurses-devel 
net-snmp-devel tcpd-devel update-desktop-files
-BuildRequires:  sysvinit
+BuildRequires:  apache2-devel distribution-release dos2unix gcc-c++ 
gconf2-devel gd-devel gnome-vfs2-devel gtk2-devel mailx ncurses-devel 
net-snmp-devel sysvinit tcpd-devel update-desktop-files
 Group:  Hardware/UPS
 License:GPLv2+
 Summary:APC UPS Daemon (Powerful Daemon for APC UPSs)
-Version:3.14.6
-Release:15
+Version:3.14.8
+Release:1
 Url:http://www.apcupsd.com/
 Source: apcupsd-%{version}.tar.bz2
 Source1:apcupsd.init
 Source2:README.SUSE
 Source3:apcupsd-early-powerdown.init
+# PATCH-FIX-OPENSUSE apcupsd-suse.patch sbra...@suse.cz -- Do not perform halt 
script alternation on install.
 Patch:  apcupsd-suse.patch
+# PATCH-FIX-OPENSUSE apcupsd-gpp.patch sbra...@suse.cz -- Build against C++ 
unfriendly system tcpd.h. See below.
 Patch1: apcupsd-gpp.patch
+# PATCH-FEATURE-OPENSUSE apcupsd-powersave.patch sbra...@suse.cz -- Call 
powersave-notify in distros where it is available.
 Patch3: apcupsd-powersave.patch
+# PATCH-FIX-OPENSUSE apcupsd-largebuf-overflow.patch sbra...@suse.cz -- Fix 
static buffer overflow.
 Patch5: apcupsd-largebuf-overflow.patch
-Patch8: apcupsd-3.14.5-const.patch
+# PATCH-FIX-OPENSUSE apcupsd-3.14.6-undef-MIB-for-new-net-snmp.diff 
se...@opensuse.org -- Fix build with newer net-snmp by undefining MIB.
 Patch9: apcupsd-3.14.6-undef-MIB-for-new-net-snmp.diff
 Patch10:apcupsd-3.14.1-cloexec.patch
 PreReq: %fillup_prereq %insserv_prereq /usr/bin/sed /usr/bin/grep
@@ -69,17 +72,19 @@
 
 %prep
 %setup -q
-rm include/tcpd.h
 cp -a %{S:1} platforms/suse/apcupsd.in
 cp -a %{S:2} .
 cp -a %{S:3} apcupsd-early-powerdown
 chmod +x apcupsd-early-powerdown
 %patch
+# To be surely in sync with tcpd API, build against system header. It requires 
a patch.
+rm include/tcpd.h
 %patch1
+%if %suse_version <= 1110
 %patch3
+%endif
 chmod -x kernstodo
 %patch5
-%patch8
 %patch9
 %patch10 -p1
 
@@ -124,6 +129,9 @@
 # fix end-of-line encoding
 dos2unix -o examples/status/SmartUPS-vs-650.status examples/snoopdecode.c 
examples/rpt/Smart-UPS-1500.rpt \
examples/rpt/Back-UPS-ES-550.rpt examples/rpt/Back-UPS-CS-650.rpt 
examples/rpt/Back-UPS-BR-800.rpt
+%if %suse_version > 1130
+rm -r $RPM_BUILD_ROOT/usr/share/hal
+%endif
 
 %post
 %{fillup_and_insserv apcupsd}
@@ -173,13 +181,15 @@
 
 %files
 %defattr(-,root,root)
-%doc apcupsd-early-powerdown COPYING ChangeLog* DISCLAIMER Developers INSTALL 
README.SUSE ReleaseNotes kernstodo examples/
+%doc apcupsd-early-powerdown COPYING ChangeLog* DISCLAIMER Developers INSTALL 
README.SUSE ReleaseNotes examples/
 /sbin/apcupsd-lite
+%if %suse_version <= 1130
 %dir %{_datadir}/hal
 %dir %{_datadir}/hal/fdi
 %dir %{_datadir}/hal/fdi/policy
 %dir %{_datadir}/hal/fdi/policy/20thirdparty
 %{_datadir}/hal/fdi/policy/20thirdparty/*.fdi
+%endif
 %{_sbindir}/apcupsd
 %{_sbindir}/apcaccess
 %{_sbindir}/apctest

++ apcupsd-3.14.6.tar.bz2 -> apcupsd-3.14.8.tar.bz2 ++
 522762 lines of diff (skipped)

++ apcupsd-gpp.patch ++
--- /var/tmp/diff_new_pack.R5zxtA/_old  2011-07-05 10:50:45.0 +0200
+++ /var/tmp/diff_new_pack.R5zxtA/_new  2011-07-05 10:50:45.0 +0200
@@ -1,9 +1,11 @@
 This patch is required to work correctly with system tcpd.h, i. e. with
 "rm include

commit fwzs for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package fwzs for openSUSE:Factory
checked in at Tue Jul 5 10:50:23 CEST 2011.




--- fwzs/fwzs.changes   2011-04-27 18:12:59.0 +0200
+++ /mounts/work_src_done/STABLE/fwzs/fwzs.changes  2011-07-04 
16:25:29.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul  4 12:27:48 UTC 2011 - lnus...@suse.de
+
+- fix not owned directories
+- require polkit at run time
+
+---

calling whatdependson for head-i586


New:

  _service:format_spec_file:fwzs.spec



Other differences:
--
++ _service:format_spec_file:fwzs.spec ++
#
# spec file for package fwzs
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild
# icecream 0


Name:   fwzs
Url:http://gitorious.org/opensuse/fwzs
Summary:Tray applet that allows to switch firewall zones of interfaces
Version:0.4
Release:1
License:GPLv2
Group:  System/GUI/Other
Source: fwzs-%version.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
PreReq: dbus-1
Requires:   SuSEfirewall2 > 3.6_SVNr220
%if 0%{?suse_version} < 1130
Requires:   PolicyKit
%else
Requires:   polkit
%endif
BuildArch:  noarch


%description 
Firewall Zone Switcher consists of a DBus service and a system
tray applet that lets the user switch firewall zones of network
interfaces.

%prep
%setup -q


%build
%configure
make %{?jobs:-j%jobs}


%install
make DESTDIR="%{buildroot}" install
%if 0%{?suse_version} < 1130
rm %{buildroot}%{_datadir}/polkit-1/actions/org.opensuse.zoneswitcher.policy
%else
rm %{buildroot}%{_datadir}/PolicyKit/policy/org.opensuse.zoneswitcher.policy
%endif
#
%find_lang fwzsd
%find_lang fwzsapp
mv fwzsapp.lang %name.lang
cat fwzsd.lang >> %name.lang
rm fwzsd.lang


%clean
rm -rf ${RPM_BUILD_ROOT}


%files -f %name.lang
%defattr(-,root,root)
%doc COPYING
%{_sbindir}/fwzsd
%{_datadir}/fwzs
%{_datadir}/dbus-1/system-services/org.opensuse.zoneswitcher.service
%{_datadir}/applications/fwzsapp.desktop
%dir %{_datadir}/PolicyKit
%dir %{_datadir}/PolicyKit/policy
%if 0%{?suse_version} < 1130
%{_datadir}/PolicyKit/policy/org.opensuse.zoneswitcher.policy
%else
%dir %{_datadir}/polkit-1
%dir %{_datadir}/polkit-1/actions
%{_datadir}/polkit-1/actions/org.opensuse.zoneswitcher.policy
%endif
%{_bindir}/fwzsapp
%config %{_sysconfdir}/dbus-1/system.d/org.opensuse.zoneswitcher.conf



%changelog
++ fwzs.spec ++
--- /var/tmp/diff_new_pack.pylz3v/_old  2011-07-05 10:49:09.0 +0200
+++ /var/tmp/diff_new_pack.pylz3v/_new  2011-07-05 10:49:09.0 +0200
@@ -23,13 +23,18 @@
 Url:http://gitorious.org/opensuse/fwzs
 Summary:Tray applet that allows to switch firewall zones of interfaces
 Version:0.4
-Release:1
+Release:3
 License:GPLv2
 Group:  System/GUI/Other
 Source: fwzs-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: dbus-1
 Requires:   SuSEfirewall2 > 3.6_SVNr220
+%if 0%{?suse_version} < 1130
+Requires:   PolicyKit
+%else
+Requires:   polkit
+%endif
 BuildArch:  noarch
 
 %description 
@@ -73,6 +78,8 @@
 %if 0%{?suse_version} < 1130
 %{_datadir}/PolicyKit/policy/org.opensuse.zoneswitcher.policy
 %else
+%dir %{_datadir}/polkit-1
+%dir %{_datadir}/polkit-1/actions
 %{_datadir}/polkit-1/actions/org.opensuse.zoneswitcher.policy
 %endif
 %{_bindir}/fwzsapp






Remember to have fun...

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



commit kbiff for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package kbiff for openSUSE:Factory
checked in at Tue Jul 5 10:49:01 CEST 2011.




--- KDE/kbiff/kbiff.changes 2009-03-20 17:19:25.0 +0100
+++ /mounts/work_src_done/STABLE/kbiff/kbiff.changes2011-07-05 
06:05:30.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul  5 04:04:42 UTC 2011 - an...@opensuse.org
+
+- added missing directories to the filelist
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kbiff.spec ++
--- /var/tmp/diff_new_pack.MI5itm/_old  2011-07-05 10:48:37.0 +0200
+++ /var/tmp/diff_new_pack.MI5itm/_new  2011-07-05 10:48:37.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kbiff (Version 3.9)
+# spec file for package kbiff
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -25,7 +25,7 @@
 Group:  Productivity/Networking/Email/Utilities
 Summary:An Application to Check for New E-Mail
 Version:3.9
-Release:3
+Release:13
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:kbiff-%version.tar.bz2
 Patch1: fix-desktop-file.diff
@@ -77,5 +77,11 @@
 /opt/kde3/share/apps/kbiff
 /opt/kde3/share/icons/??color
 %{_mandir}/*/*
+%if %suse_version > 1130
+%dir /opt/kde3/share/locale/br
+%dir /opt/kde3/share/locale/br/LC_MESSAGES
+%dir /opt/kde3/share/locale/zh_TW.Big5
+%dir /opt/kde3/share/locale/zh_TW.Big5/LC_MESSAGES
+%endif
 
 %changelog






Remember to have fun...

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



commit kdegames4 for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package kdegames4 for openSUSE:Factory
checked in at Tue Jul 5 10:48:06 CEST 2011.




--- KDE/kdegames4/kdegames4-carddecks.changes   2011-06-03 15:37:36.0 
+0200
+++ /mounts/work_src_done/STABLE/kdegames4/kdegames4-carddecks.changes  
2011-07-01 11:20:32.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  1 11:20:23 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.5
+  * Bugfixes over KDE 4.6.5
+  *  see http://kde.org/announcements/changelogs/changelog4_6_4to4_6_5.php for 
details
+  
+
+---
kdegames4.changes: same change

calling whatdependson for head-i586


Old:

  kdegames-4.6.4.tar.bz2

New:

  kdegames-4.6.5.tar.bz2



Other differences:
--
++ kdegames4-carddecks.spec ++
--- /var/tmp/diff_new_pack.9JKzax/_old  2011-07-05 10:47:18.0 +0200
+++ /var/tmp/diff_new_pack.9JKzax/_new  2011-07-05 10:47:18.0 +0200
@@ -23,7 +23,7 @@
 Group:  System/GUI/KDE
 Summary:Default Card Decks for KDE Games
 Url:http://www.kde.org
-Version:4.6.4
+Version:4.6.5
 Release:1
 Source0:kdegames-%version.tar.bz2
 Patch0: 4_5_BRANCH.diff

++ kdegames4.spec ++
--- /var/tmp/diff_new_pack.9JKzax/_old  2011-07-05 10:47:18.0 +0200
+++ /var/tmp/diff_new_pack.9JKzax/_new  2011-07-05 10:47:18.0 +0200
@@ -28,7 +28,7 @@
 Group:  System/GUI/KDE
 Summary:General Data for KDE Games
 Url:http://www.kde.org
-Version:4.6.4
+Version:4.6.5
 Release:1
 Source0:kdegames-%version.tar.bz2
 Patch:  4_5_BRANCH.diff

++ kdegames-4.6.4.tar.bz2 -> kdegames-4.6.5.tar.bz2 ++
KDE/kdegames4/kdegames-4.6.4.tar.bz2 
/mounts/work_src_done/STABLE/kdegames4/kdegames-4.6.5.tar.bz2 differ: char 11, 
line 1






Remember to have fun...

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



commit ldtp for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package ldtp for openSUSE:Factory
checked in at Tue Jul 5 10:46:47 CEST 2011.




--- ldtp/ldtp.changes   2011-03-21 17:23:17.0 +0100
+++ /mounts/work_src_done/STABLE/ldtp/ldtp.changes  2011-06-09 
15:14:29.0 +0200
@@ -1,0 +2,9 @@
+Thu Jun  9 15:14:06 CEST 2011 - vu...@opensuse.org
+
+- Drop unneeded python-gnome Requires: no python modules from there
+  is used.
+- Add python-wnck Requires on 11.4 and later, and
+  gnome-python-desktop Requires on 11.3 and earlier: only the wnck
+  module is used.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ ldtp.spec ++
--- /var/tmp/diff_new_pack.jC5tK2/_old  2011-07-05 10:45:42.0 +0200
+++ /var/tmp/diff_new_pack.jC5tK2/_new  2011-07-05 10:45:42.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package ldtp (Version 2.1.1)
+# spec file for package ldtp
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -20,7 +20,7 @@
 
 Name:   ldtp
 Version:2.1.1
-Release:1
+Release:2
 License:GPLv2+ ; LGPLv2.1+
 Summary:Linux Desktop Testing Project (LDTP)
 Url:http://ldtp.freedesktop.org
@@ -30,7 +30,11 @@
 BuildRequires:  python
 # pyatspi is a virtual name that is provided by the default at-spi stack
 Requires:   pyatspi
-Requires:   python-gnome
+%if 0%{?suse_version} <= 1130
+Requires:   gnome-python-desktop
+%else
+Requires:   python-wnck
+%endif
 Requires:   python-gtk
 Requires:   python-twisted-web
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build






Remember to have fun...

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



commit libreoffice-extensions for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package libreoffice-extensions for 
openSUSE:Factory
checked in at Tue Jul 5 10:45:29 CEST 2011.




--- libreoffice-extensions/libreoffice-extensions.changes   2011-03-18 
18:59:37.0 +0100
+++ 
/mounts/work_src_done/STABLE/libreoffice-extensions/libreoffice-extensions.changes
  2011-06-08 17:54:43.0 +0200
@@ -1,0 +2,10 @@
+Wed Jun  8 17:29:54 CEST 2011 - pmla...@suse.cz
+
+- updated to libreoffice-3.3.3.1 (3.3.3-rc1)
+
+---
+Wed Mar 23 20:08:17 CET 2011 - pmla...@suse.cz
+
+- libreoffice-3.3.2.2 == 3.3.2-rc2 == final
+
+---

calling whatdependson for head-i586


Old:

  libreoffice-extensions-3.3.2.2.tar.bz2

New:

  libreoffice-extensions-3.3.3.1.tar.bz2



Other differences:
--
++ libreoffice-extensions.spec ++
--- /var/tmp/diff_new_pack.0xg8lE/_old  2011-07-05 10:43:14.0 +0200
+++ /var/tmp/diff_new_pack.0xg8lE/_new  2011-07-05 10:43:14.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   libreoffice-extensions
-Version:3.3.2.2
+Version:3.3.3.1
 Release:1
 %define piece  extensions
-%define ooo_build_version  3.3.2.2
-%define ooo_piece_version  3.3.2.2
+%define ooo_build_version  3.3.3.1
+%define ooo_piece_version  3.3.3.1
 %define ooo_sourcedirname  libreoffice-build-%ooo_piece_version
 %define ooo_prefix %_libdir
 %define ooo_home   libreoffice















++ libreoffice-extensions-3.3.2.2.tar.bz2 -> 
libreoffice-extensions-3.3.3.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libreoffice-extensions-3.3.2.2/ChangeLog 
new/libreoffice-extensions-3.3.3.1/ChangeLog
--- old/libreoffice-extensions-3.3.2.2/ChangeLog2011-03-15 
17:53:49.0 +0100
+++ new/libreoffice-extensions-3.3.3.1/ChangeLog2011-05-31 
17:45:43.0 +0200
@@ -1,19 +1,12 @@
-2011-03-15  Petr Mladek
[9aefb334af6d118177b8882ea5cbada7dcdebbec]
+2011-05-31  Petr Mladek
[8ad61991552caa3f97cc10dc468ce722f2a7217a]
 
-Version 3.3.2.2, tag libreoffice-3.3.2.2 (3.3.2-rc2)
+Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1)
 
 
-2011-03-08  Petr Mladek
[3a094cef5f2b024c17f31c970662513ee0571a63]
+2011-05-29  Andras Timar
[4e3b67b32df4df0f1afe0abe0c0dc9a56829986c]
 
-Branch libreoffice-3-3-2
+l10n: add br, et, and tr to NLPSolver + fixes to fr and nb
 
-This is 'libreoffice-3-3-2' - the stable branch for the 3.3.2 release.
-Only very safe changes, reviewed by three people are allowed.
-
-If you want to commit more complicated fix for the next 3.3.x release,
-please use the 'libreoffice-3-3' branch.
-
-If you want to build something cool, unstable, and risky, use master.
 
 2011-03-08  Petr Mladek
[c1dd3ce52a040abfcb47d1514669b90232b53a9e]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libreoffice-extensions-3.3.2.2/nlpsolver/locale/NLPSolverCommon_bg.properties
 
new/libreoffice-extensions-3.3.3.1/nlpsolver/locale/NLPSolverCommon_bg.properties
--- 
old/libreoffice-extensions-3.3.2.2/nlpsolver/locale/NLPSolverCommon_bg.properties
   1970-01-01 01:00:00.0 +0100
+++ 
new/libreoffice-extensions-3.3.3.1/nlpsolver/locale/NLPSolverCommon_bg.properties
   2011-05-30 13:27:16.0 +0200
@@ -0,0 +1,22 @@
+# x-no-translate
+#BaseNLPSolver
+NLPSolverCommon.Properties.AssumeNonNegative=\u041F\u0440\u0438\u0435\u043C\u0430\u043D\u0435
 \u043D\u0430 
\u043F\u0440\u043E\u043C\u0435\u043D\u043B\u0438\u0432\u0438\u0442\u0435 
\u0437\u0430 
\u043D\u0435\u043E\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043B\u043D\u0438
+#BaseEvolutionarySolver
+NLPSolverCommon.Properties.SwarmSize=\u0420\u0430\u0437\u043C\u0435\u0440 
\u043D\u0430 \u0440\u043E\u044F
+NLPSolverCommon.Properties.LibrarySize=\u0420\u0430\u0437\u043C\u0435\u0440 
\u043D\u0430 
\u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0430\u0442\u0430
+NLPSolverCommon.Properties.LearningCycles=\u041E\u0431\u0443\u0447\u0430\u0432\u0430\u0449\u0438
 \u0446\u0438\u043A\u043B\u0438
+NLPSolverCommon.Properties.GuessVariableRange=\u041E\u0446\u0435\u043D\u043A\u0430
 \u043D\u0430 \u0433\u0440\u0430\u043D\u0438\u0446\u0438\u0442\u0435 
\u043D\u0430 
\u043F\u0440\u043E\u043C\u0435\u043D\u043B\u0438\u0432\u0438\u0442\u0435
+NLPSolverCommon.Properties.VariableRangeThreshold=\u041F\u0440\u0430\u0433 
\u0437\u0430 \u0433\u0440\u0430\u043D\u0438\u0446\u0438\u0442\u0435 
\u043D\u0430 
\u043F\u0440\u043E\u043C\u0435\u043D\u043B\u0438\u0432\u0438\u0442\u0435 
(\u043F\u0440\u0438 \u043E\u0446\u0435\u043D\u044F\u0432\u0430\u043D\u0435)
+NLPSolverCommon.Properties.UseACRComparator=\u0421\u0440\u0430\u0432\u043D\u044F\

commit libreoffice-icon-themes for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package libreoffice-icon-themes for 
openSUSE:Factory
checked in at Tue Jul 5 10:43:02 CEST 2011.




--- libreoffice-icon-themes/libreoffice-icon-themes.changes 2011-03-18 
19:00:13.0 +0100
+++ 
/mounts/work_src_done/STABLE/libreoffice-icon-themes/libreoffice-icon-themes.changes
2011-06-08 17:55:11.0 +0200
@@ -1,0 +2,10 @@
+Wed Jun  8 17:29:54 CEST 2011 - pmla...@suse.cz
+
+- updated to libreoffice-3.3.3.1 (3.3.3-rc1)
+
+---
+Wed Mar 23 20:08:17 CET 2011 - pmla...@suse.cz
+
+- libreoffice-3.3.2.2 == 3.3.2-rc2 == final
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libreoffice-icon-themes.spec ++
--- /var/tmp/diff_new_pack.ZIbVlL/_old  2011-07-05 10:39:00.0 +0200
+++ /var/tmp/diff_new_pack.ZIbVlL/_new  2011-07-05 10:39:00.0 +0200
@@ -19,14 +19,14 @@
 
 
 Name:   libreoffice-icon-themes
-Version:3.3.2.2
+Version:3.3.3.1
 Release:1
-%define ooo_build_version 3.3.2.2
-%define ooo_piece_version 3.3.2.2
+%define ooo_build_version 3.3.3.1
+%define ooo_piece_version 3.3.3.1
 %define ooo_basis_dir basis3.3
 %define ooo_home  libreoffice
 BuildRequires:  libreoffice-icon-themes-prebuilt = %version
-License:LGPLv2.1
+License:LGPLv3
 Group:  Productivity/Office/Suite
 AutoReqProv:on
 # compat stuff






Remember to have fun...

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



commit Botan for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package Botan for openSUSE:Factory
checked in at Tue Jul 5 10:38:01 CEST 2011.




--- Botan/Botan.changes 2011-06-22 16:10:56.0 +0200
+++ /mounts/work_src_done/STABLE/Botan/Botan.changes2011-07-04 
17:14:52.0 +0200
@@ -1,0 +2,11 @@
+Mon Jul  4 17:14:21 CEST 2011 - p...@suse.de
+
+- Make package own its docdir.
+
+---
+Thu Jun 23 14:43:48 CEST 2011 - dmuel...@suse.de
+
+- rename the devel package back to libbotan-devel as the main
+  package allows to build only one -devel package
+
+---

calling whatdependson for head-i586




Other differences:
--
++ Botan.spec ++
--- /var/tmp/diff_new_pack.KOdnfo/_old  2011-07-05 10:36:48.0 +0200
+++ /var/tmp/diff_new_pack.KOdnfo/_new  2011-07-05 10:36:48.0 +0200
@@ -22,7 +22,7 @@
 
 Name:   Botan
 Version:1.10.0
-Release:1
+Release:3
 Url:http://botan.randombit.net
 Summary:A C++ Crypto Library
 License:BSD3c
@@ -73,19 +73,18 @@
 
 Jack Lloyd 
 
-%package%{short_version}-devel
-
+%package-n libbotan-devel
 License:BSD3c
 Summary:Development files for Botan
 Group:  Development/Libraries/C and C++
 Requires:   gmp-devel libbz2-devel
-Provides:   Botan-devel = %{version}, libbotan-devel = %{version}
-Obsoletes:  Botan-devel < %{version}, libbotan-devel < %{version}
+Provides:   Botan-devel = %{version}
+Obsoletes:  Botan-devel < %{version}
 Requires:   libbotan-%{version_suffix} = %{version}
 
 %define botan_docdir %{_datadir}/doc/packages/%{name}-%{version}
 
-%description%{short_version}-devel
+%description-n libbotan-devel
 This package contains the header files and libraries needed to develop
 programs that use the Botan library.
 
@@ -130,10 +129,10 @@
 %files -n libbotan-%{version_suffix}
 %defattr(-,root,root)
 %docdir %{botan_docdir}
-%{botan_docdir}/*
+%{botan_docdir}
 %{_libdir}/libbotan-%{short_version}.so.*
 
-%files %{short_version}-devel
+%files -n libbotan-devel
 %defattr(-,root,root)
 %{_libdir}/libbotan-%{short_version}.so
 %{_libdir}/pkgconfig/botan-%{short_version}.pc






Remember to have fun...

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



commit decibel-audio-player for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package decibel-audio-player for 
openSUSE:Factory
checked in at Tue Jul 5 10:36:35 CEST 2011.




--- decibel-audio-player/decibel-audio-player.changes   2011-03-20 
19:10:32.0 +0100
+++ 
/mounts/work_src_done/STABLE/decibel-audio-player/decibel-audio-player.changes  
2011-06-09 15:12:01.0 +0200
@@ -1,0 +2,9 @@
+Thu Jun  9 15:10:49 CEST 2011 - vu...@opensuse.org
+
+- Drop unneeded python-gnome Requires: no python modules from there
+  is used.
+- Add python-gnomekeyring Requires on 11.4 and later, and
+  gnome-python-desktop Requires on 11.3 and earlier: only the
+  gnomekeyring module is used.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ decibel-audio-player.spec ++
--- /var/tmp/diff_new_pack.c4I0tw/_old  2011-07-05 10:35:47.0 +0200
+++ /var/tmp/diff_new_pack.c4I0tw/_new  2011-07-05 10:35:47.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   decibel-audio-player
 Version:1.07
-Release:1
+Release:2
 License:GPLv2+
 Summary:Decibel Audio Player Is an Easy to Use Audio Player
 Url:http://decibel.silent-blade.org/
@@ -28,7 +28,11 @@
 BuildRequires:  python
 BuildRequires:  update-desktop-files
 Requires:   dbus-1-python
-Requires:   python-gnome
+%if 0%{?suse_version} <= 1130
+Requires:   gnome-python-desktop
+%else
+Requires:   python-gnomekeyring
+%endif
 Requires:   python-gstreamer-0_10
 Requires:   python-gtk
 Requires:   python-mutagen






Remember to have fun...

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



commit gbrainy for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package gbrainy for openSUSE:Factory
checked in at Tue Jul 5 10:35:39 CEST 2011.




--- GNOME/gbrainy/gbrainy.changes   2011-04-27 09:45:40.0 +0200
+++ /mounts/work_src_done/STABLE/gbrainy/gbrainy.changes2011-07-02 
10:02:50.0 +0200
@@ -1,0 +2,30 @@
+Sat Jul  2 09:34:59 CEST 2011 - vu...@opensuse.org
+
+- Update to version 2.00:
+  + UI:
+- Integrated question and solution
+- Theme support
+- New default theme (notebook)
+- Vertical / Horizontal toolbar orientation
+  + Game experience:
+- Better answer handling
+- Accept words, accept figures names, more flexibility handling
+  spaces, etc
+- Better rationale explanations (%)
+- Fixed some verbal analogies
+  + Localization:
+- I18N fixes
+- Proof-reading on English by native speakers. 20% of strings
+  where enhanced for better grammar.
+- Ability to run gbrainy in English ignoring the translations
+  + 11 new games: 4 logic games, 1 calculation game, 6 new verbal
+analogies
+  + Infrastructure Fixes
+- Minor memory leaks
+- Mono 2.10 support
+  + Several bug fixes
+- Remove unneeded glade-sharp2 BuildRequires.
+- Remove filesystem PreReq, which doesn't need to be explicit.
+- Rebase gbrainy-use-libexecdir.patch.
+
+---

calling whatdependson for head-i586


Old:

  gbrainy-1.65.tar.bz2

New:

  gbrainy-2.00.tar.gz



Other differences:
--
++ gbrainy.spec ++
--- /var/tmp/diff_new_pack.2CZODO/_old  2011-07-05 10:34:28.0 +0200
+++ /var/tmp/diff_new_pack.2CZODO/_new  2011-07-05 10:34:28.0 +0200
@@ -19,12 +19,11 @@
 
 
 Name:   gbrainy
-Version:1.65
+Version:2.00
 Release:1
 License:GPLv2+
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://gent.softcatala.org/jmas/gbrainy/%{name}-%{version}.tar.gz
 Patch:  gbrainy-use-libexecdir.patch
-PreReq: filesystem
 Url:http://live.gnome.org/gbrainy
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,7 +37,7 @@
 Group:  Amusements/Games/Logic
 Summary:A brain teaser game and trainer
 %if 0%{?suse_version}
-BuildRequires:  glade-sharp2 gnome-sharp2
+BuildRequires:  gnome-sharp2
 BuildRequires:  update-desktop-files
 %else
 %define suse_update_desktop_file true
@@ -84,8 +83,8 @@
 %suse_update_desktop_file %name Game
 %find_lang %{name} %{?no_lang_C}
 rm -rf $RPM_BUILD_ROOT%{_datadir}/pixmaps
-# It's not the right size: 32x32
-rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/gbrainy.png
+## It's not the right size: 32x32
+#rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/gbrainy.png
 # There are no extensions yet, Thus creating a -devel package sounds overkill 
(file can't reside in noarch package).
 rm %{buildroot}%{_libdir}/pkgconfig/gbrainy.pc
 

++ gbrainy-use-libexecdir.patch ++
--- /var/tmp/diff_new_pack.2CZODO/_old  2011-07-05 10:34:28.0 +0200
+++ /var/tmp/diff_new_pack.2CZODO/_new  2011-07-05 10:34:28.0 +0200
@@ -3,8 +3,8 @@
 --- src/Clients/Classical/Makefile.am.orig
 +++ src/Clients/Classical/Makefile.am
 @@ -41,7 +41,7 @@ RESOURCES =  
\
- -resource:$(top_srcdir)/data/app-graphics/verbal-games-32.png  \
- -resource:$(top_srcdir)/data/app-graphics/gbrainy.svg
+ -resource:$(top_srcdir)/data/app-graphics/gtk-stop.svg \
+ -resource:$(top_srcdir)/data/app-graphics/gtk-ok.svg
  
 -gbrainydir = $(libdir)/gbrainy
 +gbrainydir = $(pkglibexecdir)
@@ -131,8 +131,8 @@
 --- src/Clients/Classical/Makefile.in.orig
 +++ src/Clients/Classical/Makefile.in
 @@ -274,7 +274,7 @@ RESOURCES = \
- -resource:$(top_srcdir)/data/app-graphics/verbal-games-32.png  \
- -resource:$(top_srcdir)/data/app-graphics/gbrainy.svg
+ -resource:$(top_srcdir)/data/app-graphics/gtk-stop.svg \
+ -resource:$(top_srcdir)/data/app-graphics/gtk-ok.svg
  
 -gbrainydir = $(libdir)/gbrainy
 +gbrainydir = $(pkglibexecdir)






Remember to have fun...

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



commit gnome-commander for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package gnome-commander for openSUSE:Factory
checked in at Tue Jul 5 10:34:22 CEST 2011.




--- GNOME/gnome-commander/gnome-commander.changes   2011-05-04 
14:41:05.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-commander/gnome-commander.changes
2011-06-16 12:56:58.0 +0200
@@ -1,0 +2,10 @@
+Thu Jun 16 11:16:16 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.2.8.12:
+  + bgo#618214: crash when cancel a search
+  + bgo#640387: yet another fix for deprecated python modules:
+md5, sha1
+  + bgo#649375: bookmarks not updated for newly added ones
+  + Fixed problem with mkdir permissions
+
+---

calling whatdependson for head-i586


Old:

  gnome-commander-1.2.8.11.tar.bz2

New:

  gnome-commander-1.2.8.12.tar.bz2



Other differences:
--
++ gnome-commander.spec ++
--- /var/tmp/diff_new_pack.zPsl92/_old  2011-07-05 10:33:44.0 +0200
+++ /var/tmp/diff_new_pack.zPsl92/_new  2011-07-05 10:33:44.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-commander
-Version:1.2.8.11
+Version:1.2.8.12
 Release:1
 License:GPLv2+
 Summary:Nice and Fast File Manager for the GNOME Desktop

++ gnome-commander-1.2.8.11.tar.bz2 -> gnome-commander-1.2.8.12.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-commander-1.2.8.11/ChangeLog 
new/gnome-commander-1.2.8.12/ChangeLog
--- old/gnome-commander-1.2.8.11/ChangeLog  2011-05-01 22:27:11.0 
+0200
+++ new/gnome-commander-1.2.8.12/ChangeLog  2011-06-15 19:41:02.0 
+0200
@@ -1,6 +1,84 @@
+commit 6f030e023af74ad25c4fefc1f213f47a1fd6ce56
+Author: Piotr Eljasiak 
+Date:   2011-06-15
+
+1.2.8.12 release
+
+M  doc/C/gnome-commander.xml
+M  doc/gnome-commander.1
+
+commit c3aa8f7a0b9df451ff527b14bb0f3385bfe61039
+Author: Torsten Luettgert 
+Date:  2011-06-15
+
+Fixed problem with mkdir permissions
+
+M  NEWS
+M  doc/C/gnome-commander.xml
+M  src/gnome-cmd-data.cc
+M  src/gnome-cmd-data.h
+M  src/gnome-cmd-mkdir-dialog.cc
+
+commit 8bd33159b1b66f455e46dcc4e5919728614da0f8
+Author: Piotr Eljasiak 
+Date:  2011-05-20
+
+Docs update
+
+M  doc/C/gnome-commander.xml
+
+commit 7c209c098ac808f26f91c93be37bae5fdf90afad
+Author: Cristian Buzduga 
+Date:  2011-05-12
+
+Fixed problem #618214 (crash when cancel a search)
+
+M  NEWS
+M  doc/C/gnome-commander.xml
+M  src/gnome-cmd-search-dialog.cc
+
+commit a409a75938698ead840b50f399779c9099f1c53d
+Author: Alessio Treglia 
+Date:  2011-05-12
+
+Fixed problem #640387 (yet another fix for deprecated python modules:
+md5, sha1)
+
+M  NEWS
+M  doc/C/gnome-commander.xml
+M  plugins/python/md5sum/md5sum.py
+M  plugins/python/sha1sum/sha1sum.py
+
+commit bf1369d18f1890ecc4fde79ec5b1c3860eeafdde
+Author: Cristian Buzduga 
+Date:  2011-05-09
+
+Fixed problem #649375 (bookmarks not updated for newly added ones)
+
+M  NEWS
+M  doc/C/gnome-commander.xml
+M  src/gnome-cmd-dir-indicator.cc
+
+commit 16522a91a23781d593737e5f3c01ee55115a4bec
+Author: Piotr Eljasiak 
+Date:  2011-05-09
+
+Docs update
+
+M  NEWS
+M  doc/C/gnome-commander.xml
+
+commit 857753b23b4578bcb6f42348c51b28d401121009
+Author: Piotr Eljasiak 
+Date:  2011-05-09
+
+Bumped version to 1.2.8.12
+
+M  configure.in
+
 commit 758f2c0c78c4de06c5cf86fcf6e07f5769be1549
 Author: Piotr Eljasiak 
-Date:   2011-05-01
+Date:  2011-05-01
 
 1.2.8.11 release
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-commander-1.2.8.11/NEWS 
new/gnome-commander-1.2.8.12/NEWS
--- old/gnome-commander-1.2.8.11/NEWS   2011-05-01 22:21:49.0 +0200
+++ new/gnome-commander-1.2.8.12/NEWS   2011-06-15 19:34:59.0 +0200
@@ -1,4 +1,15 @@
 ===
+gnome-commander 1.2.8.12
+---
+
+Bug fixes:
+ * Fixed problem #618214 (crash when cancel a search)
+ * Fixed problem #640387 (yet another fix for deprecated python modules: md5, 
sha1)
+ * Fixed problem #649375 (bookmarks not updated for newly added ones)
+ * Fixed problem with mkdir permissions
+
+
+===
 gnome-commander 1.2.8.11
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-commander-1.2.8.11/README 
new/gnome-commander-1.2.8.12/README
--- old/gnome-commander-1.2.8.11/README 2011-05-01 22:25:25.0 +0200
+++ new/gnome-commander-1.2.8.12/README 2011-06-15 19:35:51.0 +0200
@@ -1,4 +1,4 @@
-GNOME Commander Version 1.2.8.11
+GNOME Commander Version 1.2.8.12
 
 Copyright (C) 2001-2006 Marcus Bjurm

commit gnome-dvb-daemon for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package gnome-dvb-daemon for openSUSE:Factory
checked in at Tue Jul 5 10:33:37 CEST 2011.




--- GNOME/gnome-dvb-daemon/gnome-dvb-daemon.changes 2011-05-28 
16:42:50.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-dvb-daemon/gnome-dvb-daemon.changes  
2011-06-22 11:13:04.0 +0200
@@ -1,0 +2,9 @@
+Tue Jun 21 23:43:03 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.2.2:
+  + Make sure that Channel's GroupId is set in the constructor
+  + Removed shebang from DBusWrapper.py
+  + Removed MediaServer1 D-Bus service file
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-dvb-daemon-0.2.1.tar.bz2

New:

  gnome-dvb-daemon-0.2.2.tar.bz2



Other differences:
--
++ gnome-dvb-daemon.spec ++
--- /var/tmp/diff_new_pack.FTbj4J/_old  2011-07-05 10:30:39.0 +0200
+++ /var/tmp/diff_new_pack.FTbj4J/_new  2011-07-05 10:30:39.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-dvb-daemon
-Version:0.2.1
+Version:0.2.2
 Release:1
 License:GPLv3+
 Summary:Daemon to use DVB devices
@@ -131,7 +131,6 @@
 %doc AUTHORS ChangeLog COPYING NEWS README
 %{_bindir}/gnome-dvb-daemon
 %{_datadir}/dbus-1/services/org.gnome.DVB.service
-%{_datadir}/dbus-1/services/org.gnome.UPnP.MediaServer1.DVBDaemon.service
 %{_datadir}/dbus-1/services/org.gnome.UPnP.MediaServer2.DVBDaemon.service
 
 %files -n python-gnome-dvb-daemon

++ gnome-dvb-daemon-0.2.1.tar.bz2 -> gnome-dvb-daemon-0.2.2.tar.bz2 ++
 2236 lines of diff (skipped)






Remember to have fun...

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



commit gnome-web-photo for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package gnome-web-photo for openSUSE:Factory
checked in at Tue Jul 5 10:30:29 CEST 2011.




--- GNOME/gnome-web-photo/gnome-web-photo.changes   2011-04-06 
11:57:44.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-web-photo/gnome-web-photo.changes
2011-07-03 10:11:46.0 +0200
@@ -1,0 +2,16 @@
+Sat Jul  2 09:17:29 CEST 2011 - vu...@opensuse.org
+
+- Move to pkgconfig()-style BuildRequires:
+  + Old ones: gconf2-devel, gtk2-devel, libwebkit-devel.
+  + New ones: gconf-2.0, gtk+-2.0, webkit-1.0.
+- Use favor_gtk2 to switch between gtk2 and gtk3 builds. For the
+  gtk3 build:
+  + Change pkgconfig(gtk+-2.0) and pkgconfig(webkit-1.0)
+BuildRequires to pkgconfig(gtk+-3.0) and
+pkgconfig(webkitgtk-3.0).
+  + Drop pkgconfig(gconf-2.0) BuildRequires as gconf is only needed
+for the GNOME 2 build, and drop all the gconf schemas packaging
+machinery.
+  + Change --with-gtk=2.0 configure option to --with-gtk=3.0
+
+---

calling whatdependson for head-i586




Other differences:
--
++ gnome-web-photo.spec ++
--- /var/tmp/diff_new_pack.uhG9au/_old  2011-07-05 10:29:47.0 +0200
+++ /var/tmp/diff_new_pack.uhG9au/_new  2011-07-05 10:29:47.0 +0200
@@ -19,20 +19,27 @@
 
 Name:   gnome-web-photo
 Version:0.10.1
-Release:1
+Release:2
 License:GPLv2+
 Summary:GNOME Web Photographer
 Url:http://www.gnome.org
 Group:  Productivity/Graphics/Viewers
 Source: %{name}-%{version}.tar.bz2
-BuildRequires:  gconf2-devel
-BuildRequires:  gtk2-devel
 BuildRequires:  intltool
-BuildRequires:  libwebkit-devel
 BuildRequires:  translation-update-upstream
+%if 0%{?favor_gtk2}
+BuildRequires:  pkgconfig(gconf-2.0)
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(webkit-1.0)
+%else
+BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(webkitgtk-3.0)
+%endif
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?favor_gtk2}
 %gconf_schemas_prereq
+%endif
 
 %description
 GNOME Web Photographer is a tool to generate full-size image files and
@@ -44,30 +51,50 @@
 translation-update-upstream
 
 %build
-%configure --with-gtk=2.0
+%configure \
+%if 0%{?favor_gtk2}
+--with-gtk=2.0
+%else
+--with-gtk=3.0
+%endif
 make %{?_smp_mflags}
 
 %install
 %make_install
 %find_lang %{name} %{?no_lang_C}
+%if 0%{?favor_gtk2}
 %find_gconf_schemas
+%endif
 
 %clean
 rm -rf %{buildroot}
 
+%if 0%{?favor_gtk2}
+
 %pre -f %{name}.schemas_pre
 
 %posttrans -f %{name}.schemas_posttrans
 
 %preun -f %{name}.schemas_preun
+%endif
+
+%if 0%{?favor_gtk2}
 
 %files -f %{name}.schemas_list
+%else
+
+%files
+%endif
 %defattr (-, root, root)
 %doc AUTHORS COPYING ChangeLog NEWS README
 %{_bindir}/gnome-web-photo
 %{_bindir}/gnome-web-print
 %{_bindir}/gnome-web-thumbnail
 %{_datadir}/gnome-web-photo/
+%if ! (0%{?favor_gtk2})
+%dir %{_datadir}/thumbnailers
+%{_datadir}/thumbnailers/gnome-web-photo.thumbnailer
+%endif
 
 %files lang -f %{name}.lang
 






Remember to have fun...

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



commit liferea for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package liferea for openSUSE:Factory
checked in at Tue Jul 5 10:29:35 CEST 2011.




--- GNOME/liferea/liferea.changes   2011-04-11 14:25:51.0 +0200
+++ /mounts/work_src_done/STABLE/liferea/liferea.changes2011-07-01 
14:01:34.0 +0200
@@ -1,0 +2,27 @@
+Wed Jun 22 12:33:07 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.6.6:
+  + Removed the obsolete Bloglines support.
+  + Removed bookmarking support for the dead Backflip.
+  + Fixes second search not clearing item list.
+  + Fixes accidental drag&drop in HTML view.
+  + sf#3019444 and sf#2978831: incorrect handling of HTTP 301
+  + sf#3103875: Opening URLs with UTF-8 characters
+  + deb#600638: Wrong number of unread items in mouse over tray
+icon with zh_TW locale.
+  + liferea.glade: Mark 2 messages as translatable that were
+wrongly not marked.
+  + Fix build with stricter linkers.
+  + Updated translations.
+- Drop patches:
+  + libnotify-0.7-api.patch: the 1.6.x tree got changed to not
+support libnotify > 0.5. Additionally, it's overcomplex. In
+order to support libnotify 0.7, we have a new patch.
+  + liferea-1.6.5-nm09.patch: fixed upstream.
+- Add liferea-libnotify07.patch: upstream wanted to limit usage of
+  libnotify to maximum 0.5.x in liferea 1.6.x tree, which is
+  something we don't want to do.
+- Add liferea_dbus.xml as SOURCE1: the file is missing in the
+  tarball.
+
+---

calling whatdependson for head-i586


Old:

  libnotify-0.7-api.patch
  liferea-1.6.5-nm09.patch
  liferea-1.6.5.tar.bz2

New:

  liferea-1.6.6.tar.gz
  liferea-libnotify07.patch
  liferea_dbus.xml



Other differences:
--
++ liferea.spec ++
--- /var/tmp/diff_new_pack.CVmtBy/_old  2011-07-05 10:28:34.0 +0200
+++ /var/tmp/diff_new_pack.CVmtBy/_new  2011-07-05 10:28:34.0 +0200
@@ -21,18 +21,18 @@
 Name:   liferea
 License:GPLv2+
 Group:  Productivity/Other
-Version:1.6.5
-Release:9
+Version:1.6.6
+Release:1
+# FIXME: Make sure to remove liferea_dbus.xml again with next tarball.
 Summary:Linux Feed Reader
 Url:http://liferea.sourceforge.net/
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://sourceforge.net/projects/liferea/files/Liferea%20Stable/%{version}/%{name}-%{version}.tar.gz
+# liferea_dbus.xml missing in the 1.6.6 tarballs; taken from git.
+Source1:liferea_dbus.xml
 # PATCH-FEATURE-OPENSUSE liferea-opensuse-feeds.patch -- Add openSUSE feeds to 
default feeds
 Patch0: liferea-opensuse-feeds.patch
-# PATCH-FIX-UPSTREAM libnotify-0.7-api.patch fcro...@novell.com -- fix build 
with libnotify 0.7.x (git)
-Patch1: libnotify-0.7-api.patch
-# PATCH-FIX-UPSTREAM liferea-1.6.5-nm09.patch fcro...@novell.com -- fix 
compatibility with NM 0.9 (git)
-Patch2: liferea-1.6.5-nm09.patch
-
+# PATCH-FIX-UPSTREAM liferea-libnotify07.patch dims...@opensuse.org -- fix 
build with libnotify 0.7.x; discussed with upstream, but won't enter 1.6.x 
branch
+Patch1: liferea-libnotify07.patch
 BuildRequires:  NetworkManager-devel
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
@@ -64,9 +64,13 @@
 %lang_package
 %prep
 %setup -q
+if [ -f src/liferea_dbus.xml]; then
+  echo "src/liferea_dbus.xml is part of the tarball. Please drop it from the 
source section."
+  /bin/false
+fi
+cp %{S:1} src/liferea_dbus.xml
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 autoreconf -fi

++ liferea-libnotify07.patch ++
Index: liferea-1.6.6/configure.ac
===
--- liferea-1.6.6.orig/configure.ac
+++ liferea-1.6.6/configure.ac
@@ -77,7 +77,7 @@ dnl libnotify
 dnl *
 
 if test "x$enable_libnotify" = "xyes"; then
-   PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= 0.3.2, libnotify << 
0.5],enable_libnotify=yes,enable_libnotify=no)
+   PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= 
0.3.2],enable_libnotify=yes,enable_libnotify=no)
AC_SUBST(LIBNOTIFY_CFLAGS)
AC_SUBST(LIBNOTIFY_LIBS)
 else
Index: liferea-1.6.6/src/notification/libnotify.c
===
--- liferea-1.6.6.orig/src/notification/libnotify.c
+++ liferea-1.6.6/src/notification/libnotify.c
@@ -43,6 +43,10 @@
 
 #include "notification/notification.h"
 
+#ifndef NOTIFY_CHECK_VERSION
+#define NOTIFY_CHECK_VERSION(x,y,z) 0
+#endif
+
 static gboolean supports_actions = FALSE;
 
 static void notif_libnotify_callback_open ( NotifyNotification *n, gchar 
*action, gpointer user_data ) {
@@ -150,8 +154,12 @@ static void notif_libnotify_callback_sho
 // notify_notification_update ( n, node_get_title(node_p), 
labelText_now_p, NULL);
 // notify_notification_clear_actions(n);
 

commit transmission for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package transmission for openSUSE:Factory
checked in at Tue Jul 5 10:28:27 CEST 2011.




--- GNOME/transmission/transmission.changes 2011-06-01 15:58:12.0 
+0200
+++ /mounts/work_src_done/STABLE/transmission/transmission.changes  
2011-06-30 11:23:41.0 +0200
@@ -1,0 +2,21 @@
+Thu Jun 30 10:07:01 CEST 2011 - dims...@opensuse.org
+
+- Update to version 2.32:
+  + All Platforms:
+- Fix error caused by some "open-file-limit" configuration
+  settings
+- Fix 2.30 problem seeding to some peers
+- Fix bug converting torrent file text contents to UTF-8
+- Better µTP support on systems running uClibc
+- Other small bug fixes
+  + GTK+:
+- Fix 2.30 error opening torrents from a web browser
+- Remove GNOME desktop proxy support
+  + Web Client:
+- Fix bug when adding torrents
+- Add torrents by info hash in the add dialog
+- Sorting by ratio
+- Allow drag-and-drop to add links
+- Add xz BuildRequires to be able to decompress the tar.xz source.
+
+---

calling whatdependson for head-i586


Old:

  transmission-2.31.tar.bz2

New:

  transmission-2.32.tar.xz



Other differences:
--
++ transmission.spec ++
--- /var/tmp/diff_new_pack.b4JATy/_old  2011-07-05 10:25:33.0 +0200
+++ /var/tmp/diff_new_pack.b4JATy/_new  2011-07-05 10:25:33.0 +0200
@@ -34,10 +34,12 @@
 BuildRequires:  libqt4-devel
 BuildRequires:  openssl-devel
 BuildRequires:  update-desktop-files
-Version:2.31
+# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
+BuildRequires:  xz
+Version:2.32
 Release:1
 Summary:Lightweight, yet powerful BitTorrent client
-Source0:
http://download.transmissionbt.com/files/%{name}-%{version}.tar.bz2
+Source0:
http://download.transmissionbt.com/files/%{name}-%{version}.tar.xz
 Source1:transmission-qt.desktop
 Url:http://www.transmissionbt.com/
 Group:  Productivity/Networking/Other






Remember to have fun...

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



commit uget for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package uget for openSUSE:Factory
checked in at Tue Jul 5 10:25:20 CEST 2011.




--- GNOME/uget/uget.changes 2011-06-02 22:45:09.0 +0200
+++ /mounts/work_src_done/STABLE/uget/uget.changes  2011-06-17 
08:59:55.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun 17 08:59:33 CEST 2011 - vu...@opensuse.org
+
+- Stop using source service to download the tarball, as Factory
+  will move away from this.
+
+---

calling whatdependson for head-i586


Old:

  _service
  _service:recompress:download_url:uget-1.8.0.tar.bz2
  _service:set_version:uget.spec

New:

  uget-1.8.0.tar.gz



Other differences:
--
++ uget.spec ++
--- /var/tmp/diff_new_pack.qEGBYO/_old  2011-07-05 10:24:53.0 +0200
+++ /var/tmp/diff_new_pack.qEGBYO/_new  2011-07-05 10:24:53.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   uget
-Version:0
-Release:4
+Version:1.8.0
+Release:3
 License:LGPLv2.1+
 Summary:Easy-to-use GTK+ Download Manager
 Url:http://urlget.sourceforge.net/
 Group:  Productivity/Networking/Web/Utilities
-Source: %{name}-%{version}.tar.bz2
+Source: %{name}-%{version}.tar.gz
 BuildRequires:  glib2-devel
 BuildRequires:  gstreamer-0_10-devel
 BuildRequires:  intltool






Remember to have fun...

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



commit libreoffice-l10n-extras for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package libreoffice-l10n-extras for 
openSUSE:Factory
checked in at Tue Jul 5 10:24:42 CEST 2011.




--- libreoffice-l10n-extras/libreoffice-l10n-extras.changes 2011-03-18 
19:00:49.0 +0100
+++ 
/mounts/work_src_done/STABLE/libreoffice-l10n-extras/libreoffice-l10n-extras.changes
2011-06-08 17:55:39.0 +0200
@@ -1,0 +2,10 @@
+Wed Jun  8 17:29:54 CEST 2011 - pmla...@suse.cz
+
+- updated to libreoffice-3.3.3.1 (3.3.3-rc1)
+
+---
+Wed Mar 23 20:08:17 CET 2011 - pmla...@suse.cz
+
+- libreoffice-3.3.2.2 == 3.3.2-rc2 == final
+
+---

calling whatdependson for head-i586


Old:

  libreoffice-extras-3.3.2.2.tar.bz2

New:

  libreoffice-extras-3.3.3.1.tar.bz2



Other differences:
--
++ libreoffice-l10n-extras.spec ++
--- /var/tmp/diff_new_pack.2joNw2/_old  2011-07-05 10:15:28.0 +0200
+++ /var/tmp/diff_new_pack.2joNw2/_new  2011-07-05 10:15:28.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   libreoffice-l10n-extras
-Version:3.3.2.2
+Version:3.3.3.1
 Release:1
 %define piece extras
-%define ooo_build_version 3.3.2.2
-%define ooo_piece_version 3.3.2.2
+%define ooo_build_version 3.3.3.1
+%define ooo_piece_version 3.3.3.1
 %define ooo_sourcedirname libreoffice-build-%ooo_piece_version
 %define ooo_prefix%_libdir
 %define ooo_home  libreoffice

++ libreoffice-extras-3.3.2.2.tar.bz2 -> libreoffice-extras-3.3.3.1.tar.bz2 
++
libreoffice-l10n-extras/libreoffice-extras-3.3.2.2.tar.bz2 
/mounts/work_src_done/STABLE/libreoffice-l10n-extras/libreoffice-extras-3.3.3.1.tar.bz2
 differ: char 11, line 1






Remember to have fun...

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



commit ksh for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package ksh for openSUSE:Factory
checked in at Tue Jul 5 10:15:13 CEST 2011.




--- ksh/ksh.changes 2011-06-17 12:32:42.0 +0200
+++ /mounts/work_src_done/STABLE/ksh/ksh.changes2011-07-04 
17:44:28.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul  4 15:19:20 UTC 2011 - wer...@suse.de
+
+- Avoid crash on unset of function within the same function 
+
+---

calling whatdependson for head-i586


New:

  ksh93-unset-f.dif



Other differences:
--
++ ksh.spec ++
--- /var/tmp/diff_new_pack.FXatdm/_old  2011-07-05 10:14:48.0 +0200
+++ /var/tmp/diff_new_pack.FXatdm/_new  2011-07-05 10:14:48.0 +0200
@@ -37,7 +37,7 @@
 %endif
 AutoReqProv:on
 Version:93t
-Release:198
+Release:200
 Summary:Korn Shell
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: INIT.2010-06-21.tar.bz2
@@ -77,6 +77,7 @@
 Patch23:ksh93-array.dif
 Patch24:ksh93-pipe.dif
 Patch25:ksh93-argv.dif
+Patch26:ksh93-unset-f.dif
 %global use_suid_exe 0
 %global use_locale 1
 %global debug_memleak 0
@@ -153,6 +154,7 @@
 %patch23
 %patch24
 %patch25
+%patch26
 
 %build
   TMPDIR=$(mktemp -d /tmp/ksh-build.XX) || exit 1

++ ksh93-unset-f.dif ++
--- src/cmd/ksh93/sh/xec.c
+++ src/cmd/ksh93/sh/xec.c  2011-07-04 15:09:52.252426415 +
@@ -2780,7 +2780,8 @@ int sh_funscope(int argn, char *argv[],i
jmpval = sigsetjmp(buff.buff,0);
if(!fun)
{
-   shp->st.filename = fp->node->nvalue.rp->fname;
+   if (fp->node->nvalue.rp)
+   shp->st.filename = fp->node->nvalue.rp->fname;
shp->st.funname = nv_name(fp->node);
shp->last_root = nv_dict(DOTSHNOD);
nv_putval(SH_PATHNAMENOD,shp->st.filename,NV_NOFREE);





Remember to have fun...

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



commit libzypp for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory
checked in at Tue Jul 5 10:14:39 CEST 2011.




--- libzypp/libzypp.changes 2011-06-29 12:39:40.0 +0200
+++ /mounts/work_src_done/STABLE/libzypp/libzypp.changes2011-07-04 
16:09:04.0 +0200
@@ -1,0 +2,13 @@
+Mon Jul  4 10:41:42 CEST 2011 - m...@suse.de
+
+- Make fix for bnc#702576 more robust. 
+- Enhance fix for bnc#699435. Return an error if download in advance 
+  failed to provide all packages, so zypper does not silently quit.
+- version 9.8.3 (8)
+
+---
+Thu Jun 30 01:13:43 CEST 2011 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---

calling whatdependson for head-i586


Old:

  libzypp-9.8.2.tar.bz2

New:

  libzypp-9.8.3.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.AURZbo/_old  2011-07-05 10:08:09.0 +0200
+++ /var/tmp/diff_new_pack.AURZbo/_new  2011-07-05 10:08:09.0 +0200
@@ -23,7 +23,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:9.8.2
+Version:9.8.3
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
@@ -31,6 +31,7 @@
 Obsoletes:  yast2-packagemanager
 
 # Features we provide (update doc/autoinclude/FeatureTest.doc):
+Provides:   libzypp(plugin) = 0
 Provides:   libzypp(plugin:commit) = 0
 Provides:   libzypp(plugin:services) = 0
 Provides:   libzypp(plugin:system) = 0

++ libzypp-9.8.2.tar.bz2 -> libzypp-9.8.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-9.8.2/VERSION.cmake 
new/libzypp-9.8.3/VERSION.cmake
--- old/libzypp-9.8.2/VERSION.cmake 2011-06-29 12:36:39.0 +0200
+++ new/libzypp-9.8.3/VERSION.cmake 2011-07-04 16:04:10.0 +0200
@@ -61,8 +61,8 @@
 SET(LIBZYPP_MAJOR "9")
 SET(LIBZYPP_COMPATMINOR "8")
 SET(LIBZYPP_MINOR "8")
-SET(LIBZYPP_PATCH "2")
+SET(LIBZYPP_PATCH "3")
 #
-# LAST RELEASED: 9.8.2 (8)
+# LAST RELEASED: 9.8.3 (8)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-9.8.2/doc/autoinclude/FeatureTest.doc 
new/libzypp-9.8.3/doc/autoinclude/FeatureTest.doc
--- old/libzypp-9.8.2/doc/autoinclude/FeatureTest.doc   1970-01-01 
01:00:00.0 +0100
+++ new/libzypp-9.8.3/doc/autoinclude/FeatureTest.doc   2011-07-04 
16:04:10.0 +0200
@@ -0,0 +1,56 @@
+/**
+
+\page feature-test Testing for provided features.
+
+\author Michael Andres 
+
+
+\section intro Introduction
+
+The libzypp rpm package will indicate the presence of certain features by 
using special \c Provides:
+
+\verbatim
+  # Provides: libzypp(FEATURE) = FEATURE_VERSION
+  Provides:   libzypp(code10) = 0
+\endverbatim
+
+Packages requiring a feature may use the corresponding \c Requires: in their 
.spec file.
+
+
+
+\section features Features
+
+
+  plugin
+  
+version 0
+General ability to provide and handle plugins.
+  
+
+  plugin:commit
+  
+version 0
+\see \ref plugin-commit 
+  
+
+  plugin:services
+  
+version 0
+\see \ref plugin-services 
+  
+
+  plugin:system
+  
+version 0
+Plugin executed when system content change is detected (by now SUSE 
Manager/spacewalk only).
+  
+
+  plugin:urlresolver
+  
+version 0
+\see \ref plugin-url-resolver 
+  
+
+
+
+*/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-9.8.2/libzypp.spec.cmake 
new/libzypp-9.8.3/libzypp.spec.cmake
--- old/libzypp-9.8.2/libzypp.spec.cmake2011-06-29 12:36:39.0 
+0200
+++ new/libzypp-9.8.3/libzypp.spec.cmake2011-07-04 16:04:10.0 
+0200
@@ -23,6 +23,7 @@
 Obsoletes:  yast2-packagemanager
 
 # Features we provide (update doc/autoinclude/FeatureTest.doc):
+Provides:   libzypp(plugin) = 0
 Provides:   libzypp(plugin:commit) = 0
 Provides:   libzypp(plugin:services) = 0
 Provides:   libzypp(plugin:system) = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-9.8.2/package/libzypp.changes 
new/libzypp-9.8.3/package/libzypp.changes
--- old/libzypp-9.8.2/package/libzypp.changes   2011-06-29 12:36:39.0 
+0200
+++ new/libzypp-9.8.3/package/libzypp.changes   2011-07-04 16:04:10.0 
+0200
@@ -1,4 +1,17 @@
 ---
+Mon Jul  4 10:41:42 CEST 2011 - m...@suse.de
+
+- Make fix for bnc#702576 more robust. 
+- Enhance fix for bnc#699435. Return an error if download in advance 
+

commit Mesa for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory
checked in at Tue Jul 5 10:07:54 CEST 2011.




--- Mesa/Mesa.changes   2011-06-16 17:59:28.0 +0200
+++ /mounts/work_src_done/STABLE/Mesa/Mesa.changes  2011-07-03 
15:23:49.0 +0200
@@ -1,0 +2,13 @@
+Sun Jul  3 13:21:31 UTC 2011 - v...@ovi.com
+
+- Update Mesa 7.10.3
+  * Few crashes and rendering fixes.
+
+---
+Mon Jun 20 15:05:42 UTC 2011 - sndir...@novell.com
+
+- libdrm-2.4.26-nouveau.diff
+  * Fixes build of Mesa 7.10.2 nouveau driver with libdrm 2.4.26
+   (fdo #35562)
+
+---

calling whatdependson for head-i586


Old:

  MesaLib-7.10.2.tar.bz2

New:

  MesaLib-7.10.3.tar.bz2
  libdrm-2.4.26-nouveau.diff



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.pN6rKN/_old  2011-07-05 10:06:59.0 +0200
+++ /var/tmp/diff_new_pack.pN6rKN/_new  2011-07-05 10:06:59.0 +0200
@@ -20,10 +20,10 @@
 %define enable_nouveau_gallium 1
 %define enable_radeon_gallium 1
 
-%define _version 7.10.2
+%define _version 7.10.3
 
-Version:7.10.2
-Release:12
+Version:7.10.3
+Release:1
 
 Name:   Mesa
 BuildRequires:  gcc-c++ libdrm-devel libexpat-devel pkgconfig python-base 
xorg-x11-devel
@@ -53,6 +53,7 @@
 Patch8: egl-buildfix.diff
 Patch9: u_GLX-SWrast-Make-GLX-with-SWrast-enabled-work-on-olde.patch
 Patch11:u_Fix-crash-in-swrast-when-setting-a-texture-for-a-pix.patch
+Patch12:libdrm-2.4.26-nouveau.diff
 # already upstream
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -143,6 +144,7 @@
 %patch8
 %patch9 -p1
 %patch11 -p1
+%patch12 -p1
 
 %build
 

++ MesaLib-7.10.2.tar.bz2 -> MesaLib-7.10.3.tar.bz2 ++
Mesa/MesaLib-7.10.2.tar.bz2 
/mounts/work_src_done/STABLE/Mesa/MesaLib-7.10.3.tar.bz2 differ: char 11, line 1

++ libdrm-2.4.26-nouveau.diff ++
Fixes build of Mesa 7.10.2 nouveau driver with libdrm 2.4.26 ...

  --> https://bugs.freedesktop.org/show_bug.cgi?id=35562

--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_clear.c.ark   2011-04-11 
10:26:00.717291484 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_clear.c   2011-04-11 
10:26:05.600624698 +0200
@@ -24,6 +24,8 @@
 #include "pipe/p_defines.h"
 #include "pipe/p_state.h"
 
+#include 
+
 #include "nv50_context.h"
 
 void
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_context.c.ark 2011-04-11 
10:25:55.913958268 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_context.c 2011-04-11 
10:26:00.663958154 +0200
@@ -23,6 +23,8 @@
 #include "draw/draw_context.h"
 #include "pipe/p_defines.h"
 
+#include 
+
 #include "nv50_context.h"
 #include "nv50_screen.h"
 #include "nv50_resource.h"
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_push.c.ark2011-04-11 
10:25:50.250625073 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_push.c2011-04-11 
10:25:55.873958269 +0200
@@ -4,6 +4,8 @@
 #include "util/u_format.h"
 #include "util/u_split_prim.h"
 
+#include 
+
 #include "nv50_context.h"
 #include "nv50_resource.h"
 
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_query.c.ark   2011-04-11 
10:25:44.790625206 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_query.c   2011-04-11 
10:25:50.183958407 +0200
@@ -23,6 +23,8 @@
 #include "pipe/p_context.h"
 #include "util/u_inlines.h"
 
+#include 
+
 #include "nv50_context.h"
 
 struct nv50_query {
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_screen.c.ark  2011-04-11 
10:25:32.790625497 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_screen.c  2011-04-11 
10:25:38.633958688 +0200
@@ -23,6 +23,8 @@
 #include "util/u_format_s3tc.h"
 #include "pipe/p_screen.h"
 
+#include 
+
 #include "nv50_context.h"
 #include "nv50_screen.h"
 #include "nv50_resource.h"
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_shader_state.c.ark
2011-04-11 10:25:38.710625354 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_shader_state.c2011-04-11 
10:25:44.713958540 +0200
@@ -26,6 +26,8 @@
 #include "pipe/p_state.h"
 #include "util/u_inlines.h"
 
+#include 
+
 #include "nv50_context.h"
 
 static void
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_state_validate.c.ark  
2011-04-11 10:25:27.520625626 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_state_validate.c  2011-04-11 
10:25:32.737292166 +0200
@@ -22,6 +22,7 @@
 
 #include "util/u_format.h"
 
+#include 
 #include "nv50_context.h"
 #include "nv50_resource.h"
 #include "nouveau/nouveau_stateobj.h"
--- Mesa-7.10.1/src/gallium/drivers/nv50/nv50_surface.c.ark 2011-04-11 
10:25:22.407292417 +0200
+++ Mesa-7.10.1/src/gallium/drivers/nv50/nv50_surface.c 2011-04-11 
10:25:27.450625628 +0200
@@ -22,6 +22,7 @@
 
 #define __NOUVEAU_PUSH_H__
 #include 
+#include 
 #include "nouveau/nouveau_pushbuf.h"
 #incl

commit glibc for openSUSE:Factory

2011-07-05 Thread h_root

Hello community,

here is the log from the commit of package glibc for openSUSE:Factory
checked in at Tue Jul 5 10:02:20 CEST 2011.




--- glibc/glibc.changes 2011-06-30 13:28:06.0 +0200
+++ /mounts/work_src_done/STABLE/glibc/glibc.changes2011-07-04 
13:53:44.0 +0200
@@ -1,0 +2,24 @@
+Mon Jul  4 10:00:46 UTC 2011 - a...@suse.de
+
+- Further cleanup of ld.so.conf to remove duplicate directories 
+  and allow override of system directories (bnc#671725)
+- Fix futex bug (added patch glibc-fix-rwlock-stack-imbalance.patch
+  from sourceware bug #12403).
+
+---
+Fri Jul  1 16:09:14 UTC 2011 - a...@suse.de
+
+- Remove glibc-2.10.99-ia64-include.diff, it's not needed anymore.
+- Disable obsolete patches glibc-fnmatch-multibyte.diff,
+  glibc-2.10-nscd-nostack.diff, glibc-2.3.1.localedef.diff
+- Add glibc-2.13-localedef.patch to fix alignment problem.
+- Adjust glibc-version.diff, FLOATING_STACKS variable is obsolete.
+
+---
+Thu Jun 30 12:17:33 UTC 2011 - a...@suse.de
+
+- Remove old ARM patches as it's unclear why those are needed and arm
+  support is anyhow broken according to comments here and in spec
+  files.
+
+---

calling whatdependson for head-i586


Old:

  ARM_glibc-2.10.1-local-eabi-wchar.diff
  ARM_glibc-2.10.1-local-hwcap-updates.diff
  ARM_glibc-2.10.1-local-lowlevellock.diff
  ARM_glibc-2.10.1-local-no-hwcap.diff
  glibc-2.10.99-ia64-include.diff
  minmem

New:

  glibc-2.13-localedef.patch
  glibc-fix-rwlock-stack-imbalance.patch



Other differences:
--
++ glibc.spec ++
--- /var/tmp/diff_new_pack.lPNXJI/_old  2011-07-05 09:30:53.0 +0200
+++ /var/tmp/diff_new_pack.lPNXJI/_new  2011-07-05 09:30:53.0 +0200
@@ -77,7 +77,7 @@
 Obsoletes:  glibc-32bit
 %endif
 Version:2.13
-Release:19
+Release:21
 Url:http://www.gnu.org/software/libc/libc.html
 Source: glibc-%{version}-996cf2ef0727.tar.bz2
 Source2:http://ftp.gnu.org/gnu/glibc/glibc-ports-2.13.tar.bz2
@@ -111,7 +111,7 @@
 Patch4: glibc-2.3.locales.diff.bz2
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch5: crypt_blowfish-1.0-suse.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
+# PATCH-FIX-OPENSUSE add some extra information to version output - 
ku...@suse.de
 Patch7: glibc-version.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch8: glibc-2.4.90-revert-only-euro.diff
@@ -135,9 +135,9 @@
 Patch22:glibc-2.4.90-nscd.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch23:glibc-2.3.3-nscd-db-path.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
+# PATCH-FIX-UPSTREAM - handle zero negative timeout, committed for glibc 2.15
 Patch24:glibc-2.3.5-nscd-zeronegtimeout.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
+# PATCH-FIX-OPENSUSE prefer -lang rpm packages
 Patch25:glibc-2.3.90-langpackdir.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch27:glibc-2.6-configure.diff
@@ -153,19 +153,17 @@
 Patch33:glibc-compiled-binaries.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch36:glibc-no-unwind-tables.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
+# PATCH-FIX-OPENSUSE bnc#387202
 Patch37:glibc-2.10-nscd-nostack.diff
 # PATCH-FEATURE-SLE increase cpusetsize to 4096, needs to be kept for 
compatibility ku...@suse.de
 Patch38:glibc-cpusetsize.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
-Patch39:glibc-2.10.99-ia64-include.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch40:libm-x86-64-exceptions.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch41:glibc-uio-cell.diff
 # PATCH-FIX-SLE -- Do not assume statfs64 exists for ia64's ia32 layer 
bnc#534828
 Patch42:glibc-statfs64-ia64.diff
-# PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
+# PATCH-FIX-UPSTREAM -- add missing includes a...@suse.de
 Patch43:missing-include-build-fix.diff
 # PATCH-MISSING-TAG -- See 
http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch44:glibc-ppc64-vdso-time.diff
@@ -181,7 +179,7 @@
 Patch49:glibc-fini-unwin