commit gnutls for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package gnutls for openSUSE:11.4
checked in at Fri Feb 17 16:47:54 CET 2012.




--- old-versions/11.4/UPDATES/all/gnutls/gnutls.changes 2011-11-14 
09:28:23.0 +0100
+++ 11.4/gnutls/gnutls.changes  2012-02-17 08:33:14.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 13 06:38:11 UTC 2012 - g...@suse.com
+
+- fix Bug[bnc#739898] - GnuTLS DTLS plaintext recovery attack.
+  CVE-2012-0390
+
+---
@@ -4 +10 @@
-- fix Bug 729486 - VUL-1: CVE-2011-4128: gnutls: buffer overflow
+- fix Bug[bnc#729486] - VUL-1: CVE-2011-4128: gnutls: buffer overflow

calling whatdependson for 11.4-i586


New:

  CVE-2012-0390.patch



Other differences:
--
++ gnutls.spec ++
--- /var/tmp/diff_new_pack.3z46nf/_old  2012-02-17 16:47:40.0 +0100
+++ /var/tmp/diff_new_pack.3z46nf/_new  2012-02-17 16:47:40.0 +0100
@@ -21,13 +21,14 @@
 Name:   gnutls
 BuildRequires:  gcc-c++ libgcrypt-devel libopencdk-devel libtasn1-devel 
pkg-config
 Version:2.8.6
-Release:5.
+Release:5.
 License:LGPLv2.1+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.gnutls.org/
 Source0:%name-%version.tar.bz2
 Source1:baselibs.conf
 Patch1: CVE-2011-4128.patch
+Patch2: CVE-2012-0390.patch
 Summary:The GNU Transport Layer Security Library
 Group:  Productivity/Networking/Security
 AutoReqProv:on
@@ -139,7 +140,7 @@
 %prep
 %setup -q
 %patch1 -p1
-#%patch2 -p1
+%patch2 -p1
 
 %build
 autoreconf -fi

++ CVE-2012-0390.patch ++
Index: gnutls-2.8.6/lib/gnutls_cipher.c
===
--- gnutls-2.8.6.orig/lib/gnutls_cipher.c
+++ gnutls-2.8.6/lib/gnutls_cipher.c
@@ -541,7 +541,12 @@ _gnutls_ciphertext2compressed (gnutls_se
 }
 
   if (length < 0)
-length = 0;
+  {
+ /* Setting a proper length to prevent timing differences in
+  * processing of records with invalid encryption.
+  */
+ length = ciphertext.size - hash_size;
+  }
   c_length = _gnutls_conv_uint16 ((uint16_t) length);
 
   /* Pass the type, version, length and compressed through
continue with "q"...



Remember to have fun...

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



commit php5 for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package php5 for openSUSE:11.4
checked in at Fri Feb 17 16:47:33 CET 2012.




--- old-versions/11.4/UPDATES/all/php5/php5.changes 2012-01-18 
10:06:06.0 +0100
+++ 11.4/php5/php5.changes  2012-02-16 17:36:48.0 +0100
@@ -1,0 +2,24 @@
+Tue Feb  7 14:00:12 UTC 2012 - pgaj...@suse.com
+
+- security update:
+  * CVE-2012-0807 [bnc#743308]
+  * CVE-2012-0057 [bnc#741520]
+  * CVE-2011-4153 [bnc#741859]
+  * CVE-2012-0831 [bnc#746661]
+
+---
+Fri Feb  3 08:32:32 UTC 2012 - pgaj...@suse.com
+
+- security update CVE-2012-0830 and other memory leaks
+  (fixes the fix of CVE-2011-4885) [bnc#744966]
+
+---
+Wed Jan 25 15:02:28 UTC 2012 - pgaj...@suse.com
+
+- security update:
+  * CVE-2012-0781 [bnc#742273]
+  * CVE-2012-0788 [bnc#742806]
+  * memory corruption in parse_ini_string() [bnc#742806]
+  * CVE-2012-0789 [bnc#742806]
+
+---

calling whatdependson for 11.4-i586


New:

  php-5.3.5-CVE-2011-4153.patch
  php-5.3.5-CVE-2012-0057.patch
  php-5.3.5-CVE-2012-0781.patch
  php-5.3.5-CVE-2012-0788.patch
  php-5.3.5-CVE-2012-0789.patch
  php-5.3.5-CVE-2012-0807.patch
  php-5.3.5-CVE-2012-0830.patch
  php-5.3.5-CVE-2012-0831.patch
  php-5.3.5-memory-corruption-parse_ini_string.patch



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.Fxuo0G/_old  2012-02-17 16:47:10.0 +0100
+++ /var/tmp/diff_new_pack.Fxuo0G/_new  2012-02-17 16:47:10.0 +0100
@@ -103,7 +103,7 @@
 ###
 ###
 Version:5.3.5
-Release:5.
+Release:5.
 Provides:   php zend php-xml php-spl php-simplexml php-session php-pcre 
php-date php-reflection php-filter
 Provides:   php-api = %{apiver}, php-zend-abi = %{zendver}
 Provides:   php(api) = %{apiver}, php(zend-abi) = %{zendver}
@@ -163,6 +163,15 @@
 Patch48:php-5.3.5-CVE-2011-3182.patch
 Patch49:php-5.3.5-CVE-2011-1466.patch
 Patch50:php-5.3.5-CVE-2011-4885.patch
+Patch51:php-5.3.5-CVE-2012-0781.patch
+Patch52:php-5.3.5-CVE-2012-0788.patch
+Patch53:php-5.3.5-memory-corruption-parse_ini_string.patch
+Patch54:php-5.3.5-CVE-2012-0789.patch
+Patch55:php-5.3.5-CVE-2012-0830.patch
+Patch56:php-5.3.5-CVE-2012-0807.patch
+Patch57:php-5.3.5-CVE-2012-0057.patch
+Patch58:php-5.3.5-CVE-2011-4153.patch
+Patch59:php-5.3.5-CVE-2012-0831.patch
 Url:http://www.php.net
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:PHP5 Core Files
@@ -1298,6 +1307,15 @@
 %patch48
 %patch49
 %patch50
+%patch51
+%patch52
+%patch53
+%patch54
+%patch55 -p1
+%patch56
+%patch57
+%patch58
+%patch59
 
 # we build three SAPI
 %{__mkdir_p} build-apache2 build-fpm


++ php-5.3.5-CVE-2011-1466.patch ++
--- /var/tmp/diff_new_pack.Fxuo0G/_old  2012-02-17 16:47:10.0 +0100
+++ /var/tmp/diff_new_pack.Fxuo0G/_new  2012-02-17 16:47:10.0 +0100
@@ -39,10 +39,11 @@
/* Calculate the century (year/100). */
century = temp / DAYS_PER_400_YEARS;
  
-@@ -190,6 +182,10 @@ void SdnToGregorian(
+@@ -190,6 +182,11 @@ void SdnToGregorian(
*pYear = year;
*pMonth = month;
*pDay = day;
++   return;
 +fail:
 +  *pYear = 0;
 +  *pMonth = 0;

++ php-5.3.5-CVE-2011-4153.patch ++
http://svn.php.net/viewvc?view=revision&revision=319442
http://svn.php.net/viewvc?view=revision&revision=319453
#-0- 
Zend/zend_builtin_functions.c
#-1-
ext/soap/php_sdl.c
#-2-
ext/standard/syslog.c
#-3-
ext/standard/browscap.c
#-4-
N/A
#-5-
N/A
#-6-
ext/session/mod_files.c
ext/standard/file.c
Index: Zend/zend_builtin_functions.c
===
--- Zend/zend_builtin_functions.c.orig
+++ Zend/zend_builtin_functions.c
@@ -683,6 +683,9 @@ repeat:
}
c.flags = case_sensitive; /* non persistent */
c.name = zend_strndup(name, name_len);
+if(c.name == NULL) {
+RETURN_FALSE;
+}
c.name_len = name_len+1;
c.module_number = PHP_USER_CONSTANT;
if (zend_register_constant(&c TSRMLS_CC) == SUCCESS) {
Index: ext/standard/syslog.c
===
--- ext/standard/syslog.c.orig
+++ ext/standard/syslog.c
@@ -234,6 +234,9 @@ PHP_FUNCTION(openlog)
free(BG(syslog_device));
}
BG(syslog_device) = zend_strndup(ident, ident_len);
+   if(BG(syslog_device) == NULL) {
+   RETURN_FALSE;
+   }
openlog(BG(syslog_device), option, facility);
RETURN_TRUE;
 }
Index: ext/soap/php_sdl.c
===

commit vm-install for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package vm-install for 
openSUSE:12.1:Update:Test checked in at 2012-02-17 15:44:41

Comparing /work/SRC/openSUSE:12.1:Update:Test/vm-install (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.vm-install.new (New)


Package is "vm-install", Maintainer is "carn...@suse.com"

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/vm-install/vm-install.changes   
2012-02-08 18:17:32.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.vm-install.new/vm-install.changes  
2012-02-17 15:44:42.0 +0100
@@ -1,0 +2,11 @@
+Wed Feb 15 17:06:41 MST 2012 - carn...@novell.com
+
+- bnc#742773 - vm-install shows bogus error msg without defined 
+  installation source 
+
+---
+Mon Jan 30 13:09:57 MST 2012 - carn...@novell.com
+
+- bnc#743951 - vm-install windows too big
+
+---



Other differences:
--
++ vm-install.spec ++
--- /var/tmp/diff_new_pack.W0Hs7m/_old  2012-02-17 15:44:42.0 +0100
+++ /var/tmp/diff_new_pack.W0Hs7m/_new  2012-02-17 15:44:42.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   vm-install
 Url:http://developer.novell.com/wiki/index.php/Vm-install
 BuildRequires:  python-devel

++ vm-install-0.5.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.5.7/glade/vm-install.glade 
new/vm-install-0.5.7/glade/vm-install.glade
--- old/vm-install-0.5.7/glade/vm-install.glade 2011-07-16 00:06:25.0 
+0200
+++ new/vm-install-0.5.7/glade/vm-install.glade 2012-01-30 21:10:57.0 
+0100
@@ -4414,7 +4414,7 @@
  fv_install_help
  False
  True
- GTK_JUSTIFY_LEFT
+ GTK_JUSTIFY_FILL
  True
  False
  0
@@ -4429,7 +4429,7 @@

  0
  False
- False
+ True

  
 
@@ -4648,7 +4648,7 @@
  fv_os_settings_help
  False
  True
- GTK_JUSTIFY_LEFT
+ GTK_JUSTIFY_FILL
  True
  False
  0
@@ -4663,7 +4663,7 @@

  0
  False
- False
+ True

  
 
@@ -4786,7 +4786,7 @@
  fv_i_extra_args_help
  False
  True
- GTK_JUSTIFY_LEFT
+ GTK_JUSTIFY_FILL
  True
  False
  0
@@ -4801,7 +4801,7 @@

  0
  False
- False
+ True

  
 
@@ -4916,7 +4916,7 @@
  fv_exit_args_help
  False
  True
- GTK_JUSTIFY_LEFT
+ GTK_JUSTIFY_FILL
  True
  False
  0
@@ -4931,15 +4931,15 @@

  0
  False
- False
+ True

  
 
  

  True
- 3
- 2
+ 1
+ 6
  False
  2
  10
@@ -4950,7 +4950,7 @@
  fv_on_poweroff_label
  False
  False
- GTK_JUSTIFY_LEFT
+ GTK_JUSTIFY_FILL
  False
  False
  1
@@ -4

commit vinagre for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package vinagre for 
openSUSE:12.1:Update:Test checked in at 2012-02-17 15:44:35

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


Package is "vinagre", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/vinagre/vinagre.changes 2012-02-16 
10:39:00.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.vinagre.new/vinagre.changes
2012-02-17 15:44:36.0 +0100
@@ -6 +6 @@
-  + Hold the slave PTY open, so that SSH does not fail
+  + Hold the slave PTY open, so that SSH does not fail (bnc#746762)



Other differences:
--
++ vinagre.spec ++
--- /var/tmp/diff_new_pack.gkOiNy/_old  2012-02-17 15:44:36.0 +0100
+++ /var/tmp/diff_new_pack.gkOiNy/_new  2012-02-17 15:44:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vinagre
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   vinagre
 Summary:VNC client for GNOME
+License:GPL-2.0+
+Group:  Productivity/Networking/Other
 Version:3.2.2
-Release:1
+Release:0
 # FIXME: when patch0 is dropped, remove the first make that is needed to 
generate a header; it'll get fixed properly upstream because the missing file 
will be in the tarball
 # FIXME: Check if bgo#653558 has been fixed. Once fixed, remove the 
-Wl,--no-as-needed hack in the build section and verify if the plugins work.
-License:GPLv2+
-Group:  Productivity/Networking/Other
 Url:http://www.gnome.org/projects/vinagre/
 Source0:
http://download.gnome.org/sources/vinagre/3.2/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM vinagre-fix-missing-header.patch bgo#652531 
vu...@opensuse.org -- Fix build because of vala not generating a header; based 
on 
https://gitorious.org/vinagre/vinagre-elmarco/commit/0d7727a501e2d9fcf911b9a96fda384e53878af5

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



commit mutter for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mutter for openSUSE:12.1:Update:Test 
checked in at 2012-02-17 15:44:09

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


Package is "mutter", Maintainer is "j...@suse.com"

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/mutter/mutter.changes   2012-02-17 
15:44:09.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.mutter.new/mutter.changes  
2012-02-17 15:44:12.0 +0100
@@ -1,0 +2,13 @@
+Thu Feb 16 17:49:35 UTC 2012 - vu...@opensuse.org
+
+- Update to new upstream version to fix bnc#745650.
+- Changes from version 3.2.2:
+  + Fix a crash that could occur when unredirected full-screen
+windows.
+  + Fix a memory leak. [bgo#642652]
+  + Updated translations.
+- 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.
+
+---

Old:

  mutter-3.2.1.tar.bz2

New:

  mutter-3.2.2.tar.xz



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.douJCl/_old  2012-02-17 15:44:12.0 +0100
+++ /var/tmp/diff_new_pack.douJCl/_new  2012-02-17 15:44:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mutter
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   mutter
 BuildRequires:  clutter-devel
@@ -29,17 +27,19 @@
 BuildRequires:  startup-notification-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
+BuildRequires:  xz
 BuildRequires:  zenity
 BuildRequires:  pkgconfig(libcanberra-gtk3)
 %if 0%{?BUILD_FROM_VCS}
 BuildRequires:  gnome-common
 %endif
-License:GPLv2+
-Group:  System/GUI/GNOME
-Version:3.2.1
-Release:1
+Version:3.2.2
+Release:0
 Summary:Window and compositing manager based on Clutter
-Source: 
http://download.gnome.org/sources/mutter/3.2/%{name}-%{version}.tar.bz2
+License:GPL-2.0+
+Group:  System/GUI/GNOME
+Source: 
http://download.gnome.org/sources/mutter/3.2/%{name}-%{version}.tar.xz
 Url:http://www.gnome.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   zenity
@@ -52,7 +52,6 @@
 from Metacity.
 
 %package devel
-License:GPLv2+
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/GNOME
 Requires:   %{name} = %{version}

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



commit gnome-shell for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for 
openSUSE:12.1:Update:Test checked in at 2012-02-17 15:43:55

Comparing /work/SRC/openSUSE:12.1:Update:Test/gnome-shell (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.gnome-shell.new (New)


Package is "gnome-shell", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/gnome-shell/gnome-shell.changes 
2012-01-03 17:43:46.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.gnome-shell.new/gnome-shell.changes
2012-02-17 15:43:57.0 +0100
@@ -1,0 +2,47 @@
+Thu Feb 16 17:31:55 UTC 2012 - vu...@opensuse.org
+
+- Update to new upstream version to fix bnc#745650.
+- Changes from version 3.2.2.1:
+  + Fix several regressions with tray icons introduced in 3.2.2.
+[bgo#664138]
+- Changes from version 3.2.2:
+  + Fix crash when searching in the shell caused by .desktop files
+without Exec= lines (commonly, nautilus-pastebin). [bgo#663815]
+  + Message Tray:
+- Fix bug that would cause confusion between notifications from
+  different services running in the gnome-settings-daemon
+  process. [bgo#664138]
+- Don't steal the focus when popping up beneath the pointer.
+  [bgo#661358]
+- Only pop up the message tray from a hot corner, rather than
+  trapping clicks on the entire bottom row. [bgo#663366]
+  + Browser plugin and extension.gnome.org integration:
+- Fix multiple bugs that kept the plugin from working in
+  WebKit-based browsers. [bgo#663823, bgo#666444]
+- Fix plugin crash when the shell is installed but not running.
+- Fix problem that kept plugin uninstallation from working.
+  + gnome-shell-extension-tool:
+- Fix error that was printed after creating an extension.
+  [bgo#661623]
+- Use xdg-open rather than the deprecated gnome-open.
+  + Don't recreate dash icons unnecessarily - this hopefully fixes
+various crashes. [bgo#648450]
+  + Fix several bugs that caused errors and slowdowns when updating
+the network menu. [bgo#651378, bgo#659277, bgo#663278]
+  + Fix several crashers related to updating workspace thumbnails
+[bgo#667652]
+  + Fix memory management error causing gnome-shell-hotplug-sniffer
+to crash [bgo#667378]
+  + Fix crash and misdrawing with shadowed elements. [bgo#668048,
+bgo#668050]
+  + Fix several small memory leaks.
+- Updated translations.
+- 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.
+- Remove dbus-1-python Requires: there's no python script requiring
+  dbus anymore, since quite some time.
+- Drop gnome-shell-fix-extension-tool-error-after-creating.patch:
+  fixed upstream.
+
+---

Old:

  gnome-shell-3.2.1.tar.bz2
  gnome-shell-fix-extension-tool-error-after-creating.patch

New:

  gnome-shell-3.2.2.1.tar.xz



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.p8wrzK/_old  2012-02-17 15:43:57.0 +0100
+++ /var/tmp/diff_new_pack.p8wrzK/_new  2012-02-17 15:43:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-shell
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,21 +16,18 @@
 #
 
 
-
 Name:   gnome-shell
-Version:3.2.1
-Release:1
-License:GPLv2+
+Version:3.2.2.1
+Release:0
 Summary:GNOME Shell
+License:GPL-2.0+
 Group:  System/GUI/GNOME
 Url:http://live.gnome.org/GnomeShell
-Source: 
http://download.gnome.org/sources/gnome-shell/3.2/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gnome-shell/3.2/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM gnome-shell-cleanup-signal-handlers-on-destroy.patch 
bnc#725004 sysr...@linux.com -- patch to fix some issue when using extensions 
changing the usermenu
 Patch0: gnome-shell-cleanup-signal-handlers-on-destroy.patch
 # PATCH-FIX-UPSTREAM gnome-shell-fix-deprecated-call.patch bgo#661231 
fcro...@suse.com -- fix deprecated function call
 Patch1: gnome-shell-fix-deprecated-call.patch
-# PATCH-FIX-UPSTREAM gnome-shell-fix-extension-tool-error-after-creating.patch 
bgo#661623, bnc#730106 malcolmle...@opensuse.org -- Fix error after creating 
extension and use gvfs-open (not xdg-open) as gnome-open is deprecated.
-Patch2: gnome-shell-fix-extension-tool-error-after-creating.patch
 # PATCH-FIX

commit mozilla-xulrunner192 for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package mozilla-xulrunner192 for 
openSUSE:11.4
checked in at Fri Feb 17 15:42:37 CET 2012.




--- 
old-versions/11.4/UPDATES/all/mozilla-xulrunner192/mozilla-xulrunner192.changes 
2012-02-01 09:36:41.0 +0100
+++ 11.4/mozilla-xulrunner192/mozilla-xulrunner192.changes  2012-02-16 
13:07:07.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 10:57:34 UTC 2012 - w...@rosenauer.org
+
+- security update to 1.9.2.27 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

calling whatdependson for 11.4-i586


Old:

  l10n-1.9.2.26.tar.bz2
  xulrunner-source-1.9.2.26.tar.bz2

New:

  l10n-1.9.2.27.tar.bz2
  xulrunner-source-1.9.2.27.tar.bz2



Other differences:
--
++ mozilla-xulrunner192.spec ++
--- /var/tmp/diff_new_pack.c9SYZG/_old  2012-02-17 15:42:18.0 +0100
+++ /var/tmp/diff_new_pack.c9SYZG/_new  2012-02-17 15:42:18.0 +0100
@@ -47,12 +47,12 @@
 %else
 BuildRequires:  wireless-tools
 %endif
-Version:1.9.2.26
+Version:1.9.2.27
 Release:0.
-%define releasedate 2012012400
-%define version_internal 1.9.2.26
+%define releasedate 2012021500
+%define version_internal 1.9.2.27
 %define apiversion 1.9.2
-%define uaweight 192260
+%define uaweight 192270
 Summary:Mozilla Runtime Environment 1.9.2
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Other

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.c9SYZG/_old  2012-02-17 15:42:18.0 +0100
+++ /var/tmp/diff_new_pack.c9SYZG/_new  2012-02-17 15:42:18.0 +0100
@@ -1,7 +1,7 @@
 #!/bin/bash
 
-RELEASE_TAG="FIREFOX_3_6_26_RELEASE"
-VERSION="1.9.2.26"
+RELEASE_TAG="FIREFOX_3_6_27_RELEASE"
+VERSION="1.9.2.27"
 
 # mozilla
 hg clone http://hg.mozilla.org/releases/mozilla-1.9.2 mozilla

++ l10n-1.9.2.26.tar.bz2 -> l10n-1.9.2.27.tar.bz2 ++
old-versions/11.4/UPDATES/all/mozilla-xulrunner192/l10n-1.9.2.26.tar.bz2 
11.4/mozilla-xulrunner192/l10n-1.9.2.27.tar.bz2 differ: char 11, line 1

++ xulrunner-source-1.9.2.26.tar.bz2 -> xulrunner-source-1.9.2.27.tar.bz2 
++
old-versions/11.4/UPDATES/all/mozilla-xulrunner192/xulrunner-source-1.9.2.26.tar.bz2
 11.4/mozilla-xulrunner192/xulrunner-source-1.9.2.27.tar.bz2 differ: char 11, 
line 1

continue with "q"...



Remember to have fun...

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



commit MozillaThunderbird for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package MozillaThunderbird for openSUSE:11.4
checked in at Fri Feb 17 15:42:26 CET 2012.




--- old-versions/11.4/UPDATES/all/MozillaThunderbird/MozillaThunderbird.changes 
2012-02-01 09:43:16.0 +0100
+++ 11.4/MozillaThunderbird/MozillaThunderbird.changes  2012-02-16 
12:46:00.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 11:45:13 UTC 2012 - w...@rosenauer.org
+
+- security update to 3.1.19 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

calling whatdependson for 11.4-i586


Old:

  l10n-3.1.18.tar.bz2
  thunderbird-3.1.18-source.tar.bz2

New:

  l10n-3.1.19.tar.bz2
  thunderbird-3.1.19-source.tar.bz2



Other differences:
--
++ MozillaThunderbird.spec ++
--- /var/tmp/diff_new_pack.cphx1N/_old  2012-02-17 15:42:04.0 +0100
+++ /var/tmp/diff_new_pack.cphx1N/_new  2012-02-17 15:42:04.0 +0100
@@ -25,10 +25,10 @@
 BuildRequires:  nss-shared-helper-devel
 %endif
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
-%define mainversion 3.1.18
+%define mainversion 3.1.19
 Version:%{mainversion}
 Release:0.
-%define releasedate 2012012400
+%define releasedate 2012021500
 Provides:   thunderbird = %{version}
 Summary:The Stand-Alone Mozilla Mail Component
 Url:http://www.mozilla.org/products/thunderbird/

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.cphx1N/_old  2012-02-17 15:42:04.0 +0100
+++ /var/tmp/diff_new_pack.cphx1N/_new  2012-02-17 15:42:04.0 +0100
@@ -2,8 +2,8 @@
 
 
 BRANCH="releases/comm-1.9.2" # comm-central
-RELEASE_TAG="THUNDERBIRD_3_1_18_RELEASE"
-VERSION="3.1.18"
+RELEASE_TAG="THUNDERBIRD_3_1_19_RELEASE"
+VERSION="3.1.19"
 
 echo "cloning $BRANCH..."
 hg clone http://hg.mozilla.org/$BRANCH thunderbird

++ l10n-3.1.18.tar.bz2 -> l10n-3.1.19.tar.bz2 ++
old-versions/11.4/UPDATES/all/MozillaThunderbird/l10n-3.1.18.tar.bz2 
11.4/MozillaThunderbird/l10n-3.1.19.tar.bz2 differ: char 11, line 1

++ thunderbird-3.1.18-source.tar.bz2 -> thunderbird-3.1.19-source.tar.bz2 
++
old-versions/11.4/UPDATES/all/MozillaThunderbird/thunderbird-3.1.18-source.tar.bz2
 11.4/MozillaThunderbird/thunderbird-3.1.19-source.tar.bz2 differ: char 11, 
line 1

continue with "q"...



Remember to have fun...

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



commit seamonkey for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package seamonkey for openSUSE:11.4
checked in at Fri Feb 17 15:42:11 CET 2012.




--- old-versions/11.4/UPDATES/all/seamonkey/seamonkey.changes   2012-02-12 
23:37:03.0 +0100
+++ 11.4/seamonkey/seamonkey.changes2012-02-16 19:22:49.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 15:55:03 UTC 2012 - w...@rosenauer.org
+
+- update to Seamonkey 2.7.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

calling whatdependson for 11.4-i586


Old:

  l10n-2.7.1.tar.bz2
  seamonkey-2.7.1-source.tar.bz2

New:

  l10n-2.7.2.tar.bz2
  seamonkey-2.7.2-source.tar.bz2



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.SLcsbU/_old  2012-02-17 15:41:46.0 +0100
+++ /var/tmp/diff_new_pack.SLcsbU/_new  2012-02-17 15:41:46.0 +0100
@@ -38,9 +38,9 @@
 BuildRequires:  yasm
 BuildRequires:  zip
 Provides:   web_browser
-Version:2.7.1
+Version:2.7.2
 Release:0.
-%define releasedate 2012020800
+%define releasedate 2012021500
 Summary:The successor of the Mozilla Application Suite
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Networking/Web/Browsers

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.SLcsbU/_old  2012-02-17 15:41:46.0 +0100
+++ /var/tmp/diff_new_pack.SLcsbU/_new  2012-02-17 15:41:46.0 +0100
@@ -1,8 +1,8 @@
 #!/bin/bash
 
 BRANCH="releases/comm-release"
-RELEASE_TAG="SEAMONKEY_2_7_1_RELEASE"
-VERSION="2.7.1"
+RELEASE_TAG="SEAMONKEY_2_7_2_RELEASE"
+VERSION="2.7.2"
 
 echo "cloning $BRANCH..."
 hg clone http://hg.mozilla.org/$BRANCH seamonkey

++ l10n-2.7.1.tar.bz2 -> l10n-2.7.2.tar.bz2 ++
old-versions/11.4/UPDATES/all/seamonkey/l10n-2.7.1.tar.bz2 
11.4/seamonkey/l10n-2.7.2.tar.bz2 differ: char 11, line 1

++ seamonkey-2.7.1-source.tar.bz2 -> seamonkey-2.7.2-source.tar.bz2 ++
old-versions/11.4/UPDATES/all/seamonkey/seamonkey-2.7.1-source.tar.bz2 
11.4/seamonkey/seamonkey-2.7.2-source.tar.bz2 differ: char 11, line 1

continue with "q"...



Remember to have fun...

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



commit MozillaFirefox for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:11.4
checked in at Fri Feb 17 15:41:53 CET 2012.




--- old-versions/11.4/UPDATES/all/MozillaFirefox/MozillaFirefox.changes 
2012-02-12 22:51:50.0 +0100
+++ 11.4/MozillaFirefox/MozillaFirefox.changes  2012-02-16 14:23:44.0 
+0100
@@ -1,0 +2,7 @@
+Thu Feb 16 08:47:31 UTC 2012 - w...@rosenauer.org
+
+- update to Firefox 10.0.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

calling whatdependson for 11.4-i586


Old:

  firefox-10.0.1-source.tar.bz2
  l10n-10.0.1.tar.bz2

New:

  firefox-10.0.2-source.tar.bz2
  l10n-10.0.2.tar.bz2



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.Nsxdw0/_old  2012-02-17 15:41:26.0 +0100
+++ /var/tmp/diff_new_pack.Nsxdw0/_new  2012-02-17 15:41:26.0 +0100
@@ -18,7 +18,7 @@
 
 
 %define major 10
-%define mainver %major.0.1
+%define mainver %major.0.2
 
 Name:   MozillaFirefox
 BuildRequires:  Mesa-devel
@@ -47,7 +47,7 @@
 BuildRequires:  nss-shared-helper-devel
 Version:%{mainver}
 Release:0.
-%define releasedate 2012020800
+%define releasedate 2012021500
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
 Provides:   firefox = %{mainver}

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.Nsxdw0/_old  2012-02-17 15:41:26.0 +0100
+++ /var/tmp/diff_new_pack.Nsxdw0/_new  2012-02-17 15:41:26.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="FIREFOX_10_0_1_RELEASE"
-VERSION="10.0.1"
+RELEASE_TAG="FIREFOX_10_0_2_RELEASE"
+VERSION="10.0.2"
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla

++ firefox-10.0.1-source.tar.bz2 -> firefox-10.0.2-source.tar.bz2 ++
old-versions/11.4/UPDATES/all/MozillaFirefox/firefox-10.0.1-source.tar.bz2 
11.4/MozillaFirefox/firefox-10.0.2-source.tar.bz2 differ: char 11, line 1


++ l10n-10.0.1.tar.bz2 -> l10n-10.0.2.tar.bz2 ++
old-versions/11.4/UPDATES/all/MozillaFirefox/l10n-10.0.1.tar.bz2 
11.4/MozillaFirefox/l10n-10.0.2.tar.bz2 differ: char 11, line 1

++ source-stamp.txt ++
--- /var/tmp/diff_new_pack.Nsxdw0/_old  2012-02-17 15:41:26.0 +0100
+++ /var/tmp/diff_new_pack.Nsxdw0/_new  2012-02-17 15:41:26.0 +0100
@@ -1,2 +1,2 @@
-REV=c581b36e7a12
+REV=72ad46d416ce
 REPO=http://hg.mozilla.org/releases/mozilla-release

continue with "q"...



Remember to have fun...

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



commit horde3-imp for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package horde3-imp for openSUSE:11.4
checked in at Fri Feb 17 15:41:36 CET 2012.




--- old-versions/11.4/all/horde3-imp/horde3-imp.changes 2011-01-25 
13:23:37.0 +0100
+++ 11.4/horde3-imp/horde3-imp.changes  2012-02-13 16:35:13.0 +0100
@@ -1,0 +2,25 @@
+Sat Feb 11 10:53:22 UTC 2012 - l...@b1-systems.de
+- bnc#742804 (CVE-2012-0791)
+- Fixed XSS vulnerabilities (CVE-2012-0791). 
+- Version 4.3.11
+- Warning: All things horde3 will be EOLed by April 2012
+
+---
+Thu Jan 12 11:30:38 UTC 2012 - co...@suse.com
+
+- change license to be in spdx.org format
+
+---
+Thu Aug 25 18:08:06 UTC 2011 - l...@b1-systems.de
+
+- make it actually install in factory, not just build
+
+---
+Sat Aug 13 17:42:43 UTC 2011 - l...@b1-systems.de
+
+- updated FSF address
+- version 4.3.10
+- [jan] Don't submit the action form when reloading messages with iTip
+  attachments (Bug #9502).
+
+---

Package does not exist at destination yet. Using Fallback 
old-versions/11.4/all/horde3-imp
Destination is old-versions/11.4/UPDATES/all/horde3-imp
calling whatdependson for 11.4-i586


Old:

  imp-h3-4.3.8-php5_exec.patch
  imp-h3-4.3.9.tar.bz2

New:

  gpl-2.0.txt
  imp-h3-4.3.11.tar.gz



Other differences:
--
++ horde3-imp.spec ++
--- /var/tmp/diff_new_pack.X1VsjQ/_old  2012-02-17 15:41:12.0 +0100
+++ /var/tmp/diff_new_pack.X1VsjQ/_new  2012-02-17 15:41:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package horde3-imp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,25 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde/
 %define _impdir %{_hordedir}/imp
 
 Name:   horde3-imp
-Version:4.3.9
-Release:1
+Version:4.3.11
+Release:0.
 Summary:Horde IMP Web-Based Mail Client
-License:GPL
+License:GPL-2.0+
 Group:  Productivity/Networking/Email/Utilities
 Url:http://www.horde.org/imp
-Source0:imp-h3-%{version}.tar.bz2
+Source0:ftp://ftp.horde.org/pub/imp/imp-h3-%{version}.tar.gz
+Source1:http://www.gnu.org/licenses/gpl-2.0.txt
 Patch0: imp-h3-4.3.8-usr_local.patch
-Patch1: imp-h3-4.3.8-php5_exec.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   horde3 
-BuildRequires:  apache2-devel horde3 pcre-devel
+Requires:   horde3 php5
+BuildRequires:  apache2-devel
+BuildRequires:  horde3
+BuildRequires:  pcre-devel
 %if 0%{?sles_version} != 10 
 BuildRequires:  fdupes
 %endif
@@ -65,7 +66,6 @@
 %prep
 %setup -qn imp-h3-%{version}
 %patch0
-%patch1
 
 %build
 pushd config/
@@ -76,6 +76,11 @@
 %__mkdir_p %{buildroot}/%{_impdir}
 %__cp -r ./* %{buildroot}/%{_impdir}
 %__rm -rf %{buildroot}/%{_impdir}/{docs,README,COPYING}
+%__cp %{SOURCE1} %{buildroot}/%{_impdir}/COPYING
+# otherwise rpm will complain upon installation attempt
+sed -i -e "s@/usr/bin/php@/usr/bin/php5@g" 
%{buildroot}%{_impdir}/scripts/upgrades/convert_vfolders.php
+sed -i -e "s@/usr/bin/php@/usr/bin/php5@g" 
%{buildroot}%{_impdir}/scripts/bounce_spam.php
+
 # remove and link duplicate files  
 %if 0%{?sles_version} != 10 
  %fdupes %buildroot/%{_impdir}
@@ -87,17 +92,16 @@
 
 %files -f imp.lang
 %defattr(-, root, root)
-%doc docs README COPYING
+%doc docs README 
 %dir %{_impdir}
 %{_impdir}/*.php
 %{_impdir}/lib
-
+%{_impdir}/COPYING
 %{_impdir}/po
 %dir %{_impdir}/locale
 %dir /srv/www/htdocs/horde/imp/locale/*
 %dir /srv/www/htdocs/horde/imp/locale/*/LC_MESSAGES
-
-%dir /srv/www/htdocs/horde/imp/locale/*/*.xml
+/srv/www/htdocs/horde/imp/locale/*/*.xml
 %{_impdir}/locale/.htaccess
 %{_impdir}/js
 %{_impdir}/scripts

++ gpl-2.0.txt ++
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free

commit horde3-dimp for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package horde3-dimp for openSUSE:11.4
checked in at Fri Feb 17 15:41:08 CET 2012.




--- old-versions/11.4/all/horde3-dimp/horde3-dimp.changes   2011-01-25 
13:29:01.0 +0100
+++ 11.4/horde3-dimp/horde3-dimp.changes2012-02-13 16:38:00.0 
+0100
@@ -1,0 +2,19 @@
+Sat Feb 11 10:59:55 UTC 2012 - l...@b1-systems.de
+
+- version 1.1.8
+- Fixed XSS vulnerabilities (CVE-2012-0791). bnc#742804
+- Warning: All things horde3 are EOLed by April 2012
+
+---
+Tue Aug 16 11:28:32 UTC 2011 - l...@b1-systems.de
+
+- provide an exact version of "dimp", not a relative version
+
+---
+Sat Aug 13 17:11:56 UTC 2011 - l...@b1-systems.de
+
+- version 1.1.7
+- [jan] Add Czech translation (Matej Hašuľ ).
+- added updated license file
+
+---
@@ -11,0 +31 @@
+- [jan] Fix redirecting to login screen if session times out (Bug #9281).
@@ -17,0 +38,6 @@
+- [mms] SECURITY: XSS - Make sure mailbox name displayed on mailbox page is
+  properly encoded (Bug #9240).
+- [jan] Fix notices with certain output buffer configurations
+  (valentin.vi...@carnet.hr, Bug #7851).
+- [mms] Turn DNS prefetching off when displaying untrusted message content
+  (Ticket #8836).

Package does not exist at destination yet. Using Fallback 
old-versions/11.4/all/horde3-dimp
Destination is old-versions/11.4/UPDATES/all/horde3-dimp
calling whatdependson for 11.4-i586


Old:

  dimp-h3-1.1.6.tar.bz2

New:

  dimp-h3-1.1.8.tar.gz
  gpl-2.0.txt



Other differences:
--
++ horde3-dimp.spec ++
--- /var/tmp/diff_new_pack.Xqgi0a/_old  2012-02-17 15:40:55.0 +0100
+++ /var/tmp/diff_new_pack.Xqgi0a/_new  2012-02-17 15:40:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package horde3-dimp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,28 +15,31 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde/
 %define _dimpdir %{_hordedir}/dimp
 
 Name:   horde3-dimp
-Version:1.1.6
-Release:1
+Version:1.1.8
+Release:0.
 Summary:Horde DIMP Ajax Web-Based Mail Client
-License:GPL
+License:GPL-2.0
 Group:  Productivity/Networking/Email/Utilities
 Url:http://www.horde.org/imp
-Source0:dimp-h3-%{version}.tar.bz2
+Source0:dimp-h3-%{version}.tar.gz
+Source1:http://www.gnu.org/licenses/gpl-2.0.txt
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   horde3 >= 3.3.0
 Requires:   horde3-imp
-BuildRequires:  apache2-devel horde3 pcre-devel
+BuildRequires:  apache2-devel
+BuildRequires:  horde3
+BuildRequires:  pcre-devel
 %if 0%{?sles_version} != 10 
 BuildRequires:  fdupes
 %endif
-Obsoletes:  dimp <= 1.1.4
+Obsoletes:  dimp <= 1.1.7
+Provides:   dimp = %{version}
 
 %description
 DIMP is a project to create a version of IMP utilizing AJAX-like technologies
@@ -66,6 +69,8 @@
 %__mkdir_p %{buildroot}/%{_dimpdir}
 %__cp -r ./* %{buildroot}/%{_dimpdir}
 %__rm -rf %{buildroot}/%{_dimpdir}/{docs,README,COPYING}
+%__cp %{SOURCE1} %{buildroot}/%{_dimpdir}/COPYING
+
 # remove and link duplicate files  
 %if 0%{?sles_version} != 10 
  %fdupes %buildroot/%{_dimpdir}
@@ -77,7 +82,8 @@
 
 %files -f dimp.lang
 %defattr(-, root, root)
-%doc docs README COPYING
+%doc docs README
+%doc %{_dimpdir}/COPYING
 %dir %{_dimpdir}
 %{_dimpdir}/*.php
 %{_dimpdir}/lib

++ gpl-2.0.txt ++
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your progra

commit horde3 for openSUSE:11.4

2012-02-17 Thread h_root

Hello community,

here is the log from the commit of package horde3 for openSUSE:11.4
checked in at Fri Feb 17 15:41:03 CET 2012.




--- old-versions/11.4/all/horde3/horde3.changes 2011-01-28 13:24:00.0 
+0100
+++ 11.4/horde3/horde3.changes  2012-02-13 16:33:46.0 +0100
@@ -1,0 +2,38 @@
+Sat Feb 11 10:48:38 UTC 2012 - l...@b1-systems.de
+- bnc#742804 ( CVE-2012-0909)
+- version 3.3.13
+- Fixed a XSS vulnerability (CVE-2012-0909).
+- Added support for resetting passwords in LDAP.
+- Fixed compatibility with Firefox 10. 
+- Warning: Official support EOL for all things Horde3 ends April 2012
+
+---
+Fri Oct 21 19:21:18 UTC 2011 - ch...@computersalat.de
+
+- fix build
+  * no space before "%patch" macro
+- spec cleanup
+
+---
+Mon Oct  3 09:15:36 UTC 2011 - co...@suse.com
+
+- only patch exec path if php5 really exists (e.g. not 12.1)
+
+---
+Sat Aug 13 15:12:48 UTC 2011 - l...@b1-systems.de
+
+- version 3.3.12 
+- [jan] Convert charset of group names in SQL driver (Bug #9611).
+- [jan] Fix deleting of SyncML anchors if PHP short_open_tag is off (Bug 
#9349).
+- [jan] Add an experimental new Share SQL driver with better performance.
+- [jan] Fix integer overflow in ASN.1 parser for S/MIME messages.
+- [jan] Fix splitread database usage in VFS (Bug #9467).
+- [jan] Fix invalidating permission cache in SQL driver (Bug #9392).
+ 
+
+---
+Tue May 24 11:13:20 UTC 2011 - l...@b1-systems.de
+
+- small fixes to make it run in current factory
+
+---

Package does not exist at destination yet. Using Fallback 
old-versions/11.4/all/horde3
Destination is old-versions/11.4/UPDATES/all/horde3
calling whatdependson for 11.4-i586


Old:

  horde-3.3.11.tar.bz2

New:

  COPYING
  horde-3.3.13.tar.gz



Other differences:
--
++ horde3.spec ++
--- /var/tmp/diff_new_pack.XK7ThY/_old  2012-02-17 15:40:41.0 +0100
+++ /var/tmp/diff_new_pack.XK7ThY/_new  2012-02-17 15:40:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package horde3
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,35 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %define _phpdir php5
 %define peardir %(pear config-get php_dir 2> /dev/null)
-%define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde
+%define _hordedir /srv/www/htdocs/horde
 
 Name:   horde3
 Summary:Core Pieces for Running H3 Web Applications
-Version:3.3.11
-Release:2
-Url:http://www.horde.org/
-License:GPLv2+
+License:GPL-2.0+
 Group:  Productivity/Networking/Web/Utilities
+Version:3.3.13
+Release:0.
+Url:http://www.horde.org/
+Source0:horde-%{version}.tar.gz
+Source1:COPYING
+
+Patch0: horde-3.1.2-log.patch
+Patch1: horde-fatal-on-admin-3.3.11.patch
+Patch2: horde-finer-grained-admin-privileges.patch
+Patch3: horde-3.2-rc1-usr_local.patch
+Patch4: horde-3.3.9-php5_exec.patch
+BuildArch:  noarch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  apache2-devel
+# This check is still needed for SLE_10
+%if 0%{?suse_version} > 1020
+BuildRequires:  fdupes
+%endif
+BuildRequires:  pcre-devel
+BuildRequires:  php5-pear
 Requires:   mod_php_any
 Requires:   php-gettext
 Requires:   php-mcrypt
@@ -54,42 +70,20 @@
 Requires:   php5-pear-HTTP_Request
 Requires:   php5-pear-Services_Weather
 Requires:   php5-pear-XML_SVG
-Source0:horde-%{version}.tar.bz2
-
-Patch0: horde-3.1.2-log.patch
-Patch1: horde-fatal-on-admin-3.3.11.patch
-Patch2: horde-finer-grained-admin-privileges.patch
-Patch3: horde-3.2-rc1-usr_local.patch
-Patch4: horde-3.3.9-php5_exec.patch
-BuildRequires:  apache2-devel
-# This check is still needed for SLE-10-SP2
-%if 0%{?suse_version} > 1020
-BuildRequires:  fdupes
-%endif
-BuildRequires:  pcre-devel
-BuildRequires:  php5-pear
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
 
 %description
 These are the core pieces of the Horde suite of Web applications. This
 package is needed to run any of the other programs, such as IMP.
 
-
-
-Authors:
-
-   Chuck Hagenbuch  
-   Jan Schneider  
-

commit cheese for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package cheese for openSUSE:Factory checked 
in at 2012-02-17 15:17:51

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


Package is "cheese", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/cheese/cheese.changes2012-01-25 
12:17:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.cheese.new/cheese.changes   2012-02-17 
15:17:54.0 +0100
@@ -1,0 +2,19 @@
+Tue Feb  7 10:11:11 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.5:
+  + Initial switch from theora/ogg to vp8/webm (bgo#564957,
+bgo#666718)
+  + Keep generating thumbnails for Theora videos
+  + Mimic Nautilus' behaviour when deleting files (bgo#664180).
+  + Use PackageKit to install nautilus-sendto dependency if needed
+(bgo#668072)
+  + Add init functions to libcheese and libcheese-gtk (bgo#668292,
+bgo#667884).
+  + Disambiguate GLib.DBus in Cheese.Window
+  + Fix configure check for Xtst
+  + Other bugs fixed: bgo#668072.
+  + Updated translations.
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+
+---

Old:

  cheese-3.3.4.tar.xz

New:

  cheese-3.3.5.tar.xz



Other differences:
--
++ cheese.spec ++
--- /var/tmp/diff_new_pack.FksYgR/_old  2012-02-17 15:17:56.0 +0100
+++ /var/tmp/diff_new_pack.FksYgR/_new  2012-02-17 15:17:56.0 +0100
@@ -15,11 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define lib_major 3
 %define lib_gtk_major 21
 
 Name:   cheese
-Version:3.3.4
+Version:3.3.5
 Release:0
 # FIXME: the %%{_datadir}/help/$locale/ files be found by %%find_lang
 Summary:Webcam Booth for GNOME
@@ -34,8 +35,6 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(clutter-1.0)

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



commit gnome-control-center for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2012-02-17 15:03:07

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


Package is "gnome-control-center", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2012-01-26 14:02:58.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2012-02-17 15:03:08.0 +0100
@@ -1,0 +2,42 @@
+Tue Feb  7 19:22:46 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.5:
+  + Shell:
+- Unblur the all-settings button icon
+  + Brightness & Lock:
+- Renamed from Screen
+  + Date & Time:
+- Use the timedated D-Bus service
+  + Keyboard:
+- Add support for new screenshot shortcuts
+- Remove use of italics for sliders
+  + Mouse:
+- Remove use of italics for sliders
+  + Network:
+- Only show flight mode toggle when there are wireless devices
+  + Printers:
+- Update list of print jobs in a better place
+  + Screen:
+- Rename to Brightness & Lock
+  + Sound:
+- Fix wheel scrolling not working for right balance
+  + Universal access:
+- Add configuration dialogue for zoom options
+  + User accounts:
+- Use cheese init functions
+  + Wacom:
+- Calibrate tablet on the screen it's attached to
+- Update and add missing stylus artwork
+- Fix incorrect page numbering
+- Hide cursor during calibration
+- Fix Scroll Up/Down actions being inverted
+- Add link to the Display Settings
+- Fix 1-button stylus button mapping
+- Remove use of italics for sliders
+- Plenty of layout fixes
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+- Remove pkgconfig(clutter-gst-1.0) and pkgconfig(dbus-1)
+  BuildRequires: those dependencies are gone now.
+
+---

Old:

  gnome-control-center-3.3.4.1.tar.xz

New:

  gnome-control-center-3.3.5.tar.xz



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.FuTyDJ/_old  2012-02-17 15:03:13.0 +0100
+++ /var/tmp/diff_new_pack.FuTyDJ/_new  2012-02-17 15:03:13.0 +0100
@@ -29,30 +29,26 @@
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
-BuildRequires:  pkgconfig(cheese-gtk)
-BuildRequires:  pkgconfig(clutter-gst-1.0)
+BuildRequires:  pkgconfig(cheese-gtk) >= 3.3.5
 BuildRequires:  pkgconfig(colord)
-BuildRequires:  pkgconfig(dbus-1)
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(fontconfig)
-BuildRequires:  pkgconfig(goa-1.0)
-BuildRequires:  pkgconfig(goa-backend-1.0)
 BuildRequires:  pkgconfig(gconf-2.0)
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0)
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
 BuildRequires:  pkgconfig(gnome-bluetooth-1.0) >= 3.3.4
 BuildRequires:  pkgconfig(gnome-desktop-3.0) >= 3.1.91
 BuildRequires:  pkgconfig(gnome-settings-daemon) >= 3.3.4
+BuildRequires:  pkgconfig(goa-1.0)
+BuildRequires:  pkgconfig(goa-backend-1.0)
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.3.0
 BuildRequires:  pkgconfig(gstreamer-0.10)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.3.5
 BuildRequires:  pkgconfig(iso-codes)
 BuildRequires:  pkgconfig(libcanberra-gtk3)
+BuildRequires:  pkgconfig(libgnome-menu-3.0)
 BuildRequires:  pkgconfig(libgnomekbd)
 BuildRequires:  pkgconfig(libgnomekbdui)
-BuildRequires:  pkgconfig(libgnome-menu-3.0)
 BuildRequires:  pkgconfig(libgtop-2.0)
 BuildRequires:  pkgconfig(libnm-glib) >= 0.8.992
 BuildRequires:  pkgconfig(libnm-gtk) >= 0.8.992
@@ -63,10 +59,10 @@
 %if %{with_systemd}
 BuildRequires:  pkgconfig(libsystemd-login)
 %endif
-BuildRequires:  pkgconfig(libwacom) >= 0.2
+BuildRequires:  pkgconfig(libwacom) >= 0.3
 BuildRequires:  pkgconfig(libxklavier)
 BuildRequires:  pkgconfig(libxml-2.0)
-BuildRequires:  pkgconfig(polkit-gobject-1) >= 0.97
+BuildRequires:  pkgconfig(polkit-gobject-1) >= 0.103
 BuildRequires:  pkgconfig(upower-glib)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcursor)
@@ -74,7 +70,7 @@
 BuildRequires:  pkgconfig(xi) >= 1.2
 Obsoletes:  fontilus themus acme
 Provides:   fontilus themus acme
-Version:3.3.4.1
+Version:3.3.5
 Release:0
 # FIXME: in 12.2 and later, check if we still need patch2 
(gnome-control-center-hide-region-system-tab.patch) (see bnc#703833)
 Summary:The GNOME Cont

commit xbitmaps for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xbitmaps for openSUSE:Factory 
checked in at 2012-02-17 15:01:19

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


Package is "xbitmaps", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.xbitmaps.new/xbitmaps.changes   2012-02-17 
15:01:20.0 +0100
@@ -0,0 +1,9 @@
+---
+Fri Feb 17 09:58:17 UTC 2012 - sasc...@suse.de
+
+- Provide a valid upstream URL, ran spec-cleaner
+
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  xbitmaps-1.1.1.tar.bz2
  xbitmaps.changes
  xbitmaps.spec



Other differences:
--
++ xbitmaps.spec ++
#
# spec file for package libFS
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   xbitmaps
Version:1.1.1
Release:0
License:MIT
Summary:Base X bitmaps
Url:
http://xorg.freedesktop.org/releases/individual/data/xbitmaps-1.1.1.tar.bz2
Group:  Development/Libraries/C and C++
Source: %{name}-%{version}.tar.bz2
BuildRequires:  pkgconfig,
BuildRequires:  pkgconfig(xorg-macros) >= 1.3
BuildArch:  noarch

%description
This package contains the base X bitmaps, which are used in many
legacy X clients.

%package devel
Summary:Development files for the base X bitmaps
Group:  Development/Libraries/C and C++

%description devel
This package contains the base X bitmaps, which are used in many
legacy X clients.

%prep
%setup -q

%build
%configure
make %{?_smp_mflags}

%install
%make_install

%files devel
%defattr(-,root,root)
%{_includedir}/X11/bitmaps
%{_datadir}/pkgconfig/xbitmaps.pc

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



commit perl-Spreadsheet-Read for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Spreadsheet-Read for 
openSUSE:Factory checked in at 2012-02-17 15:01:08

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


Package is "perl-Spreadsheet-Read", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Spreadsheet-Read/perl-Spreadsheet-Read.changes  
2011-11-21 12:45:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Spreadsheet-Read.new/perl-Spreadsheet-Read.changes
 2012-02-17 15:01:09.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 17 11:25:52 UTC 2012 - co...@suse.com
+
+- updated to 0.46
+   * Updated copyright to 2012
+   * Support passing attributes to the underlying parser
+   * Do not strip fields in sheets with no cells at all (RT#74976)
+
+---

Old:

  Spreadsheet-Read-0.45.tgz

New:

  Spreadsheet-Read-0.46.tgz



Other differences:
--
++ perl-Spreadsheet-Read.spec ++
--- /var/tmp/diff_new_pack.8A97OW/_old  2012-02-17 15:01:11.0 +0100
+++ /var/tmp/diff_new_pack.8A97OW/_new  2012-02-17 15:01:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Spreadsheet-Read
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,13 @@
 %bcond_with opt
 
 Name:   perl-Spreadsheet-Read
-Version:0.45
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+Version:0.46
+Release:0
 %define cpan_name Spreadsheet-Read
 Summary:Read the data from a spreadsheet
-Url:http://search.cpan.org/dist/Spreadsheet-Read/
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Spreadsheet-Read/
 Source: 
http://www.cpan.org/authors/id/H/HM/HMBRAND/%{cpan_name}-%{version}.tgz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Spreadsheet-Read-0.45.tgz -> Spreadsheet-Read-0.46.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Spreadsheet-Read-0.45/Changes 
new/Spreadsheet-Read-0.46/Changes
--- old/Spreadsheet-Read-0.45/Changes   2011-09-07 18:03:32.0 +0200
+++ new/Spreadsheet-Read-0.46/Changes   2012-02-14 08:48:36.0 +0100
@@ -1,297 +1,255 @@
-Revision history for Spreadsheet::Read
-
-0.45   Wed 07 Sep 2011
-
-- NAME / DISTNAME in Makefile.PL
-
-0.44   Wed 07 Sep 2011
-
-- More cross-checks for META data
-
-0.43   Tue 02 Aug 2011
-
-- Changed name in META.yml (RT#69574)
-
-0.42   Wed 01 Jun 2011
-
-- Add --html output option to xlscat
-- Force CSV parser when in-sep is given
-- Prefer Data::Peek over Data::Dumper if available
-
-0.41   Wed 06 Oct 2010
-
-- Spell-check
-- Fixed requiring optional modules (RT#61928 - Roderick Schupp)
-
-0.40   Wed 31 Mar 2010
-
-- Default option for clip fixed (RT#56151 - Alan James)
-
-0.39   Tue 16 Mar 2010
-
-- Doc fix (RT#54507, Patrick Cronin)
-- Upped Copyright notices to 2010
-- Drop YAML version to 1.0
-
-0.38   Tue 15 Dec 2009
-
-- Add row () and cellrow ()
-- Updated META.yml to meet most recent specs (optional_features = map)
-
-0.37   Mon 09 Nov 2009
-
-- IO streams improvements
-- MANIFEST fix
-
-0.36   Thu 06 Nov 2009
-
-- Add strip option
-- Spreadsheet::XLSX 0.12 still does not support attributes
-- Require Text::CSV_XS-0.69 for CSV for auto-detection of \r
-- New attribute "parser" to force format
-- Allow CSV streams
-- Allow SC  streams
-- Allow XLS streams
-
-0.35   Wed 03 Jun 2009
-
-- Add Test::NoWarnings, which is not run in AUTOMATED_TESTING
-- Switched to Test::More using tests_done ()
-- Text::CSV_XS requires 0.43 or up, as we use ->eof ()
+0.46   - 14 Feb 2012, H.Merijn Brand
+* Updated copyright to 2012
+* Support passing attributes to the underlying parser
+* Do not strip fields in sheets with no cells at all (RT#74976)
+
+0.45   - 07 Sep 2011, H.Merijn Brand
+* NAME / DISTNAME in Makefile.PL
+
+0.44   - 07 Sep 2011, H.Merijn Brand
+* More cross-checks for META data
+
+0.43   - 02 Aug 2011, H.Merijn Brand
+* Changed name in META.yml (RT#69574)
+
+0.42   - 01 Jun 2011, H.Merijn Brand
+* Add --html output option to xlscat
+* Force CSV parser when in-sep is given
+* Prefer Data::Peek over Data::Dumper if available
+
+0.41   - 06 Oct 2010

commit python-python-daemon for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-python-daemon for 
openSUSE:Factory checked in at 2012-02-17 15:01:12

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


Package is "python-python-daemon", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-daemon/python-python-daemon.changes
2011-11-25 23:05:49.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-daemon.new/python-python-daemon.changes
   2012-02-17 15:01:14.0 +0100
@@ -1,0 +2,7 @@
+Thu Jan  5 13:25:37 UTC 2012 - jmate...@suse.com
+
+- reverted to 1.5.5 (per bnc#731071 and Debian bug #585404,
+  upstream has retracted version 1.6 due to brokenness)
+- updated license header
+
+---

Old:

  python-daemon-1.6.tar.bz2

New:

  python-daemon-1.5.5.tar.bz2



Other differences:
--
++ python-python-daemon.spec ++
--- /var/tmp/diff_new_pack.IWc7vA/_old  2012-02-17 15:01:15.0 +0100
+++ /var/tmp/diff_new_pack.IWc7vA/_new  2012-02-17 15:01:15.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   python-python-daemon
-Version:1.6
+Version:1.5.5
 Release:0
 Url:http://pypi.python.org/pypi/python-daemon/
 Summary:Library to implement a well-behaved Unix daemon process
-License:PSF-2+
+License:Python-2.0
 Group:  Development/Languages/Python
 Source: python-daemon-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ python-daemon-1.6.tar.bz2 -> python-daemon-1.5.5.tar.bz2 ++
 3615 lines of diff (skipped)

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



commit perl-MooseX-Types-LoadableClass for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types-LoadableClass for 
openSUSE:Factory checked in at 2012-02-17 15:00:59

Comparing /work/SRC/openSUSE:Factory/perl-MooseX-Types-LoadableClass (Old)
 and  /work/SRC/openSUSE:Factory/.perl-MooseX-Types-LoadableClass.new (New)


Package is "perl-MooseX-Types-LoadableClass", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Types-LoadableClass/perl-MooseX-Types-LoadableClass.changes
  2011-12-22 10:54:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-LoadableClass.new/perl-MooseX-Types-LoadableClass.changes
 2012-02-17 15:01:02.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 17 11:23:28 UTC 2012 - co...@suse.com
+
+- updated to 0.007
+ - Be more paranoid about the potential for $_ being clobbered.
+
+---

Old:

  MooseX-Types-LoadableClass-0.006.tar.gz

New:

  MooseX-Types-LoadableClass-0.007.tar.gz



Other differences:
--
++ perl-MooseX-Types-LoadableClass.spec ++
--- /var/tmp/diff_new_pack.qrhbIp/_old  2012-02-17 15:01:03.0 +0100
+++ /var/tmp/diff_new_pack.qrhbIp/_new  2012-02-17 15:01:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Types-LoadableClass
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-MooseX-Types-LoadableClass
-Version:0.006
+Version:0.007
 Release:0
 %define cpan_name MooseX-Types-LoadableClass
-Summary:ClassName type constraint with coercion to load the class
-License:GPL-1.0+ or Artistic-1.0
+Summary:ClassName type constraint with coercion to load the class.
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Types-LoadableClass/
 Source: 
http://www.cpan.org/authors/id/B/BO/BOBTFISH/%{cpan_name}-%{version}.tar.gz

++ MooseX-Types-LoadableClass-0.006.tar.gz -> 
MooseX-Types-LoadableClass-0.007.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-LoadableClass-0.006/Changes 
new/MooseX-Types-LoadableClass-0.007/Changes
--- old/MooseX-Types-LoadableClass-0.006/Changes2011-08-05 
13:41:29.0 +0200
+++ new/MooseX-Types-LoadableClass-0.007/Changes2012-02-15 
23:14:06.0 +0100
@@ -1,3 +1,6 @@
+0.007 15-02-2012
+  - Be more paranoid about the potential for $_ being clobbered.
+
 0.006 05-07-2011
   - Change to use Class::Load, rather than Class::MOP::load_class
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-LoadableClass-0.006/MANIFEST 
new/MooseX-Types-LoadableClass-0.007/MANIFEST
--- old/MooseX-Types-LoadableClass-0.006/MANIFEST   2011-08-05 
13:42:35.0 +0200
+++ new/MooseX-Types-LoadableClass-0.007/MANIFEST   2012-02-15 
23:20:19.0 +0100
@@ -21,6 +21,8 @@
 t/author/pod-coverage.t
 t/author/pod.t
 t/basic.t
+t/clobber_dollerunderscore.t
+t/lib/ClobberDollarUnderscore.pm
 t/lib/FooBarTestClass.pm
 t/lib/FooBarTestRole.pm
 t/typemap.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-LoadableClass-0.006/META.yml 
new/MooseX-Types-LoadableClass-0.007/META.yml
--- old/MooseX-Types-LoadableClass-0.006/META.yml   2011-08-05 
13:42:28.0 +0200
+++ new/MooseX-Types-LoadableClass-0.007/META.yml   2012-02-15 
23:20:10.0 +0100
@@ -3,13 +3,14 @@
 author:
   - 'Tomas Doran (t0m) C<<  >>'
 build_requires:
-  ExtUtils::MakeMaker: 6.42
+  ExtUtils::MakeMaker: 6.36
   Moose: 0
   Test::More: 0.88
 configure_requires:
-  ExtUtils::MakeMaker: 6.42
+  ExtUtils::MakeMaker: 6.36
 distribution_type: module
-generated_by: 'Module::Install version 1.01'
+dynamic_config: 1
+generated_by: 'Module::Install version 1.04'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -26,4 +27,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/bobtfish/MooseX-Types-LoadableClass.git
-version: 0.006
+version: 0.007
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/MooseX-Types-LoadableClass-0.006/inc/Module/Install/Base.pm 
new/MooseX-Types-LoadableClass-0.007/inc/Module/Install/Base.pm

commit perl-MooseX-Types-Perl for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types-Perl for 
openSUSE:Factory checked in at 2012-02-17 15:01:03

Comparing /work/SRC/openSUSE:Factory/perl-MooseX-Types-Perl (Old)
 and  /work/SRC/openSUSE:Factory/.perl-MooseX-Types-Perl.new (New)


Package is "perl-MooseX-Types-Perl", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Types-Perl/perl-MooseX-Types-Perl.changes
2012-01-09 21:43:55.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-Perl.new/perl-MooseX-Types-Perl.changes
   2012-02-17 15:01:03.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 17 11:22:35 UTC 2012 - co...@suse.com
+
+- updated to 0.101341
+  * forbid non-ASCII in pkg, dist, module
+
+---

Old:

  MooseX-Types-Perl-0.101340.tar.gz

New:

  MooseX-Types-Perl-0.101341.tar.gz



Other differences:
--
++ perl-MooseX-Types-Perl.spec ++
--- /var/tmp/diff_new_pack.GavcjR/_old  2012-02-17 15:01:05.0 +0100
+++ /var/tmp/diff_new_pack.GavcjR/_new  2012-02-17 15:01:05.0 +0100
@@ -15,28 +15,30 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-MooseX-Types-Perl
-Version:0.101340
+Version:0.101341
 Release:0
 %define cpan_name MooseX-Types-Perl
 Summary:Moose types that check against Perl syntax
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Types-Perl/
-#Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/MooseX-Types-Perl-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(MooseX::Types)
 BuildRequires:  perl(MooseX::Types::Moose)
 BuildRequires:  perl(Params::Util)
+BuildRequires:  perl(Test::More) >= 0.96
 BuildRequires:  perl(version) >= 0.82
+#BuildRequires: perl(MooseX::Types::Perl)
 Requires:   perl(MooseX::Types)
 Requires:   perl(MooseX::Types::Moose)
 Requires:   perl(Params::Util)
 Requires:   perl(version) >= 0.82
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
 %{perl_requires}
 
 %description
@@ -58,11 +60,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
-%doc Changes dist.ini LICENSE README
+%defattr(-,root,root,755)
+%doc Changes LICENSE README
 
 %changelog

++ MooseX-Types-Perl-0.101340.tar.gz -> MooseX-Types-Perl-0.101341.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Perl-0.101340/Changes 
new/MooseX-Types-Perl-0.101341/Changes
--- old/MooseX-Types-Perl-0.101340/Changes  2010-05-15 05:08:08.0 
+0200
+++ new/MooseX-Types-Perl-0.101341/Changes  2011-12-23 23:18:15.0 
+0100
@@ -1,4 +1,7 @@
 Revision history for MooseX-Types-Perl
 
+0.101341  2011-12-23 17:18:04 America/New_York
+  forbid non-ASCII in pkg, dist, module
+
 0.101340  2010-05-14 23:08:06 America/New_York
   first release!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Perl-0.101340/LICENSE 
new/MooseX-Types-Perl-0.101341/LICENSE
--- old/MooseX-Types-Perl-0.101340/LICENSE  2010-05-15 05:08:08.0 
+0200
+++ new/MooseX-Types-Perl-0.101341/LICENSE  2011-12-23 23:18:15.0 
+0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2010 by Ricardo SIGNES.
+This software is copyright (c) 2011 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,21 +12,22 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2010 by Ricardo SIGNES.
+This software is Copyright (c) 2011 by Ricardo SIGNES.
 
 This is free software, licensed under:
 
   The GNU General Public License, Version 1, February 1989
 
-   GNU GENERAL PUBLIC LICENSE
-Version 1, February 1989
+GNU GENERAL PUBLIC LICENSE
+ Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
-59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
+ 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+
  Everyone is permitted to copy and distribute verbatim copies
  

commit opencc for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package opencc for openSUSE:Factory checked 
in at 2012-02-17 15:00:55

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


Package is "opencc", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/opencc/opencc.changes2012-02-16 
16:35:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.opencc.new/opencc.changes   2012-02-17 
15:01:00.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 16 15:37:21 UTC 2012 - co...@suse.com
+
+- trigger the service so it's true
+
+---

Old:

  opencc-0.3.0.tar.bz2

New:

  opencc-0.3.0git.1324715872.tar.bz2



Other differences:
--
++ opencc.spec ++
--- /var/tmp/diff_new_pack.p9nltU/_old  2012-02-17 15:01:02.0 +0100
+++ /var/tmp/diff_new_pack.p9nltU/_new  2012-02-17 15:01:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package opencc
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,18 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Name:   opencc
-Version:   0.3.0
-Release:   1
-License:   Apache-2.0
+Version:0.3.0git.1324715872
+Release:0
 Summary:   Open Chinese Convert
-Url:   http://code.google.com/p/opencc
+License:Apache-2.0
 Group: System/Libraries
+Url:http://code.google.com/p/opencc
 Source:%{name}-%{version}.tar.bz2
-BuildRequires: gettext
 BuildRequires: cmake
+BuildRequires:  gettext
 BuildRequires: pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

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



commit mozilla-nss for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mozilla-nss for openSUSE:Factory 
checked in at 2012-02-17 15:00:51

Comparing /work/SRC/openSUSE:Factory/mozilla-nss (Old)
 and  /work/SRC/openSUSE:Factory/.mozilla-nss.new (New)


Package is "mozilla-nss", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/mozilla-nss/mozilla-nss.changes  2011-12-21 
14:57:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.mozilla-nss.new/mozilla-nss.changes 
2012-02-17 15:00:52.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 16 08:48:42 UTC 2012 - w...@rosenauer.org
+
+- update to 3.13.2 RTM
+  * requirement with Gecko >= 11
+- removed obsolete patches
+  * ckbi-1.88
+  * pkcs11n-header-fix.patch
+
+---

Old:

  ckbi-1_88.patch
  nss-3.13.1.tar.bz2
  pkcs11n-header-fix.patch

New:

  nss-3.13.2.tar.bz2



Other differences:
--
++ mozilla-nss.spec ++
--- /var/tmp/diff_new_pack.FLIUPU/_old  2012-02-17 15:00:54.0 +0100
+++ /var/tmp/diff_new_pack.FLIUPU/_new  2012-02-17 15:00:54.0 +0100
@@ -1,8 +1,8 @@
 #
 # spec file for package mozilla-nss
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2006-2011 Wolfgang Rosenauer
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2006-2012 Wolfgang Rosenauer
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,7 @@
 %if %suse_version > 1030
 BuildRequires:  sqlite3-devel
 %endif
-Version:3.13.1
+Version:3.13.2
 Release:0
 # bug437293
 %ifarch ppc64
@@ -53,13 +53,11 @@
 Source9:pkcs11.txt
 #Source10:   PayPalEE.cert
 Patch1: nss-opt.patch
-Patch3: system-nspr.patch
-Patch4: char.patch
-Patch5: nss-no-rpath.patch
-Patch6: renegotiate-transitional.patch
-Patch9: malloc.patch
-Patch10:ckbi-1_88.patch
-Patch11:pkcs11n-header-fix.patch
+Patch2: system-nspr.patch
+Patch3: char.patch
+Patch4: nss-no-rpath.patch
+Patch5: renegotiate-transitional.patch
+Patch6: malloc.patch
 %define nspr_ver %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
 PreReq: mozilla-nspr >= %nspr_ver
 PreReq: libfreebl3 >= %{nss_softokn_fips_version}
@@ -166,15 +164,13 @@
 %setup -n nss-%{version} -q
 cd mozilla
 %patch1
+%patch2
 %patch3
 %patch4
 %patch5
-%patch6
 %if %suse_version > 1110
-%patch9
+%patch6
 %endif
-%patch10 -p1
-%patch11
 # additional CA certificates
 #cd security/nss/lib/ckfw/builtins
 #cat %{SOURCE2} >> certdata.txt



++ nss-3.13.1.tar.bz2 -> nss-3.13.2.tar.bz2 ++
 8714 lines of diff (skipped)

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



commit mozilla-nspr for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mozilla-nspr for openSUSE:Factory 
checked in at 2012-02-17 15:00:45

Comparing /work/SRC/openSUSE:Factory/mozilla-nspr (Old)
 and  /work/SRC/openSUSE:Factory/.mozilla-nspr.new (New)


Package is "mozilla-nspr", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/mozilla-nspr/mozilla-nspr.changes
2011-09-26 10:09:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.mozilla-nspr.new/mozilla-nspr.changes   
2012-02-17 15:00:47.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 16 08:22:35 UTC 2012 - w...@rosenauer.org
+
+- update to version 4.9 RTM
+- added testsuite in %check
+
+---

Old:

  nspr-4.8.9.tar.bz2

New:

  nspr-4.9.0.tar.bz2



Other differences:
--
++ mozilla-nspr.spec ++
--- /var/tmp/diff_new_pack.KXzy5J/_old  2012-02-17 15:00:50.0 +0100
+++ /var/tmp/diff_new_pack.KXzy5J/_new  2012-02-17 15:00:50.0 +0100
@@ -1,8 +1,8 @@
 #
 # spec file for package mozilla-nspr
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
-#   2006-2011 Wolfgang Rosenauer
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+#   2006-2012 Wolfgang Rosenauer
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,12 +17,12 @@
 #
 
 
-
 Name:   mozilla-nspr
-Version:4.8.9
-Release:1
-License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
+Version:4.9.0
+Release:0
 Summary:Netscape Portable Runtime
+License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
+Group:  System/Libraries
 Url:http://www.mozilla.org/projects/nspr/
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
@@ -31,7 +31,6 @@
 Obsoletes:  mozilla-nspr-64bit
 %endif
 #
-Group:  System/Libraries
 Source: 
ftp://ftp.mozilla.org/pub/nspr/releases/v%{version}/src/nspr-%{version}.tar.bz2
 Source1:baselibs.conf
 Patch:  pkgconfig.patch
@@ -45,7 +44,6 @@
 
 
 %package devel
-License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Summary:Netscape Portable Runtime development files
 Group:  Development/Libraries/Other
 Requires:   mozilla-nspr = %{version}
@@ -98,6 +96,16 @@
 # #31667
 chmod -x %{buildroot}%{_includedir}/nspr4/prvrsion.h
 
+%check
+# Run test suite
+perl ./mozilla/nsprpub/pr/tests/runtests.pl 2>&1 | tee output.log
+TEST_FAILURES=`grep -c FAILED ./output.log` || :
+if [ $TEST_FAILURES -ne 0 ]; then
+  echo "error: test suite returned failure(s)"
+  exit 1
+fi
+echo "test suite completed"
+
 %clean
 rm -rf %{buildroot}
 

++ nspr-4.8.9.tar.bz2 -> nspr-4.9.0.tar.bz2 ++
 8052 lines of diff (skipped)

++ pkgconfig.patch ++
--- /var/tmp/diff_new_pack.KXzy5J/_old  2012-02-17 15:00:51.0 +0100
+++ /var/tmp/diff_new_pack.KXzy5J/_new  2012-02-17 15:00:51.0 +0100
@@ -1,7 +1,7 @@
-diff -urN nspr-4.5.99.old/mozilla/nsprpub/config/Makefile.in 
nspr-4.5.99/mozilla/nsprpub/config/Makefile.in
 nspr-4.5.99.old/mozilla/nsprpub/config/Makefile.in 2005-05-03 
11:16:45.0 +0200
-+++ nspr-4.5.99/mozilla/nsprpub/config/Makefile.in 2005-05-18 
12:05:53.0 +0200
-@@ -52,9 +52,9 @@
+diff -uprN '--exclude=CVS' nspr-4.9.0/mozilla/nsprpub/config/Makefile.in 
nspr-4.9.0.new/mozilla/nsprpub/config/Makefile.in
+--- nspr-4.9.0/mozilla/nsprpub/config/Makefile.in  2009-05-20 
21:54:24.0 +0200
 nspr-4.9.0.new/mozilla/nsprpub/config/Makefile.in  2012-02-04 
11:24:45.216139811 +0100
+@@ -52,9 +52,9 @@ VISIBILITY_FLAGS =
  
  # autoconf.mk must be deleted last (from the top-level directory)
  # because it is included by every makefile.
@@ -13,7 +13,7 @@
  
  include $(topsrcdir)/config/config.mk
  
-@@ -139,6 +139,7 @@
+@@ -135,6 +135,7 @@ endef
  
  export:: $(TARGETS)
rm -f $(dist_bindir)/nspr-config
@@ -21,9 +21,9 @@
  
  ifdef WRAP_SYSTEM_INCLUDES
  export::
-diff -urN nspr-4.5.99.old/mozilla/nsprpub/config/nspr.pc.in 
nspr-4.5.99/mozilla/nsprpub/config/mozilla-nspr.pc.in
 nspr-4.5.99.old/mozilla/nsprpub/config/nspr.pc.in  1970-01-01 
01:00:00.0 +0100
-+++ nspr-4.5.99/mozilla/nsprpub/config/nspr.pc.in  2005-05-18 
12:03:36.0 +0200
+diff -uprN '--exclude=CVS' nspr-4.9.0/mozilla/nsprpub/config/nspr.pc.in 
nspr-4.9.0.new/mozilla/nsprpub/config/nspr.pc.in
+--- nspr-4.9.0/mozilla/nsprpub/config/nspr.pc.in   1970-01-01 
01:00:00.0 +0100
 nspr-4.9.0.new/mozilla/nsprpub/config/nspr.pc.in   2012-02-04 
11:24:45.216139811 +0100
 @@ -0,0 +1,12 @@
 +prefix=@prefix@
 +exec_prefix=@exec_prefix@
@@

commit gummi for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package gummi for openSUSE:Factory checked 
in at 2012-02-17 15:00:40

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


Package is "gummi", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/gummi/gummi.changes  2011-12-25 
17:34:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.gummi.new/gummi.changes 2012-02-17 
15:00:43.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 14 10:10:45 UTC 2012 - badshah...@gmail.com
+
+- Add gummi-deprecated-g_thread_init.patch to fix build failures
+  for openSUSE > 12.1
+
+---

New:

  gummi-deprecated-g_thread_init.patch



Other differences:
--
++ gummi.spec ++
--- /var/tmp/diff_new_pack.QyDSPo/_old  2012-02-17 15:00:45.0 +0100
+++ /var/tmp/diff_new_pack.QyDSPo/_new  2012-02-17 15:00:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gummi
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,10 +11,12 @@
 # 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:   gummi
 Version:0.6.1
 Release:1
@@ -23,6 +25,10 @@
 Url:http://gummi.midnightcoding.org/
 Group:  Productivity/Publishing/TeX/Frontends
 Source0:%{name}-%{version}.tar.gz
+%if 0%{?suse_version} > 1210
+# PATCH-FIX-UPSTREAM gummi-deprecated-g_thread_init.patch badshah...@gmail.com 
-- Remove usage of deprecated g_thread_init().
+Patch0: gummi-deprecated-g_thread_init.patch
+%endif
 BuildRequires:  intltool
 BuildRequires:  fdupes
 BuildRequires:  pkg-config
@@ -45,6 +51,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version} > 1210
+%patch0 -p1
+%endif
 
 %build
 %configure

++ gummi-deprecated-g_thread_init.patch ++
Index: gummi-0.6.1/src/main.c
===
--- gummi-0.6.1.orig/src/main.c
+++ gummi-0.6.1/src/main.c
@@ -75,7 +75,13 @@ int main (int argc, char *argv[]) {
 g_option_context_parse (context, &argc, &argv, &error);
 
 /* initialize GTK */
-g_thread_init (NULL);
+/* g_thread_init has been deprecated since version 2.32 and
+ * should not be used in newly-written code. This function is
+ * no longer necessary. The GLib threading system is
+ * automatically initialized at the start of your program.
+ * http://developer.gnome.org/glib/2.31/glib-Deprecated-Thread-APIs.html
+ * g_thread_init (NULL); */
+
 gdk_threads_init ();
 gtk_init (&argc, &argv);
 GtkBuilder* builder = gtk_builder_new ();
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gcc46 for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package gcc46 for openSUSE:Factory checked 
in at 2012-02-17 15:00:35

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


Package is "gcc46", Maintainer is "rguent...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/gcc46/cross-arm-gcc-icecream-backend.changes 
2012-01-27 21:26:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gcc46.new/cross-arm-gcc-icecream-backend.changes
2012-02-17 15:00:39.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb 15 11:35:05 UTC 2012 - rguent...@suse.com
+
+- Adjust for cross-$arch-binutils install location change.
+
+---
+Mon Jan 30 13:08:01 UTC 2012 - rguent...@suse.com
+
+- Drop AWT support from libgcj.  [bnc#742935]
+
+---
cross-hppa-gcc-icecream-backend.changes: same change
cross-i386-gcc-icecream-backend.changes: same change
cross-ia64-gcc-icecream-backend.changes: same change
cross-ppc-gcc-icecream-backend.changes: same change
cross-ppc64-gcc-icecream-backend.changes: same change
cross-s390-gcc-icecream-backend.changes: same change
cross-s390x-gcc-icecream-backend.changes: same change
cross-x86_64-gcc-icecream-backend.changes: same change
gcc46-testresults.changes: same change
gcc46.changes: same change
libffi46.changes: same change
libgcj46.changes: same change



Other differences:
--
++ cross-arm-gcc-icecream-backend.spec ++
--- /var/tmp/diff_new_pack.px5m18/_old  2012-02-17 15:00:43.0 +0100
+++ /var/tmp/diff_new_pack.px5m18/_new  2012-02-17 15:00:43.0 +0100
@@ -282,10 +282,6 @@
 #ENABLE_CHECKING="--enable-checking=yes"
 ENABLE_CHECKING="--enable-checking=release"
 
-%if "%{name}" != "gcc46"
-export PATH=/opt/cross/bin:$PATH
-%endif
-
 # Work around tail/head -1 changes
 export _POSIX2_VERSION=199209
 
@@ -335,8 +331,7 @@
 %else
--with-java-home=%{_libdir}/jvm/java-1.5.0-gcj%{binsuffix}-1.5.0.0/jre \
--with-ecj-jar=%{libsubdir}/ecj.jar \
---enable-java-awt=gtk \
-   --enable-gtk-cairo \
+--disable-java-awt \
 %if !%{biarch_libjava}
 --disable-libjava-multilib \
 %endif
@@ -355,8 +350,6 @@
 %endif
 %if 0%{?gcc_target_arch:1}
 %if 0%{?gcc_icecream:1}
-   --with-as=/opt/cross/%{TARGET_ARCH}-linux/bin/as \
-   --with-ld=/opt/cross/%{TARGET_ARCH}-linux/bin/ld \
--with-sysroot=/ \
--enable-linux-futex \
 %endif
@@ -455,7 +448,7 @@
 
 # But the assembler comes from the cross-binutils, and hence is _not_
 # named funnily, not even on ppc, so there we need the original target
-install -s -D /opt/cross/bin/${ORIG_TARGET}-linux-as 
$RPM_BUILD_ROOT/env/usr/bin/as
+install -s -D %{_prefix}/bin/${ORIG_TARGET}-linux-as 
$RPM_BUILD_ROOT/env/usr/bin/as
 install -s $RPM_BUILD_ROOT/inst%{_prefix}/bin/${BUILD_TARGET}-linux-g++ 
$RPM_BUILD_ROOT/env/usr/bin/g++
 install -s $RPM_BUILD_ROOT/inst%{_prefix}/bin/${BUILD_TARGET}-linux-gcc 
$RPM_BUILD_ROOT/env/usr/bin/gcc
 

cross-hppa-gcc-icecream-backend.spec: same change
cross-i386-gcc-icecream-backend.spec: same change
cross-ia64-gcc-icecream-backend.spec: same change
cross-ppc-gcc-icecream-backend.spec: same change
cross-ppc64-gcc-icecream-backend.spec: same change
cross-s390-gcc-icecream-backend.spec: same change
cross-s390x-gcc-icecream-backend.spec: same change
cross-x86_64-gcc-icecream-backend.spec: same change
++ gcc46-testresults.spec ++
--- /var/tmp/diff_new_pack.px5m18/_old  2012-02-17 15:00:43.0 +0100
+++ /var/tmp/diff_new_pack.px5m18/_new  2012-02-17 15:00:43.0 +0100
@@ -103,8 +103,6 @@
 %endif
 %if 0%{?building_libjava:1}%{?building_testsuite:1}
 BuildRequires:  fastjar
-BuildRequires:  gtk2-devel
-BuildRequires:  libart_lgpl-devel
 BuildRequires:  unzip
 %endif
 %if 0%{?building_libffi:1}
@@ -519,10 +517,6 @@
 #ENABLE_CHECKING="--enable-checking=yes"
 ENABLE_CHECKING="--enable-checking=release"
 
-%if "%{name}" != "gcc46"
-export PATH=/opt/cross/bin:$PATH
-%endif
-
 # Work around tail/head -1 changes
 export _POSIX2_VERSION=199209
 
@@ -572,8 +566,7 @@
 %else
--with-java-home=%{_libdir}/jvm/java-1.5.0-gcj%{binsuffix}-1.5.0.0/jre \
--with-ecj-jar=%{libsubdir}/ecj.jar \
---enable-java-awt=gtk \
-   --enable-gtk-cairo \
+--disable-java-awt \
 %if !%{biarch_libjava}
 --disable-libjava-multilib \
 %endif
@@ -592,8 +585,6 @@
 %endif
 %if 0%{?gcc_target_arch:1}
 %if 0%{?gcc_icecream:1}
-   --with-as=/opt/cross/%{TARGET_ARCH}-linux/bin/as \
-   --with-ld=/opt/cross/%{TARGET_ARCH}-linux/bin/ld \
--with-sysroot=/ \
--enable-linux-futex \
 %endif

++ gcc46.spec ++
--- /var/tm

commit flash-player for openSUSE:Factory:NonFree

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:Factory:NonFree checked in at 2012-02-17 15:00:23

Comparing /work/SRC/openSUSE:Factory:NonFree/flash-player (Old)
 and  /work/SRC/openSUSE:Factory:NonFree/.flash-player.new (New)


Package is "flash-player", Maintainer is "dmuel...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/flash-player/flash-player.changes
2011-12-12 16:59:50.0 +0100
+++ /work/SRC/openSUSE:Factory:NonFree/.flash-player.new/flash-player.changes   
2012-02-17 15:00:32.0 +0100
@@ -1,0 +2,34 @@
+Thu Feb 16 08:48:11 UTC 2012 - meiss...@suse.com
+
+- Update to 11.1.102.62: (bnc#747297)
+  https://www.adobe.com/support/security/bulletins/apsb12-03.html
+
+  CVEs fixed: CVE-2012-0751, CVE-2012-0752, CVE-2012-0753, CVE-2012-0754,
+  CVE-2012-0755, CVE-2012-0756, CVE-2012-0767
+
+---
+Fri Jan 27 22:16:20 CET 2012 - dmuel...@suse.de
+
+- fix provides/obsoletes causing arch-conflict 
+
+---
+Tue Jan 24 18:03:19 CET 2012 - r...@suse.de
+
+- fix macros in specfile 
+
+---
+Mon Jan 16 13:29:25 CET 2012 - dmuel...@suse.de
+
+- provide/obsolete also libflashsupport for sled11-sp1
+- add compat macros that are necessary after the "spec-cleaner run"
+
+---
+Wed Dec 28 20:25:09 UTC 2011 - asterios.dra...@gmail.com
+
+- Added a patch (kcm_adobe_flash_player.desktop.patch) to make the KCM module
+  X-KDE-System-Settings-Parent-Category entry compatible with newer KDE
+  versions in order to not showup in the "Lost and Found" section.
+- Spec-file updates:
+  * Spec file cleanup based also on spec-cleaner run.
+
+---

Old:

  flashplayer_11.1.102.55_sa.i386.tar.bz2
  install_flash_player_11.1.102.55_linux.i386.tar.bz2
  install_flash_player_11.1.102.55_linux.x86_64.tar.bz2

New:

  flashplayer_11.1.102.62_sa.i386.tar.bz2
  install_flash_player_11.1.102.62_linux.i386.tar.bz2
  install_flash_player_11.1.102.62_linux.x86_64.tar.bz2
  kcm_adobe_flash_player.desktop.patch



Other differences:
--
++ flash-player.spec ++
--- /var/tmp/diff_new_pack.MTcfhw/_old  2012-02-17 15:00:38.0 +0100
+++ /var/tmp/diff_new_pack.MTcfhw/_new  2012-02-17 15:00:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package flash-player
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,153 +15,179 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
+%define build_standalone 1
 
 Name:   flash-player
+Version:11.1.102.62
+Release:0
+Summary:Adobe Flash Plugin and Standalone Player
 License:NON-OSI-COMPLIANT(royalties)
 Group:  Productivity/Networking/Web/Browsers
-Summary:Adobe Flash PlugIn and standalone Player
-Url:http://get.adobe.com/de/flashplayer/
-Provides:   netscape-plugins
-Obsoletes:  netscape-plugins
-%if %suse_version > 1110
-#flash 10 does not need libflashsupport and using it can cause device conflicts
-#just let flash talk with the default alsa plugin - bnc#539656
-Provides:   libflashsupport = 1.2
-Obsoletes:  libflashsupport <= 1.2
-Provides:   libflashsupport-32bit = 1.2
-Obsoletes:  libflashsupport-32bit <= 1.2
+Url:http://get.adobe.com/flashplayer/
+%ifarch %ix86
+Source0:install_flash_player_%{version}_linux.i386.tar.bz2
+Source1:flashplayer_%{version}_sa.i386.tar.bz2
 %endif
-%if %suse_version > 1030
-BuildRequires:  update-desktop-files
+%ifarch x86_64
+Source0:install_flash_player_%{version}_linux.x86_64.tar.bz2
+Source1:flashplayer_11.1.102.55_sa.x86_64.tar.bz2
 %endif
-%if %suse_version > 1100
+Source2:LICENSE
+Source3:README
+Source4:flashplayer.desktop
+Source5:flashplayer.png
+Source99:   update.sh
+NoSource:   99
+# PATCH-FIX-OPENSUSE desktop.diff -- Fix desktop file to be GNOME compatible
+Patch0: desktop.diff
+# PATCH-FIX-OPENSUSE kcm_adobe_flash_player.desktop.patch 
asterios.dra...@gmail.com -- Make the KCM module 
X-KDE-System-Settings-Parent-Category entry compatible with newer KDE versions
+Patch1: kcm_adobe_flash_player.desktop.patch
+%if 0%{?suse_version} > 1100
 Buil

commit accerciser for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package accerciser for openSUSE:Factory 
checked in at 2012-02-17 15:00:17

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


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

Changes:

--- /work/SRC/openSUSE:Factory/accerciser/accerciser.changes2012-01-09 
11:14:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.accerciser.new/accerciser.changes   
2012-02-17 15:00:19.0 +0100
@@ -1,0 +2,14 @@
+Fri Feb 17 10:16:13 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  No LGPL-2.1+ licenses found in package
+
+---
+Tue Feb  7 13:49:54 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.5:
+  + bgo#659296: Fix incompatibilities with new version of IPython
+  + Move macaroon to pygi.
+  + Updated translations.
+
+---

Old:

  accerciser-3.3.1.tar.bz2

New:

  accerciser-3.3.5.tar.xz



Other differences:
--
++ accerciser.spec ++
--- /var/tmp/diff_new_pack.8WhbIu/_old  2012-02-17 15:00:23.0 +0100
+++ /var/tmp/diff_new_pack.8WhbIu/_new  2012-02-17 15:00:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package accerciser
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   accerciser
 Summary:Accessibility debugging tool
-Version:3.3.1
-Release:1
-License:BSD3c(or similar) ; LGPLv2.1+
+License:BSD-3-Clause
 Group:  Development/Tools/Other
+Version:3.3.5
+Release:0
 Url:http://live.gnome.org/Accerciser
-Source0:
http://download.gnome.org/sources/accerciser/3.3/%{name}-%{version}.tar.bz2
+Source0:
http://download.gnome.org/sources/accerciser/3.3/%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
@@ -36,7 +34,7 @@
 BuildRequires:  pkgconfig(atspi-2) >= 2.1.5
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.1.13
 BuildRequires:  pkgconfig(pygobject-3.0) >= 2.90.3
-Requires:   IPython
+Requires:   IPython >= 0.11
 # pyatspi is a virtual name that is provided by the default at-spi stack
 Requires:   pyatspi
 Requires:   python-gobject

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



commit caffeine for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package caffeine for openSUSE:Factory 
checked in at 2012-02-17 12:19:45

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


Package is "caffeine", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/caffeine/caffeine.changes2012-01-17 
16:04:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.caffeine.new/caffeine.changes   2012-02-17 
12:19:46.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 14 03:53:36 UTC 2012 - malcolmle...@opensuse.org
+
+- Add caffeine-fix-desktop-categories.patch: Fix categories string
+  and missing semi-colon (lp#931874).
+- Add caffeine-fix-non-executable-script.patch: Fix
+  non-executable-script warnings (lp#931875).
+
+---

New:

  caffeine-fix-desktop-categories.patch
  caffeine-fix-non-executable-script.patch



Other differences:
--
++ caffeine.spec ++
--- /var/tmp/diff_new_pack.gdcdLU/_old  2012-02-17 12:19:50.0 +0100
+++ /var/tmp/diff_new_pack.gdcdLU/_new  2012-02-17 12:19:50.0 +0100
@@ -1,6 +1,7 @@
 #
 # spec file for package caffeine
 #
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Malcolm J Lewis 
 #
 # All modifications and additions to the file contributed by third parties
@@ -15,18 +16,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define __requires_exclude typelib\\(AppIndicator3\\)
 
 Name:   caffeine
 Version:2.4.1+419
 Release:0
-License:GPL-3.0+ ; LGPL-3.0+
 Summary:Utility to inhibit screensaver and sleep modes
-Url:https://launchpad.net/caffeine
+License:GPL-3.0+ ; LGPL-3.0+
 Group:  System/GUI/GNOME
+Url:https://launchpad.net/caffeine
 Source0:
http://launchpad.net/caffeine/2.4/2.4.1/+download/caffeine_2.4.1+419~oneiric1.tar.gz
-# PATCH-FIX-UPSTREAM caffeine-add-indicator-menu.patch lp892663 
malcolmle...@opensuse.org -- Adds the menu via right-click on indicator
+# PATCH-FIX-UPSTREAM caffeine-add-indicator-menu.patch lp#892663 
malcolmle...@opensuse.org -- Adds the menu via right-click on indicator
 Patch0: caffeine-add-indicator-menu.patch
+# PATCH-FIX-UPSTREAM caffeine-fix-desktop-categories.patch lp#931874 
malcolmle...@opensuse.org -- Fix categories string and missing semi-colon.
+Patch1: caffeine-fix-desktop-categories.patch
+# PATCH-FIX-UPSTREAM caffeine-fix-non-executable-script.patch lp#931875 
malcolmle...@opensuse.org -- Fix non-executable-script warnings.
+Patch2: caffeine-fix-non-executable-script.patch
 BuildRequires:  fdupes
 # For %%glib2_gsettings_schema_* macros
 BuildRequires:  glib2-devel
@@ -50,6 +56,8 @@
 %prep
 %setup -q -n recipe-%{version}
 %patch0
+%patch1 -p1
+%patch2 -p1
 
 %build
 python setup.py build
@@ -60,7 +68,7 @@
 %suse_update_desktop_file %{name}-preferences
 # we don't need ubuntu themes
 rm -r %{buildroot}%{_datadir}/icons/ubuntu*
-%find_lang %{name}
+%find_lang %{name} %{?no_lang_C}
 %fdupes %{buildroot}
 
 %post

++ caffeine-fix-desktop-categories.patch ++
diff -Naur a/share/applications/caffeine.desktop 
b/share/applications/caffeine.desktop
--- a/share/applications/caffeine.desktop   2011-11-11 13:35:24.0 
-0600
+++ b/share/applications/caffeine.desktop   2012-02-13 21:14:50.263589577 
-0600
@@ -6,5 +6,5 @@
 Exec=/usr/bin/caffeine
 Terminal=false
 Type=Application
-Categories=Utility;
+Categories=Utility;DesktopUtility;
 StartupNotify=false
diff -Naur a/share/applications/caffeine-preferences.desktop 
b/share/applications/caffeine-preferences.desktop
--- a/share/applications/caffeine-preferences.desktop   2011-11-11 
13:35:24.0 -0600
+++ b/share/applications/caffeine-preferences.desktop   2012-02-13 
21:22:23.038077555 -0600
@@ -6,5 +6,5 @@
 Exec=/usr/bin/caffeine -p
 Terminal=false
 Type=Application
-Categories=Settings;DesktopSettings
+Categories=Settings;DesktopSettings;
 StartupNotify=false
++ caffeine-fix-non-executable-script.patch ++
diff -Naur a/caffeine/applicationinstance.py b/caffeine/applicationinstance.py
--- a/caffeine/applicationinstance.py   2011-11-11 13:35:24.0 -0600
+++ b/caffeine/applicationinstance.py   2012-02-13 21:28:20.643134426 -0600
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # Copyright © 2009 The Caffeine Developers
diff -Naur a/caffeine/core.py b/caffeine/core.py
--- a/caffeine/core.py  2011-11-11 13:35:24.0 -0600
+++ b/caffeine/core.py  2012-02-13 21:28:20.671134823 -0600
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # Copyright © 2009 The Caffeine Devel

commit libxslt for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libxslt for openSUSE:Factory checked 
in at 2012-02-17 12:19:41

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


Package is "libxslt", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libxslt/libxslt-python.changes   2012-01-06 
11:46:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.libxslt.new/libxslt-python.changes  
2012-02-17 12:19:42.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 16 21:23:22 UTC 2012 - co...@suse.com
+
+- add libtool as buildrequire to fix compilation
+
+---



Other differences:
--
++ libxslt-python.spec ++
--- /var/tmp/diff_new_pack.Ja5JAo/_old  2012-02-17 12:19:45.0 +0100
+++ /var/tmp/diff_new_pack.Ja5JAo/_new  2012-02-17 12:19:45.0 +0100
@@ -16,10 +16,10 @@
 #
 
 
-
 Name:   libxslt-python
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libgpg-error-devel
+BuildRequires:  libtool
 BuildRequires:  libxml2-devel
 BuildRequires:  libxml2-python
 BuildRequires:  python-devel

++ libxslt.spec ++
--- /var/tmp/diff_new_pack.Ja5JAo/_old  2012-02-17 12:19:45.0 +0100
+++ /var/tmp/diff_new_pack.Ja5JAo/_new  2012-02-17 12:19:45.0 +0100
@@ -16,7 +16,6 @@
 #
 
 
-
 Name:   libxslt
 Version:1.1.26
 Release:0
@@ -59,6 +58,7 @@
 
 %package -n libxslt1
 Summary:XSL Transformation Library
+License:LGPL-2.1+
 Group:  System/Libraries
 Provides:   libxslt = %{version}-%{release}
 Obsoletes:  libxslt <= %{version}-%{release}


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



commit obs-service-tar_scm for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package obs-service-tar_scm for 
openSUSE:Factory checked in at 2012-02-17 12:18:38

Comparing /work/SRC/openSUSE:Factory/obs-service-tar_scm (Old)
 and  /work/SRC/openSUSE:Factory/.obs-service-tar_scm.new (New)


Package is "obs-service-tar_scm", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/obs-service-tar_scm/obs-service-tar_scm.changes  
2012-01-04 07:25:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.obs-service-tar_scm.new/obs-service-tar_scm.changes 
2012-02-17 12:18:39.0 +0100
@@ -1,0 +2,37 @@
+Thu Feb 16 15:23:35 GMT 2012 - aspi...@suse.com
+
+- When the cache is used, output location of repo in the cache
+
+---
+Tue Feb 14 16:52:19 GMT 2012 - aspi...@suse.com
+
+- add new 'versionformat' option to determine how version is
+  extracted via git show --pretty=...
+- support caching of cloned repositories to speed up fetch
+  from upstream
+
+---
+Mon Feb  13 15:52:19 GMT 2012 - aspi...@suse.com
+
+- Add test suite
+- Fix --subdir with --scm svn
+- Fix --scm bzr
+
+---
+Mon Feb 13 10:51:19 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Tue Jan 24 15:46:17 UTC 2012 - rschi...@gmail.com
+
+- add new option to specify a subset of files/subdirectories to
+  pack in the tar ball
+
+---
+Tue Jan 24 13:26:19 UTC 2012 - rschi...@gmail.com
+
+- Checking out a specific revision cannot work when only the latest
+  version is cloned.
+
+---

New:

  bzrfixtures.py
  bzrtests.py
  commontests.py
  fixtures.py
  gitfixtures.py
  githgtests.py
  gittests.py
  hgfixtures.py
  hgtests.py
  scm-wrapper
  scmlogs.py
  svnfixtures.py
  svntests.py
  tar_scm.rc
  test.py
  testassertions.py
  testenv.py
  utils.py



Other differences:
--
++ obs-service-tar_scm.spec ++
--- /var/tmp/diff_new_pack.G30PbZ/_old  2012-02-17 12:18:42.0 +0100
+++ /var/tmp/diff_new_pack.G30PbZ/_new  2012-02-17 12:18:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package obs-service-tar_scm
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,17 +16,44 @@
 #
 
 
+%define service tar_scm
 
-Name:   obs-service-tar_scm
-License:GPL v2 or later
-Group:  Development/Tools/Building
+Name:   obs-service-%{service}
 Summary:An OBS source service: checkout or update a tar ball from 
svn/git/hg
-Url:
https://build.opensuse.org/package/show?package=obs-service-tar_scm&project=openSUSE%3ATools
-Version:0.2.1
-Release:1
-Source: tar_scm
-Source1:tar_scm.service
-Requires:   subversion git mercurial bzr
+License:GPL-2.0+
+Group:  Development/Tools/Building
+Url:
https://build.opensuse.org/package/show?package=obs-service-%{service}&project=openSUSE%3ATools
+Version:0.2.3
+Release:0
+Source: %{service}
+Source1:%{service}.service
+Source2:%{service}.rc
+
+# test suite files
+Source100:  bzrfixtures.py
+Source101:  bzrtests.py
+Source102:  commontests.py
+Source103:  fixtures.py
+Source104:  gitfixtures.py
+Source105:  githgtests.py
+Source106:  gittests.py
+Source107:  hgfixtures.py
+Source108:  hgtests.py
+Source109:  scmlogs.py
+Source110:  svnfixtures.py
+Source111:  svntests.py
+Source112:  testassertions.py
+Source113:  testenv.py
+Source114:  test.py
+Source115:  utils.py
+Source116:  scm-wrapper
+
+Requires:   bzr git mercurial subversion
+BuildRequires:  bzr
+BuildRequires:  git
+BuildRequires:  mercurial
+BuildRequires:  python >= 2.6
+BuildRequires:  subversion
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -46,9 +73,20 @@
 install -m 0755 %{SOURCE0} $RPM_BUILD_ROOT/usr/lib/obs/service
 install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT/usr/lib/obs/service
 
+mkdir -p $RPM_BUILD_ROOT/etc/obs/services
+install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/etc/obs/services/%{service}
+
+%check
+chmod +x $RPM_SOURCE_DIR/scm-wrapper
+: Running the test suite.  Please be patient - this takes a few minutes ...
+python

commit mysql-workbench for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mysql-workbench for openSUSE:Factory 
checked in at 2012-02-17 12:18:31

Comparing /work/SRC/openSUSE:Factory/mysql-workbench (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-workbench.new (New)


Package is "mysql-workbench", Maintainer is "mhruse...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/mysql-workbench/mysql-workbench.changes  
2012-02-14 11:25:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.mysql-workbench.new/mysql-workbench.changes 
2012-02-17 12:18:37.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:50:46 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ mysql-workbench.spec ++
--- /var/tmp/diff_new_pack.YxBcCT/_old  2012-02-17 12:18:39.0 +0100
+++ /var/tmp/diff_new_pack.YxBcCT/_new  2012-02-17 12:18:39.0 +0100
@@ -16,13 +16,12 @@
 #
 
 
-
 Name:   mysql-workbench
 Summary:A MySQL visual modeling tool
+License:GPL-2.0+
+Group:  Productivity/Databases/Clients
 Version:5.2.37
 Release:0
-Group:  Productivity/Databases/Clients
-License:GPL-2.0+
 Url:http://dev.mysql.com/downloads/workbench
 Source: %{name}-gpl-%{version}-src.tar.bz2
 Source1:openSUSE_(Vendor_Package).xml


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



commit xfce4-panel-plugin-mpc for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xfce4-panel-plugin-mpc for 
openSUSE:Factory checked in at 2012-02-17 12:18:30

Comparing /work/SRC/openSUSE:Factory/xfce4-panel-plugin-mpc (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-panel-plugin-mpc.new (New)


Package is "xfce4-panel-plugin-mpc", Maintainer is "xfce-maintain...@suse.de"

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-panel-plugin-mpc/xfce4-panel-plugin-mpc.changes
2011-09-23 12:51:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.xfce4-panel-plugin-mpc.new/xfce4-panel-plugin-mpc.changes
   2012-02-17 12:18:34.0 +0100
@@ -1,0 +2,23 @@
+Thu Feb 16 15:10:38 UTC 2012 - g...@opensuse.org
+
+- revert xfce4-panel-plugin-mpc-fix-installation-locations.patch
+  %{_datadir}/xfce4/panel/plugins and
+  %{_libdir}/xfce4/panelr/-plugins are preferred by upstream
+
+---
+Sun Feb 12 22:43:14 UTC 2012 - g...@opensuse.org
+
+- update to version 0.4.0
+  - migrated from libxfcegui4 to libxfce4ui
+  - improved icon sizing/naming
+  - icons names are taken from the icon-naming-spec
+  - buttons are properly displayed/resized when the panel is
+resized or switched to vertical, or the frame is toggled on/off
+  - background is now 'transparent'
+- added xfce4-panel-plugin-mpc-fix-installation-locations.patch in
+  order to install the plugin executable into
+  %{_libexecdir}/xfce4/panel-plugins and the desktop file into
+  %{_datadir}/xfce4/panel-plugins to be consistent with all other
+  plugins
+
+---

Old:

  xfce4-mpc-plugin-0.3.6.tar.bz2

New:

  xfce4-mpc-plugin-0.4.0.tar.bz2



Other differences:
--
++ xfce4-panel-plugin-mpc.spec ++
--- /var/tmp/diff_new_pack.UYfLQh/_old  2012-02-17 12:18:37.0 +0100
+++ /var/tmp/diff_new_pack.UYfLQh/_new  2012-02-17 12:18:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xfce4-panel-plugin-mpc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,18 +20,19 @@
 %define plugin_name xfce4-mpc-plugin
 
 Name:   xfce4-panel-plugin-mpc
+Version:0.4.0
+Release:0
+Summary:MPD Client Plugin for the Xfce Panel
 License:GPL-2.0+
-Version:0.3.6
-Release:4
-Summary:MPD client plugin for the Xfce panel
-Url:http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin
-Source0:xfce4-mpc-plugin-0.3.6.tar.bz2
 Group:  System/GUI/XFCE
-BuildRequires:  intltool
+Url:http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin
+Source0:xfce4-mpc-plugin-%{version}.tar.bz2
 BuildRequires:  fdupes
-BuildRequires:  pkgconfig(libxfce4panel-1.0)
+BuildRequires:  intltool
 BuildRequires:  pkgconfig(exo-1)
 BuildRequires:  pkgconfig(libmpd)
+BuildRequires:  pkgconfig(libxfce4panel-1.0)
+BuildRequires:  pkgconfig(libxfce4ui-1)
 Requires:   xfce4-panel >= 4.8.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -58,7 +59,7 @@
 
 %files -f %{name}.lang
 %defattr(-,root,root)
-%{_libexecdir}/xfce4/panel-plugins/xfce4-mpc-plugin
-%{_datadir}/xfce4/panel-plugins/xfce4-mpc-plugin.desktop
+%{_libdir}/xfce4/panel/plugins/xfce4-mpc-plugin
+%{_datadir}/xfce4/panel/plugins/xfce4-mpc-plugin.desktop
 
 %changelog

++ xfce4-mpc-plugin-0.3.6.tar.bz2 -> xfce4-mpc-plugin-0.4.0.tar.bz2 ++
 2029 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xfce4-mpc-plugin-0.3.6/AUTHORS new/xfce4-mpc-plugin-0.4.0/AUTHORS
--- old/xfce4-mpc-plugin-0.3.6/AUTHORS  2009-08-17 21:36:34.0 +0200
+++ new/xfce4-mpc-plugin-0.4.0/AUTHORS  2011-01-21 18:27:12.0 +0100
@@ -1 +1 @@
-Landry Breuil (landry at fr.homeunix.org / gaston at gcu.info)
+Landry Breuil 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xfce4-mpc-plugin-0.3.6/ChangeLog new/xfce4-mpc-plugin-0.4.0/ChangeLog
--- old/xfce4-mpc-

commit perl-B-Hooks-EndOfScope for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-B-Hooks-EndOfScope for 
openSUSE:Factory checked in at 2012-02-17 12:18:24

Comparing /work/SRC/openSUSE:Factory/perl-B-Hooks-EndOfScope (Old)
 and  /work/SRC/openSUSE:Factory/.perl-B-Hooks-EndOfScope.new (New)


Package is "perl-B-Hooks-EndOfScope", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-B-Hooks-EndOfScope/perl-B-Hooks-EndOfScope.changes
  2011-09-23 12:36:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-B-Hooks-EndOfScope.new/perl-B-Hooks-EndOfScope.changes
 2012-02-17 12:18:31.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 16 16:42:44 UTC 2012 - co...@suse.com
+
+- updated to 0.10
+  * Stop propagating our magic through localisation.
+
+---

Old:

  B-Hooks-EndOfScope-0.09.tar.gz

New:

  B-Hooks-EndOfScope-0.10.tar.gz



Other differences:
--
++ perl-B-Hooks-EndOfScope.spec ++
--- /var/tmp/diff_new_pack.Pr9vVj/_old  2012-02-17 12:18:33.0 +0100
+++ /var/tmp/diff_new_pack.Pr9vVj/_new  2012-02-17 12:18:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-B-Hooks-EndOfScope
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,12 @@
 #
 
 
-
 Name:   perl-B-Hooks-EndOfScope
-Version:0.09
-Release:3
-License:GPL-1.0+ or Artistic-1.0
+Version:0.10
+Release:0
 %define cpan_name B-Hooks-EndOfScope
 Summary:Execute code after a scope finished compilation
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/B-Hooks-EndOfScope/
 Source: 
http://www.cpan.org/authors/id/F/FL/FLORA/%{cpan_name}-%{version}.tar.gz
@@ -30,9 +29,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.31
 BuildRequires:  perl(Sub::Exporter)
+BuildRequires:  perl(Test::More) >= 0.89
 BuildRequires:  perl(Variable::Magic) >= 0.34
+#BuildRequires: perl(B::Hooks::EndOfScope)
 Requires:   perl(Sub::Exporter)
 Requires:   perl(Variable::Magic) >= 0.34
 %{perl_requires}
@@ -43,9 +43,11 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+# MANUAL BEGIN
 %if 0%{?sles_version} == 10
 %{__perl} -p -i -e 's|6.31|6.30|' Makefile.PL
 %endif
+# MANUAL END
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -59,9 +61,6 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes LICENSE README

++ B-Hooks-EndOfScope-0.09.tar.gz -> B-Hooks-EndOfScope-0.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-EndOfScope-0.09/Changes 
new/B-Hooks-EndOfScope-0.10/Changes
--- old/B-Hooks-EndOfScope-0.09/Changes 2010-05-07 22:12:32.0 +0200
+++ new/B-Hooks-EndOfScope-0.10/Changes 2012-02-16 09:43:26.0 +0100
@@ -1,3 +1,6 @@
+0.10  Thu, 16 Feb 2012 09:41:54 +0100
+  * Stop propagating our magic through localisation.
+
 0.09  Fri, 07 May 2010 22:11:49 +0200
   * Improve distribution metadata.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-EndOfScope-0.09/LICENSE 
new/B-Hooks-EndOfScope-0.10/LICENSE
--- old/B-Hooks-EndOfScope-0.09/LICENSE 2010-05-07 22:12:32.0 +0200
+++ new/B-Hooks-EndOfScope-0.10/LICENSE 2012-02-16 09:43:26.0 +0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2010 by Florian Ragwitz.
+This software is copyright (c) 2012 by Florian Ragwitz.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,21 +12,22 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2010 by Florian Ragwitz.
+This software is Copyright (c) 2012 by Florian Ragwitz.
 
 This is free software, licensed under:
 
   The GNU General Public License, Version 1, February 1989
 
-   GNU GENERAL PUBLIC LICENSE
-Version 1, February 1989
+GNU GENERAL PUBLIC LICENSE
+ Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
-59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
+51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
  E

commit MozillaFirefox for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory 
checked in at 2012-02-17 12:17:33

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


Package is "MozillaFirefox", Maintainer is 
"bnc-team-mozi...@forge.provo.novell.com"

Changes:

--- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes
2012-02-14 19:03:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new/MozillaFirefox.changes   
2012-02-17 12:18:18.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 08:47:31 UTC 2012 - w...@rosenauer.org
+
+- update to Firefox 10.0.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

Old:

  firefox-10.0.1-source.tar.bz2
  l10n-10.0.1.tar.bz2

New:

  firefox-10.0.2-source.tar.bz2
  l10n-10.0.2.tar.bz2



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.pF6bIJ/_old  2012-02-17 12:18:29.0 +0100
+++ /var/tmp/diff_new_pack.pF6bIJ/_new  2012-02-17 12:18:29.0 +0100
@@ -18,7 +18,7 @@
 
 
 %define major 10
-%define mainver %major.0.1
+%define mainver %major.0.2
 
 Name:   MozillaFirefox
 BuildRequires:  Mesa-devel
@@ -47,7 +47,7 @@
 BuildRequires:  nss-shared-helper-devel
 Version:%{mainver}
 Release:0
-%define releasedate 2012020800
+%define releasedate 2012021500
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
 Provides:   firefox = %{mainver}

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.pF6bIJ/_old  2012-02-17 12:18:30.0 +0100
+++ /var/tmp/diff_new_pack.pF6bIJ/_new  2012-02-17 12:18:30.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="FIREFOX_10_0_1_RELEASE"
-VERSION="10.0.1"
+RELEASE_TAG="FIREFOX_10_0_2_RELEASE"
+VERSION="10.0.2"
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla

++ firefox-10.0.1-source.tar.bz2 -> firefox-10.0.2-source.tar.bz2 ++
/work/SRC/openSUSE:Factory/MozillaFirefox/firefox-10.0.1-source.tar.bz2 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/firefox-10.0.2-source.tar.bz2 
differ: char 11, line 1


++ l10n-10.0.1.tar.bz2 -> l10n-10.0.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/MozillaFirefox/l10n-10.0.1.tar.bz2 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/l10n-10.0.2.tar.bz2 differ: char 
11, line 1

++ source-stamp.txt ++
--- /var/tmp/diff_new_pack.pF6bIJ/_old  2012-02-17 12:18:30.0 +0100
+++ /var/tmp/diff_new_pack.pF6bIJ/_new  2012-02-17 12:18:30.0 +0100
@@ -1,2 +1,2 @@
-REV=c581b36e7a12
+REV=72ad46d416ce
 REPO=http://hg.mozilla.org/releases/mozilla-release

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



commit xorg-x11-libs for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-libs for openSUSE:Factory 
checked in at 2012-02-17 12:17:12

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-libs/xorg-x11-libs.changes  
2012-01-25 11:09:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11-libs.new/xorg-x11-libs.changes 
2012-02-17 12:17:13.0 +0100
@@ -1,0 +2,38 @@
+Tue Feb 14 11:18:00 UTC 2012 - sndir...@suse.com
+
+- turned -devel package into a meta package, which now requires
+  all the previously required packages by adding the appropriate 
+  pkgconfig(...) Requires
+
+---
+Fri Feb 10 16:18:29 UTC 2012 - sndir...@suse.com
+
+- back to real libs package, but no longer preferred in project 
+
+---
+Thu Feb  9 15:26:18 UTC 2012 - sndir...@suse.com
+
+- please rebuild !!! 
+
+---
+Thu Feb  9 14:28:07 UTC 2012 - sndir...@suse.com
+
+- no longer package anything, since libs are now packaged
+  seperately ==> dummy package
+
+---
+Tue Feb  7 16:58:55 UTC 2012 - sndir...@suse.com
+
+- instead of using LD_PRELOAD link the fake libs against the
+  freshly introduced libxcb-util; hope this works out ...
+  Still this does not help on openSuSE 11.4 (bnc#742297)
+
+---
+Fri Feb  3 10:14:23 UTC 2012 - sndir...@suse.com
+
+- still we need a LD_PRELOAD for the freshly introduced libxcb-util;
+  added this to /etc/profile.d/xorg-x11-libs.{csh,sh}; seems to
+  help on openSUSE 12.1, but apparently not on openSUSE 11.4 
+  (bnc #742297)
+
+---



Other differences:
--
++ xorg-x11-libs.spec ++
--- /var/tmp/diff_new_pack.IRDdaQ/_old  2012-02-17 12:17:18.0 +0100
+++ /var/tmp/diff_new_pack.IRDdaQ/_new  2012-02-17 12:17:18.0 +0100
@@ -17,9 +17,11 @@
 
 # norootforbuild
 
+%define meta 1
 
 Name:   xorg-x11-libs
 BuildRequires:  fdupes fontconfig-devel freetype2-devel gperf libXi6-devel 
libexpat-devel libtool libxslt pkgconfig xorg-x11-libICE-devel 
xorg-x11-libSM-devel xorg-x11-libX11-devel xorg-x11-libXau-devel 
xorg-x11-libXdmcp-devel xorg-x11-libXext-devel xorg-x11-libXfixes-devel 
xorg-x11-libXmu-devel xorg-x11-libXp-devel xorg-x11-libXpm-devel 
xorg-x11-libXprintUtil-devel xorg-x11-libXrender-devel xorg-x11-libXt-devel 
xorg-x11-libXv-devel xorg-x11-libfontenc-devel xorg-x11-libxkbfile-devel 
xorg-x11-proto-devel xorg-x11-util-devel xorg-x11-xtrans-devel
+%if !%{meta}
 %ifarch ppc64 s390x x86_64
 Provides:   libXaw.so.8()(64bit) libXaw.so.7()(64bit) libXaw.so.6()(64bit)
 Provides:   libXaw8.so.8()(64bit) libXaw7.so.7()(64bit) 
libXaw6.so.6()(64bit)
@@ -27,6 +29,7 @@
 Provides:   libXaw.so.8 libXaw.so.7 libXaw.so.6
 Provides:   libXaw8.so.8 libXaw7.so.7 libXaw6.so.6
 %endif
+%endif
 # bug437293
 %ifarch ppc64
 Obsoletes:  xorg-x11-libs-64bit
@@ -81,17 +84,113 @@
 License:GPL-2.0+ ; MIT
 Summary:Include Files and Libraries mandatory for X11 Development
 Group:  Development/Libraries/X11
+%if !%{meta}
 Provides:   xorg-x11-compat70-devel xorg-x11-man XFree86-devel
 Obsoletes:  xorg-x11-compat70-devel xorg-x11-man
+# bug437293
+%ifarch ppc64
+Obsoletes:  xorg-x11-devel-64bit
+%endif
 Requires:   xorg-x11-proto-devel xorg-x11-xtrans-devel 
xorg-x11-libXau-devel xorg-x11-libXdmcp-devel xorg-x11-libX11-devel 
xorg-x11-libXext-devel xorg-x11-libXp-devel xorg-x11-libXpm-devel 
xorg-x11-libXrender-devel xorg-x11-libICE-devel xorg-x11-libSM-devel 
xorg-x11-libXt-devel xorg-x11-libXmu-devel xorg-x11-libXfixes-devel 
xorg-x11-libxkbfile-devel freetype2-devel fontconfig-devel %{name} = %{version} 
xorg-x11-util-devel xorg-x11-libfontenc-devel xorg-x11-libXv-devel 
xorg-x11-libXprintUtil-devel xorg-x11-fonts-devel pkgconfig libXi6-devel
 Requires:   xorg-x11-libxcb-devel
 Requires:   libpciaccess0-devel libpixman-1-0-devel
 AutoReqProv:on
-# bug437293
-%ifarch ppc64
-Obsoletes:  xorg-x11-devel-64bit
+%else
+Requires:   freetype2-devel 
+Requires:   fontconfig-devel 
+Requires:   pkgconfig 
+Requires:   pkgconfig(applewmproto)
+Requires:   pkgconfig(bigreqsprot)
+Requires:   pkgconfig(bigreqsproto)
+Requires:   pkgconfig(compositeproto)
+Requires:   pkgconfig(damageproto)
+Requires:   pkgcon

commit xulrunner for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xulrunner for openSUSE:Factory 
checked in at 2012-02-17 12:11:21

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


Package is "xulrunner", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/xulrunner/xulrunner.changes  2012-02-14 
19:10:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.xulrunner.new/xulrunner.changes 2012-02-17 
12:11:28.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 08:51:42 UTC 2012 - w...@rosenauer.org
+
+- update to version 10.0.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

Old:

  l10n-10.0.1.tar.bz2
  xulrunner-10.0.1-source.tar.bz2

New:

  l10n-10.0.2.tar.bz2
  xulrunner-10.0.2-source.tar.bz2



Other differences:
--
++ xulrunner.spec ++
--- /var/tmp/diff_new_pack.PrBkq3/_old  2012-02-17 12:11:34.0 +0100
+++ /var/tmp/diff_new_pack.PrBkq3/_new  2012-02-17 12:11:34.0 +0100
@@ -43,12 +43,12 @@
 %endif
 BuildRequires:  mozilla-nspr-devel >= 4.8.9
 BuildRequires:  mozilla-nss-devel >= 3.13.1
-Version:10.0.1
+Version:10.0.2
 Release:0
-%define releasedate 2012020800
-%define version_internal 10.0.1
+%define releasedate 2012021500
+%define version_internal 10.0.2
 %define apiversion 10
-%define uaweight 101
+%define uaweight 102
 Summary:Mozilla Runtime Environment
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Other

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.PrBkq3/_old  2012-02-17 12:11:34.0 +0100
+++ /var/tmp/diff_new_pack.PrBkq3/_new  2012-02-17 12:11:34.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="FIREFOX_10_0_1_RELEASE"
-VERSION="10.0.1"
+RELEASE_TAG="FIREFOX_10_0_2_RELEASE"
+VERSION="10.0.2"
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla

++ l10n-10.0.1.tar.bz2 -> l10n-10.0.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/xulrunner/l10n-10.0.1.tar.bz2 
/work/SRC/openSUSE:Factory/.xulrunner.new/l10n-10.0.2.tar.bz2 differ: char 11, 
line 1

++ source-stamp.txt ++
--- /var/tmp/diff_new_pack.PrBkq3/_old  2012-02-17 12:11:35.0 +0100
+++ /var/tmp/diff_new_pack.PrBkq3/_new  2012-02-17 12:11:35.0 +0100
@@ -1,2 +1,2 @@
-REV=c581b36e7a12
+REV=72ad46d416ce
 REPO=http://hg.mozilla.org/releases/mozilla-release

++ xulrunner-10.0.1-source.tar.bz2 -> xulrunner-10.0.2-source.tar.bz2 ++
/work/SRC/openSUSE:Factory/xulrunner/xulrunner-10.0.1-source.tar.bz2 
/work/SRC/openSUSE:Factory/.xulrunner.new/xulrunner-10.0.2-source.tar.bz2 
differ: char 11, line 1

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



commit xorg-x11-server for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2012-02-17 12:11:17

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2012-01-19 10:35:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2012-02-17 12:11:19.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  9 20:27:04 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.uzjKEZ/_old  2012-02-17 12:11:22.0 +0100
+++ /var/tmp/diff_new_pack.uzjKEZ/_new  2012-02-17 12:11:22.0 +0100
@@ -21,7 +21,15 @@
 Name:   xorg-x11-server
 %define dirsuffix 1.10.4
 %define vnc 1
-BuildRequires:  Mesa-devel bison flex fontconfig-devel freetype2-devel 
ghostscript-library libdrm-devel libopenssl-devel libtool pkgconfig xorg-x11 
xorg-x11-devel xorg-x11-fonts-devel xorg-x11-libICE-devel xorg-x11-libSM-devel 
xorg-x11-libX11-devel xorg-x11-libXau-devel xorg-x11-libXdmcp-devel 
xorg-x11-libXext-devel xorg-x11-libXfixes-devel xorg-x11-libXmu-devel 
xorg-x11-libXp-devel xorg-x11-libXpm-devel xorg-x11-libXprintUtil-devel 
xorg-x11-libXrender-devel xorg-x11-libXt-devel xorg-x11-libXv-devel 
xorg-x11-libfontenc-devel xorg-x11-libxkbfile-devel xorg-x11-proto-devel 
xorg-x11-xtrans-devel
+BuildRequires:  Mesa-devel bison flex fontconfig-devel freetype2-devel 
ghostscript-library libdrm-devel libopenssl-devel libtool pkgconfig xorg-x11 
xorg-x11-fonts-devel xorg-x11-libICE-devel xorg-x11-libSM-devel 
xorg-x11-libX11-devel xorg-x11-libXau-devel xorg-x11-libXdmcp-devel 
xorg-x11-libXext-devel xorg-x11-libXfixes-devel xorg-x11-libXmu-devel 
xorg-x11-libXp-devel xorg-x11-libXpm-devel xorg-x11-libXprintUtil-devel 
xorg-x11-libXrender-devel xorg-x11-libXt-devel xorg-x11-libXv-devel 
xorg-x11-libfontenc-devel xorg-x11-libxkbfile-devel xorg-x11-proto-devel 
xorg-x11-xtrans-devel
+BuildRequires:  pkgconfig(xfont)
+BuildRequires:  pkgconfig(xaw7)
+BuildRequires:  pkgconfig(dmx) >= 1.0.99.1
+BuildRequires:  pkgconfig(xtst) >= 1.0.99.2
+BuildRequires:  pkgconfig(xres)
+BuildRequires:  pkgconfig(pixman-1) >= 0.15.20
+BuildRequires:  pkgconfig(pciaccess) >= 0.8.0
+BuildRequires:  pkgconfig(xi)
 ### udev support (broken on openSUSE 11.2, see also bnc #589997)
 %if %suse_version > 1120
 BuildRequires:  libudev-devel
@@ -124,7 +132,7 @@
 Group:  System/Libraries
 Provides:   xorg-x11-sdk
 Obsoletes:  xorg-x11-sdk
-Requires:   xorg-x11-proto-devel xorg-x11-xtrans-devel 
xorg-x11-libXau-devel xorg-x11-libXdmcp-devel xorg-x11-libX11-devel 
xorg-x11-libXext-devel xorg-x11-libXp-devel xorg-x11-libXpm-devel 
xorg-x11-libXrender-devel xorg-x11-libICE-devel xorg-x11-libSM-devel 
xorg-x11-libXt-devel xorg-x11-libXmu-devel xorg-x11-libXfixes-devel 
xorg-x11-libxkbfile-devel  xorg-x11-libfontenc-devel xorg-x11-libXv-devel 
xorg-x11-libXprintUtil-devel xorg-x11-devel freetype2-devel fontconfig-devel 
libdrm-devel xorg-x11-server
+Requires:   xorg-x11-proto-devel xorg-x11-xtrans-devel 
xorg-x11-libXau-devel xorg-x11-libXdmcp-devel xorg-x11-libX11-devel 
xorg-x11-libXext-devel xorg-x11-libXp-devel xorg-x11-libXpm-devel 
xorg-x11-libXrender-devel xorg-x11-libICE-devel xorg-x11-libSM-devel 
xorg-x11-libXt-devel xorg-x11-libXmu-devel xorg-x11-libXfixes-devel 
xorg-x11-libxkbfile-devel  xorg-x11-libfontenc-devel xorg-x11-libXv-devel 
xorg-x11-libXprintUtil-devel freetype2-devel fontconfig-devel libdrm-devel 
xorg-x11-server
 AutoReqProv:on
 
 %description sdk

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



commit xorg-x11-libX11-ccache for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-libX11-ccache for 
openSUSE:Factory checked in at 2012-02-17 12:11:13

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


Package is "xorg-x11-libX11-ccache", Maintainer is "sndir...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-libX11-ccache/xorg-x11-libX11-ccache.changes
2011-09-23 12:52:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-libX11-ccache.new/xorg-x11-libX11-ccache.changes
   2012-02-17 12:11:16.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 13:26:49 UTC 2012 - sndir...@suse.com
+
+- removed unnecessary xorg-x11-devel from BuildRequires 
+
+---



Other differences:
--
++ xorg-x11-libX11-ccache.spec ++
--- /var/tmp/diff_new_pack.lE7fhW/_old  2012-02-17 12:11:17.0 +0100
+++ /var/tmp/diff_new_pack.lE7fhW/_new  2012-02-17 12:11:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xorg-x11-libX11-ccache
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 
 Name:   xorg-x11-libX11-ccache
 BuildArch:  noarch
-BuildRequires:  xorg-x11 xorg-x11-Xvfb xorg-x11-devel xorg-x11-fonts
+BuildRequires:  xorg-x11 xorg-x11-Xvfb xorg-x11-fonts
 BuildRequires:  xkeyboard-config
 Url:http://xorg.freedesktop.org/
 Version:7.6

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



commit xorg-x11-driver-video-unichrome for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video-unichrome for 
openSUSE:Factory checked in at 2012-02-17 12:11:04

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


Package is "xorg-x11-driver-video-unichrome", Maintainer is "sndir...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video-unichrome/xorg-x11-driver-video-unichrome.changes
  2011-11-28 12:58:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video-unichrome.new/xorg-x11-driver-video-unichrome.changes
 2012-02-17 12:11:14.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 13:45:10 UTC 2012 - sndir...@suse.com
+
+- Update package BuildRequires to use pkgconfig symbols
+
+---
+Thu Feb  9 23:28:47 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ xorg-x11-driver-video-unichrome.spec ++
--- /var/tmp/diff_new_pack.fVRtH7/_old  2012-02-17 12:11:15.0 +0100
+++ /var/tmp/diff_new_pack.fVRtH7/_new  2012-02-17 12:11:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xorg-x11-driver-video-unichrome
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,7 +34,8 @@
 %endif
 %endif
 %if 0%{?suse_version}
-BuildRequires:  Mesa-devel libtool popt xorg-x11-sdk
+BuildRequires:  libtool pkgconfig(gl) popt xorg-x11-sdk
+BuildRequires:  pkgconfig(xvmc)
 %if 0%{?suse_version} < 1020
 BuildRequires:  Mesa-devel xorg-x11-devel
 %if 0%{?suse_version} > 1000

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



commit xorg-x11-driver-video-radeonhd for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video-radeonhd for 
openSUSE:Factory checked in at 2012-02-17 12:11:00

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


Package is "xorg-x11-driver-video-radeonhd", Maintainer is "e...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video-radeonhd/xorg-x11-driver-video-radeonhd.changes
2012-01-17 16:17:16.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video-radeonhd.new/xorg-x11-driver-video-radeonhd.changes
   2012-02-17 12:11:13.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 13:40:37 UTC 2012 - sndir...@suse.com
+
+- Update package BuildRequires to use pkgconfig symbols
+
+---



Other differences:
--
++ xorg-x11-driver-video-radeonhd.spec ++
--- /var/tmp/diff_new_pack.4WjiTF/_old  2012-02-17 12:11:14.0 +0100
+++ /var/tmp/diff_new_pack.4WjiTF/_new  2012-02-17 12:11:14.0 +0100
@@ -30,7 +30,7 @@
 BuildRequires:  libdrm-devel libmesagl1-devel libx11_6-devel x11-proto-devel 
x11-server-devel x11-util-macros
 %endif
 %if 0%{?suse_version}
-BuildRequires:  Mesa-devel libtool xorg-x11-sdk
+BuildRequires:  libtool pkgconfig(gl) xorg-x11-sdk
 %if 0%{?suse_version} < 1020
 BuildRequires:  Mesa-devel xorg-x11-devel
 %endif

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



commit xorg-x11-driver-video-nouveau for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video-nouveau for 
openSUSE:Factory checked in at 2012-02-17 12:10:55

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


Package is "xorg-x11-driver-video-nouveau", Maintainer is "mh...@novell.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video-nouveau/xorg-x11-driver-video-nouveau.changes
  2011-11-28 12:58:37.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video-nouveau.new/xorg-x11-driver-video-nouveau.changes
 2012-02-17 12:11:12.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 13:36:13 UTC 2012 - sndir...@suse.com
+
+- Update package BuildRequires to use pkgconfig symbols
+
+---



Other differences:
--
++ xorg-x11-driver-video-nouveau.spec ++
--- /var/tmp/diff_new_pack.fiTyMD/_old  2012-02-17 12:11:13.0 +0100
+++ /var/tmp/diff_new_pack.fiTyMD/_new  2012-02-17 12:11:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xorg-x11-driver-video-nouveau
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 
 
 Name:   xorg-x11-driver-video-nouveau
-BuildRequires:  Mesa-devel git-core libdrm-devel libtool pciutils-devel 
xorg-x11-devel xorg-x11-sdk
+BuildRequires:  git-core libtool pciutils-devel pkgconfig(gl) 
pkgconfig(libdrm) pkgconfig(libdrm_nouveau) xorg-x11-sdk
 Url:http://nouveau.freedesktop.org/wiki/
 License:MIT
 Group:  System/X11/Servers/XF86_4

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



commit xorg-x11-driver-video-intel-legacy for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video-intel-legacy 
for openSUSE:Factory checked in at 2012-02-17 12:10:51

Comparing /work/SRC/openSUSE:Factory/xorg-x11-driver-video-intel-legacy (Old)
 and  /work/SRC/openSUSE:Factory/.xorg-x11-driver-video-intel-legacy.new 
(New)


Package is "xorg-x11-driver-video-intel-legacy", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video-intel-legacy/xorg-x11-driver-video-intel-legacy.changes
2011-11-28 12:58:36.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video-intel-legacy.new/xorg-x11-driver-video-intel-legacy.changes
   2012-02-17 12:11:11.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 13:31:24 UTC 2012 - sndir...@suse.com
+
+- removed unnecessary xorg-x11-devel from BuildRequires 
+
+---
+Thu Feb  9 21:40:55 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ xorg-x11-driver-video-intel-legacy.spec ++
--- /var/tmp/diff_new_pack.78r2hj/_old  2012-02-17 12:11:12.0 +0100
+++ /var/tmp/diff_new_pack.78r2hj/_new  2012-02-17 12:11:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xorg-x11-driver-video-intel-legacy
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Guido Berhoerster.
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,8 @@
 
 
 Name:   xorg-x11-driver-video-intel-legacy
-BuildRequires:  Mesa-devel libtool xorg-x11-devel xorg-x11-sdk
+BuildRequires:  libtool pkgconfig(gl) xorg-x11-sdk
+BuildRequires:  pkgconfig(xvmc)
 Url:http://intellinuxgraphics.org/
 License:MIT
 Group:  System/X11/Servers/XF86_4

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



commit xorg-x11-driver-video for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video for 
openSUSE:Factory checked in at 2012-02-17 12:10:47

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


Package is "xorg-x11-driver-video", Maintainer is "sndir...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video/xorg-x11-driver-video.changes  
2012-01-11 15:39:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video.new/xorg-x11-driver-video.changes
 2012-02-17 12:11:09.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  9 21:44:32 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ xorg-x11-driver-video.spec ++
--- /var/tmp/diff_new_pack.R8QYw2/_old  2012-02-17 12:11:11.0 +0100
+++ /var/tmp/diff_new_pack.R8QYw2/_new  2012-02-17 12:11:11.0 +0100
@@ -21,6 +21,12 @@
 
 Name:   xorg-x11-driver-video
 BuildRequires:  Mesa-devel libdrm-devel libtool pkgconfig xorg-x11-proto-devel 
xorg-x11-server-sdk
+BuildRequires:  pkgconfig(xvmc)
+%if %suse_version > 1210
+BuildRequires:  xcb-util-devel
+%else
+BuildRequires:  xcb-util-0_3_6-devel
+%endif
 Url:http://xorg.freedesktop.org/
 Version:7.6
 Release:77

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



commit xorg-x11-driver-input for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-input for 
openSUSE:Factory checked in at 2012-02-17 12:10:43

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


Package is "xorg-x11-driver-input", Maintainer is "sndir...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-input/xorg-x11-driver-input.changes  
2012-01-04 07:32:56.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-input.new/xorg-x11-driver-input.changes
 2012-02-17 12:11:07.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  9 20:50:15 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs
+
+---



Other differences:
--
++ xorg-x11-driver-input.spec ++
--- /var/tmp/diff_new_pack.WxPvOB/_old  2012-02-17 12:11:09.0 +0100
+++ /var/tmp/diff_new_pack.WxPvOB/_new  2012-02-17 12:11:09.0 +0100
@@ -21,6 +21,9 @@
 Name:   xorg-x11-driver-input
 #!BuildIgnore:  xorg-x11-Mesa xorg-x11-Mesa-devel
 BuildRequires:  Mesa-devel libudev-devel pkgconfig udev xorg-x11-proto-devel 
xorg-x11-server-sdk
+BuildRequires:  pkgconfig(xrandr)
+BuildRequires:  pkgconfig(xinerama)
+BuildRequires:  pkgconfig(xi) >= 1.2
 Url:http://xorg.freedesktop.org/
 Version:7.6
 Release:38

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



commit seamonkey for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package seamonkey for openSUSE:Factory 
checked in at 2012-02-17 12:10:19

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


Package is "seamonkey", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/seamonkey/seamonkey.changes  2012-02-14 
19:08:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.seamonkey.new/seamonkey.changes 2012-02-17 
12:10:54.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 15:55:03 UTC 2012 - w...@rosenauer.org
+
+- update to Seamonkey 2.7.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

Old:

  l10n-2.7.1.tar.bz2
  seamonkey-2.7.1-source.tar.bz2

New:

  l10n-2.7.2.tar.bz2
  seamonkey-2.7.2-source.tar.bz2



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.usIEkr/_old  2012-02-17 12:11:00.0 +0100
+++ /var/tmp/diff_new_pack.usIEkr/_new  2012-02-17 12:11:00.0 +0100
@@ -37,9 +37,9 @@
 BuildRequires:  yasm
 BuildRequires:  zip
 Provides:   web_browser
-Version:2.7.1
+Version:2.7.2
 Release:0
-%define releasedate 2012020800
+%define releasedate 2012021500
 Summary:The successor of the Mozilla Application Suite
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Networking/Web/Browsers

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.usIEkr/_old  2012-02-17 12:11:01.0 +0100
+++ /var/tmp/diff_new_pack.usIEkr/_new  2012-02-17 12:11:01.0 +0100
@@ -1,8 +1,8 @@
 #!/bin/bash
 
 BRANCH="releases/comm-release"
-RELEASE_TAG="SEAMONKEY_2_7_1_RELEASE"
-VERSION="2.7.1"
+RELEASE_TAG="SEAMONKEY_2_7_2_RELEASE"
+VERSION="2.7.2"
 
 echo "cloning $BRANCH..."
 hg clone http://hg.mozilla.org/$BRANCH seamonkey

++ l10n-2.7.1.tar.bz2 -> l10n-2.7.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/seamonkey/l10n-2.7.1.tar.bz2 
/work/SRC/openSUSE:Factory/.seamonkey.new/l10n-2.7.2.tar.bz2 differ: char 11, 
line 1

++ seamonkey-2.7.1-source.tar.bz2 -> seamonkey-2.7.2-source.tar.bz2 ++
/work/SRC/openSUSE:Factory/seamonkey/seamonkey-2.7.1-source.tar.bz2 
/work/SRC/openSUSE:Factory/.seamonkey.new/seamonkey-2.7.2-source.tar.bz2 
differ: char 11, line 1

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



commit xorg-x11 for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11 for openSUSE:Factory 
checked in at 2012-02-17 12:10:37

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11/xorg-x11.changes2012-02-10 
17:21:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11.new/xorg-x11.changes   2012-02-17 
12:11:04.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  9 16:12:33 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ xorg-x11.spec ++
--- /var/tmp/diff_new_pack.pUZf30/_old  2012-02-17 12:11:07.0 +0100
+++ /var/tmp/diff_new_pack.pUZf30/_new  2012-02-17 12:11:07.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define _dminitdir %{_prefix}/lib/X11/displaymanagers
 
 Name:   xorg-x11
@@ -29,9 +30,24 @@
 %endif
 BuildRequires:  pam-devel
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(xcursor)
+BuildRequires:  pkgconfig(xfont)
+BuildRequires:  pkgconfig(xscrnsaver)
+BuildRequires:  pkgconfig(xaw7)
+BuildRequires:  pkgconfig(xbitmaps)
+BuildRequires:  pkgconfig(libfs)
+BuildRequires:  pkgconfig(lbxutil)
+BuildRequires:  pkgconfig(xft)
+BuildRequires:  pkgconfig(xrandr)
+BuildRequires:  pkgconfig(xcomposite)
+BuildRequires:  pkgconfig(xdamage)
+BuildRequires:  pkgconfig(xtst)
+BuildRequires:  pkgconfig(xxf86dga)
+BuildRequires:  pkgconfig(xxf86vm)
+BuildRequires:  pkgconfig(xres)
+BuildRequires:  pkgconfig(xtrap)
 BuildRequires:  rsh
 BuildRequires:  update-desktop-files
-BuildRequires:  xorg-x11-devel
 BuildRequires:  xorg-x11-libICE-devel
 BuildRequires:  xorg-x11-libSM-devel
 BuildRequires:  xorg-x11-libX11-devel

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



commit shared-desktop-ontologies for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package shared-desktop-ontologies for 
openSUSE:Factory checked in at 2012-02-17 12:10:27

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


Package is "shared-desktop-ontologies", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/shared-desktop-ontologies/shared-desktop-ontologies.changes
  2012-01-25 10:41:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.shared-desktop-ontologies.new/shared-desktop-ontologies.changes
 2012-02-17 12:11:01.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb 11 18:41:08 UTC 2012 - hrvoje.sen...@gmail.com
+
+- Update to 0.9.0
+ * Added properties nfo:depicts and nfo:depiction 
+ * Made nmm:artwork a subproperty of nfo:depiction 
+ * Added nrl:DefiningProperty and nrl:NonDefiningProperty 
+ * Set nao:userVisible on the following classes and properties: nao:score 
nao:hasSubResource nao:hasSuperResource nrl:Graph rdf:Property rdfs:Class 
rdfs:Resource nie:hasPart nie:isPartOf nfo:hasHash nuao:Event 
+ * Added class nfo:LocalFileDataObject
+
+---

Old:

  shared-desktop-ontologies-0.8.1.tar.bz2

New:

  shared-desktop-ontologies-0.9.0.tar.bz2



Other differences:
--
++ shared-desktop-ontologies.spec ++
--- /var/tmp/diff_new_pack.9vskMq/_old  2012-02-17 12:11:02.0 +0100
+++ /var/tmp/diff_new_pack.9vskMq/_new  2012-02-17 12:11:02.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   shared-desktop-ontologies
-Version:0.8.1
+Version:0.9.0
 Release:0
 Summary:Shared Desktop Ontologies
 License:(CC-BY-SA-3.0 or BSD-3-Clause) and CC-BY-3.0 and W3C

++ shared-desktop-ontologies-0.8.1.tar.bz2 -> 
shared-desktop-ontologies-0.9.0.tar.bz2 ++
 4753 lines of diff (skipped)

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



commit qwebyast for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package qwebyast for openSUSE:Factory 
checked in at 2012-02-17 12:10:16

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


Package is "qwebyast", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/qwebyast/qwebyast.changes2011-11-28 
18:27:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.qwebyast.new/qwebyast.changes   2012-02-17 
12:10:17.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec  8 11:22:58 UTC 2011 - co...@suse.com
+
+- the license of the files seem to be "version 2 or version 3", not
+  a general GPL
+
+---



Other differences:
--
++ qwebyast.spec ++
--- /var/tmp/diff_new_pack.XDHgV8/_old  2012-02-17 12:10:18.0 +0100
+++ /var/tmp/diff_new_pack.XDHgV8/_new  2012-02-17 12:10:18.0 +0100
@@ -15,17 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   qwebyast
 BuildRequires:  libqt4-devel
 #BuildRequires:  libQtWebKit-devel
 BuildRequires:  cmake >= 2.4.6
-License:GPL
-Group:  System/Management
 Summary:WebYaST Desktop Applet
+License:GPL-3.0 or GPL-2.0
+Group:  System/Management
 Version:0.0.13
-Release:1
+Release:0
 Url:http://en.opensuse.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:%{name}-%{version}.tar.bz2

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



commit python-versiontools for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-versiontools for 
openSUSE:Factory checked in at 2012-02-17 12:10:11

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


Package is "python-versiontools", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-versiontools/python-versiontools.changes  
2011-09-26 10:18:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-versiontools.new/python-versiontools.changes 
2012-02-17 12:10:13.0 +0100
@@ -1,0 +2,27 @@
+Wed Feb  1 13:24:11 UTC 2012 - sasc...@suse.de
+
+- Simplified macro usage
+
+---
+Tue Jan 24 21:37:26 UTC 2012 - jf...@funktronics.ca
+
+- Update to 1.8.3:
+  * Fix incorrectly specified line in git support. Previosuly a KeyError
+may bleed to the outside calling code, depending on python version. 
+  * Fix incorrectly specified line in bzr support. Previously a non-bzr
+directory could be associated as a malformed bzr branch.
+
+---
+Thu Jan 12 01:53:00 UTC 2012 - jf...@funktronics.ca
+
+- Update to 1.8.2:
+ * Improve git support by adding code paths compatible with python-git 0.1.6
+   (which is easier to get on Debian)
+ * Change git support to default to short commit id. If you want to access the
+   long commit id you need to access it directly as GitIntegration.commit_id
+- Version 1.8.1
+ * Improve performance when working with checkouts. The use of branch.nick has
+   been replaced with branch._get_nick(local=True). This avoids network
+   operations and is much more responsive.
+
+---

Old:

  versiontools-1.8.tar.gz

New:

  versiontools-1.8.3.tar.gz



Other differences:
--
++ python-versiontools.spec ++
--- /var/tmp/diff_new_pack.1tPSdx/_old  2012-02-17 12:10:14.0 +0100
+++ /var/tmp/diff_new_pack.1tPSdx/_new  2012-02-17 12:10:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-versiontools
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,12 +11,12 @@
 # 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:   python-versiontools
-Version:1.8
+Version:1.8.3
 Release:0
 Url:https://launchpad.net/versiontools
 Summary:Smart replacement for plain tuple used in __version__
@@ -27,13 +27,11 @@
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 Requires:   python-distribute
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1110
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
 BuildArch:  noarch
 %endif
-%endif
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
 %description
 Smart replacement for plain tuple used in __version__.

++ versiontools-1.8.tar.gz -> versiontools-1.8.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/versiontools-1.8/PKG-INFO 
new/versiontools-1.8.3/PKG-INFO
--- old/versiontools-1.8/PKG-INFO   2011-09-14 18:15:02.0 +0200
+++ new/versiontools-1.8.3/PKG-INFO 2012-01-24 14:32:21.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: versiontools
-Version: 1.8
+Version: 1.8.3
 Summary: Smart replacement for plain tuple used in __version__
 Home-page: https://launchpad.net/versiontools
 Author: Zygmunt Krynicki
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/versiontools-1.8/doc/changes.rst 
new/versiontools-1.8.3/doc/changes.rst
--- old/versiontools-1.8/doc/changes.rst2011-09-14 18:11:42.0 
+0200
+++ new/versiontools-1.8.3/doc/changes.rst  2012-01-24 14:30:24.0 
+0100
@@ -1,6 +1,36 @@
 Version History
 ***
 
+.. _version_1_8_3:
+
+Version 1.8.3
+=
+
+* Fix incorrectly specified line in git support. Previosuly a KeyError
+  may bleed to the outside calling code, depending on pytho

commit python-pyzmq for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-pyzmq for openSUSE:Factory 
checked in at 2012-02-17 12:09:06

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


Package is "python-pyzmq", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-pyzmq/python-pyzmq.changes
2011-10-02 11:13:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyzmq.new/python-pyzmq.changes   
2012-02-17 12:09:09.0 +0100
@@ -1,0 +2,15 @@
+Tue Jan 31 16:20:35 UTC 2012 - sasc...@suse.de
+
+- Update to version 2.1.11:
+  * remove support for LABEL prefixes.
+  * add :meth:`.Socket.poll` method, for simple polling of events on a single 
socket.
+  * no longer require monkeypatching tornado IOLoop.
+- Moved Python-3 package into seperate spec file
+
+---
+Mon Dec  5 13:14:57 UTC 2011 - toddrme2...@gmail.com
+
+- Cleaned up spec file formatting
+- Added python3 subpackage
+
+---
New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyzmq.new/python3-pyzmq.changes  
2012-02-17 12:09:09.0 +0100
@@ -0,0 +1,46 @@
+---
+Tue Jan 31 16:20:35 UTC 2012 - sasc...@suse.de
+
+- Update to version 2.1.11:
+  * remove support for LABEL prefixes.
+  * add :meth:`.Socket.poll` method, for simple polling of events on a single 
socket.
+  * no longer require monkeypatching tornado IOLoop.
+- Moved Python-3 package into seperate spec file
+
+---
+Mon Dec  5 13:14:57 UTC 2011 - toddrme2...@gmail.com
+
+- Cleaned up spec file formatting
+- Added python3 subpackage
+
+---
+Mon Sep 26 12:38:30 UTC 2011 - cfarr...@suse.com
+
+- license update: LGPL-3.0+
+  LGPL is not a recognized license
+
+---
+Fri Aug 19 12:15:10 UTC 2011 - sasc...@suse.de
+
+- Update to version 2.1.7:
+  * Added proper GIL management for non-copying send
+  * Implemented support for zmq_errno().
+  * Added Socket.create_socket()
+  * Fixed setup.py to work with libzmq.dll on Window
+  * The flags argument to Socket.send/Socket.recv must be a C int
+to prevent Python-C API calls in the nogil section.
+  * Added a protocol argument to pyobj_send that defaults to -1 (the
+highest pickle protocol).
+  * Added a try/finally in Socket.recv.
+
+---
+Sun Dec 12 15:40:57 UTC 2010 - sasc...@gmx.de
+
+- Re-generated with py2pack
+  * now builds for all RPM-based distros
+
+---
+Wed Dec  1 15:32:35 UTC 2010 - sasc...@suse.de
+
+- Initial version (2.0.10).
+

Old:

  pyzmq-2.1.7.tar.gz

New:

  python3-pyzmq.changes
  python3-pyzmq.spec
  pyzmq-2.1.11.tar.gz



Other differences:
--
++ python-pyzmq.spec ++
--- /var/tmp/diff_new_pack.crRu6y/_old  2012-02-17 12:09:10.0 +0100
+++ /var/tmp/diff_new_pack.crRu6y/_new  2012-02-17 12:09:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyzmq
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,28 +11,24 @@
 # 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:   python-pyzmq
-Version:2.1.7
+Version:2.1.11
 Release:0
-Url:http://github.com/zeromq/pyzmq
 Summary:Python bindings for 0MQ
 License:LGPL-3.0+
 Group:  Development/Languages/Python
+Url:http://github.com/zeromq/pyzmq
 Source: 
http://pypi.python.org/packages/source/p/pyzmq/pyzmq-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
-#BuildRequires:  python-matplotlib
-#BuildRequires:  python-Sphinx
-#BuildRequires:  python-xml
 BuildRequires:  zeromq-devel
-%if 0%{?suse_version}
-%py_requires
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitearch: %global python_sitearch %(pyt

commit python-polib for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-polib for openSUSE:Factory 
checked in at 2012-02-17 12:08:56

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


Package is "python-polib", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-polib/python-polib.changes
2011-09-23 12:43:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-polib.new/python-polib.changes   
2012-02-17 12:08:58.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 31 10:59:13 UTC 2012 - sasc...@suse.de
+
+- Resolved spec file conflict
+- Remove obsolete SUSE version check (for 10.1)
+
+---
@@ -30,9 +35,0 @@
-
-* Mon Feb 04 2008 - nagap...@gmail.com
-- polib 0.3.1
-* Thu Nov 08 2007 - nagap...@gmail.com
-- Updated URL
-* Wed Nov 07 2007 - nagap...@gmail.com
-- polib 0.3.0
-* Mon Jul 02 2007 - anagap...@novell.com
-- polib 0.1.0



Other differences:
--
++ python-polib.spec ++
--- /var/tmp/diff_new_pack.hj1HPc/_old  2012-02-17 12:08:59.0 +0100
+++ /var/tmp/diff_new_pack.hj1HPc/_new  2012-02-17 12:08:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-polib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -16,29 +16,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   python-polib
 Version:0.7.0
-Release:3
+Release:0
 Url:http://bitbucket.org/izi/polib/
 Summary:A library to manipulate gettext files
 License:MIT
 Group:  Productivity/Other
 Source: polib-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
-BuildRequires:  python-Sphinx
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1010
 BuildRequires:  fdupes
-%endif
-%if 0%{?suse_version} > 1110
+BuildRequires:  python-Sphinx
+BuildRequires:  python-devel
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
 BuildArch:  noarch
 %endif
-%endif
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
 %description
 polib allows you to manipulate, create, modify gettext catalogs (.pot, .po and
@@ -51,8 +45,6 @@
 POEntry and MOEntry for creating new files/entries.
 
 %package doc
-
-
 Summary:A library to manipulate gettext files
 Group:  Productivity/Other
 Requires:   %{name} = %{version}
@@ -79,9 +71,7 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-%if 0%{?suse_version} > 1010
 %fdupes -s %{buildroot}/%{_prefix}
-%endif
 
 %files
 %defattr(-,root,root)

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



commit python-passlib for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-passlib for openSUSE:Factory 
checked in at 2012-02-17 12:08:52

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


Package is "python-passlib", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-passlib/python-passlib.changes
2011-12-07 14:39:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-passlib.new/python-passlib.changes   
2012-02-17 12:08:55.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 10:38:52 UTC 2012 - sasc...@suse.de
+
+- Fix macro usage and remove reST from description
+
+---



Other differences:
--
++ python-passlib.spec ++
--- /var/tmp/diff_new_pack.GkyNkJ/_old  2012-02-17 12:08:56.0 +0100
+++ /var/tmp/diff_new_pack.GkyNkJ/_new  2012-02-17 12:08:56.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-passlib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,7 +11,7 @@
 # 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/
 #
 
@@ -27,13 +27,11 @@
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRequires:  python-nose
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1110
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
 BuildArch:  noarch
 %endif
-%endif
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
 %description
 Passlib is a password hashing library for Python 2 & 3,
@@ -43,18 +41,6 @@
 for a wide range of tasks; from verifying a hash found in /etc/shadow,
 to providing full-strength password hashing for multi-user applications.
 
-* See the `online documentation `_
-  for details, installation instructions, and examples.
-
-* See the `passlib homepage `_
-  for the latest news, more information, and additional downloads.
-
-* See the `changelog `_
-  for a description of what's new in Passlib.
-
-All releases are signed with the gpg key
-`4CE1ED31 
`_.
-
 %prep
 %setup -q -n passlib-%{version}
 

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



commit python-kombu for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-kombu for openSUSE:Factory 
checked in at 2012-02-17 12:08:48

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


Package is "python-kombu", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-kombu/python-kombu.changes
2011-11-25 10:13:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-kombu.new/python-kombu.changes   
2012-02-17 12:08:52.0 +0100
@@ -2 +2 @@
-Thu Nov 24 10:39:23 UTC 2011 - sasc...@suse.de
+Sat Feb  4 18:00:49 UTC 2012 - alexan...@exatati.com.br
@@ -4,2 +4,73 @@
-- Set license to SPDX style (BSD-2-Clause)
-- Removed outdated %clean section
+- Update to 2.1.0:
+  * MongoDB: Now supports fanout (broadcast) (Issue #98).
+Contributed by Scott Lyons.
+  * pika transport: Now works with pika 0.9.5 and 0.9.6dev.
+The old pika transport (supporting 0.5.x) is now available
+as alias oldpika.
+(Note terribly latency has been experienced with the new pika
+versions, so this is still an experimental transport).
+
+
+---
+Tue Jan 17 01:15:23 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 2.0.0:
+  Important Notes
+  - No longer supports Python 2.4.
+  New Transports
+  - django-kombu is now part of Kombu core.
+  - kombu-sqlalchemy is now part of Kombu core.
+  News
+  - kombu.mixins.ConsumerMixin is a mixin class that lets you
+easily write consumer programs and threads.
+  - SQS Transport: Added support for SQS queue prefixes (Issue #84).
+  - Producer.publish now supports automatic retry.
+  - Producer.publish now supports a declare keyword argument.
+  Fixes
+  - Redis transport: Timeout was multiplied by 1000 seconds when 
+using select for event I/O (Issue #86).
+
+---
+Wed Nov 30 14:55:08 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.5.1:
+  * Fixes issue with kombu.compat introduced in 1.5.0 (Issue #83).
+  * Adds the ability to disable content_types in the serializer registry.
+
+---
+Mon Nov 28 02:19:24 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.5.0:
+  * kombu.pools: Fixed a bug resulting in resources not being properly 
released.
+This was caused by the use of __hash__ to distinguish them.
+  * Virtual transports: Dead-letter queue is now disabled by default.
+The dead-letter queue was enabled by default to help application
+authors, but now that Kombu is stable it should be removed.
+There are after all many cases where messages should just be dropped
+when there are no queues to buffer them, and keeping them without
+supporting automatic cleanup is rather considered a resource leak
+than a feature.
+
+If wanted the dead-letter queue can still be enabled, by using
+the deadletter_queue transport option:
+
+>>> x = BrokerConnection("redis://",
+...   transport_options={"deadletter_queue": "ae.undeliver"})
+
+In addition, an UndeliverableWarning is now emitted when
+the dead-letter queue is enabled and a message ends up there.
+  * MongoDB transport now supports Replicasets (Issue #81).
+  * The Connection.ensure`` methods now accepts a max_retries value
+of 0.
+A value of 0 now means *do not retry*, which is distinct from :const:`None`
+which means *retry indefinitely*.
+  * SQS Transport: Now has a lowercase `sqs alias, so that it can be
+used with broker URLs (Issue #82).
+  * SQS Transport: Fixes KeyError on message acknowledgements (Issue #73).
+The SQS transport now uses UUID's for delivery tags, rather than
+a counter.
+  * SQS Transport: Unicode related fixes (Issue #82).
+  * Redis version check could crash because of improper handling of types
+(Issue #63).
+  * Fixed error with Resource.force_close_all, when resources
+not yet properly initialized.  (Issue #78).

Old:

  kombu-1.4.3.tar.bz2

New:

  kombu-2.1.0.tar.bz2



Other differences:
--
++ python-kombu.spec ++
--- /var/tmp/diff_new_pack.xNcLxa/_old  2012-02-17 12:08:54.0 +0100
+++ /var/tmp/diff_new_pack.xNcLxa/_new  2012-02-17 12:08:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-kombu
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,9 +15,11 @@
 # Please submit bugfixes or comments via http://bugs

commit python-etude for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-etude for openSUSE:Factory 
checked in at 2012-02-17 12:08:44

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


Package is "python-etude", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-etude/python-etude.changes
2011-11-28 14:49:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-etude.new/python-etude.changes   
2012-02-17 12:08:51.0 +0100
@@ -1,0 +2,10 @@
+Wed Dec  7 14:24:33 UTC 2011 - sasc...@suse.de
+
+- Spec file cleanup:
+  * Don't depend on Python-2.7 (allow building on openSUSE-11.3)
+  * Buildrequire python-distribute instead of python-setuptools
+  * Don't package PKG-INFO (it's just meta data)
+  * Removed outdated clean section
+  * Package is noarch (except on SLE-11)
+
+---



Other differences:
--
++ python-etude.spec ++
--- /var/tmp/diff_new_pack.7grnQL/_old  2012-02-17 12:08:51.0 +0100
+++ /var/tmp/diff_new_pack.7grnQL/_new  2012-02-17 12:08:51.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package etude (Version 0.1)
+# spec file for package python-etude
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -15,31 +15,37 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   python-etude
 Version:0.1
-Release:1
-License:LGPL-3.0+ and GPL-3.0+
+Release:0
 Summary:An xmms2 client written in pygtk
-Url:http://code.google.com/p/etude-music-player/
+License:GPL-3.0+ and LGPL-3.0+
 Group:  Productivity/Multimedia/Sound/Players
+Url:http://code.google.com/p/etude-music-player/
 Source: etude-music-player-0.1.tar.gz
-
-BuildRequires:  python-base == 2.7
-BuildRequires:  python-gtk-devel
-BuildRequires:  pyrex
-BuildRequires:  xmms2-devel
+BuildRequires:  fdupes
 BuildRequires:  libvisual-devel
-BuildRequires:  python-xdg
+BuildRequires:  pyrex
+BuildRequires:  python-devel
+BuildRequires:  python-distribute
 BuildRequires:  python-goocanvas
+BuildRequires:  python-gtk-devel
 BuildRequires:  python-notify
-BuildRequires:  python-setuptools
-BuildRequires:  update-desktop-files
-BuildRequires:  python-xmms2
 BuildRequires:  python-opengl
-BuildRequires:  fdupes
-Requires:   python-base == 2.7
+BuildRequires:  python-xdg
+BuildRequires:  python-xmms2
+BuildRequires:  update-desktop-files
+BuildRequires:  xmms2-devel
+Requires:   python-base
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
+BuildArch:  noarch
+%endif
 
 %description
 Etude Music Player is an xmms2 client written in pygtk.
@@ -48,23 +54,19 @@
 %setup -qn etude-music-player-%{version}
 
 %build
-CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
+python setup.py build
 
 %install
-%{__python} setup.py install --enable-visual --root $RPM_BUILD_ROOT --prefix 
%{_prefix}
+python setup.py install --enable-visual --root %{buildroot} --prefix %{_prefix}
 %find_lang etude
-%suse_update_desktop_file -i 
$RPM_BUILD_ROOT/%{_datadir}/applications/etude.desktop
+%suse_update_desktop_file -i %{buildroot}%{_datadir}/applications/etude.desktop
 %fdupes -s %{buildroot}
 
-%clean
-rm -rf %{buildroot}
-
 %files -f etude.lang
 %defattr(-,root,root)
-%doc COPYING COPYING.LESSER PKG-INFO
+%doc COPYING COPYING.LESSER
 %{_bindir}/etude
-%{_prefix}/lib/python2.7/site-packages/etude_music_player-0.1-py2.7.egg-info/
-%{_prefix}/lib/python2.7/site-packages/etude
+%{python_sitelib}/*
 %{_datadir}/icons/hicolor/scalable/apps/
 %{_datadir}/icons/hicolor/32x32/apps/etude.png
 %{_datadir}/pixmaps/etude.svg

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



commit python-distutils-extra for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-distutils-extra for 
openSUSE:Factory checked in at 2012-02-17 12:08:40

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


Package is "python-distutils-extra", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes
2011-09-23 12:42:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes
   2012-02-17 12:08:48.0 +0100
@@ -1,0 +2,9 @@
+Thu Jan 12 11:31:12 UTC 2012 - sasc...@suse.de
+
+- Specfile cleanup:
+  * SPDX-style license (GPL-2.0)
+  * Remove %clean section (sane default)
+  * Simpler macro usage
+  * No authors in description
+
+---



Other differences:
--
++ python-distutils-extra.spec ++
--- /var/tmp/diff_new_pack.yB0nsw/_old  2012-02-17 12:08:49.0 +0100
+++ /var/tmp/diff_new_pack.yB0nsw/_new  2012-02-17 12:08:49.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-distutils-extra (Version 2.23)
+# spec file for package python-distutils-extra
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,21 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   python-distutils-extra
 Version:2.23
-Release:1
+Release:0
 Summary:Distutils/Setuptools Adapter
-Source: 
http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz
-Url:https://launchpad.net/python-distutils-extra
-Group:  Development/Libraries/Python
 License:GPL-2.0
+Group:  Development/Libraries/Python
+Url:https://launchpad.net/python-distutils-extra
+Source: 
http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz
+BuildRequires:  python-devel
+BuildRequires:  python-distribute
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel python-setuptools
-%py_requires
-%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
 BuildArch:  noarch
 %endif
 
@@ -41,32 +41,18 @@
   * documentation
   * program icons
 
-Authors:
-
-   Sebastian Heinlein 
-
 %prep
 %setup -q -n "%{name}-%{version}"
-#%__rm -rf debian/debian
-#%__mv debian/* .
 
 %build
-%__python ./setup.py build
+python setup.py build
 
 %install
-%__python ./setup.py install --prefix="%{_prefix}" --root="%{buildroot}" \
---record-rpm=files.lst
+python setup.py install --prefix="%{_prefix}" --root=%{buildroot}
 
-%clean
-%__rm -rf "%{buildroot}"
-
-%files -f files.lst
+%files
 %defattr(-,root,root)
 %doc LICENSE doc/*
-
-# Local Variables:
-# mode: rpm-spec
-# tab-width: 3
-# End:
+%{python_sitelib}/*
 
 %changelog

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



commit python-Cheetah for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-Cheetah for openSUSE:Factory 
checked in at 2012-02-17 12:08:36

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


Package is "python-Cheetah", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-Cheetah/python-Cheetah.changes
2011-12-09 09:32:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Cheetah.new/python-Cheetah.changes   
2012-02-17 12:08:37.0 +0100
@@ -1,0 +2,15 @@
+Fri Jan 20 14:27:16 UTC 2012 - bwiedem...@suse.com
+
+- Fix obsoletes
+
+---
+Thu Jan 12 11:28:42 UTC 2012 - sasc...@suse.de
+
+- Fix macro usage
+
+---
+Tue Dec 20 13:42:34 UTC 2011 - idon...@suse.com
+
+- Regenerate with py2pack 
+
+---



Other differences:
--
++ python-Cheetah.spec ++
--- /var/tmp/diff_new_pack.0T8pNm/_old  2012-02-17 12:08:37.0 +0100
+++ /var/tmp/diff_new_pack.0T8pNm/_new  2012-02-17 12:08:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Cheetah
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,13 +25,12 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/C/Cheetah/Cheetah-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
 BuildRequires:  fdupes
+BuildRequires:  python-devel
 Provides:   python-cheetah = %{version}
-#TODO: Change back to '<' after next version update:
-Obsoletes:  python-cheetah <= %{version}
+Obsoletes:  python-cheetah < %{version}
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 %endif
 
 %description

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



commit python-cairo for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package python-cairo for openSUSE:Factory 
checked in at 2012-02-17 12:08:31

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


Package is "python-cairo", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/python-cairo/python-cairo.changes
2011-09-23 12:42:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-cairo.new/python-cairo.changes   
2012-02-17 12:08:33.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  1 11:17:32 UTC 2012 - sasc...@suse.de
+
+- Add group to devel package
+
+---
+Tue Jan 10 07:51:57 UTC 2012 - co...@suse.com
+
+- trying to get the license right for spdx
+
+---



Other differences:
--
++ python-cairo.spec ++
--- /var/tmp/diff_new_pack.stbSBy/_old  2012-02-17 12:08:34.0 +0100
+++ /var/tmp/diff_new_pack.stbSBy/_new  2012-02-17 12:08:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cairo
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,57 +16,54 @@
 #
 
 
-
 Name:   python-cairo
-%define _name   py2cairo
 Version:1.10.0
-Release:1
+Release:0
 Summary:Python Bindings for Cairo
-License:LGPLv2.1+ ; MPL ..
+License:LGPL-2.1+ or MPL-1.1
 Group:  Development/Libraries/Python
 # FIXME: on update, check if we still need to manually compile the byte-code 
in %%install
 Url:http://www.cairographics.org/
-Source: %{_name}-%{version}.tar.bz2
+Source: py2cairo-%{version}.tar.bz2
 BuildRequires:  cairo-devel
 BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%py_requires
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
+%endif
 
 %description
 Python bindings for cairo.
 
 %package devel
-License:LGPLv2.1+ ; MPL ..
 Summary:Headers for python-cairo
-Group:  Development/Libraries/Python
+Group:  Development/Libraries/C and C++
 Requires:   %name = %{version}
-Requires:   cairo-devel python-devel
+Requires:   cairo-devel
+Requires:   python-devel
 
 %description devel
 Headers for python-cairo
 
 %prep
-%setup -n %{_name}-%{version}
+%setup -n py2cairo-%{version}
 
 %build
-./waf configure --prefix=%{_prefix} --libdir=%{_libdir}
-./waf build
+waf configure --prefix=%{_prefix} --libdir=%{_libdir}
+waf build
 
 %install
-./waf install --destdir=%{buildroot}
+waf install --destdir=%{buildroot}
 # waf is broken and generated byte-code that references the build root, see 
http://code.google.com/p/waf/issues/detail?id=986
-%py_compile $RPM_BUILD_ROOT/%{py_sitedir}
-%py_compile -O $RPM_BUILD_ROOT/%{py_sitedir}
-%fdupes $RPM_BUILD_ROOT/%{py_sitedir}
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+%py_compile %{buildroot}/%{py_sitedir}
+%py_compile -O %{buildroot}/%{py_sitedir}
+%fdupes %{buildroot}/%{py_sitedir}
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING-* INSTALL NEWS README
-%{py_sitedir}/cairo/
+%{python_sitearch}/cairo/
 
 %files devel
 %defattr(-,root,root)

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



commit poppler for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package poppler for openSUSE:Factory checked 
in at 2012-02-17 12:08:24

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


Package is "poppler", Maintainer is "b...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/poppler/poppler-qt.changes   2012-01-19 
09:44:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.poppler.new/poppler-qt.changes  2012-02-17 
12:08:25.0 +0100
@@ -1,0 +2,43 @@
+Thu Feb 16 09:05:41 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.18.4:
+  + core:
+- CairoOutputDev:
+  . Restore temporary clip used in CairoOutputDev::fill when
+painting a mask
+  . Ensure paintTransparencyGroup uses same ctm as
+beginTransparencyGroup (fdo#29968).
+  . Use fabs when comparing the transformed line width
+(fdo#43441).
+  . Remove unused variable in CairoFontEngine.cc (fdo#45442).
+- SplashOutputDev: Do not use 50Kb of stack in
+  SplashXPath::addCurve (fdo#44905).
+- JpegWriter: set image parameters after jpeg_set_defaults()
+  (fdo#45224).
+- OpenJPEG decoder: Set
+  OPJ_DPARAMETERS_IGNORE_PCLR_CMAP_CDEF_FLAG if you have it
+  (fdo#43414).
+- Lexer: convert integer to real when overflow occurs
+  (fdo#45605).
+  + glib:
+- Various minor introspection and documentation improvements
+  (fdo#44790).
+- Fix return values (fdo#45440, fdo#45441).
+- gtk-doc improvements (fdo#45549).
+- Introspection improvements (fdo#45455).
+  + qt4:
+- remove non-existing 'qt' include dirs
+  + utils:
+- HtmlOutputDev:
+  . Proper unicode support when dumping PDF outline
+(fdo#45572).
+  . Fix leaks (fdo#45805).
+  . Close li tags in generated outlines (fdo#45807).
+- man pages: fix minor issues with hypens and %
+  + build system:
+- automake: Link to lcms if needed
+- automake: Fix build for builddir != srcdir (fdo#45434).
+- automake: Improve moc detection when cross compiling
+- Fix build with latest mingw-w64 headers (fdo#45407).
+
+---
poppler.changes: same change

Old:

  poppler-0.18.3.tar.gz

New:

  poppler-0.18.4.tar.gz



Other differences:
--
++ poppler-qt.spec ++
--- /var/tmp/diff_new_pack.DtUtnk/_old  2012-02-17 12:08:27.0 +0100
+++ /var/tmp/diff_new_pack.DtUtnk/_new  2012-02-17 12:08:27.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   poppler-qt
 %define _name   poppler
-Version:0.18.3
+Version:0.18.4
 Release:0
 # Actual version of poppler-data:
 %define poppler_data_version 0.2.1

++ poppler.spec ++
--- /var/tmp/diff_new_pack.DtUtnk/_old  2012-02-17 12:08:27.0 +0100
+++ /var/tmp/diff_new_pack.DtUtnk/_new  2012-02-17 12:08:27.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   poppler
 %define _name   poppler
-Version:0.18.3
+Version:0.18.4
 Release:0
 # Actual version of poppler-data:
 %define poppler_data_version 0.2.1

++ poppler-0.18.3.tar.gz -> poppler-0.18.4.tar.gz ++
 3445 lines of diff (skipped)

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



commit perl-Text-CSV_XS for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Text-CSV_XS for 
openSUSE:Factory checked in at 2012-02-17 12:08:17

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


Package is "perl-Text-CSV_XS", Maintainer is "u...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Text-CSV_XS/perl-Text-CSV_XS.changes
2011-12-07 14:39:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Text-CSV_XS.new/perl-Text-CSV_XS.changes   
2012-02-17 12:08:19.0 +0100
@@ -1,0 +2,10 @@
+Fri Feb 17 08:46:58 UTC 2012 - co...@suse.com
+
+- updated to 0.86
+* Introduce quote_binary attribute
+* Update copyright to 2012
+* Versions
+* Fixed a utf8::decode on undef (found by perl-5.15.7)
+* Fixed localized $/ interference with other handles (RT#74216)
+
+---

Old:

  Text-CSV_XS-0.85.tgz

New:

  Text-CSV_XS-0.86.tgz



Other differences:
--
++ perl-Text-CSV_XS.spec ++
--- /var/tmp/diff_new_pack.aP4xXw/_old  2012-02-17 12:08:20.0 +0100
+++ /var/tmp/diff_new_pack.aP4xXw/_new  2012-02-17 12:08:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Text-CSV_XS
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,18 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Text-CSV_XS
-Version:0.85
+Version:0.86
 Release:0
-License:Artistic-1.0 or GPL-1.0+
 %define cpan_name Text-CSV_XS
 Summary:comma-separated values manipulation routines
-Url:http://search.cpan.org/dist/Text-CSV_XS/
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Text-CSV_XS/
 Source: 
http://www.cpan.org/authors/id/H/HM/HMBRAND/%{cpan_name}-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+#BuildRequires: perl(Text::CSV_XS)
 %{perl_requires}
 
 %description
@@ -54,9 +56,6 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc ChangeLog examples README

++ Text-CSV_XS-0.85.tgz -> Text-CSV_XS-0.86.tgz ++
 2695 lines of diff (skipped)

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



commit perl-Sys-Virt for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Sys-Virt for openSUSE:Factory 
checked in at 2012-02-17 12:08:11

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


Package is "perl-Sys-Virt", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes  
2012-02-08 17:20:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new/perl-Sys-Virt.changes 
2012-02-17 12:08:14.0 +0100
@@ -1,0 +2,8 @@
+Wed Feb 15 14:17:01 MST 2012 - jfeh...@suse.com
+
+- Update to 0.9.10
+  - Add all new APIs in libvirt 0.9.10
+  - Add some constants missing from previous releases
+  - Clarify docs for shutdown/destroy APIs 
+
+---

Old:

  Sys-Virt-0.9.8.tar.gz

New:

  Sys-Virt-0.9.10.tar.gz



Other differences:
--
++ perl-Sys-Virt.spec ++
--- /var/tmp/diff_new_pack.INLoUX/_old  2012-02-17 12:08:15.0 +0100
+++ /var/tmp/diff_new_pack.INLoUX/_new  2012-02-17 12:08:15.0 +0100
@@ -16,8 +16,9 @@
 #
 
 
+
 Name:   perl-Sys-Virt
-Version:0.9.8
+Version:0.9.10
 Release:0
 %define cpan_name Sys-Virt
 Summary:Represent and manage a libvirt hypervisor connection
@@ -25,13 +26,14 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Sys-Virt/
 Source: %{cpan_name}-%{version}.tar.gz
-BuildRequires:  libvirt-devel >= 0.9.8
+BuildRequires:  libvirt-devel >= 0.9.10
 BuildRequires:  perl-macros
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
 BuildRequires:  perl(XML::XPath)
 BuildRequires:  perl(XML::XPath::XMLParser)
+BuildRequires:  perl(Time::HiRes)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 
@@ -64,6 +66,6 @@
 
 %files -f %{name}.files
 %defattr(644,root,root,755)
-%doc AUTHORS CHANGES HACKING LICENSE perl-Sys-Virt.spec README
+%doc AUTHORS Changes HACKING LICENSE perl-Sys-Virt.spec README
 
 %changelog

++ Sys-Virt-0.9.8.tar.gz -> Sys-Virt-0.9.10.tar.gz ++
 2185 lines of diff (skipped)

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



commit perl-Statistics-Descriptive for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Statistics-Descriptive for 
openSUSE:Factory checked in at 2012-02-17 12:08:07

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


Package is "perl-Statistics-Descriptive", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Statistics-Descriptive/perl-Statistics-Descriptive.changes
  2011-12-22 10:54:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Statistics-Descriptive.new/perl-Statistics-Descriptive.changes
 2012-02-17 12:08:10.0 +0100
@@ -1,0 +2,17 @@
+Fri Feb 17 08:41:58 UTC 2012 - co...@suse.com
+
+- updated to 3.0300
+   - Now mean() and median() and other routines return undef() if there are
+   no data.
+   - Somewhat incompatible change: some methods that returned undef() under
+   list context now return an empty list (so it will be false).
+   - it is generally not recommended to call such methods in list context
+   as they should always be called in scalar context.
+   - Resolves https://rt.cpan.org/Ticket/Display.html?id=74693
+   - thanks to Shawn Laffan for the report and the patch.
+
+   - Fix https://rt.cpan.org/Ticket/Display.html?id=72495 .
+   - percentile should not die and should return undef if there are
+   no elements in the collection.
+
+---

Old:

  Statistics-Descriptive-3.0202.tar.gz

New:

  Statistics-Descriptive-3.0300.tar.gz



Other differences:
--
++ perl-Statistics-Descriptive.spec ++
--- /var/tmp/diff_new_pack.rRrVJe/_old  2012-02-17 12:08:11.0 +0100
+++ /var/tmp/diff_new_pack.rRrVJe/_new  2012-02-17 12:08:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Statistics-Descriptive
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,38 +16,25 @@
 #
 
 
-%bcond_with pod
-
 Name:   perl-Statistics-Descriptive
+Version:3.0300
+Release:0
 %define cpan_name Statistics-Descriptive
-Summary:Module of basic descriptive statistical functions
-License:GPL-1.0+ or Artistic-1.0
+Summary:Module of basic descriptive statistical functions.
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Version:3.0202
-Release:0
 Url:http://search.cpan.org/dist/Statistics-Descriptive/
-Source: 
http://www.cpan.org/modules/by-module/Statistics/Statistics-Descriptive-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/S/SH/SHLOMIF/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Module::Build)
-%if %{with pod}
-BuildRequires:  perl(Test::Pod) >= 1.22
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-%endif
-BuildRequires:  perl(Carp)
-BuildRequires:  perl(lib)
-BuildRequires:  perl(POSIX)
-BuildRequires:  perl(strict)
-BuildRequires:  perl(vars)
-BuildRequires:  perl(warnings)
-Requires:   perl(Carp)
-Requires:   perl(POSIX)
-Requires:   perl(strict)
-Requires:   perl(vars)
-Requires:   perl(warnings)
+#BuildRequires: perl(IO::All)
+#BuildRequires: perl(Statistics::Descriptive)
+#BuildRequires: perl(Test::Run::Builder)
+#BuildRequires: perl(Test::Run::CmdLine::Iface)
+%{perl_requires}
 
 %description
 This module provides basic functions used in descriptive statistics. It has
@@ -57,29 +44,31 @@
 the full method, the entire data set is retained and additional functions
 are available.
 
-Authors:
-
-Shlomi Fish 
+Whenever a division by zero may occur, the denominator is checked to be
+greater than the value '$Statistics::Descriptive::Tolerance', which
+defaults to 0.0. You may want to change this value to some small positive
+value such as 1e-24 in order to obtain error messages in case of very small
+denominators.
+
+Many of the methods (both Sparse and Full) cache values so that subsequent
+calls with the same arguments are faster.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Build.PL installdirs=vendor
-./Build
+./Build build flags=%{?_smp_mflags}
 
 %check
 ./Build test
 
 %install
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+./Build install destdir=%{buildroot} create_packlist=0
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f 

commit perl-Net-SSLeay for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-SSLeay for openSUSE:Factory 
checked in at 2012-02-17 12:08:02

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


Package is "perl-Net-SSLeay", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-SSLeay/perl-Net-SSLeay.changes  
2011-09-23 12:38:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Net-SSLeay.new/perl-Net-SSLeay.changes 
2012-02-17 12:08:08.0 +0100
@@ -1,0 +2,47 @@
+Wed Feb  8 15:53:50 UTC 2012 - vci...@suse.com
+
+- update to 1.42
+Fixed incorrect documentation of how to enable CRL checking. Patched
+by Steffen_Ullrich.
+Fixed incorrect letter in Sebastien in Credits. Patch by Neil Bowers.
+Reversed order of the Changes file to be reverse chronological. Patch by
+Neil Bowers.
+Fixed a a compile error when building on Windows with MSVC6. reported and
+patched by "Andrew J. Savige via RT".
+1.412011-09-25
+Fixed incorrect const signatures for 1.0 that were causing warnings. 
+Patches provided by "Douglas
+Christopher Wilson via RT". Now have clean compile with 0.9.8a through 
1.0.0.
+1.402011-09-23
+Fixed incorrect argument type in call to SSL_set1_param
+Fixed a number of issues with pointer sizes, patched by "Douglas
+Christopher Wilson via RT". Removed redundant pointer cast tests from t/
+Added Perl version requirements to SSLeay.pm
+1.392011-09-21
+Downgraded Module::Install to 0.93 since 1.01 was causing problems in
+the Makefile. Reported by Albert Chin.
+1.382011-09-16
+- Fixed a problem with  various symbols that only became
+available in OpenSSL 0.9.8 such as X509_VERIFY_PARAM and
+X509_POLICY_NODE, causing build failures with older versions of
+OpenSSL. Patched by paul.
+1.372011-09-16
+- Added X509_get_fingerprint, contributed by Thierry Walrant (with
+minor changes die to the fact that stricmp is not avialable. Cert
+types must be lowercase. Also added test to 07_sslecho.t
+- Added suport for SSL_CTX_set1_param, SSL_set1_param,
+selected X509_VERIFY_PARAM_* OBJ_* functions. Added new test
+t/local/36_verify.t
+- Fixed the prototype for randomize(), it missed one arg, and errors
+are reported with perl 5.10.1 on Windows
+- Fixed an uninitialized value warning in $Net::SSLeay::proxyauth,
+reported by Andrey Rikov.
+- Update so net-ssleay will compile if SSLV2 is not present. Patch
+from Chris Butler.
+- Fixed a problem where sslcat (and possibly other functions) expect RSA 
keys and will not
+load DSA keys for client certificates. Reported and patched by "Jesse
+DeFer via RT"
+- Removed SSL_CTX_v2_new and SSLv2_method() for OpenSSL 1.0 and later.
+- Added CTX_use_PKCS12_file contributed by "Andrew A. Budkin".
+
+---

Old:

  Net-SSLeay-1.36.tar.bz2

New:

  Net-SSLeay-1.42.tar.gz



Other differences:
--
++ perl-Net-SSLeay.spec ++
--- /var/tmp/diff_new_pack.KFqCxY/_old  2012-02-17 12:08:09.0 +0100
+++ /var/tmp/diff_new_pack.KFqCxY/_new  2012-02-17 12:08:09.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Net-SSLeay (Version 1.36)
+# spec file for package perl-Net-SSLeay
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,33 +15,33 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %bcond_with test
 
 Name:   perl-Net-SSLeay
+Version:1.42
+Release:0
+License:OpenSSL License, Original SSLeay License
 %define cpan_name Net-SSLeay
 Summary:Perl extension for using OpenSSL
-Version:1.36
-Release:7
-License:OpenSSL License, Original SSLeay License
-Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Net-SSLeay/
+Group:  Development/Libraries/Perl
 #Source: 
http://www.cpan.org/modules/by-module/Net/Net-SSLeay-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
-Patch0: %{name}-%{version}.diff
-Patch1: %{name}-%{version}-undefined.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  openssl openssl-devel
+Source: %{cpan_name}-%{version}.tar.gz
+Patch0: perl-Net-SSLeay-1.36.diff
+Patch1: perl-Net-SSL

commit perl-Net-HTTP for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-HTTP for openSUSE:Factory 
checked in at 2012-02-17 12:07:58

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


Package is "perl-Net-HTTP", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-HTTP/perl-Net-HTTP.changes  
2012-02-16 16:22:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Net-HTTP.new/perl-Net-HTTP.changes 
2012-02-17 12:08:06.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb 17 08:44:42 UTC 2012 - co...@suse.com
+
+- updated to 6.03
+  Restore blocking override for Net::SSL [RT#72790]
+  Restore perl-5.6 compatiblity.
+
+---

Old:

  Net-HTTP-6.02.tar.gz

New:

  Net-HTTP-6.03.tar.gz



Other differences:
--
++ perl-Net-HTTP.spec ++
--- /var/tmp/diff_new_pack.QKDSL8/_old  2012-02-17 12:08:07.0 +0100
+++ /var/tmp/diff_new_pack.QKDSL8/_new  2012-02-17 12:08:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Net-HTTP
-Version:6.02
+Version:6.03
 Release:0
 %define cpan_name Net-HTTP
 Summary:Low-level HTTP connection (client)

++ Net-HTTP-6.02.tar.gz -> Net-HTTP-6.03.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.02/Changes new/Net-HTTP-6.03/Changes
--- old/Net-HTTP-6.02/Changes   2011-11-21 21:26:39.0 +0100
+++ new/Net-HTTP-6.03/Changes   2012-02-16 21:19:50.0 +0100
@@ -1,4 +1,12 @@
 ___
+2012-02-16 Net-HTTP 6.03
+
+Restore blocking override for Net::SSL [RT#72790]
+
+Restore perl-5.6 compatiblity.
+
+
+___
 2011-11-21 Net-HTTP 6.02
 
 Don't disable blocking method [RT#72580]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.02/META.yml new/Net-HTTP-6.03/META.yml
--- old/Net-HTTP-6.02/META.yml  2011-11-21 21:28:31.0 +0100
+++ new/Net-HTTP-6.03/META.yml  2012-02-16 21:21:35.0 +0100
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:   Net-HTTP
-version:6.02
+version:6.03
 abstract:   Low-level HTTP connection (client)
 author:
 - Gisle Aas 
@@ -15,10 +15,10 @@
 IO::Compress::Gzip:   0
 IO::Select:   0
 IO::Socket::INET: 0
-perl: 5.008008
+perl: 5.006002
 resources:
 MailingList:  mailto:lib...@perl.org
-repository:   http://github.com/gisle/libwww-perl/tree/Net-HTTP/master
+repository:   http://github.com/gisle/net-http
 no_index:
 directory:
 - t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.02/Makefile.PL 
new/Net-HTTP-6.03/Makefile.PL
--- old/Net-HTTP-6.02/Makefile.PL   2011-11-21 20:53:45.0 +0100
+++ new/Net-HTTP-6.03/Makefile.PL   2012-02-15 23:22:14.0 +0100
@@ -1,6 +1,6 @@
 #!perl -w
 
-require 5.008008;
+require 5.006002;
 use strict;
 use ExtUtils::MakeMaker;
 use Getopt::Long qw(GetOptions);
@@ -20,7 +20,7 @@
 ABSTRACT_FROM => 'lib/Net/HTTP.pm',
 AUTHOR => 'Gisle Aas ',
 LICENSE => "perl",
-MIN_PERL_VERSION => 5.008008,
+MIN_PERL_VERSION => 5.006002,
 PREREQ_PM => {
'IO::Socket::INET' => 0,
'IO::Select' => 0,
@@ -32,7 +32,7 @@
 'IO::Socket::SSL' => "1.38",
 },
resources => {
-repository => 
'http://github.com/gisle/libwww-perl/tree/Net-HTTP/master',
+repository => 'http://github.com/gisle/net-http',
MailingList => 'mailto:lib...@perl.org',
 }
 },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.02/lib/Net/HTTP.pm 
new/Net-HTTP-6.03/lib/Net/HTTP.pm
--- old/Net-HTTP-6.02/lib/Net/HTTP.pm   2011-11-21 21:23:21.0 +0100
+++ new/Net-HTTP-6.03/lib/Net/HTTP.pm   2012-02-16 21:17:26.0 +0100
@@ -3,7 +3,7 @@
 use strict;
 use vars qw($VERSION @ISA $SOCKET_CLASS);
 
-$VERSION = "6.02";
+$VERSION = "6.03";
 unless ($SOCKET_CLASS) {
 eval { require IO::Socket::INET } || require IO::Socket;
 $SOCKET_CLASS = "IO::Socket::INET";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.02/lib/Net/HTTPS.pm 
new/Net-HTTP-6.03/lib/Net/HTTPS.pm
--- old/Net-HTTP-6.02/lib/Net/HTTPS.pm  2011-11-21 21:23:04.0 +0100
+++ new/Net-HTTP-6.03/lib/Net/HTTPS.pm  2012-02-15 20:42:03.0 +0100
@@ -72,6 +72,13 @@
 443;
 }
 
+if ($SSL_S

commit perl-MooseX-Role-Cmd for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Role-Cmd for 
openSUSE:Factory checked in at 2012-02-17 12:07:54

Comparing /work/SRC/openSUSE:Factory/perl-MooseX-Role-Cmd (Old)
 and  /work/SRC/openSUSE:Factory/.perl-MooseX-Role-Cmd.new (New)


Package is "perl-MooseX-Role-Cmd", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Role-Cmd/perl-MooseX-Role-Cmd.changes
2011-12-25 17:39:17.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Role-Cmd.new/perl-MooseX-Role-Cmd.changes
   2012-02-17 12:08:04.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 07:33:19 UTC 2012 - co...@suse.com
+
+- ran prepare_spec
+
+---



Other differences:
--
++ perl-MooseX-Role-Cmd.spec ++
--- /var/tmp/diff_new_pack.LaSfPN/_old  2012-02-17 12:08:05.0 +0100
+++ /var/tmp/diff_new_pack.LaSfPN/_new  2012-02-17 12:08:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Role-Cmd
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,19 +21,30 @@
 Release:0
 %define cpan_name MooseX-Role-Cmd
 Summary:Wrap system command binaries the Moose way
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Role-Cmd/
-Source: 
http://www.cpan.org/authors/id/E/ED/EDENC/MooseX-Role-Cmd-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/E/ED/EDENC/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(IPC::Cmd)
-BuildRequires:  perl(Moose) >= 0.24
+BuildRequires:  perl(IPC::Cmd) >= 0.42
+BuildRequires:  perl(Moose) >= 0.6
 BuildRequires:  perl(Test::Exception)
-Requires:   perl(IPC::Cmd)
-Requires:   perl(Moose) >= 0.24
+#BuildRequires: perl(CPANPLUS::Backend)
+#BuildRequires: perl(inc::Module::Install)
+#BuildRequires: perl(LWP::Simple)
+#BuildRequires: perl(Module::AutoInstall)
+#BuildRequires: perl(Module::Build)
+#BuildRequires: perl(Module::Install::Base)
+#BuildRequires: perl(Moose::Role)
+#BuildRequires: perl(Moose::Util::TypeConstraints)
+#BuildRequires: perl(MooseX::Role::Cmd)
+#BuildRequires: perl(MooseX::Role::Cmd::Meta::Attribute::Trait)
+#BuildRequires: perl(YAML)
+Requires:   perl(IPC::Cmd) >= 0.42
+Requires:   perl(Moose) >= 0.6
 %{perl_requires}
 
 %description
@@ -58,7 +69,7 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(644,root,root,755)
+%defattr(-,root,root,755)
 %doc Changes Makefile README
 
 %changelog

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



commit perl-Module-Runtime for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Module-Runtime for 
openSUSE:Factory checked in at 2012-02-17 12:07:49

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


Package is "perl-Module-Runtime", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-Module-Runtime/perl-Module-Runtime.changes  
2012-02-16 16:22:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-Runtime.new/perl-Module-Runtime.changes 
2012-02-17 12:08:02.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb 17 08:50:52 UTC 2012 - co...@suse.com
+
+- updated to 0.013
+  * fix false failure of the test for lack of unintended dependencies
+that occurred on systems using a sitecustomize.pl
+
+---

Old:

  Module-Runtime-0.012.tar.gz

New:

  Module-Runtime-0.013.tar.gz



Other differences:
--
++ perl-Module-Runtime.spec ++
--- /var/tmp/diff_new_pack.w12WgA/_old  2012-02-17 12:08:03.0 +0100
+++ /var/tmp/diff_new_pack.w12WgA/_new  2012-02-17 12:08:03.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Module-Runtime
-Version:0.012
+Version:0.013
 Release:0
 %define cpan_name Module-Runtime
 Summary:runtime module handling

++ Module-Runtime-0.012.tar.gz -> Module-Runtime-0.013.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.012/Changes 
new/Module-Runtime-0.013/Changes
--- old/Module-Runtime-0.012/Changes2012-02-12 12:54:02.0 +0100
+++ new/Module-Runtime-0.013/Changes2012-02-16 21:11:34.0 +0100
@@ -1,3 +1,8 @@
+version 0.013; 2012-02-16
+
+  * fix false failure of the test for lack of unintended dependencies
+that occurred on systems using a sitecustomize.pl
+
 version 0.012; 2012-02-12
 
   * work around Perl core bug [perl #68590] regarding leakage of %^H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.012/META.json 
new/Module-Runtime-0.013/META.json
--- old/Module-Runtime-0.012/META.json  2012-02-12 12:54:02.0 +0100
+++ new/Module-Runtime-0.013/META.json  2012-02-16 21:11:34.0 +0100
@@ -40,7 +40,7 @@
"provides" : {
   "Module::Runtime" : {
  "file" : "lib/Module/Runtime.pm",
- "version" : "0.012"
+ "version" : "0.013"
   }
},
"release_status" : "stable",
@@ -49,5 +49,5 @@
  "http://dev.perl.org/licenses/";
   ]
},
-   "version" : "0.012"
+   "version" : "0.013"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.012/META.yml 
new/Module-Runtime-0.013/META.yml
--- old/Module-Runtime-0.012/META.yml   2012-02-12 12:54:02.0 +0100
+++ new/Module-Runtime-0.013/META.yml   2012-02-16 21:11:34.0 +0100
@@ -23,9 +23,9 @@
 provides:
   Module::Runtime:
 file: lib/Module/Runtime.pm
-version: 0.012
+version: 0.013
 requires:
   perl: 5.006
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.012
+version: 0.013
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.012/SIGNATURE 
new/Module-Runtime-0.013/SIGNATURE
--- old/Module-Runtime-0.012/SIGNATURE  2012-02-12 12:54:07.0 +0100
+++ new/Module-Runtime-0.013/SIGNATURE  2012-02-16 21:11:39.0 +0100
@@ -16,20 +16,20 @@
 
 SHA1 846abd52ddad1c3141b395933fd10f14cb3cd7bc .gitignore
 SHA1 dd0ddabd6469a1b8c7f9dd0e7eb63a59d9b763db Build.PL
-SHA1 ba7b415c1638b6f8056b0fafec88acab3f9a2a3a Changes
+SHA1 1786bb673326c135b8536eff943dfe4a3e850bd2 Changes
 SHA1 7761501f07e9045a073537d0cce2e4214d417abd MANIFEST
-SHA1 f483967b1e2121537599d2ca1c9f10083ca6d2b3 META.json
-SHA1 bf9146284bf2f6a1dd595bb6b677ff6820a6f444 META.yml
+SHA1 3268c4149dbf6e3c930fa56ef931e7e9ccd52acb META.json
+SHA1 240b429caf419dcf15c6d45f9c0db68601167601 META.yml
 SHA1 a4df8e97ccd390a42212af5a9f4d0986c85e7a5f Makefile.PL
 SHA1 5601c747fdb2c85a790ebfe21303f693f9e38574 README
-SHA1 0863044a64b2b6f22d548db4a2be56684b7fd1a1 lib/Module/Runtime.pm
+SHA1 320784cdadccf5e4c6e364a5d0abfabc77bda9f9 lib/Module/Runtime.pm
 SHA1 e80e49f06f99a5b5bb0faf54988df29a7aff89c5 t/Break.pm
 SHA1 c3c7b101e683f9f3d7f915763aa6d1850421bcb4 t/Context.pm
 SHA1 fbe32c46e3fe2cac40e4ab173764aec7db9b2a00 t/Eval.pm
 SHA1 d7f5ca01199b601b1a1a86127270d9ab7d1ca50b t/Hints.pm
 SHA1 f8988828e7cab17800a0b5f25547f09431933480 t/Simple.pm
 SHA1 a0f9c0dfbe6472e81222a196a2f17554697d0d48 t/cmn.t
-SHA1 c0cdbe18b2c347ebabda457af0b73a1c14866535 t/dependency.t
+SHA1 7324434239bc0678904a4eb406f6c3b08951b

commit perl-HTTP-Date for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-HTTP-Date for openSUSE:Factory 
checked in at 2012-02-17 12:07:46

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


Package is "perl-HTTP-Date", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-HTTP-Date/perl-HTTP-Date.changes
2011-09-23 12:37:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-HTTP-Date.new/perl-HTTP-Date.changes   
2012-02-17 12:07:49.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 16 21:12:42 UTC 2012 - co...@suse.com
+
+- updated to 6.01
+ * Restore perl-5.6 compatiblity.  Drop MacOS (classic) support.
+
+---

Old:

  HTTP-Date-6.00.tar.gz

New:

  HTTP-Date-6.01.tar.gz



Other differences:
--
++ perl-HTTP-Date.spec ++
--- /var/tmp/diff_new_pack.zRMtO8/_old  2012-02-17 12:07:50.0 +0100
+++ /var/tmp/diff_new_pack.zRMtO8/_new  2012-02-17 12:07:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTTP-Date
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,24 +16,23 @@
 #
 
 
-
 Name:   perl-HTTP-Date
+Version:6.01
+Release:0
 %define cpan_name HTTP-Date
 Summary:Date conversion routines
-Version:6.00
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/HTTP-Date/
-Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Date-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Time::Local)
-Requires:   perl(Time::Local)
-%{perl_requires}
+#BuildRequires: perl(HTTP::Date)
+#BuildRequires: perl(Time::Zone)
 Recommends: perl(Time::Zone)
+%{perl_requires}
 
 %description
 This module provides functions that deal the date formats used by the HTTP
@@ -55,11 +54,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
+%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog

++ HTTP-Date-6.00.tar.gz -> HTTP-Date-6.01.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Date-6.00/Changes new/HTTP-Date-6.01/Changes
--- old/HTTP-Date-6.00/Changes  2011-02-25 14:30:58.0 +0100
+++ new/HTTP-Date-6.01/Changes  2012-02-15 22:24:50.0 +0100
@@ -1,4 +1,10 @@
 ___
+2011-02-15 HTTP-Date 6.01
+
+Restore perl-5.6 compatiblity.  Drop MacOS (classic) support.
+
+
+___
 2011-02-25 HTTP-Date 6.00
 
 Initial release of HTTP-Date as a separate distribution. There are no code
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Date-6.00/META.yml new/HTTP-Date-6.01/META.yml
--- old/HTTP-Date-6.00/META.yml 2011-02-25 14:35:57.0 +0100
+++ new/HTTP-Date-6.01/META.yml 2012-02-15 22:26:22.0 +0100
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:   HTTP-Date
-version:6.00
+version:6.01
 abstract:   date conversion routines
 author:
 - Gisle Aas 
@@ -11,16 +11,16 @@
 build_requires:
 ExtUtils::MakeMaker:  0
 requires:
-perl: 5.008008
+perl: 5.006002
 Time::Local:  0
 resources:
 MailingList:  mailto:lib...@perl.org
-repository:   http://github.com/gisle/libwww-perl
+repository:   http://github.com/gisle/http-date
 no_index:
 directory:
 - t
 - inc
-generated_by:   ExtUtils::MakeMaker version 6.56
+generated_by:   ExtUtils::MakeMaker version 6.57_05
 meta-spec:
 url:  http://module-build.sourceforge.net/META-spec-v1.4.html
 version:  1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Date-6.00/Makefile.PL 
new/HTTP-Date-6.01/Makefile.PL
--- old/HTTP-Date-6.00/Makefile.PL  2011-02-25 14:30:53.0 +0100
+++ new/HTTP-Date-6.01/Makefile.PL  2012-02-15 22:18:56.0 +0100
@@ -1,6 +1,6 @@
 #!perl -w
 
-require 5.008008;
+require 5.006002;

commit perl-HTTP-Cookies for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-HTTP-Cookies for 
openSUSE:Factory checked in at 2012-02-17 12:07:40

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


Package is "perl-HTTP-Cookies", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-HTTP-Cookies/perl-HTTP-Cookies.changes  
2011-09-23 12:37:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-HTTP-Cookies.new/perl-HTTP-Cookies.changes 
2012-02-17 12:07:47.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 16 21:12:18 UTC 2012 - co...@suse.com
+
+- updated to 6.01
+  * Restore 5.8.1 compatiblity.
+
+---

Old:

  HTTP-Cookies-6.00.tar.gz

New:

  HTTP-Cookies-6.01.tar.gz



Other differences:
--
++ perl-HTTP-Cookies.spec ++
--- /var/tmp/diff_new_pack.B9iucK/_old  2012-02-17 12:07:48.0 +0100
+++ /var/tmp/diff_new_pack.B9iucK/_new  2012-02-17 12:07:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTTP-Cookies
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,25 +16,28 @@
 #
 
 
-
 Name:   perl-HTTP-Cookies
-Version:6.00
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+Version:6.01
+Release:0
 %define cpan_name HTTP-Cookies
 Summary:HTTP cookie jars
-Url:http://search.cpan.org/dist/HTTP-Cookies/
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-#Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Cookies-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
-BuildRequires:  perl(HTTP::Date) >= 6
-BuildRequires:  perl(HTTP::Headers::Util) >= 6
+Url:http://search.cpan.org/dist/HTTP-Cookies/
+Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(HTTP::Date) >= 6
+BuildRequires:  perl(HTTP::Headers::Util) >= 6
+#BuildRequires: perl(HTTP::Cookies)
+#BuildRequires: perl(HTTP::Cookies::Netscape)
+#BuildRequires: perl(HTTP::Request)
+#BuildRequires: perl(HTTP::Response)
+#BuildRequires: perl(URI)
 Requires:   perl(HTTP::Date) >= 6
 Requires:   perl(HTTP::Headers::Util) >= 6
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
 %{perl_requires}
 
 %description
@@ -50,6 +53,10 @@
 style cookies described in _RFC 2965_. The two variants of cookies are
 supposed to be able to coexist happily.
 
+Instances of the class _HTTP::Cookies_ are able to store a collection of
+Set-Cookie2: and Set-Cookie: headers and are able to use this information
+to initialize Cookie-headers in _HTTP::Request_ objects. The state of a
+_HTTP::Cookies_ object can be saved in and restored from files.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -66,11 +73,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
+%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog

++ HTTP-Cookies-6.00.tar.gz -> HTTP-Cookies-6.01.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Cookies-6.00/Changes 
new/HTTP-Cookies-6.01/Changes
--- old/HTTP-Cookies-6.00/Changes   2011-02-27 23:54:54.0 +0100
+++ new/HTTP-Cookies-6.01/Changes   2012-02-15 23:14:14.0 +0100
@@ -1,4 +1,11 @@
 ___
+2011-02-15 HTTP-Cookies 6.01
+
+Restore 5.8.1 compatiblity.
+
+
+
+___
 2011-02-27 HTTP-Cookies 6.00
 
 Initial release of HTTP-Cookies as a separate distribution. There are no code
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Cookies-6.00/META.yml 
new/HTTP-Cookies-6.01/META.yml
--- old/HTTP-Cookies-6.00/META.yml  2011-02-27 23:55:34.0 +0100
+++ new/HTTP-Cookies-6.01/META.yml  2012-02-15 23:16:13.0 +0100
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:   HTTP-Cookies
-version:6.00
+version:6.01
 abstract:   HTTP cookie jars
 author:
 - Gisle Aas 
@@ -13,16 +13,16 @@
 requires:
 HTTP::Date:   6
 HTTP::Headers::Util:  6
-   

commit perl-Hash-MultiValue for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Hash-MultiValue for 
openSUSE:Factory checked in at 2012-02-17 12:07:37

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


Package is "perl-Hash-MultiValue", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Hash-MultiValue/perl-Hash-MultiValue.changes
2011-11-18 15:47:36.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Hash-MultiValue.new/perl-Hash-MultiValue.changes
   2012-02-17 12:07:39.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 16 21:14:35 UTC 2012 - co...@suse.com
+
+- updated to 0.12
+- Reapply set method optimisation that was lost in 0.11
+- *really* fix uninitialized warnings in tests (RT#74096)
+- Add support for Storable serialization
+- Fix segfaulting splice invocation on perls 
+
+---

Old:

  Hash-MultiValue-0.10.tar.gz

New:

  Hash-MultiValue-0.12.tar.gz



Other differences:
--
++ perl-Hash-MultiValue.spec ++
--- /var/tmp/diff_new_pack.boQ0DJ/_old  2012-02-17 12:07:40.0 +0100
+++ /var/tmp/diff_new_pack.boQ0DJ/_new  2012-02-17 12:07:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Hash-MultiValue
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,26 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Hash-MultiValue
+Version:0.12
+Release:0
 %define cpan_name Hash-MultiValue
 Summary:Store multiple values per key
-Version:0.10
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Hash-MultiValue/
-Source: 
http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Hash-MultiValue-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/A/AR/ARISTOTLE/%{cpan_name}-%{version}.tar.gz
 Patch0: test-more-no-plan.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl >= 5.8.1
-Requires:   perl >= 5.8.1
+%{perl_requires}
 
 %description
 Hash::MultiValue is an object (and a plain hash reference) that may contain
@@ -53,18 +49,11 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog

++ Hash-MultiValue-0.10.tar.gz -> Hash-MultiValue-0.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Hash-MultiValue-0.10/.gitignore 
new/Hash-MultiValue-0.12/.gitignore
--- old/Hash-MultiValue-0.10/.gitignore 2009-12-15 09:35:55.0 +0100
+++ new/Hash-MultiValue-0.12/.gitignore 2012-02-13 16:44:23.0 +0100
@@ -1,4 +1,5 @@
-META.yml
+META.*
+MYMETA.*
 Makefile
 inc/
 pm_to_blib
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Hash-MultiValue-0.10/Changes 
new/Hash-MultiValue-0.12/Changes
--- old/Hash-MultiValue-0.10/Changes2011-09-18 21:52:01.0 +0200
+++ new/Hash-MultiValue-0.12/Changes2012-02-15 07:46:11.0 +0100
@@ -1,5 +1,14 @@
 Revision history for Perl extension Hash::MultiValue
 
+0.12  Wed Feb 15 07:45:50 CET 2012
+- Reapply set method optimisation that was lost in 0.11
+- *really* fix uninitialized warnings in tests (RT#74096)
+- Add support for Storable serialization
+
+0.11  Sun Feb 12 13:04:54 PST 2012
+- Fix segfaulting splice invocation on perls < 5.8.7
+- Fix uninitialized warning on older perls
+
 0.10  Sun Sep 18 12:51:49 PDT 2011
 - Implemented set (aristotle)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Hash-MultiValue-0.10/MANIFEST 
new/Hash-MultiValue-0.12/MANIFEST
--- old/Hash-MultiValue-0.10/MANIFEST   2011-09-18 21:53:02.0 +0200
+++ new/Hash-MultiValue-0.12/MANIFEST   2012-02-15 07:53:29.0 +0100
@@ -30,6 +30,7 @@
 t/multi.t
 t/ref.t
 t/set

commit perl-ExtUtils-CBuilder for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-ExtUtils-CBuilder for 
openSUSE:Factory checked in at 2012-02-17 12:07:27

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


Package is "perl-ExtUtils-CBuilder", Maintainer is ""

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-CBuilder/perl-ExtUtils-CBuilder.changes
2011-12-06 16:24:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CBuilder.new/perl-ExtUtils-CBuilder.changes
   2012-02-17 12:07:34.0 +0100
@@ -1,0 +2,20 @@
+Wed Feb 15 12:02:42 UTC 2012 - co...@suse.com
+
+- updated to 0.280202
+  - Different file names used for test files; allows EU::CB tests
+to be run in parallel. [Florian Ragwitz]
+
+  Fixed:
+  - t/04-base.t no longer attempt to compile or link as this provokes
+failures on main platforms
+  - Various typo fixes in Pod or comments
+  - Incorporated another t/04-base.t fix from bleadperl
+[Chris Williams]
+  - Fixed spurious t/04-base.t failure when run from Perl core
+[David Golden]
+  - Fixed t/02-link.t on perl < 5.8
+  - Preserves exit status on VMS [Craig Berry]
+  - Fix Win32 split_like_shell escaping [Christian Walde]
+  - Tests no longer fail if user has set the CC environment variable
+
+---

Old:

  ExtUtils-CBuilder-0.27.tar.gz
  ExtUtils-CBuilder-0.2701.patch
  ExtUtils-CBuilder-0.2701_0.2702.patch
  ExtUtils-CBuilder-0.2702_0.2703.patch

New:

  ExtUtils-CBuilder-0.280202.tar.gz



Other differences:
--
++ perl-ExtUtils-CBuilder.spec ++
--- /var/tmp/diff_new_pack.0Owaxg/_old  2012-02-17 12:07:36.0 +0100
+++ /var/tmp/diff_new_pack.0Owaxg/_new  2012-02-17 12:07:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-CBuilder
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,53 +15,39 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-ExtUtils-CBuilder
+Version:0.280202
+Release:0
 %define cpan_name ExtUtils-CBuilder
 Summary:Compile and link C code for Perl modules
-Version:0.27
-Release:0
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/ExtUtils-CBuilder/
-Source: 
http://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-CBuilder-%{version}.tar.gz
-Patch1: %{cpan_name}-0.2701.patch
-Patch2: %{cpan_name}-0.2701_0.2702.patch
-Patch3: %{cpan_name}-0.2702_0.2703.patch
+Source: 
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
-BuildRequires:  perl(Cwd)
-BuildRequires:  perl(File::Basename)
-BuildRequires:  perl(File::Spec)
-BuildRequires:  perl(IO::File)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(Text::ParseWords)
 BuildRequires:  perl-macros
-Requires:   perl(Cwd)
-Requires:   perl(File::Basename)
-Requires:   perl(File::Spec)
-Requires:   perl(IO::File)
-Requires:   perl(Text::ParseWords)
+BuildRequires:  perl(File::Spec) >= 3.13
+BuildRequires:  perl(IPC::Cmd)
+#BuildRequires: perl(ExtUtils::CBuilder)
+#BuildRequires: perl(ExtUtils::CBuilder::Base)
+#BuildRequires: perl(ExtUtils::CBuilder::Platform::Unix)
+Requires:   perl(File::Spec) >= 3.13
+Requires:   perl(IPC::Cmd)
+%{perl_requires}
 
 %description
 This module can build the C portions of Perl modules by invoking the
 appropriate compilers and linkers in a cross-platform manner. It was
-motivated by the Module::Build project, but may be useful for other
-purposes as well. However, it is not intended as a general cross-platform
+motivated by the 'Module::Build' project, but may be useful for other
+purposes as well. However, it is _not_ intended as a general cross-platform
 interface to all your C building needs. That would have been a much more
 ambitious goal!
 
-Authors:
-
-Ken Williams, kwilli...@cpan.org
-David Golden
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -72,18 +58,11 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# rem

commit perl-CPANPLUS for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package perl-CPANPLUS for openSUSE:Factory 
checked in at 2012-02-17 12:07:20

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


Package is "perl-CPANPLUS", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/perl-CPANPLUS/perl-CPANPLUS.changes  
2012-01-09 11:16:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-CPANPLUS.new/perl-CPANPLUS.changes 
2012-02-17 12:07:23.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb 11 18:47:10 UTC 2012 - co...@suse.com
+
+- updated to 0.9116
+  * add NAME headings in modules with POD, Debian
+Lintian fixes, http://bugs.debian.org/65045
+  * Implement reload command in the shell
+
+---

Old:

  CPANPLUS-0.9115.tar.gz

New:

  CPANPLUS-0.9116.tar.gz



Other differences:
--
++ perl-CPANPLUS.spec ++
--- /var/tmp/diff_new_pack.Mrp9HE/_old  2012-02-17 12:07:26.0 +0100
+++ /var/tmp/diff_new_pack.Mrp9HE/_new  2012-02-17 12:07:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-CPANPLUS
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,16 @@
 #
 
 
-
 Name:   perl-CPANPLUS
-Version:0.9115
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+Version:0.9116
+Release:0
 %define cpan_name CPANPLUS
 Summary:API & CLI access to the CPAN mirrors
-Url:http://search.cpan.org/dist/CPANPLUS/
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/CPANPLUS/
 Source: 
http://www.cpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{version}.tar.gz
+# MANUAL
 Patch1: perl-CPANPLUS-cpanp-run-perl-add_missing_shebang.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -33,7 +33,7 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Archive::Extract) >= 0.16
 BuildRequires:  perl(Archive::Tar) >= 1.23
-BuildRequires:  perl(CPANPLUS::Dist::Build) >= 0.24
+BuildRequires:  perl(CPANPLUS::Dist::Build) >= 0.60
 BuildRequires:  perl(Digest::SHA) >= 0.0
 BuildRequires:  perl(ExtUtils::Install) >= 1.42
 BuildRequires:  perl(File::Fetch) >= 0.15_02
@@ -53,9 +53,6 @@
 BuildRequires:  perl(Term::UI) >= 0.18
 BuildRequires:  perl(Test::Harness) >= 2.62
 BuildRequires:  perl(version) >= 0.77
-BuildRequires:  perl(Data::Dumper)
-BuildRequires:  perl(DBD::SQLite)
-BuildRequires:  perl(DBIx::Simple)
 #BuildRequires: perl(Archive::Tar::Constant)
 #BuildRequires: perl(Archive::Tar::File)
 #BuildRequires: perl(Compress::Zlib)
@@ -114,7 +111,7 @@
 #BuildRequires: perl(YAML)
 Requires:   perl(Archive::Extract) >= 0.16
 Requires:   perl(Archive::Tar) >= 1.23
-Requires:   perl(CPANPLUS::Dist::Build) >= 0.24
+Requires:   perl(CPANPLUS::Dist::Build) >= 0.60
 Requires:   perl(Digest::SHA) >= 0.0
 Requires:   perl(ExtUtils::Install) >= 1.42
 Requires:   perl(File::Fetch) >= 0.15_02
@@ -134,9 +131,6 @@
 Requires:   perl(Term::UI) >= 0.18
 Requires:   perl(Test::Harness) >= 2.62
 Requires:   perl(version) >= 0.77
-Recommends: perl(Data::Dumper)
-Recommends: perl(DBD::SQLite)
-Recommends: perl(DBIx::Simple)
 %{perl_requires}
 
 %description
@@ -146,7 +140,6 @@
 %prep
 %setup -q -n %{cpan_name}-%{version}
 %patch1
-
 find . -type f -print0 | xargs -0 chmod 644
 
 %build

++ CPANPLUS-0.9115.tar.gz -> CPANPLUS-0.9116.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPANPLUS-0.9115/ChangeLog 
new/CPANPLUS-0.9116/ChangeLog
--- old/CPANPLUS-0.9115/ChangeLog   2011-12-20 22:11:29.0 +0100
+++ new/CPANPLUS-0.9116/ChangeLog   2012-01-05 23:51:48.0 +0100
@@ -1,3 +1,9 @@
+Changes for 0.9116  Thu Jan  5 22:45:06 2012
+
+* add NAME headings in modules with POD, Debian
+  Lintian fixes, http://bugs.debian.org/65045
+* Implement reload command in the shell
+
 Changes for 0.9115  Tue Dec 20 21:10:24 2011
 
 * Added new config option 'allow_unknown_prereqs'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPANPLUS-0.9115/MANIFEST new/CPANPLUS-0.9116/MANIFEST
--- old/CPANPLUS-0.9115/MANIFEST2011-12-19 15:43:29.0 +0100
+++ new/CPANPLUS-0.9116/MANIF

commit package-translations for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package package-translations for 
openSUSE:Factory checked in at 2012-02-17 12:07:14

Comparing /work/SRC/openSUSE:Factory/package-translations (Old)
 and  /work/SRC/openSUSE:Factory/.package-translations.new (New)


Package is "package-translations", Maintainer is "co...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/package-translations/package-translations.changes
2012-02-16 14:59:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.package-translations.new/package-translations.changes
   2012-02-17 12:07:17.0 +0100
@@ -2 +2 @@
-Tue Feb 14 16:13:32 CET 2012 - co...@suse.com
+Thu Feb 16 16:13:34 CET 2012 - co...@suse.com
@@ -4 +4 @@
-- automated update on 2012-02-14
+- automated update on 2012-02-16



Other differences:
--
++ package-translations.tar.bz2 ++
Files old/mo/package-translations-ja.mo and new/mo/package-translations-ja.mo 
differ

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



commit ntfs-3g_ntfsprogs for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package ntfs-3g_ntfsprogs for 
openSUSE:Factory checked in at 2012-02-17 12:07:00

Comparing /work/SRC/openSUSE:Factory/ntfs-3g_ntfsprogs (Old)
 and  /work/SRC/openSUSE:Factory/.ntfs-3g_ntfsprogs.new (New)


Package is "ntfs-3g_ntfsprogs", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/ntfs-3g_ntfsprogs/ntfs-3g_ntfsprogs.changes  
2012-02-10 17:18:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.ntfs-3g_ntfsprogs.new/ntfs-3g_ntfsprogs.changes 
2012-02-17 12:07:05.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 16 21:09:25 UTC 2012 - crrodrig...@opensuse.org
+
+- Libraries back to %{_libdir}, /usr merge project.
+
+---



Other differences:
--
++ ntfs-3g_ntfsprogs.spec ++
--- /var/tmp/diff_new_pack.iEZbry/_old  2012-02-17 12:07:12.0 +0100
+++ /var/tmp/diff_new_pack.iEZbry/_new  2012-02-17 12:07:12.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   ntfs-3g_ntfsprogs
 Summary:NTFS Support in Userspace
 License:GPL-2.0+
@@ -99,16 +100,12 @@
 # needs to be carefully reviewed and tested, so we do not change the code now:
 #
 CFLAGS="$RPM_OPT_FLAGS -Wformat -Wformat-security -W -Wno-sign-compare" \
-%configure --exec-prefix=/ --disable-static --with-pic --libdir=/%{_lib} 
--disable-ldconfig
+%configure --exec-prefix=/ --disable-static --with-pic --disable-ldconfig
 make %{?jobs:-j%jobs}
 
 %install
 %makeinstall
-# Move pkg-config to the real libdir
-%{__mkdir_p} %{buildroot}%{_libdir}/pkgconfig
-%{__mv} -v %{buildroot}/%{_lib}/pkgconfig/*.pc 
%{buildroot}%{_libdir}/pkgconfig/
-%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/libntfs-3g.so) 
%{buildroot}%{_libdir}/libntfs-3g.so
-%{__rm} -v %{buildroot}/%{_lib}/libntfs-3g.{so,la}
+%{__rm} -v %{buildroot}%{_libdir}/libntfs-3g.la
 # Hal stuff for mounting on hotplug.
 %{__mkdir_p} %{buildroot}%{_datadir}/hal/fdi/policy/10osvendor/
 %{__install} -m 644 %{SOURCE2} 
%{buildroot}%{_datadir}/hal/fdi/policy/10osvendor/21-storage-ntfs-3g.fdi
@@ -176,7 +173,7 @@
 %files -n libntfs-3g83
 %defattr(-,root,root,-)
 %doc COPYING.LIB
-/%{_lib}/libntfs-3g.so.*
+%{_libdir}/libntfs-3g.so.*
 
 %files -n libntfs-3g-devel
 %defattr(-,root,root,-)


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



commit NetworkManager-vpnc for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-vpnc for 
openSUSE:Factory checked in at 2012-02-17 12:06:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-vpnc/NetworkManager-vpnc.changes  
2012-01-09 11:16:08.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-vpnc.new/NetworkManager-vpnc.changes 
2012-02-17 12:06:56.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:51:06 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ NetworkManager-vpnc.spec ++
--- /var/tmp/diff_new_pack.JGEb4y/_old  2012-02-17 12:06:57.0 +0100
+++ /var/tmp/diff_new_pack.JGEb4y/_new  2012-02-17 12:06:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager-vpnc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   NetworkManager-vpnc
 Summary:NetworkManager VPN Support for vpnc
+License:GPL-2.0+
+Group:  Productivity/Networking/System
 Version:0.9.2.0
-Release:1
+Release:0
 # FIXME .desktop icon is currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
-License:GPLv2+
-Group:  Productivity/Networking/System
 Url:http://people.redhat.com/dcbw/NetworkManager/
 Source0:
http://download.gnome.org/sources/NetworkManager-vpnc/0.9/%{name}-%{version}.tar.bz2
 Source1:NetworkManager-vpnc-nm-vpnc.png
@@ -35,10 +33,10 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(NetworkManager)
 BuildRequires:  pkgconfig(dbus-glib-1)
-BuildRequires:  pkgconfig(libnm-glib)
-BuildRequires:  pkgconfig(libnm-util)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(libnm-glib)
+BuildRequires:  pkgconfig(libnm-util)
 Requires:   vpnc %{name}-frontend
 Requires:   NetworkManager >= 0.8.995
 Requires:   gnome-keyring
@@ -50,7 +48,6 @@
 NetworkManager-vpnc provides VPN support to NetworkManager for vpnc.
 
 %package gnome
-License:GPLv2+
 Summary:NetworkManager VPN Support for vpnc
 Group:  Productivity/Networking/System
 Provides:   %{name}-frontend


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



commit NetworkManager-pptp for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-pptp for 
openSUSE:Factory checked in at 2012-02-17 12:06:46

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


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

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-pptp/NetworkManager-pptp.changes  
2012-01-09 11:16:07.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-pptp.new/NetworkManager-pptp.changes 
2012-02-17 12:06:47.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:51:02 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ NetworkManager-pptp.spec ++
--- /var/tmp/diff_new_pack.4ywp2m/_old  2012-02-17 12:06:48.0 +0100
+++ /var/tmp/diff_new_pack.4ywp2m/_new  2012-02-17 12:06:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager-pptp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,15 @@
 #
 
 
-
 Name:   NetworkManager-pptp
 %define pppd_plugin_dir %(rpm -ql ppp | grep -m1 pppd/[0-9]*)
 Summary:NetworkManager VPN support for PPTP
+License:GPL-2.0+
+Group:  Productivity/Networking/System
 Version:0.9.2.0
-Release:1
+Release:0
 # FIXME .desktop icons are currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
-License:GPLv2+
-Group:  Productivity/Networking/System
 Url:http://www.gnome.org/projects/NetworkManager
 Source0:
http://download.gnome.org/sources/NetworkManager-pptp/0.9/%{name}-%{version}.tar.bz2
 Source1:gnome-mime-application-x-pptp-settings.png
@@ -35,10 +34,10 @@
 BuildRequires:  ppp-devel
 BuildRequires:  pkgconfig(NetworkManager)
 BuildRequires:  pkgconfig(dbus-glib-1)
-BuildRequires:  pkgconfig(libnm-glib)
-BuildRequires:  pkgconfig(libnm-util)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(libnm-glib)
+BuildRequires:  pkgconfig(libnm-util)
 Requires:   pptp %{name}-frontend = %{version}
 Requires:   NetworkManager >= 0.8.995
 Recommends: %{name}-lang
@@ -48,7 +47,6 @@
 NetworkManager-pptp provides VPN support to NetworkManager for PPTP.
 
 %package gnome
-License:GPLv2+
 Summary:NetworkManager VPN support for PPTP
 Group:  Productivity/Networking/System
 Provides:   %{name}-frontend = %{version}


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



commit NetworkManager-openvpn for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-openvpn for 
openSUSE:Factory checked in at 2012-02-17 12:06:40

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


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

Changes:

--- 
/work/SRC/openSUSE:Factory/NetworkManager-openvpn/NetworkManager-openvpn.changes
2012-01-09 11:16:05.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-openvpn.new/NetworkManager-openvpn.changes
   2012-02-17 12:06:43.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:50:59 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ NetworkManager-openvpn.spec ++
--- /var/tmp/diff_new_pack.oqHQkz/_old  2012-02-17 12:06:46.0 +0100
+++ /var/tmp/diff_new_pack.oqHQkz/_new  2012-02-17 12:06:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager-openvpn
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   NetworkManager-openvpn
 Summary:NetworkManager VPN support for OpenVPN
+License:GPL-2.0+
+Group:  Productivity/Networking/System
 Version:0.9.2.0
-Release:1
+Release:0
 # FIXME .desktop icons are currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
-License:GPLv2+
-Group:  Productivity/Networking/System
 Url:http://www.gnome.org/projects/NetworkManager
 Source0:
http://download.gnome.org/sources/NetworkManager-openvpn/0.9/%{name}-%{version}.tar.bz2
 Source1:NetworkManager-openvpn-openvpn-settings.png
@@ -34,10 +32,10 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(NetworkManager)
 BuildRequires:  pkgconfig(dbus-glib-1)
-BuildRequires:  pkgconfig(libnm-glib)
-BuildRequires:  pkgconfig(libnm-util)
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(libnm-glib)
+BuildRequires:  pkgconfig(libnm-util)
 Requires:   openvpn %{name}-frontend
 Requires:   NetworkManager >= 0.8.995
 Recommends: %{name}-lang
@@ -49,7 +47,6 @@
 OpenVPN.
 
 %package gnome
-License:GPLv2+
 Summary:NetworkManager VPN support for OpenVPN
 Group:  Productivity/Networking/System
 Provides:   %{name}-frontend


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



commit NetworkManager-gnome for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-gnome for 
openSUSE:Factory checked in at 2012-02-17 12:06:33

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


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

Changes:

--- 
/work/SRC/openSUSE:Factory/NetworkManager-gnome/NetworkManager-gnome.changes
2012-01-09 11:15:57.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-gnome.new/NetworkManager-gnome.changes
   2012-02-17 12:06:39.0 +0100
@@ -1,0 +2,8 @@
+Wed Feb  8 20:49:26 UTC 2012 - dims...@opensuse.org
+
+- Add NetworkManager-gnome-link-gkr.patch: Fix linking with
+  gnome-keyring in a gconf-helpers test program.
+- Add call to autoreconf in %prep, as above patch touches the build
+  system.
+
+---

New:

  NetworkManager-gnome-link-gkr.patch



Other differences:
--
++ NetworkManager-gnome.spec ++
--- /var/tmp/diff_new_pack.S83ez5/_old  2012-02-17 12:06:40.0 +0100
+++ /var/tmp/diff_new_pack.S83ez5/_new  2012-02-17 12:06:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager-gnome
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,14 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   NetworkManager-gnome
 Url:http://www.gnome.org/projects/NetworkManager/
 Version:0.9.2.0
-Release:1
+Release:0
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
-License:GPLv2+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  NetworkManager-devel >= 0.9.1
 BuildRequires:  dbus-1-devel
@@ -38,12 +35,15 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(iso-codes)
-Group:  System/GUI/GNOME
 Summary:GNOME applications for use with NetworkManager
+License:GPL-2.0+
+Group:  System/GUI/GNOME
 Source: 
http://download.gnome.org/sources/network-manager-applet/0.9/network-manager-applet-%{version}.tar.bz2
 Source1:nm-icons.tar.gz
 # PATCH-FIX-OPENSUSE NetworkManager-gnome-OnlyShowIn.patch -- Add OnlyShowIn 
key to autostart file
 Patch1: NetworkManager-gnome-OnlyShowIn.patch
+# PATCH-FIX-UPSTREAM NetworkManager-gnome-link-gkr.patch dims...@opensuse.org 
-- Fix linking with gnome-keyring in a gconf-helpers test program (git commit 
9c01a7a)
+Patch2: NetworkManager-gnome-link-gkr.patch
 Provides:   NetworkManager-client
 Requires:   NetworkManager >= 0.9.1
 # needed for translated country names
@@ -59,7 +59,6 @@
 NetworkManager, including a panel applet for wireless networks.
 
 %package -n libnm-gtk0
-License:GPLv2+
 Summary:NetworkManager Gtk+ dialogs
 Group:  System/Libraries
 
@@ -67,7 +66,6 @@
 This library provides GTK+ dialogs for NetworkManager integration.
 
 %package -n libnm-gtk-devel
-License:GPLv2+
 Summary:NetworkManager Gtk+ dialogs -- Development Files
 Group:  Development/Libraries/GNOME
 Requires:   libnm-gtk0 = %{version}
@@ -80,8 +78,11 @@
 %setup -q -n network-manager-applet-%{version} -a 1
 translation-update-upstream
 %patch1 -p1
+%patch2 -p1
 
 %build
+# Needed by patch2
+autoreconf -fi
 %configure \
 --disable-static \
 --disable-maintainer-mode \

++ NetworkManager-gnome-link-gkr.patch ++
>From 9c01a7a03b0914453308affe68ceee8ccd5324cd Mon Sep 17 00:00:00 2001
From: Kjartan Maraas 
Date: Tue, 24 Jan 2012 11:32:24 +
Subject: Fix linking with gnome-keyring in a gconf-helpers test program.

---
diff --git a/src/gconf-helpers/tests/Makefile.am 
b/src/gconf-helpers/tests/Makefile.am
index b046859..8226347 100644
--- a/src/gconf-helpers/tests/Makefile.am
+++ b/src/gconf-helpers/tests/Makefile.am
@@ -18,7 +18,8 @@ test_upgrade_CPPFLAGS = \
 
 test_upgrade_LDADD = \
${builddir}/../libgconf-helpers-test.la \
-   $(NMA_LIBS)
+   $(NMA_LIBS) \
+   $(GNOME_KEYRING_LIBS)
 
 check-local: test-upgrade
$(abs_builddir)/test-upgrade
--
cgit v0.9.0.2

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



commit multitail for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package multitail for openSUSE:Factory 
checked in at 2012-02-17 12:06:30

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


Package is "multitail", Maintainer is "m...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/multitail/multitail.changes  2012-01-04 
07:25:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.multitail.new/multitail.changes 2012-02-17 
12:06:37.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:50:44 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ multitail.spec ++
--- /var/tmp/diff_new_pack.VVIev3/_old  2012-02-17 12:06:38.0 +0100
+++ /var/tmp/diff_new_pack.VVIev3/_new  2012-02-17 12:06:38.0 +0100
@@ -8,7 +8,7 @@
 Version:5.2.9
 Release:0
 Group:  System/X11/Terminals
-License:GNU General Public License version 2 or later (GPLv2 or later)
+License:GPL-2.0+
 URL:http://www.vanheusden.com/multitail/
 Source: http://www.vanheusden.com/multitail/multitail-%{version}.tgz
 Patch1: multitail-bufferoverflowstrncat.patch

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



commit mtdev for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mtdev for openSUSE:Factory checked 
in at 2012-02-17 12:06:25

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


Package is "mtdev", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mtdev/mtdev.changes  2012-01-17 
16:11:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.mtdev.new/mtdev.changes 2012-02-17 
12:06:36.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 12 18:48:05 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Add patch to fix use of implicitly-defined functions
+
+---

New:

  mtdev-implicit.diff



Other differences:
--
++ mtdev.spec ++
--- /var/tmp/diff_new_pack.QndQwV/_old  2012-02-17 12:06:37.0 +0100
+++ /var/tmp/diff_new_pack.QndQwV/_new  2012-02-17 12:06:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mtdev
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,18 @@
 #
 
 
+
 Name:   mtdev
 BuildRequires:  pkgconfig
 Summary:Multitouch Protocol Translation Library
-Version:1.1.0
-Release:1
 License:MIT
 Group:  System/Libraries
+Version:1.1.0
+Release:0
 Source: http://bitmath.org/code/mtdev/mtdev-%{version}.tar.bz2
 Patch1: U_mtdev_close-should-ignore-NULL-devices.patch
 Patch2: U_Return-EINVAL-for-invalid-parameters-on-mtdev_init.patch
+Patch3: mtdev-implicit.diff
 Url:http://bitmath.org/code/mtdev/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -34,14 +36,12 @@
 
 %package -n libmtdev1
 Summary:Multitouch Protocol Translation Library
-License:MIT
 Group:  System/Libraries
 
 %description -n libmtdev1
 The mtdev is a stand-alone library which transforms all variants of kernel MT 
events to the slotted type B protocol. The events put into mtdev may be from 
any MT device, specifically type A without contact tracking, type A with 
contact tracking, or type B with contact tracking. See the kernel documentation 
for further details. 
 
 %package devel
-License:MIT
 Summary:Development package for mtdev library
 Group:  Development/Libraries/C and C++
 Requires:   libmtdev1 = %{version} glibc-devel
@@ -53,10 +53,11 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch -P 3 -p1
 
 %build
 %configure --disable-static
-%{__make}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
@@ -66,9 +67,6 @@
 
 %postun -n libmtdev1 -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %doc COPYING ChangeLog README

++ mtdev-implicit.diff ++
From: Jan Engelhardt 
Date: 2012-02-12 19:46:35.478843702 +0100

build: resolve compiler warnings due to use of impl.-decl. fns

match_four.c: In function 'set_dist':
match_four.c:79:4: warning: implicit declaration of function 'abs' 
[-Wimplicit-function-declaration]
mtdev-kernel.c: In function 'main':
mtdev-kernel.c:130:2: warning: implicit declaration of function 'atoi' 
[-Wimplicit-function-declaration]

---
 src/match_four.c|1 +
 test/mtdev-kernel.c |3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

Index: mtdev-1.1.0/src/match_four.c
===
--- mtdev-1.1.0.orig/src/match_four.c
+++ mtdev-1.1.0/src/match_four.c
@@ -1,3 +1,4 @@
+#include 
 #include "match.h"
 #include 
 
Index: mtdev-1.1.0/test/mtdev-kernel.c
===
--- mtdev-1.1.0.orig/test/mtdev-kernel.c
+++ mtdev-1.1.0/test/mtdev-kernel.c
@@ -26,6 +26,7 @@
  *
  /
 
+#include 
 #include <../src/common.h>
 #include 
 #include 
@@ -127,7 +128,7 @@ int main(int argc, char *argv[])
return 1;
}
 
-   eslot = atoi(argv[1]) + 1;
+   eslot = strtol(argv[1], NULL, 0) + 1;
if (eslot > SLOT_CNT) {
fprintf(stderr, "allowed slot range: 2 - %d\n", SLOT_MAX);
return 1;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit MozillaThunderbird for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:Factory checked in at 2012-02-17 12:06:18

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


Package is "MozillaThunderbird", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/MozillaThunderbird/MozillaThunderbird.changes
2012-02-14 19:03:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.MozillaThunderbird.new/MozillaThunderbird.changes   
2012-02-17 12:06:19.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 10:54:42 UTC 2012 - w...@rosenauer.org
+
+- update to Thunderbird 10.0.2 (bnc#747328)
+  * CVE-2011-3026 (bmo#727401)
+libpng: integer overflow leading to heap-buffer overflow
+
+---

Old:

  l10n-10.0.1.tar.bz2
  thunderbird-10.0.1-source.tar.bz2

New:

  l10n-10.0.2.tar.bz2
  thunderbird-10.0.2-source.tar.bz2



Other differences:
--
++ MozillaThunderbird.spec ++
--- /var/tmp/diff_new_pack.YQG6nT/_old  2012-02-17 12:06:35.0 +0100
+++ /var/tmp/diff_new_pack.YQG6nT/_new  2012-02-17 12:06:35.0 +0100
@@ -37,10 +37,10 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  yasm
 BuildRequires:  zip
-%define mainversion 10.0.1
+%define mainversion 10.0.2
 Version:%{mainversion}
 Release:0
-%define releasedate 2012020800
+%define releasedate 2012021500
 Provides:   thunderbird = %{version}
 Summary:The Stand-Alone Mozilla Mail Component
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.YQG6nT/_old  2012-02-17 12:06:35.0 +0100
+++ /var/tmp/diff_new_pack.YQG6nT/_new  2012-02-17 12:06:35.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/comm-$CHANNEL"
-RELEASE_TAG="THUNDERBIRD_10_0_1_RELEASE"
-VERSION="10.0.1"
+RELEASE_TAG="THUNDERBIRD_10_0_2_RELEASE"
+VERSION="10.0.2"
 
 echo "cloning $BRANCH..."
 hg clone http://hg.mozilla.org/$BRANCH thunderbird

++ l10n-10.0.1.tar.bz2 -> l10n-10.0.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/MozillaThunderbird/l10n-10.0.1.tar.bz2 
/work/SRC/openSUSE:Factory/.MozillaThunderbird.new/l10n-10.0.2.tar.bz2 differ: 
char 11, line 1

++ thunderbird-10.0.1-source.tar.bz2 -> thunderbird-10.0.2-source.tar.bz2 
++
/work/SRC/openSUSE:Factory/MozillaThunderbird/thunderbird-10.0.1-source.tar.bz2 
/work/SRC/openSUSE:Factory/.MozillaThunderbird.new/thunderbird-10.0.2-source.tar.bz2
 differ: char 11, line 1

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



commit mkinitrd for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:Factory 
checked in at 2012-02-17 12:06:13

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


Package is "mkinitrd", Maintainer is "mma...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/mkinitrd/mkinitrd.changes2012-02-14 
11:25:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.mkinitrd.new/mkinitrd.changes   2012-02-17 
12:06:15.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb 15 14:58:47 UTC 2012 - mma...@suse.cz
+
+- Simplify calling of get_kernel_version.
+
+---
+Wed Feb 15 13:55:39 UTC 2012 - m...@suse.de
+
+- Add support for ARM uImages.
+
+---



Other differences:
--
++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.0/mkinitrd.changes 
new/mkinitrd-2.7.0/mkinitrd.changes
--- old/mkinitrd-2.7.0/mkinitrd.changes 2012-02-09 12:19:05.0 +0100
+++ new/mkinitrd-2.7.0/mkinitrd.changes 2012-02-15 15:59:39.0 +0100
@@ -1,4 +1,14 @@
 ---
+Wed Feb 15 14:58:47 UTC 2012 - mma...@suse.cz
+
+- Simplify calling of get_kernel_version.
+
+---
+Wed Feb 15 13:55:39 UTC 2012 - m...@suse.de
+
+- Add support for ARM uImages.
+
+---
 Thu Feb  9 10:57:19 UTC 2012 - lchiqui...@suse.com
 
 - Install /boot/vmlinux for self compiled kernels in the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.0/sbin/mkinitrd 
new/mkinitrd-2.7.0/sbin/mkinitrd
--- old/mkinitrd-2.7.0/sbin/mkinitrd2012-02-09 12:19:05.0 +0100
+++ new/mkinitrd-2.7.0/sbin/mkinitrd2012-02-15 15:59:39.0 +0100
@@ -141,6 +141,15 @@
 exit
 }
 
+kernel_version_from_image() {
+local kernel_image=$1 kernel_image_gz=${1//uImage/vmlinux}.gz
+
+if /sbin/get_kernel_version "$kernel_image" 2>/dev/null; then
+return
+fi
+/sbin/get_kernel_version "$kernel_image_gz" 2>/dev/null
+}
+
 default_kernel_images() {
 local regex kernel_image kernel_version version_version initrd_image
 local qf='%{NAME}-%{VERSION}-%{RELEASE}\n'
@@ -155,6 +164,9 @@
 i386|x86_64)
 regex='vmlinuz'
 ;;
+arm*)
+regex='uImage'
+;;
 *)  regex='vmlinu.'
 ;;
 esac
@@ -176,8 +188,7 @@
 
 [ -L "/boot/$kernel_image" ] && continue
 [ "${kernel_image%%.gz}" != "$kernel_image" ] && continue
-kernel_version=$(/sbin/get_kernel_version \
- /boot/$kernel_image 2> /dev/null)
+kernel_version=$(kernel_version_from_image "/boot/$kernel_image")
 initrd_image=$(echo $kernel_image | sed -e "s|${regex}|initrd|")
 if [ "$kernel_image" != "$initrd_image" -a \
  -n "$kernel_version" -a \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.0/scripts/setup-done.sh 
new/mkinitrd-2.7.0/scripts/setup-done.sh
--- old/mkinitrd-2.7.0/scripts/setup-done.sh2012-02-09 12:19:05.0 
+0100
+++ new/mkinitrd-2.7.0/scripts/setup-done.sh2012-02-15 15:59:39.0 
+0100
@@ -17,6 +17,14 @@
 then
 oops 8 "Failed to build initrd"
 fi
+
+arch=$(uname -i)
+if [[ $arch =~ arm ]];then
+   mkimage -A arm -O linux -T ramdisk -C none -a 0x0 -e 0x0 \
+   -n 'Initrd' -d  $tmp_initrd $tmp_initrd.uboot
+   rm -f $tmp_initrd
+   tmp_initrd=$tmp_initrd.uboot
+fi
 popd > /dev/null 2>&1
 if ! cp -f $tmp_initrd $initrd_image ; then
 oops 8 "Failed to install initrd"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.0/scripts/setup-prepare.sh 
new/mkinitrd-2.7.0/scripts/setup-prepare.sh
--- old/mkinitrd-2.7.0/scripts/setup-prepare.sh 2012-02-09 12:19:05.0 
+0100
+++ new/mkinitrd-2.7.0/scripts/setup-prepare.sh 2012-02-15 15:59:39.0 
+0100
@@ -113,7 +113,7 @@
 error 1 "No kernel image $kernel_image found"
 fi
 
-kernel_version=$(/sbin/get_kernel_version $kernel_image)
+kernel_version=$(kernel_version_from_image $kernel_image)
 modules_dir=$root_dir/lib/modules/$kernel_version
 
 #echo -e "Kernel version:\t$kernel_version"

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



commit MesaGLw for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package MesaGLw for openSUSE:Factory checked 
in at 2012-02-17 12:06:09

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


Package is "MesaGLw", Maintainer is "sndir...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/MesaGLw/MesaGLw.changes  2011-10-04 
18:06:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.MesaGLw.new/MesaGLw.changes 2012-02-17 
12:06:11.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 13 03:38:40 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Try shlib policy on the package
+
+---



Other differences:
--
++ MesaGLw.spec ++
--- /var/tmp/diff_new_pack.FCW1mV/_old  2012-02-17 12:06:12.0 +0100
+++ /var/tmp/diff_new_pack.FCW1mV/_new  2012-02-17 12:06:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package MesaGLw
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   MesaGLw
-BuildRequires:  Mesa-devel openmotif-devel
+%define lname  Mesa-libGLw1
+BuildRequires:  Mesa-devel
+BuildRequires:  openmotif-devel
 Url:http://www.mesa3d.org
-License:MIT
-Group:  System/Libraries
 Provides:   Mesa:%{_libdir}/libGLw.so.1 
-AutoReqProv:on
 Version:7.10.2
-Release:1
+Release:0
 Summary:Mesa Widget library
+License:MIT
+Group:  Development/Libraries/C and C++
 Source: MesaLib-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -40,11 +40,22 @@
 
 Brian Paul
 
+%package -n %lname
+Summary:Mesa Widget library
+Group:  System/Libraries
+Provides:   libGLw1 = %version-%release
+Conflicts:  otherproviders(libGLw1)
+# O/P added in 12.2
+Provides:   MesaGLw = %version-%release
+Obsoletes:  MesaGLw < %version-%release
+
+%description -n %lname
+Widget library for Mesa.
+
 %package devel
-License:MIT
-Requires:   MesaGLw = %version Mesa-devel xorg-x11-devel
+Requires:   Mesa-libGLw1 = %version Mesa-devel xorg-x11-devel
 Summary:Libraries, includes and more to develop MesaGLw applications
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
 Provides:   Mesa-devel:%{_libdir}/libGLw.so
 
 %description devel
@@ -67,7 +78,7 @@
 --enable-opengl --with-driver=xlib \
 --enable-glw --enable-motif 
 cd src/glw/
-%{__make} %{?jobs:-j%jobs} OPT_FLAGS="$RPM_OPT_FLAGS"
+make %{?_smp_mflags} OPT_FLAGS="$RPM_OPT_FLAGS"
 
 %install
 mkdir -p $RPM_BUILD_ROOT%{_libdir} \
@@ -76,21 +87,18 @@
 install -m 644 src/glw/*.h $RPM_BUILD_ROOT/usr/include/GL
 cp src/glw/README .
 
-%clean
-#rm -rf $RPM_BUILD_ROOT
-
-%post -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%postun -p /sbin/ldconfig
+%postun -n %lname -p /sbin/ldconfig
 
-%files
+%files -n %lname
 %defattr(-,root,root)
 %doc README
-%{_libdir}/libGLw.so.*
+%{_libdir}/libGLw.so.1*
 
 %files devel
 %defattr(-,root,root)
-/usr/include/GL/GLw*.h
+/usr/include/GL
 %{_libdir}/libGLw.so
 
 %changelog

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



commit Mesa-demo for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package Mesa-demo for openSUSE:Factory 
checked in at 2012-02-17 12:06:04

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


Package is "Mesa-demo", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/Mesa-demo/Mesa-demo.changes  2012-02-14 
11:25:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.Mesa-demo.new/Mesa-demo.changes 2012-02-17 
12:06:06.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 03:08:38 UTC 2012 - jeng...@medozas.de
+
+- Update package BuildRequires to use pkgconfig symbols
+
+---



Other differences:
--
++ Mesa-demo.spec ++
--- /var/tmp/diff_new_pack.6fsyFV/_old  2012-02-17 12:06:07.0 +0100
+++ /var/tmp/diff_new_pack.6fsyFV/_new  2012-02-17 12:06:07.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package Mesa-demo (Version 7.9)
+# spec file for package Mesa-demo
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,24 +15,30 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Version:8.0.1
 Release:0
 
 Name:   Mesa-demo
-License:MIT
 Summary:Mesa demo programs for the OpenGL stack
-Url:http://www.mesa3d.org
+License:MIT
 Group:  System/Libraries
+Url:http://www.mesa3d.org
 Source: mesa-demos-%{version}.tar.bz2
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch0: u_mesa-demos_missing-libs.diff
+BuildRequires:  autoconf >= 2.59
 BuildRequires:  automake
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-c++
 BuildRequires:  glew-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  pkgconfig
-BuildRequires:  xorg-x11-devel
+BuildRequires:  pkgconfig(gl)
+BuildRequires:  pkgconfig(glew)
+BuildRequires:  pkgconfig(glu)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xext)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -53,11 +59,11 @@
 * OpenGL is a trademark of Silicon Graphics Incorporated.
 
 %prep
-%setup -n mesa-demos-%{version} -b0
+%setup -qn mesa-demos-%{version} -b0
 %patch0 -p0
 
 %build
-%configure --bindir=/usr/%{_lib}/mesa-demos/bin
+%configure --bindir=%_libdir/mesa-demos/bin
 make %{?_smp_mflags}
 
 %install

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



commit Mesa for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2012-02-17 12:06:00

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


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

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2011-12-12 
17:03:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2012-02-17 
12:06:02.0 +0100
@@ -1,0 +2,13 @@
+Sun Feb 12 19:24:03 UTC 2012 - jeng...@medozas.de
+
+- Update dependencies according to configure.ac,
+  use pkgconfig symbols
+- Parallel build with %_smp_mflags
+- Remove redundant tags/sections
+
+---
+Thu Feb  9 20:01:37 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.QIZIfv/_old  2012-02-17 12:06:03.0 +0100
+++ /var/tmp/diff_new_pack.QIZIfv/_new  2012-02-17 12:06:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package Mesa
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -14,31 +14,47 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
+#
 %define _version 7.11.1
 
 Version:7.11.1
 Release:0
 
 Name:   Mesa
+BuildRequires:  autoconf >= 2.59
 BuildRequires:  automake
 BuildRequires:  bison
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  gcc-c++
-BuildRequires:  libdrm-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  libtalloc-devel
-BuildRequires:  libudev-devel
+BuildRequires:  libtool
 BuildRequires:  libxml2-python
 BuildRequires:  pkgconfig
 BuildRequires:  python-base
-BuildRequires:  xorg-x11-devel
+BuildRequires:  xorg-x11-util-devel
+BuildRequires:  pkgconfig(dri2proto) >= 2.1
+BuildRequires:  pkgconfig(glproto) >= 1.4.11
+BuildRequires:  pkgconfig(libdrm) >= 2.4.24
+BuildRequires:  pkgconfig(libdrm_intel) >= 2.4.24
+BuildRequires:  pkgconfig(libdrm_nouveau) >= 0.6
+BuildRequires:  pkgconfig(libdrm_radeon) >= 2.4.24
+BuildRequires:  pkgconfig(libudev) > 150
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(x11-xcb)
+BuildRequires:  pkgconfig(xcb-dri2)
+BuildRequires:  pkgconfig(xcb-glx)
+BuildRequires:  pkgconfig(xdamage)
+BuildRequires:  pkgconfig(xext)
+BuildRequires:  pkgconfig(xfixes)
+BuildRequires:  pkgconfig(xxf86vm)
 %ifarch %ix86 x86_64
 BuildRequires:  llvm-devel
 %endif
 Url:http://www.mesa3d.org
-License:MIT
-Group:  System/Libraries
 Provides:   xorg-x11-Mesa = %{version} intel-i810-Mesa = %{version} Mesa7 
= %{version}
 Obsoletes:  xorg-x11-Mesa < %{version} intel-i810-Mesa < %{version} Mesa7 
< %{version}
 Obsoletes:  Mesa-nouveau3d
@@ -49,6 +65,8 @@
 %endif
 #
 Summary:System for rendering interactive 3-D graphics
+License:MIT
+Group:  System/Libraries
 Source: MesaLib-%{_version}.tar.bz2
 Source2:baselibs.conf
 Source3:README.updates
@@ -84,7 +102,7 @@
 Brian Paul
 
 %package devel
-Requires:   Mesa = %version xorg-x11-devel libdrm-devel libudev-devel
+Requires:   Mesa = %version libdrm-devel libudev-devel
 Summary:Libraries, includes and more to develop Mesa applications
 Group:  Development/Libraries/X11
 # bug437293
@@ -167,7 +185,7 @@
 %endif
--disable-glut \
CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 make install DESTDIR=$RPM_BUILD_ROOT
 # build and install Indirect Rendering only libGL
 make realclean
@@ -178,13 +196,13 @@
--with-gallium-drivers="" \
CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
 sed -i 's/GL_LIB = .*/GL_LIB = IndirectGL/g' configs/autoconf
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 cp -a %{_lib}/libIndirectGL.so.* %{_lib}/libOSMesa.so* \
   $RPM_BUILD_ROOT/usr/%{_lib}
 for dir in ../xc/doc/man/{GL/gl,GL/glx,GLU}; do
 pushd $dir
   xmkmf -a
-  make %{?jobs:-j%jobs};
+  make %{?_smp_mflags}
   make install.man DESTDIR=$RPM_BUILD_ROOT MANPATH=%{_mandir} LIBMANSUFFIX=3gl
 popd
 done
@@ -197,9 +215,6 @@
 install -m 644 $RPM_SOURCE_DIR/drirc $RPM_BUILD_ROOT/etc
 %fdupes -s $RPM_BUILD_ROOT/%_mandir
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig

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

commit lzo for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package lzo for openSUSE:Factory checked in 
at 2012-02-17 12:05:55

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


Package is "lzo", Maintainer is "mrueck...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/lzo/lzo.changes  2011-09-26 17:06:00.0 
+0200
+++ /work/SRC/openSUSE:Factory/.lzo.new/lzo.changes 2012-02-17 
12:05:57.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 11 19:32:14 UTC 2012 - crrodrig...@opensuse.org
+
+- move libraries back to %{_libdir}, /usr merge project 
+
+---



Other differences:
--
++ lzo.spec ++
--- /var/tmp/diff_new_pack.Ajjqnl/_old  2012-02-17 12:05:58.0 +0100
+++ /var/tmp/diff_new_pack.Ajjqnl/_new  2012-02-17 12:05:58.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lzo
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,14 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   lzo
 Url:http://www.oberhumer.com/opensource/lzo/
 Version:2.06
-Release:1
-Group:  Development/Libraries/C and C++
+Release:0
 Source: lzo-%{version}.tar.bz2
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,6 +31,7 @@
 #
 Summary:A Real-Time Data Compression Library
 License:GPL-2.0
+Group:  Development/Libraries/C and C++
 
 %description
 LZO is a portable lossless data compression library written in ANSI C.
@@ -51,9 +49,8 @@
 %define library_package liblzo2-2
 
 %package -n liblzo2-2
-License:GPL-2.0
-Group:  Development/Libraries/C and C++
 Summary:A Real-Time Data Compression Library
+Group:  Development/Libraries/C and C++
 Provides:   lzo = %{version}-%{release}
 Obsoletes:  lzo < %{version}
 # bug437293
@@ -76,10 +73,9 @@
 Markus Franz Xaver Johannes Oberhumer 
 
 %package devel
-License:GPL-2.0
-Group:  Development/Languages/C and C++
 Requires:   %{library_package} = %{version}
 Summary:Development files for lzo
+Group:  Development/Languages/C and C++
 # bug437293
 %ifarch ppc64
 Obsoletes:  lzo-devel-64bit
@@ -106,7 +102,6 @@
 export CFLAGS="%optflags -fvisibility=hidden"
 %configure --enable-shared \
--disable-static \
-   --libdir=/%{_lib} \
--disable-silent-rules \
--docdir=%{_docdir}/%{name}-devel
 
@@ -125,12 +120,7 @@
 
 %install
 %makeinstall
-%{__rm} -v %{buildroot}/%{_lib}/liblzo2.la
-#
-%{__install} -d -m 0755 %{buildroot}%{_libdir}
-#%{__mv} -v %{buildroot}{/%{_lib},%{_libdir}}/liblzo2.so
-%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/liblzo2.so) 
%{buildroot}%{_libdir}/liblzo2.so
-%{__rm} -v %{buildroot}/%{_lib}/liblzo2.so
+%{__rm} -v %{buildroot}%{_libdir}/liblzo2.la
 
 %clean
 %{__rm} -rf %{buildroot}
@@ -141,7 +131,7 @@
 
 %files -n %{library_package}
 %defattr(-,root,root)
-/%{_lib}/liblzo2.so.*
+%{_libdir}/liblzo2.so.*
 
 %files devel
 %defattr (-,root,root)

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



commit libzeitgeist for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libzeitgeist for openSUSE:Factory 
checked in at 2012-02-17 12:05:50

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


Package is "libzeitgeist", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/libzeitgeist/libzeitgeist.changes
2011-09-23 02:11:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzeitgeist.new/libzeitgeist.changes   
2012-02-17 12:05:52.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 15 09:29:45 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.3.14:
+  + Added new zeitgeist_log_get_default, zeitgeist_log_get_version
+and zeitgeist_index_search_with_relevancies methods
+  + Updated ontology and mimetype mapping
+  + Added new origin property to ZeitgeistEvent and current_uri
+property to ZeitgeistSubject
+  + Make sure Zeitgeist is restarted after it disappears from the
+bus and a ZeitgeistLog method is called
+
+---

Old:

  libzeitgeist-0.3.12.tar.gz

New:

  libzeitgeist-0.3.14.tar.gz



Other differences:
--
++ libzeitgeist.spec ++
--- /var/tmp/diff_new_pack.K3DLRB/_old  2012-02-17 12:05:53.0 +0100
+++ /var/tmp/diff_new_pack.K3DLRB/_new  2012-02-17 12:05:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libzeitgeist
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (C) 2011 Federico Mena Quintero
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,14 +17,13 @@
 #
 
 
-
 Name:   libzeitgeist
-Version:0.3.12
-Release:1
-License:LGPL-2.1+
+Version:0.3.14
+Release:0
 Summary:Client library for interacting with the Zeitgeist daemon
-Url:https://launchpad.net/libzeitgeist
+License:LGPL-2.1+
 Group:  Productivity/Other
+Url:https://launchpad.net/libzeitgeist
 Source: %{name}-%{version}.tar.gz
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +33,6 @@
 daemon.
 
 %package -n libzeitgeist-1_0-1
-License:LGPL-2.1+
 Summary:Client library for interacting with the Zeitgeist daemon
 Group:  System/Libraries
 Recommends: zeitgeist
@@ -44,7 +42,6 @@
 daemon.
 
 %package devel
-License:LGPL-2.1+
 Summary:Client library for interacting with the Zeitgeist daemon -- 
Development Files
 Group:  Development/Libraries/GNOME
 Requires:   libzeitgeist-1_0-1 = %{version}

++ libzeitgeist-0.3.12.tar.gz -> libzeitgeist-0.3.14.tar.gz ++
 11284 lines of diff (skipped)

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



commit libXv for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXv for openSUSE:Factory checked 
in at 2012-02-17 12:05:25

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


Package is "libXv", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXv.new/libXv.changes 2012-02-17 
12:05:30.0 +0100
@@ -0,0 +1,110 @@
+---
+Sun Feb 12 01:53:35 UTC 2012 - jeng...@medozas.de
+
+- Rename xorg-x11-libXv to libXv and utilize shlib policy
+
+---
+Tue Dec 21 02:48:40 UTC 2010 - sndir...@novell.com
+
+- bumped version number to 7.6 
+
+---
+Sat Oct 30 15:47:53 UTC 2010 - sndir...@novell.com
+
+- libXv 1.0.6
+  * This minor maintenance release provides the usual recent
+collection of build configuration improvements and janitorial
+cleanups.
+
+---
+Sun Apr  4 15:59:29 CEST 2010 - sndir...@suse.de
+
+- libXv 1.0.5
+- bumped version number to 7.5 
+
+---
+Mon Dec 14 20:00:15 CET 2009 - jeng...@medozas.de
+
+- add baselibs.conf as a source
+
+---
+Sat May  2 14:42:17 CEST 2009 - e...@suse.de
+
+- revert static library and .la file removal
+  for SUSE versions <= 11.1.
+
+---
+Tue Apr 21 19:14:41 CEST 2009 - crrodrig...@suse.de
+
+- remove static libraries and "la" files 
+
+---
+Thu Sep 11 14:22:15 CEST 2008 - sndir...@suse.de
+
+- bumped release number to 7.4 
+
+---
+Thu Apr 10 12:54:45 CEST 2008 - r...@suse.de
+
+- added baselibs.conf file to build xxbit packages
+  for multilib support
+
+---
+Tue Mar 18 10:25:10 CET 2008 - sndir...@suse.de
+
+- libXv 1.0.4 
+  * nuke RCS Ids
+  * get rid of ancient XFree86 CVS Id tags
+  * convert manpages prototypes to C ANSI format
+
+---
+Sat Jan 12 04:18:22 CET 2008 - crrodrig...@suse.de
+
+- fix library-without-ldconfig* errors
+- PreReq coreutils in -devel package 
+
+---
+Sat Sep 29 12:24:03 CEST 2007 - sndir...@suse.de
+
+- bumped version to 7.3 
+
+---
+Mon Dec 18 11:01:39 CET 2006 - sndir...@suse.de
+
+- updated to release 1.0.3
+  * Makefile.am: make ChangeLog hook safer 
+
+---
+Thu Oct 26 07:29:10 CEST 2006 - sndir...@suse.de
+
+- set version to 7.2 in specfile 
+
+---
+Mon Oct  9 15:48:29 CEST 2006 - sndir...@suse.de
+
+- updated to release 1.0.2:
+  * Minor cleanup release - fixes to documentation, lint/sparse
+warning cleanups, and closed a small memory leak Coverity
+found in the out-of-memory error handling path.
+
+---
+Wed Aug  2 16:12:37 CEST 2006 - sndir...@suse.de
+
+- fix setup line 
+
+---
+Fri Jul 28 14:44:56 CEST 2006 - sndir...@suse.de
+
+- use "-fno-strict-aliasing" 
+
+---
+Thu Jul 27 11:48:13 CEST 2006 - sndir...@suse.de
+
+- use $RPM_OPT_FLAGS
+- remove existing /usr/include/X11 symlink in %pre 
+
+---
+Sat Jun 24 07:15:45 CEST 2006 - sndir...@suse.de
+
+- created package 
+

New:

  baselibs.conf
  libXv-1.0.6.tar.bz2
  libXv.changes
  libXv.spec



Other differences:
--
++ libXv.spec ++
#
# spec file for package libXv
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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 Op

commit libXtst for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXtst for openSUSE:Factory checked 
in at 2012-02-17 12:05:16

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


Package is "libXtst", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXtst.new/libXtst.changes 2012-02-17 
12:05:18.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXtst-1.2.0.tar.bz2
  libXtst.changes
  libXtst.spec



Other differences:
--
++ libXtst.spec ++
#
# spec file for package libXtst
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXtst
%define lname   libXtst6
Version:1.2.0
Release:0
Summary:Xlib-based client API for the XTEST and RECORD extensions
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXtst
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXtst/
Source: %name-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.60, automake, libtool
BuildRequires:  fdupes
BuildRequires:  pkgconfig, pkgconfig(xorg-macros) >= 1.10, pkgconfig(x11)
BuildRequires:  pkgconfig(xext) >= 1.0.99.4, pkgconfig(xi)
BuildRequires:  pkgconfig(recordproto) >= 1.13.99.1
BuildRequires:  pkgconfig(xextproto) >= 7.0.99.3
BuildRequires:  pkgconfig(inputproto)

%description
The XTEST extension is a minimal set of client and server extensions
required to completely test the X11 server with no user intervention.
This extension is not intended to support general journaling and
playback of user actions.

The RECORD extension supports the recording and reporting of all core
X protocol and arbitrary X extension protocol.

%package -n %lname
Summary:Xlib-based client API for the XTEST and RECORD extensions
Group:  System/Libraries

%description -n %lname
The XTEST extension is a minimal set of client and server extensions
required to completely test the X11 server with no user intervention.
This extension is not intended to support general journaling and
playback of user actions.

The RECORD extension supports the recording and reporting of all core
X protocol and arbitrary X extension protocol.

%package devel
Summary:Development files for the X11 XTEST and RECORD extensions
Group:  Development/Libraries/C and C++
Requires:   %lname = %version

%description devel
The XTEST extension is a minimal set of client and server extensions
required to completely test the X11 server with no user intervention.
This extension is not intended to support general journaling and
playback of user actions.

The RECORD extension supports the recording and reporting of all core
X protocol and arbitrary X extension protocol.

This package contains the development headers for the library found
in %lname.

%prep
%setup -q

%build
%configure --docdir=%_docdir/%name --disable-static
make %{?_smp_mflags}

%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la
%fdupes %buildroot

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n %lname
%defattr(-,root,root)
%_libdir/libXtst.so.6*

%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libXtst.so
%_libdir/pkgconfig/xtst.pc
%_mandir/man3/*
%_docdir/%name

%changelog
++ baselibs.conf ++
libXtst6
libXtst-devel
requires -libXtst-
requires "libXtst6- = "
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXTrap for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXTrap for openSUSE:Factory 
checked in at 2012-02-17 12:05:10

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


Package is "libXTrap", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXTrap.new/libXTrap.changes   2012-02-17 
12:05:13.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXTrap-X11R7.0-1.0.0.tar.bz2
  libXTrap.changes
  libXTrap.spec



Other differences:
--
++ libXTrap.spec ++
#
# spec file for package libFS
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXTrap
%define lname   libXTrap6
Version:1.0.0
Release:0
Summary:X event Trap extension
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXTrap
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXTrap/
Source: %name-X11R7.0-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.57, automake, libtool
BuildRequires:  pkgconfig, pkgconfig(x11), pkgconfig(xt), pkgconfig(trapproto)
BuildRequires:  pkgconfig(xext), pkgconfig(xextproto)

%description
libXTrap provides an interface to the DEC-XTRAP extension, which
allows for capture and synthesis of core input events.

%package -n %lname
Summary:X event Trap extension
Group:  System/Libraries

%description -n %lname
libXTrap provides an interface to the DEC-XTRAP extension, which
allows for capture and synthesis of core input events.

%package devel
Summary:Development files for the X event Trap extension
Group:  Development/Libraries/C and C++
Requires:   %lname = %version

%description devel
libXTrap provides an interface to the DEC-XTRAP extension, which
allows for capture and synthesis of core input events.

This package contains the development headers for the library found
in %lname.

%prep
%setup -qn %name-X11R7.0-%version

%build
%configure --disable-static
make %{?_smp_mflags}

%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n %lname
%defattr(-,root,root)
%_libdir/libXTrap.so.6*

%files devel
%defattr(-,root,root)
%_libdir/libXTrap.so
%_libdir/pkgconfig/xtrap.pc

%changelog
++ baselibs.conf ++
libXTrap6
libXTrap-devel
requires -libXTrap-
requires "libXTrap6- = "
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXres for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXres for openSUSE:Factory checked 
in at 2012-02-17 12:04:54

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


Package is "libXres", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXres.new/libXres.changes 2012-02-17 
12:04:55.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXres-1.0.5.tar.bz2
  libXres.changes
  libXres.spec



Other differences:
--
++ libXres.spec ++
#
# spec file for package libXRes
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXres
%define lname   libXRes1
Version:1.0.5
Release:0
Summary:X Resource extension client library
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXRes
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXRes/
Source: %name-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.60, automake, libtool
BuildRequires:  pkgconfig, pkgconfig(xorg-macros) >= 1.8, pkgconfig(x11)
BuildRequires:  pkgconfig(xext), pkgconfig(xextproto)
BuildRequires:  pkgconfig(resourceproto) >= 1.0

%description
libXRes provides an X Window System client interface to the Resource
extension to the X protocol. The Resource extension allows for X
clients to see and monitor the X resource usage of various clients
(pixmaps, et al).

%package -n %lname
Summary:X Resource extension client library
Group:  System/Libraries

%description -n %lname
libXRes provides an X Window System client interface to the Resource
extension to the X protocol. The Resource extension allows for X
clients to see and monitor the X resource usage of various clients
(pixmaps, et al).

%package devel
Summary:Development files for the X Resource extension library
Group:  Development/Libraries/C and C++
Requires:   %lname = %version

%description devel
libXRes provides an X Window System client interface to the Resource
extension to the X protocol. The Resource extension allows for X
clients to see and monitor the X resource usage of various clients
(pixmaps, et al).

This package contains the development headers for the library found
in %lname.

%prep
%setup -q

%build
%configure --disable-static
make %{?_smp_mflags}

%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n %lname
%defattr(-,root,root)
%_libdir/libXRes.so.1*

%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libXRes.so
%_libdir/pkgconfig/xres.pc
%_mandir/man3/*

%changelog
++ baselibs.conf ++
libXRes1
libXres-devel
requires -libXres-
requires "libXRes1- = "
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXrandr for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXrandr for openSUSE:Factory 
checked in at 2012-02-17 12:04:44

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


Package is "libXrandr", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXrandr.new/libXrandr.changes 2012-02-17 
12:04:47.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXrandr-1.3.1.tar.bz2
  libXrandr.changes
  libXrandr.spec



Other differences:
--
++ libXrandr.spec ++
#
# spec file for package libXrandr
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXrandr
%define lname   libXrandr2
Version:1.3.1
Release:0
Summary:X Resize, Rotate and Reflection extension library
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXrandr
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXrandr/
Source: %name-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.60, automake, libtool
BuildRequires:  fdupes
BuildRequires:  pkgconfig, pkgconfig(xorg-macros) >= 1.8, pkgconfig(x11)
BuildRequires:  pkgconfig(randrproto) >= 1.3, pkgconfig(xext)
BuildRequires:  pkgconfig(xextproto), pkgconfig(xrender)
BuildRequires:  pkgconfig(renderproto)

%description
The X Resize, Rotate and Reflect Extension (RandR) allows clients to
dynamically change X screens, so as to resize, to change the
orientation and layout of the root window of a screen.

%package -n %lname
Summary:X Resize, Rotate and Reflection extension library
Group:  System/Libraries

%description -n %lname
The X Resize, Rotate and Reflect Extension (RandR) allows clients to
dynamically change X screens, so as to resize, to change the
orientation and layout of the root window of a screen.

%package devel
Summary:Development files for the X Resize-Rotate-Reflection library
Group:  Development/Libraries/C and C++
Requires:   %lname = %version

%description devel
The X Resize, Rotate and Reflect Extension (RandR) allows clients to
dynamically change X screens, so as to resize, to change the
orientation and layout of the root window of a screen.

This package contains the development headers for the library found
in %lname.

%prep
%setup -q

%build
%configure --disable-static
make %{?_smp_mflags}

%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la
%fdupes %buildroot

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n %lname
%defattr(-,root,root)
%_libdir/libXrandr.so.2*

%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libXrandr.so
%_libdir/pkgconfig/xrandr.pc
%_mandir/man3/*

%changelog
++ baselibs.conf ++
libXrandr2
libXrandr-devel
requires -libXrandr-
requires "libXrandr2- = "
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXprintUtil for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXprintUtil for openSUSE:Factory 
checked in at 2012-02-17 12:04:37

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


Package is "libXprintUtil", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXprintUtil.new/libXprintUtil.changes 
2012-02-17 12:04:39.0 +0100
@@ -0,0 +1,75 @@
+---
+Sun Feb 12 01:20:11 UTC 2012 - jeng...@medozas.de
+
+- Rename xorg-x11-libXprintUtil to libXprintUtil
+  and utilize shlib policy
+
+---
+Tue Dec 21 02:46:41 UTC 2010 - sndir...@novell.com
+
+- bumped version number to 7.6 
+
+---
+Fri Apr  2 18:06:21 CEST 2010 - sndir...@suse.de
+
+- bumped version number to 7.5 
+
+---
+Mon Dec 14 20:15:29 CET 2009 - jeng...@medozas.de
+
+- add baselibs.conf as a source
+
+---
+Sat May  2 14:42:17 CEST 2009 - e...@suse.de
+
+- revert static library and .la file removal
+  for SUSE versions <= 11.1.
+
+---
+Tue Apr 21 19:40:58 CEST 2009 - crrodrig...@suse.de
+
+- remove static libraries and "la" files
+- run ldconfig in postun 
+
+---
+Thu Sep 11 14:21:59 CEST 2008 - sndir...@suse.de
+
+- bumped release number to 7.4 
+
+---
+Thu Apr 10 12:54:45 CEST 2008 - r...@suse.de
+
+- added baselibs.conf file to build xxbit packages
+  for multilib support
+
+---
+Sat Sep 29 12:23:44 CEST 2007 - sndir...@suse.de
+
+- bumped version to 7.3 
+
+---
+Thu Oct 26 07:29:06 CEST 2006 - sndir...@suse.de
+
+- set version to 7.2 in specfile 
+
+---
+Wed Aug  2 16:12:27 CEST 2006 - sndir...@suse.de
+
+- fix setup line 
+
+---
+Fri Jul 28 14:44:45 CEST 2006 - sndir...@suse.de
+
+- use "-fno-strict-aliasing" 
+
+---
+Thu Jul 27 11:46:59 CEST 2006 - sndir...@suse.de
+
+- use $RPM_OPT_FLAGS
+- remove existing /usr/include/X11 symlink in %pre 
+
+---
+Sat Jun 24 07:22:00 CEST 2006 - sndir...@suse.de
+
+- created package 
+

New:

  baselibs.conf
  libXprintUtil-X11R7.0-1.0.1.tar.bz2
  libXprintUtil.changes
  libXprintUtil.spec



Other differences:
--
++ libXprintUtil.spec ++
#
# spec file for package libXprintUtil
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXprintUtil
%define lname   libXprintUtil1
Version:1.0.1
Release:0
Summary:Xprint printer utility client library
License:MIT
Group:  Development/Libraries/C and C++
Url:http://cgit.freedesktop.org/xorg/lib/libXprintUtil/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXprintUtil
Source: %name-X11R7.0-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.57, automake, libtool
BuildRequires:  pkgconfig, pkgconfig(x11), pkgconfig(xp), pkgconfig(xt)
BuildRequires:  pkgconfig(printproto), pkgconfig(xau)

%description
libXprintUtil provides utility Xpu APIs allowing client applications
to access and manipulate information about printer capabilities from
an Xprint server.

%package -n %lname
Summary:Xprint printer utility client library
Group:  System/Libraries
# O/P added for 12.2
Provides:   xorg-x11-libXprintUtil = 7.6_%version-

commit libXprintAppUtil for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXprintAppUtil for 
openSUSE:Factory checked in at 2012-02-17 12:04:31

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


Package is "libXprintAppUtil", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXprintAppUtil.new/libXprintAppUtil.changes   
2012-02-17 12:04:33.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXprintAppUtil-X11R7.0-1.0.1.tar.bz2
  libXprintAppUtil.changes
  libXprintAppUtil.spec



Other differences:
--
++ libXprintAppUtil.spec ++
#
# spec file for package libXprintAppUtil
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXprintAppUtil
%define lname   libXprintAppUtil1
Version:1.0.1
Release:0
Summary:Xprint application utility routines
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXprintAppUtil
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXprintAppUtil/
Source: %name-X11R7.0-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.57, automake, libtool
BuildRequires:  pkgconfig, pkgconfig(x11), pkgconfig(xp), pkgconfig(xprintutil)
BuildRequires:  pkgconfig(xau)

%description
libxprintapputil provides utility Xpau APIs allowing client
applications to access information about and control Xprint jobs from
an Xprint server.

%package -n %lname
Summary:Xprint application utility routines
Group:  System/Libraries

%description -n %lname
libxprintapputil provides utility Xpau APIs allowing client
applications to access information about and control Xprint jobs from
an Xprint server.

%package devel
Summary:Development files for the Xprint application utility routines
Group:  Development/Libraries/C and C++
Requires:   %lname = %version

%description devel
libxprintapputil provides utility Xpau APIs allowing client
applications to access information about and control Xprint jobs from
an Xprint server.

This package contains the development headers for the library found
in %lname.

%prep
%setup -qn %name-X11R7.0-%version

%build
%configure --disable-static
make %{?_smp_mflags}

%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n %lname
%defattr(-,root,root)
%_libdir/libXprintAppUtil.so.1*

%files devel
%defattr(-,root,root)
%_includedir/X11/*
%_libdir/libXprintAppUtil.so
%_libdir/pkgconfig/xprintapputil.pc

%changelog
++ baselibs.conf ++
libXprintAppUtil1
libXprintAppUtil-devel
requires -libXprintAppUtil-
requires "libXprintAppUtil1- = "
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libxml++ for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libxml++ for openSUSE:Factory 
checked in at 2012-02-17 12:04:10

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


Package is "libxml++", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/libxml++/libxml++.changes2011-09-23 
02:11:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libxml++.new/libxml++.changes   2012-02-17 
12:04:14.0 +0100
@@ -1,0 +2,11 @@
+Thu Feb 16 19:02:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.35.1:
+  + Handle attributes with default values correctly (bgo#669635)
+  + Improved handling of entity references and processing
+instructions (bgo#669481)
+  + Parser: Throw more detailed error messages (bgo#304020)
+  + Document: Make the Document(xmlDoc*) constructor protected.
+(bgo#668980)
+
+---

Old:

  libxml++-2.34.2.tar.bz2

New:

  libxml++-2.35.1.tar.xz



Other differences:
--
++ libxml++.spec ++
--- /var/tmp/diff_new_pack.BDde2L/_old  2012-02-17 12:04:15.0 +0100
+++ /var/tmp/diff_new_pack.BDde2L/_new  2012-02-17 12:04:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libxml++
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,20 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libxml++
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  glibmm2-devel
 BuildRequires:  libxml2-devel
+Version:2.35.1
+Release:0
+Summary:C++ Interface for XML Files
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-Version:2.34.2
-Release:1
-Summary:C++ Interface for XML Files
-Source: 
http://download.gnome.org/sources/libxml++/2.34/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/libxml++/2.35/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 Url:http://sourceforge.net/projects/libxmlplusplus/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,7 +36,6 @@
 libxml2 to access the XML files.
 
 %package -n libxml++-2_6-2
-License:LGPL-2.1+
 Summary:C++ Interface for XML Files
 Group:  Development/Libraries/C and C++
 Provides:   %{name} = %{version}
@@ -49,7 +46,6 @@
 libxml2 to access the XML files.
 
 %package devel
-License:LGPL-2.1+
 Summary:C++ Interface for XML Files -- Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libxml++-2_6-2 = %{version}

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



commit libXaw for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXaw for openSUSE:Factory checked 
in at 2012-02-17 12:02:30

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


Package is "libXaw", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXaw.new/libXaw.changes   2012-02-17 
12:02:34.0 +0100
@@ -0,0 +1,4 @@
+---
+Tue Feb  7 22:17:49 UTC 2012 - jeng...@medozas.de
+
+- Split xorg-x11-libs into separate packages

New:

  baselibs.conf
  libXaw-1.0.8.tar.bz2
  libXaw.changes
  libXaw.spec



Other differences:
--
++ libXaw.spec ++
#
# spec file for package libXaw
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   libXaw
Version:1.0.8
Release:0
Summary:The X Athena Widget Set
License:MIT
Group:  Development/Libraries/C and C++
URL:http://xorg.freedesktop.org/

#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXaw
#Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXaw/
Source: %name-%version.tar.bz2
BuildRoot:  %_tmppath/%name-%version-build
#git#BuildRequires: autoconf >= 2.60, automake, libtool
BuildRequires:  pkgconfig, pkgconfig(xorg-macros) >= 1.10
BuildRequires:  pkgconfig(xproto), pkgconfig(x11), pkgconfig(xext)
BuildRequires:  pkgconfig(xextproto), pkgconfig(xt), pkgconfig(xmu)
BuildRequires:  pkgconfig(xpm)

%description
The X Window System Athena widget set implements simple user
interfaces based upon the X Toolkit Intrinsics (Xt) library.

%package -n libXaw6
Summary:The X Athena Widget Set
Group:  System/Libraries
%ifarch ppc64 s390x x86_64
Provides:   libXaw6.so.6()(64bit)
%else
Provides:   libXaw6.so.6
%endif

%description -n libXaw6
The X Window System Athena widget set implements simple user
interfaces based upon the X Toolkit Intrinsics (Xt) library.

%package -n libXaw7
Summary:The X Athena Widget Set
Group:  System/Libraries
%ifarch ppc64 s390x x86_64
Provides:   libXaw7.so.7()(64bit)
%else
Provides:   libXaw7.so.7
%endif

%description -n libXaw7
The X Window System Athena widget set implements simple user
interfaces based upon the X Toolkit Intrinsics (Xt) library.

%package -n libXaw8
Summary:The X Athena Widget Set
Group:  System/Libraries
Requires:   libXaw7 = %version
%ifarch ppc64 s390x x86_64
Provides:   libXaw8.so.8()(64bit), libXaw.so.8()(64bit)
%else
Provides:   libXaw8.so.8, libXaw.so.8
%endif

%description -n libXaw8
The X Window System Athena widget set implements simple user
interfaces based upon the X Toolkit Intrinsics (Xt) library.

%package devel
Summary:Development files for the X Athena Widget Set
Group:  Development/Libraries/C and C++
Requires:   libXaw6 = %version, libXaw7 = %version, libXaw8 = %version

%description devel
The X Window System Athena widget set implements simple user
interfaces based upon the X Toolkit Intrinsics (Xt) library.

This package contains the development headers for the library found
in libXaw6/libXaw7/libXaw8.

%prep
%setup -q

%build
%configure --docdir=%_docdir/%name --disable-static
make %{?_smp_mflags}

%install
b="%buildroot";
%makeinstall
rm -f "$b/%_libdir"/*.la

# For compatibility reasons
ln -s libXaw7.so.7 "$b/%_libdir/libXaw8.so.8";
ln -s libXaw.so.7 "$b/%_libdir/libXaw.so.8";

%post -n libXaw6 -p /sbin/ldconfig

%postun -n libXaw6 -p /sbin/ldconfig

%post -n libXaw7 -p /sbin/ldconfig

%postun -n libXaw7 -p /sbin/ldconfig

%post -n libXaw8 -p /sbin/ldconfig

%postun -n libXaw8 -p /sbin/ldconfig

%files -n libXaw6
%defattr(-,root,root)
%_libdir/libXaw6.so.6*
%_libdir/libXaw.so.6*

%files -n libXaw7
%defattr(-,root,root)
%_libdir/libXaw7.so.7*
%_libdir/libXaw.so.7*

%files -n libXaw8
%defattr(-,root,root)
%_libdir/libXaw8.so.8*
%_libdir/libXaw.so.8*

%files devel
%defattr(-,root,root)
%_includedir/X11/Xaw
%_libdir/libXaw*.so
%_libdir/pkgconfig/xaw*

commit libXau for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2012-02-17 12:02:22

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


Package is "libXau", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2012-02-17 
12:02:24.0 +0100
@@ -0,0 +1,118 @@
+---
+Sat Feb 11 18:29:50 UTC 2012 - jeng...@medozas.de
+
+- Rename xorg-x11-libXau to libXau and utilize shlib policy
+
+---
+Tue Dec 21 02:43:31 UTC 2010 - sndir...@novell.com
+
+- bumped version number to 7.6_1.0.6 
+
+---
+Sat Sep  4 18:04:08 UTC 2010 - sndir...@novell.com
+
+- libXau 1.0.6
+  * This minor release includes a number of packaging updates
+accumulated over the last year, and a couple of documentation
+fixes.
+- bumped version number to 7.5_1.0.6 
+- make use of %fdupes macro
+- fixed Summary/Group entries in -devel package
+
+---
+Sun Apr  4 15:33:14 CEST 2010 - sndir...@suse.de
+
+- libXau 1.0.5
+- bumped version number to 7.5 
+
+---
+Mon Dec 14 18:18:22 CET 2009 - jeng...@medozas.de
+
+- add baselibs.conf as a source
+
+---
+Fri May  1 23:34:35 CEST 2009 - e...@suse.de
+
+- revert static library and .la file removal
+  for SUSE versions <= 11.1.
+
+---
+Tue Apr 21 20:43:12 CEST 2009 - crrodrig...@suse.de
+
+- remove static libraries 
+
+---
+Thu Sep 11 14:21:14 CEST 2008 - sndir...@suse.de
+
+- bumped release number to 7.4 
+
+---
+Wed Aug 27 10:31:34 CEST 2008 - sndir...@suse.de
+
+- libXau 1.0.4
+  * SVR4 (including Solaris) puts gethostbyname_r in libnsl instead
+of libc
+  * Bug 17314: libXau's Makefile.am should have proper man creation
+rules
+  * Bug #11097: libXau COPYING fix (add missing copyright dates) 
+
+---
+Thu Apr 10 12:54:45 CEST 2008 - r...@suse.de
+
+- added baselibs.conf file to build xxbit packages
+  for multilib support
+
+---
+Fri Mar 14 18:01:02 CET 2008 - sndir...@suse.de
+
+- readded libXau.la for openSUSE <= 10.3 (bnc #371041)
+
+---
+Tue Jan  1 22:57:42 CET 2008 - crrodrig...@suse.de
+
+- fix library-without-ldconfig-* error
+- add missing PreReq coreutils 
+- remove libXau.la (empty dependency_libs) 
+
+---
+Sat Sep 29 12:22:45 CEST 2007 - sndir...@suse.de
+
+- bumped version to 7.3 
+
+---
+Mon Dec 18 10:59:53 CET 2006 - sndir...@suse.de
+
+- updated libXau to release 1.0.3 
+  * Makefile.am: make ChangeLog hook safer
+
+---
+Thu Oct 26 07:28:53 CEST 2006 - sndir...@suse.de
+
+- set version to 7.2 in specfile 
+
+---
+Wed Aug  2 16:12:06 CEST 2006 - sndir...@suse.de
+
+- fix setup line 
+
+---
+Sat Jul 29 08:34:15 CEST 2006 - sndir...@suse.de
+
+- updated libXau to release 1.0.2
+
+---
+Fri Jul 28 14:44:21 CEST 2006 - sndir...@suse.de
+
+- use "-fno-strict-aliasing" 
+
+---
+Thu Jul 27 11:41:34 CEST 2006 - sndir...@suse.de
+
+- use $RPM_OPT_FLAGS
+- remove existing /usr/include/X11 symlink in %pre
+
+---
+Thu Jun 22 11:22:12 CEST 2006 - sndir...@suse.de
+
+- created package 
+

New:

  baselibs.conf
  libXau-1.0.6.tar.bz2
  libXau.changes
  libXau.spec



Other differences:
--
++ libXau.spec ++
#
# spec file for package libXau
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file,

commit libvirt for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libvirt for openSUSE:Factory checked 
in at 2012-02-17 12:01:54

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


Package is "libvirt", Maintainer is "jfeh...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes  2012-01-19 
09:43:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvirt.new/libvirt.changes 2012-02-17 
12:02:05.0 +0100
@@ -1,0 +2,56 @@
+Thu Feb 16 09:59:52 MST 2012 - jfeh...@suse.com
+
+- Add a note in /etc/libvirt/qemu.conf describing administrator
+  vigilance required when enabling a lock manager such as sanlock
+
+---
+Thu Feb 16 09:01:58 MST 2012 - jfeh...@suse.com
+
+- Recommend dmidecode if suse_version > 1110.  dmidecode is used
+  by virConnectGetSysinfo.
+
+---
+Wed Feb 15 22:00:42 MST 2012 - jfeh...@suse.com
+
+- Add upstream patches to fix issues with older PolicyKit
+  c05ec920-polkit0-build.patch
+  fcdfa31f-polkit0-auth.patch
+
+---
+Wed Feb 15 11:57:25 MST 2012 - jfeh...@suse.com
+
+- Update to libvirt 0.9.10
+  - Add support for sVirt in the LXC driver
+  - Add new API virDomainBlockRebase
+  - Add api to set and get domain metadata
+  - virDomainGetDiskErrors public API
+  - Add rawio attribute to disk element of domain XML
+  - Introduce virDomainPMSuspendForDuration API
+  - Add virStorageVolResize() API
+  - Add a virt-host-validate command to sanity check HV config
+  - Add new virDomainShutdownFlags API
+  - QEMU guest agent support
+
+---
+Wed Feb  8 11:12:28 MST 2012 - jfeh...@suse.com
+
+- Fix libvirtd apparmor profile to work with libxenlight toolstack
+  Updated install-apparmor-profiles.patch
+  bnc#745890
+
+---
+Wed Jan 25 14:40:32 MST 2012 - jfeh...@suse.com
+
+- Fix init script packaging after enabling systemd support
+
+---
+Tue Jan 24 14:26:47 MST 2012 - jfeh...@suse.com
+
+- Fix %files after enabling sanlock support
+
+---
+Wed Jan 18 15:58:57 MST 2012 - jfeh...@suse.com
+
+- Enable libvirt integration with sanlock
+
+---

Old:

  9ae4ac7a-PolicyKit.patch
  libvirt-0.9.9.tar.bz2

New:

  c05ec920-polkit0-build.patch
  fcdfa31f-polkit0-auth.patch
  libvirt-0.9.10.tar.bz2



Other differences:
--
++ libvirt.spec ++
--- /var/tmp/diff_new_pack.qPD8WB/_old  2012-02-17 12:02:07.0 +0100
+++ /var/tmp/diff_new_pack.qPD8WB/_new  2012-02-17 12:02:07.0 +0100
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 # For now, default to a full server + client build
 %define client_only0
 
@@ -156,6 +154,11 @@
 %define with_systemd   0%{!?_without_systemd:1}
 %endif
 
+# Enable sanlock on openSUSE > 12.1
+%if 0%{?suse_version} > 1210
+%define with_sanlock   0%{!?_without_sanlock:%{server_drivers}}
+%endif
+
 # Disable some drivers when building without libvirt daemon.
 # The logic is the same as in configure.ac
 %if ! %{with_libvirtd}
@@ -193,20 +196,21 @@
 
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
 
-BuildRequires:  python-devel
+BuildRequires:  bridge-utils
+BuildRequires:  fdupes
+BuildRequires:  gettext
+BuildRequires:  libgcrypt-devel
+BuildRequires:  libgnutls-devel
+BuildRequires:  libtasn1-devel
+BuildRequires:  libtool
 BuildRequires:  libxml2-devel
-BuildRequires:  xhtml-dtd
 BuildRequires:  libxslt
-BuildRequires:  readline-devel
 BuildRequires:  ncurses-devel
-BuildRequires:  gettext
-BuildRequires:  libtasn1-devel
-BuildRequires:  libgnutls-devel
-BuildRequires:  libgcrypt-devel
-BuildRequires:  bridge-utils
-BuildRequires:  fdupes
-BuildRequires:  libtool pkg-config
+BuildRequires:  pkg-config
+BuildRequires:  python-devel
 BuildRequires:  python-xml
+BuildRequires:  readline-devel
+BuildRequires:  xhtml-dtd
 # Only for directory ownership:
 BuildRequires:  gtk-doc
 %if %{with_xen} || %{with_libxl}
@@ -321,12 +325,11 @@
 
 Name:   libvirt
 Url:http://libvirt.org/
+Version:0.9.10
+Release:0
+Summary:A C toolkit to interact with the virtualization capabilities 
of Linux
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-AutoReqProv:yes
-Version:0.9.9
-Release:1

commit libva for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libva for openSUSE:Factory checked 
in at 2012-02-17 12:01:43

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


Package is "libva", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/libva/libva.changes  2011-11-22 
17:48:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.libva.new/libva.changes 2012-02-17 
12:01:45.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 13:18:40 UTC 2012 - sndir...@suse.com
+
+- Update package BuildRequires to use pkgconfig symbols 
+
+---



Other differences:
--
++ libva.spec ++
--- /var/tmp/diff_new_pack.bm6GFz/_old  2012-02-17 12:01:46.0 +0100
+++ /var/tmp/diff_new_pack.bm6GFz/_new  2012-02-17 12:01:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libva
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,8 @@
 Source1:
http://cgit.freedesktop.org/vaapi/intel-driver/snapshot/intel-driver-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libtool libudev-devel pkg-config
-BuildRequires:  xorg-x11-devel xorg-x11-libXext-devel xorg-x11-libXfixes-devel
-BuildRequires:  Mesa-devel libdrm-devel
+BuildRequires:  pkgconfig(xext) pkgconfig(xfixes)
+BuildRequires:  pkgconfig(gl) pkgconfig(libdrm) pkgconfig(libdrm_intel)
 BuildRequires:  gcc-c++ libstdc++-devel
 AutoReqProv:on
 

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



commit libunwind for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libunwind for openSUSE:Factory 
checked in at 2012-02-17 12:01:39

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


Package is "libunwind", Maintainer is "mvysko...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libunwind/libunwind.changes  2011-11-24 
11:36:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.libunwind.new/libunwind.changes 2012-02-17 
12:01:41.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb  9 15:53:49 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections
+- Fix dangling symlink /usr/lib/libunwind.so (which was
+  pointing at "libunwind.so.8.*", verbatim asterisk)
+- Throw out .la file
+
+---



Other differences:
--
++ libunwind.spec ++
--- /var/tmp/diff_new_pack.T0B4ms/_old  2012-02-17 12:01:42.0 +0100
+++ /var/tmp/diff_new_pack.T0B4ms/_new  2012-02-17 12:01:42.0 +0100
@@ -15,9 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   libunwind
 BuildRequires:  gcc-c++ libtool
 Url:http://savannah.nongnu.org/projects/libunwind/
@@ -44,7 +41,6 @@
 David Mosberger 
 
 %package devel
-License:MIT
 Summary:Unwind library
 Group:  Development/Libraries/C and C++
 Requires:   libunwind = %{version}-%{release}
@@ -69,9 +65,8 @@
 
 %build
 autoreconf -fi
-RPM_OPT_FLAGS="$RPM_OPT_FLAGS -U_FORTIFY_SOURCE"
-./configure "CFLAGS=$RPM_OPT_FLAGS" --prefix=/usr --mandir=%{_mandir} \
-   --libdir=%{_libdir} --build=%{_target_cpu}-suse-linux
+export CFLAGS="%optflags -U_FORTIFY_SOURCE"
+%configure
 make %{?_smp_mflags}
 
 %check
@@ -82,17 +77,17 @@
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
+rm -f "%buildroot/%_libdir"/*.la
 mkdir -p $RPM_BUILD_ROOT/%{_lib}
 mv $RPM_BUILD_ROOT%{_libdir}/libunwind.so.8* $RPM_BUILD_ROOT/%{_lib}
-ln -sf ../../%{_lib}/libunwind.so.8.* $RPM_BUILD_ROOT%{_libdir}/libunwind.so
+ln -sf /%{_lib}/libunwind.so.8 $RPM_BUILD_ROOT%{_libdir}/libunwind.so
+# Check that ln did not create a dangling link
+stat "%buildroot"/$(readlink -f "%buildroot/%_libdir/libunwind.so");
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 /%_lib/lib*
@@ -103,7 +98,6 @@
 %defattr(-, root, root)
 %{_prefix}/include/*
 %{_libdir}/lib*.a
-%{_libdir}/lib*.la
 %{_libdir}/libunwind-*.so
 %doc %{_mandir}/man?/*
 

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



commit libfontenc for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libfontenc for openSUSE:Factory 
checked in at 2012-02-17 12:01:07

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


Package is "libfontenc", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libfontenc.new/libfontenc.changes   
2012-02-17 12:01:08.0 +0100
@@ -0,0 +1,112 @@
+---
+Sun Feb 12 02:04:08 UTC 2012 - jeng...@medozas.de
+
+- Rename xorg-x11-libfontenc to libfontenc and utilize shlib policy
+
+---
+Tue Dec 21 02:49:06 UTC 2010 - sndir...@novell.com
+
+- bumped version number to 7.6 
+
+---
+Thu Oct 21 20:57:27 UTC 2010 - sndir...@novell.com
+
+- libfontenc 1.1.0 
+  * This release adds support for finding the encoding data-files
+in using the standard autoconf macros provided by X.Org's
+fontutil.m4. The precedence is now (first found is used):
+--with-encodingsdir=
+encodings subdirectory of fontrootdir found via:
+   --with-fontrootdir
+   pkg-config --variable=fontrootdir fontutil
+   ${datadir}/fonts/X11
+  * It also converts to using standard libc memory allocation
+functions, and provides the usual recent build configuration
+improvements and janitorial cleanups.
+
+---
+Sun Apr  4 16:01:16 CEST 2010 - sndir...@suse.de
+
+- libfontenc 1.0.5 
+- bumped version number to 7.5
+
+---
+Mon Dec 14 20:14:15 CET 2009 - jeng...@medozas.de
+
+- add baselibs.conf as a source
+
+---
+Sat May  2 14:42:17 CEST 2009 - e...@suse.de
+
+- revert static library and .la file removal
+  for SUSE versions <= 11.1.
+
+---
+Tue Apr 21 21:45:18 CEST 2009 - crrodrig...@suse.de
+
+- remove static libraries and "la" files 
+
+---
+Thu Sep 11 14:22:20 CEST 2008 - sndir...@suse.de
+
+- bumped release number to 7.4 
+
+---
+Thu Apr 10 12:54:45 CEST 2008 - r...@suse.de
+
+- added baselibs.conf file to build xxbit packages
+  for multilib support
+
+---
+Tue Jan  1 22:47:20 CET 2008 - crrodrig...@suse.de
+
+- fix library-without-ldconfig-* error
+- add missing PreReq coreutils 
+
+---
+Sat Sep 29 12:24:06 CEST 2007 - sndir...@suse.de
+
+- bumped version to 7.3 
+
+---
+Thu Mar 29 22:49:04 CEST 2007 - sndir...@suse.de
+
+- added zlib-devel to Buildrequires 
+
+---
+Mon Dec 18 11:02:59 CET 2006 - sndir...@suse.de
+
+- updated to release 1.0.4
+  * Makefile.am: make ChangeLog hook safer 
+
+---
+Sat Oct 14 06:20:16 CEST 2006 - sndir...@suse.de
+
+- updated to X.Org 7.2RC1 
+
+---
+Tue Aug 15 18:45:55 CEST 2006 - sndir...@suse.de
+
+- fixed encodings dir 
+
+---
+Wed Aug  2 16:12:40 CEST 2006 - sndir...@suse.de
+
+- fix setup line 
+
+---
+Fri Jul 28 14:44:59 CEST 2006 - sndir...@suse.de
+
+- use "-fno-strict-aliasing" 
+
+---
+Thu Jul 27 11:48:29 CEST 2006 - sndir...@suse.de
+
+- use $RPM_OPT_FLAGS
+- remove existing /usr/include/X11 symlink in %pre 
+
+---
+Sat Jun 24 06:37:56 CEST 2006 - sndir...@suse.de
+
+- created package 
+

New:

  baselibs.conf
  libfontenc-1.1.0.tar.bz2
  libfontenc.changes
  libfontenc.spec



Other differences:
--
++ libfontenc.spec ++
#
# spec file for package libfontenc
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same

commit libdrm for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libdrm for openSUSE:Factory checked 
in at 2012-02-17 12:01:02

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


Package is "libdrm", Maintainer is "sndir...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libdrm/libdrm.changes2012-02-10 
17:16:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.libdrm.new/libdrm.changes   2012-02-17 
12:01:04.0 +0100
@@ -1,0 +2,13 @@
+Sat Feb 11 16:37:39 UTC 2012 - jeng...@medozas.de
+
+- Update to new upstream release 2.4.31
+* radeon: add surface allocator helper v10
+* intel: add sprite ioctl defines and struct for i915 sprite code
+- Remove autoreconf call for now, there are no patches that
+  would necessitate this
+- Remove redundant tags/sections from specfile
+- Parallel build with %_smp_mflags
+- Package shlibs separately according to policy
+- Package description updates
+
+---

Old:

  libdrm-2.4.30.tar.bz2

New:

  libdrm-2.4.31.tar.bz2
  libdrm-implicit-defs.diff



Other differences:
--
++ libdrm.spec ++
--- /var/tmp/diff_new_pack.iKmRvI/_old  2012-02-17 12:01:06.0 +0100
+++ /var/tmp/diff_new_pack.iKmRvI/_new  2012-02-17 12:01:06.0 +0100
@@ -15,18 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   libdrm
-BuildRequires:  libpciaccess0-devel pkgconfig xorg-x11-proto-devel
-BuildRequires:  libtool
-Url:http://dri.sf.net
-License:MIT
-Group:  System/Libraries
-AutoReqProv:on
-Version:2.4.30
-Release:1
+Url:http://dri.freedesktop.org/
+Version:2.4.31
+Release:0
 Provides:   libdrm23 = %{version}
 Obsoletes:  libdrm23 < %{version}
 # bug437293
@@ -36,20 +30,40 @@
 %endif
 #
 Summary:Userspace Interface for Kernel DRM Services
+License:MIT
+Group:  System/Libraries
+
+#Git-Clone:git://anongit.freedesktop.org/git/mesa/drm
+#Git-Web:  http://cgit.freedesktop.org/mesa/drm/
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
+Patch1: libdrm-implicit-defs.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+#git#BuildRequires:autoconf >= 2.63, automake >= 1.10
+BuildRequires:  libtool >= 2.2
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(pciaccess) >= 0.10
+BuildRequires:  pkgconfig(pthread-stubs)
 
 %description
 The package contains the userspace interface to the kernel DRM
 services.
 
+%package tools
+Summary:Diagnostic utilities for DRI and DRM
+Group:  System/Base
+# O/P added in 12.2
+Obsoletes:  libdrm < %version-%release
+Provides:   libdrm = %version-%release
+
+%description tools
+(Upstream has not provided a description)
 
 %package devel
-License:MIT
 Summary:Libraries, includes and more to develop libdrm applications
 Group:  Development/Libraries/X11
-Requires:   libdrm = %{version} glibc-devel
+Requires:   libdrm2 = %version, libdrm_intel1 = %version
+Requires:   libdrm_nouveau1 = %version, libdrm_radeon1 = %version
 # bug437293
 %ifarch ppc64
 Obsoletes:  libdrm-devel-64bit < %{version}
@@ -58,26 +72,83 @@
 #
 
 %description devel
-The package contains the userspace interface to the kernel DRM
-services.
+libdrm is a library for accessing the Direct Rendering Manager on
+Linux, BSD and other operating systes that support the ioctl
+interface, and for chipsets with DRM memory manager, support for
+tracking relocations and buffers. libdrm is a low-level library,
+typically used by graphics drivers such as the Mesa DRI and X
+drivers.
+
+This package contains the development headers for the library found
+in libdrm2.
+
+%package -n libdrm2
+Summary:Userspace Interface for Kernel DRM Services
+Group:  System/Libraries
+
+%description -n libdrm2
+libdrm is a library for accessing the Direct Rendering Manager on
+Linux, BSD and other operating systes that support the ioctl
+interface, and for chipsets with DRM memory manager, support for
+tracking relocations and buffers. libdrm is a low-level library,
+typically used by graphics drivers such as the Mesa DRI and X
+drivers.
+
+%package -n libdrm_intel1
+Summary:Userspace interface for Kernel DRM services for Intel chips
+Group:  System/Libraries
+
+%description -n libdrm_intel1
+(Upstream has not provided a description)
+
+%package -n libdrm_nouveau1
+Summary:Userspace interface for Kernel DRM services for NVIDIA chips
+Group:  System/Libraries
+
+%description -n libdrm_nouveau1
+(Upstream has not prov

  1   2   >