commit php5 for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:12.1:Update:Test 
checked in at 2012-02-17 10:41:54

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/php5/php5.changes   2012-02-03 
17:05:23.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.php5.new/php5.changes  2012-02-17 
10:41:55.0 +0100
@@ -1,0 +2,9 @@
+Tue Feb  7 12:44:07 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]
+
+---

New:

  php-5.3.8-CVE-2011-4153.patch
  php-5.3.8-CVE-2012-0057.patch
  php-5.3.8-CVE-2012-0807.patch
  php-5.3.8-CVE-2012-0831.patch



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.dflNDP/_old  2012-02-17 10:41:56.0 +0100
+++ /var/tmp/diff_new_pack.dflNDP/_new  2012-02-17 10:41:56.0 +0100
@@ -169,6 +169,10 @@
 Patch41:php-5.3.8-memory-corruption-parse_ini_string.patch
 Patch42:php-5.3.8-CVE-2012-0789.patch
 Patch43:php-5.3.8-CVE-2012-0830.patch
+Patch44:php-5.3.8-CVE-2012-0807.patch
+Patch45:php-5.3.8-CVE-2012-0057.patch
+Patch46:php-5.3.8-CVE-2011-4153.patch
+Patch47:php-5.3.8-CVE-2012-0831.patch
 Url:http://www.php.net
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:PHP5 Core Files
@@ -1288,6 +1292,10 @@
 %patch41
 %patch42
 %patch43 -p1
+%patch44
+%patch45
+%patch46
+%patch47
 # Safety check for API version change.
 vapi=`sed -n '/#define PHP_API_VERSION/{s/.* //;p}' main/php.h`
 if test x${vapi} != x%{apiver}; then


++ php-5.3.8-CVE-2011-4153.patch ++
http://svn.php.net/viewvc?view=revisionrevision=319442
http://svn.php.net/viewvc?view=revisionrevision=319453
#-0- 
Zend/zend_builtin_functions.c
#-1-
ext/soap/php_sdl.c
#-2-
ext/standard/syslog.c
#-3-
N/A for 5.3.8
#-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
===
--- ext/soap/php_sdl.c.orig
+++ ext/soap/php_sdl.c
@@ -147,6 +147,10 @@ encodePtr get_encoder(sdlPtr sdl, const
memcpy(new_enc, enc, sizeof(encode));
if (sdl-is_persistent) {
new_enc-details.ns = zend_strndup(ns, ns_len);
+   if (new_enc-details.ns == NULL) {
+   efree(nscat);
+   return NULL;
+   }
new_enc-details.type_str = 
strdup(new_enc-details.type_str);
} else {
new_enc-details.ns = estrndup(ns, ns_len);
Index: ext/standard/file.c
===
--- ext/standard/file.c.orig
+++ ext/standard/file.c
@@ -2612,10 +2612,15 @@ PHP_FUNCTION(fnmatch)
Returns directory path used for temporary files */
 PHP_FUNCTION(sys_get_temp_dir)
 {
+   char *tmp_dir;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
-   RETURN_STRING((char *)php_get_temporary_directory(), 1);
+tmp_dir = (char *)php_get_temporary_directory();
+   if (tmp_dir == NULL) {
+   return;
+}
+   RETURN_STRING(tmp_dir, 1);
 }
 /* }}} */
 
Index: ext/session/mod_files.c
===
--- 

commit seamonkey for openSUSE:12.1:Update:Test

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package seamonkey for 
openSUSE:12.1:Update:Test checked in at 2012-02-17 10:42:28

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/seamonkey/seamonkey.changes 
2012-02-13 14:25:23.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.seamonkey.new/seamonkey.changes
2012-02-17 10:42:35.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.7A6YMN/_old  2012-02-17 10:42:38.0 +0100
+++ /var/tmp/diff_new_pack.7A6YMN/_new  2012-02-17 10:42:38.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.7A6YMN/_old  2012-02-17 10:42:39.0 +0100
+++ /var/tmp/diff_new_pack.7A6YMN/_new  2012-02-17 10:42:39.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:12.1:Update:Test/seamonkey/l10n-2.7.1.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.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:12.1:Update:Test/seamonkey/seamonkey-2.7.1-source.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.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



drop libXi6 from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package libXi6 was dropped from openSUSE:Factory at Fri Feb 17 11:25:39 
CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=libXi6

Remember to have fun...

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



drop libpciaccess0 from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package libpciaccess0 was dropped from openSUSE:Factory at Fri Feb 17 
11:26:02 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=libpciaccess0

Remember to have fun...

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



drop xorg-x11-libICE from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libICE was dropped from openSUSE:Factory at Fri Feb 17 
11:26:19 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libICE

Remember to have fun...

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



drop xorg-x11-libSM from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libSM was dropped from openSUSE:Factory at Fri Feb 17 
11:27:24 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libSM

Remember to have fun...

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



drop xorg-x11-libX11 from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libX11 was dropped from openSUSE:Factory at Fri Feb 17 
11:27:48 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libX11

Remember to have fun...

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



drop xorg-x11-libXau from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXau was dropped from openSUSE:Factory at Fri Feb 17 
11:28:04 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXau

Remember to have fun...

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



drop xorg-x11-libXdmcp from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXdmcp was dropped from openSUSE:Factory at Fri Feb 17 
11:28:24 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXdmcp

Remember to have fun...

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



drop xorg-x11-libXext from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXext was dropped from openSUSE:Factory at Fri Feb 17 
11:28:43 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXext

Remember to have fun...

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



drop xorg-x11-libXfixes from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXfixes was dropped from openSUSE:Factory at Fri Feb 17 
11:29:00 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXfixes

Remember to have fun...

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



drop xorg-x11-libXmu from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXmu was dropped from openSUSE:Factory at Fri Feb 17 
11:29:18 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXmu

Remember to have fun...

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



drop xorg-x11-libXp from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXp was dropped from openSUSE:Factory at Fri Feb 17 
11:29:36 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXp

Remember to have fun...

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



drop xorg-x11-libXpm from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXpm was dropped from openSUSE:Factory at Fri Feb 17 
11:29:52 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXpm

Remember to have fun...

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



drop xorg-x11-libXprintUtil from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXprintUtil was dropped from openSUSE:Factory at Fri 
Feb 17 11:30:20 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXprintUtil

Remember to have fun...

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



drop xorg-x11-libXrender from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXrender was dropped from openSUSE:Factory at Fri Feb 
17 11:30:41 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXrender

Remember to have fun...

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



drop xorg-x11-libXt from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXt was dropped from openSUSE:Factory at Fri Feb 17 
11:31:05 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXt

Remember to have fun...

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



drop xorg-x11-libXv from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libXv was dropped from openSUSE:Factory at Fri Feb 17 
11:31:22 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libXv

Remember to have fun...

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



drop xorg-x11-libfontenc from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libfontenc was dropped from openSUSE:Factory at Fri Feb 
17 11:31:45 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libfontenc

Remember to have fun...

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



drop xorg-x11-libxcb from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libxcb was dropped from openSUSE:Factory at Fri Feb 17 
11:32:08 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libxcb

Remember to have fun...

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



drop xorg-x11-libxkbfile from openSUSE:Factory

2012-02-17 Thread h_root

Hello community,

FYI: Package xorg-x11-libxkbfile was dropped from openSUSE:Factory at Fri Feb 
17 11:32:23 CET 2012.

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

https://build.opensuse.org/package/show?project=openSUSE:Droppedpackage=xorg-x11-libxkbfile

Remember to have fun...

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



commit aisleriot for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package aisleriot for openSUSE:Factory 
checked in at 2012-02-17 11:59:45

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


Package is aisleriot, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/aisleriot/aisleriot.changes  2012-01-09 
11:14:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.aisleriot.new/aisleriot.changes 2012-02-17 
11:59:47.0 +0100
@@ -1,0 +2,13 @@
+Tue Feb  7 13:04:26 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.2:
+  + Misc improvements and bug fixes
+  + Updated translations.
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+- Drop gnome-freecell.png source file and stop manually installing
+  a 256x256 icon: it's done upstream now.
+- Add sed hack in %prep to work around a bug in yelp-tools that
+  caused this tarball to not contain all help translations.
+
+---

Old:

  aisleriot-3.3.1.tar.xz
  gnome-freecell.png

New:

  aisleriot-3.3.2.tar.xz



Other differences:
--
++ aisleriot.spec ++
--- /var/tmp/diff_new_pack.iL3UNn/_old  2012-02-17 11:59:49.0 +0100
+++ /var/tmp/diff_new_pack.iL3UNn/_new  2012-02-17 11:59:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package aisleriot
 #
-# 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,15 @@
 #
 
 Name:   aisleriot
-Version:3.3.1
+Version:3.3.2
 Release:0
+# FIXME drop sed hack in %%prep on update to  3.3.2
 # FIXME: the %%{_datadir}/help/$locale/ files should be found by %%find_lang
 Summary:Solitaire Card Games for GNOME
 License:GPL-3.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.gnome.org
 Source0:
http://download.gnome.org/sources/aisleriot/3.3/%{name}-%{version}.tar.xz
-# We add the 256x256 png icon for freecell from gnome-games version 2.91.3
-# tarball manually until upstream solves bgo#657280
-Source1:gnome-freecell.png
 BuildRequires:  guile-devel
 BuildRequires:  intltool
 BuildRequires:  itstool
@@ -34,11 +32,9 @@
 # Needed to get lsb data
 BuildRequires:  dummy-release
 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(cairo)
 BuildRequires:  pkgconfig(gconf-2.0)
-BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(gobject-2.0) = 2.31.13
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libcanberra-gtk3)
 BuildRequires:  pkgconfig(librsvg-2.0)
@@ -53,6 +49,7 @@
 
 %package themes
 Summary:Solitaire Card Games for GNOME -- Extra Themes
+Group:  Amusements/Games/Board/Card
 Requires:   %{name} = %{version}
 Enhances:   %{name}
 BuildArch:  noarch
@@ -65,6 +62,12 @@
 %lang_package
 %prep
 %setup -q
+if test %{version} != 3.3.2; then
+  echo Sed hack should be dropped.
+  /bin/false
+fi
+sed -i s/HELP_LINGUAS = ca de el en_GB es eu fr gl oc ru sl sr sr@latin sv 
zh_CN/HELP_LINGUAS = de en_GB fr/g help/Makefile.am
+sed -i s/HELP_LINGUAS = ca de el en_GB es eu fr gl oc ru sl sr sr@latin sv 
zh_CN/HELP_LINGUAS = de en_GB fr/g help/Makefile.in
 
 %build
 %configure \
@@ -77,11 +80,6 @@
 %make_install
 %suse_update_desktop_file -N FreeCell -G Solitaire freecell
 %suse_update_desktop_file -N AisleRiot -G Solitaire sol
-if [ -f %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/gnome-freecell.png 
];
-   then echo Destination already exists. Perhaps fixed upstream? Please 
remove hack.;
-   /bin/false;
-fi
-cp %{S:1} %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/
 %find_lang %{name} %{?no_lang_C}
 %find_gconf_schemas
 # Localized help
@@ -122,16 +120,23 @@
 %{_datadir}/applications/sol.desktop
 %{_datadir}/aisleriot/
 %dir %{_libdir}/aisleriot
-%{_libdir}/aisleriot/ar-cards-renderer
 %dir %{_libdir}/aisleriot/guile
 %dir %{_libdir}/aisleriot/guile/2.0
 %dir %{_libdir}/aisleriot/guile/2.0/aisleriot
 %{_libdir}/aisleriot/guile/2.0/aisleriot/api.go
 %{_libdir}/aisleriot/guile/2.0/*.go
+%if %{_libdir} != %{_libexecdir}
+%dir %{_libexecdir}/aisleriot
+%endif
+%{_libexecdir}/aisleriot/ar-cards-renderer
 %{_datadir}/glib-2.0/schemas/org.gnome.Patience.WindowState.gschema.xml
 %{_datadir}/icons/hicolor/*/apps/gnome-aisleriot.*
 %{_datadir}/icons/hicolor/*/apps/gnome-freecell.*
 %{_mandir}/man?/sol.*
+# 

commit arpwatch-ethercodes for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2012-02-17 11:59:51

Comparing /work/SRC/openSUSE:Factory/arpwatch-ethercodes (Old)
 and  /work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new (New)


Package is arpwatch-ethercodes, Maintainer is dr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/arpwatch-ethercodes/arpwatch-ethercodes.changes  
2012-02-16 14:55:10.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new/arpwatch-ethercodes.changes 
2012-02-17 11:59:55.0 +0100
@@ -2 +2 @@
-Thu Feb 16 07:40:05 CET 2012 - autobu...@suse.de
+Fri Feb 17 09:40:08 CET 2012 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2012-02-16
+- automated update on 2012-02-17



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.OQAk1A/_old  2012-02-17 11:59:56.0 +0100
+++ /var/tmp/diff_new_pack.OQAk1A/_new  2012-02-17 11:59:56.0 +0100
@@ -23,7 +23,7 @@
 License:BSD-3-Clause
 Group:  Productivity/Networking/Diagnostic
 Summary:Ethercodes Data for arpwatch
-Version:2012.2.16
+Version:2012.2.17
 Release:1
 Source0:http://standards.ieee.org/regauth/oui/oui.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt ++
--- /var/tmp/diff_new_pack.OQAk1A/_old  2012-02-17 11:59:57.0 +0100
+++ /var/tmp/diff_new_pack.OQAk1A/_new  2012-02-17 11:59:57.0 +0100
@@ -59198,7 +59198,7 @@
141, LANE 351,SEC.1,  TAIPING RD.
TSAOTUEN
NANTOU 54261
-   TANZANIA, UNITED REPUBLIC OF
+   TAIWAN, REPUBLIC OF CHINA
 
 00-24-7F   (hex)   Nortel Networks
 00247F (base 16)   Nortel Networks
@@ -88158,6 +88158,12 @@
Oeiras Lisboa 2795-156 Linda-a-Velha
PORTUGAL
 
+5C-0A-5B   (hex)   SAMSUNG ELECTRO-MECHANICS CO., LTD.
+5C0A5B (base 16)   SAMSUNG ELECTRO-MECHANICS CO., LTD.
+   314, Maetan3-Dong, Yeongtong-Gu
+   Suwon Gyunggi-Do 443-743
+   KOREA, REPUBLIC OF
+
 5C-0C-BB   (hex)   CELIZION Inc.
 5C0CBB (base 16)   CELIZION Inc.
#206 Lordland EZ Tower, GuMi-Dong 153 BunDang-Gu
@@ -88232,6 +88238,13 @@
Shenzhen Guangdong 510108
CHINA
 
+5C-50-15   (hex)   Cisco Systems
+5C5015 (base 16)   Cisco Systems
+   80 West Tasman Dr.
+   SJCM1-1
+   San Jose CA 95134
+   UNITED STATES
+
 5C-56-ED   (hex)   3pleplay Electronics Private Limited
 5C56ED (base 16)   3pleplay Electronics Private Limited
1106, 11th Floor
@@ -95229,6 +95242,12 @@
GuangZhou GuangDong 510310
CHINA
 
+B4-04-18   (hex)   Smartchip Integrated Inc.
+B40418 (base 16)   Smartchip Integrated Inc.
+   9B,Science Plaza,1355 JinJiHu Avenue,Suzhou 
Industrial Park
+   Suzhou Jiangsu 215021
+   CHINA
+
 B4-07-F9   (hex)   SAMSUNG ELECTRO-MECHANICS
 B407F9 (base 16)   SAMSUNG ELECTRO-MECHANICS
Suwon-Si, Gyeonggi_Do, Korea
@@ -100754,6 +100773,13 @@
Austin Texas 78746
UNITED STATES
 
+F4-EA-67   (hex)   Cisco Systems
+F4EA67 (base 16)   Cisco Systems
+   80 West Tasman Dr.
+   SJCM1-1
+   San Jose CA 95134
+   UNITED STATES
+
 F4-EC-38   (hex)   TP-LINK TECHNOLOGIES CO., LTD.
 F4EC38 (base 16)   TP-LINK TECHNOLOGIES CO., LTD.
1-6F, Building 2, Pingshandayuan Industrial, 
South Zone,

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



commit autocutsel for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package autocutsel for openSUSE:Factory 
checked in at 2012-02-17 11:59:54

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


Package is autocutsel, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/autocutsel/autocutsel.changes2011-09-23 
01:52:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.autocutsel.new/autocutsel.changes   
2012-02-17 11:59:57.0 +0100
@@ -1,0 +2,10 @@
+Sun Feb 12 18:51:58 UTC 2012 - jeng...@medozas.de
+
+- Update dependencies to what is required by configure.ac
+
+---
+Thu Feb  9 16:08:45 UTC 2012 - sndir...@suse.com
+
+- fixed buildreqs due to splitted xorg-x11-libs 
+
+---



Other differences:
--
++ autocutsel.spec ++
--- /var/tmp/diff_new_pack.FiVDvU/_old  2012-02-17 11:59:58.0 +0100
+++ /var/tmp/diff_new_pack.FiVDvU/_new  2012-02-17 11:59:58.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package autocutsel
 #
-# 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,12 +19,15 @@
 
 Name:   autocutsel
 Url:http://www.nongnu.org/autocutsel/
-License:GPL-2.0+
-Group:  System/X11/Utilities
-BuildRequires:  xorg-x11-devel
+BuildRequires:  pkgconfig(xaw7)
+BuildRequires:  pkgconfig(xext)
+BuildRequires:  pkgconfig(xmu)
+BuildRequires:  pkgconfig(xt)
 Version:0.9.0
-Release:1
+Release:0
 Summary:Clipboard / Cutbuffer management helper
+License:GPL-2.0+
+Group:  System/X11/Utilities
 Source: autocutsel-%version.tar.bz2
 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 avahi for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package avahi for openSUSE:Factory checked 
in at 2012-02-17 11:59:58

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


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

Changes:

avahi-mono.changes: same change
avahi-qt4.changes: same change
--- /work/SRC/openSUSE:Factory/avahi/avahi.changes  2012-01-06 
11:43:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.avahi.new/avahi.changes 2012-02-17 
12:00:00.0 +0100
@@ -1,0 +2,11 @@
+Wed Feb 15 09:15:34 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.6.31:
+  + Add Mumble to service type database
+  + systemd: syslog.target is not longer useful
+  + Compatibility with newer automake
+- Rebase avahi-empty-share-dir.patch.
+- Move dbus xml interface files from devel subpackage to main
+  subpackage: those files are needed at runtime.
+
+---

Old:

  avahi-0.6.30.tar.bz2

New:

  avahi-0.6.31.tar.gz



Other differences:
--
++ avahi-glib2.spec ++
--- /var/tmp/diff_new_pack.LgXFOJ/_old  2012-02-17 12:00:02.0 +0100
+++ /var/tmp/diff_new_pack.LgXFOJ/_new  2012-02-17 12:00:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package avahi-glib2
 #
-# 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,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   avahi-glib2
 # Do not edit this auto generated file! Edit avahi.spec.
 %define _name avahi
@@ -27,7 +28,7 @@
 %define build_mono 0
 %define build_qt3 0
 %define build_qt4 0
-Version:0.6.30
+Version:0.6.31
 Release:0
 %if !%build_glib2  !%build_mono  !%build_qt3  !%build_qt4
 # Create split spec files only when building per partes:
@@ -50,7 +51,7 @@
 Summary:D-BUS Service for Zeroconf and Bonjour
 License:LGPL-2.1+
 Group:  System/Daemons
-Source: %{_name}-%{version}.tar.bz2
+Source: http://avahi.org/download/%{_name}-%{version}.tar.gz
 Source1:gnome-nettool2.png
 Source2:avahi-bookmarks.init
 Source3:avahi.firewall
@@ -1021,6 +1022,7 @@
 %{_sysconfdir}/dbus-1/system.d/*.conf
 %{_sysconfdir}/init.d/avahi-dnsconfd
 %{_sysconfdir}/init.d/avahi-daemon
+%{_datadir}/dbus-1/interfaces/org.freedesktop.Avahi.*.xml
 %{_datadir}/dbus-1/system-services/org.freedesktop.Avahi.service
 /lib/systemd/system/avahi-daemon.service
 /lib/systemd/system/avahi-daemon.socket
@@ -1084,7 +1086,6 @@
 # FIXME: Maybe split to particular subpackages.
 #%doc doc/api/html
 #%doc doc/*.html doc/*.txt doc/file-boilerplate.c doc/TODO
-%{_datadir}/dbus-1/interfaces/org.freedesktop.Avahi.*.xml
 %{_includedir}/avahi-client
 %{_includedir}/avahi-common
 %{_includedir}/avahi-core

++ avahi-mono.spec ++
--- /var/tmp/diff_new_pack.LgXFOJ/_old  2012-02-17 12:00:02.0 +0100
+++ /var/tmp/diff_new_pack.LgXFOJ/_new  2012-02-17 12:00:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package avahi-mono
 #
-# 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,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   avahi-mono
 # Do not edit this auto generated file! Edit avahi.spec.
 %define _name avahi
@@ -27,7 +28,7 @@
 %define build_mono 1
 %define build_qt3 0
 %define build_qt4 0
-Version:0.6.30
+Version:0.6.31
 Release:0
 %if !%build_glib2  !%build_mono  !%build_qt3  !%build_qt4
 # Create split spec files only when building per partes:
@@ -50,7 +51,7 @@
 Summary:Mono Bindings for avahi, the D-BUS Service for Zeroconf and 
Bonjour
 License:LGPL-2.1+
 Group:  Development/Languages/Mono
-Source: %{_name}-%{version}.tar.bz2
+Source: http://avahi.org/download/%{_name}-%{version}.tar.gz
 Source1:gnome-nettool2.png
 Source2:avahi-bookmarks.init
 Source3:avahi.firewall
@@ -1020,6 +1021,7 @@
 %{_sysconfdir}/dbus-1/system.d/*.conf
 %{_sysconfdir}/init.d/avahi-dnsconfd
 %{_sysconfdir}/init.d/avahi-daemon
+%{_datadir}/dbus-1/interfaces/org.freedesktop.Avahi.*.xml
 

commit brp-extract-appdata for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package brp-extract-appdata for 
openSUSE:Factory checked in at 2012-02-17 12:00:05

Comparing /work/SRC/openSUSE:Factory/brp-extract-appdata (Old)
 and  /work/SRC/openSUSE:Factory/.brp-extract-appdata.new (New)


Package is brp-extract-appdata, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/brp-extract-appdata/brp-extract-appdata.changes  
2012-02-16 20:47:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.brp-extract-appdata.new/brp-extract-appdata.changes 
2012-02-17 12:00:06.0 +0100
@@ -1,0 +2,11 @@
+Fri Feb 17 08:32:07 UTC 2012 - co...@suse.com
+
+- do not output nodisplay=true .desktop files
+- avoid empty applications/
+
+---
+Fri Feb 17 08:25:36 UTC 2012 - co...@suse.com
+
+- remove /usr/share/applications/ prefix
+
+---



Other differences:
--
++ create-appdata-xml.pl ++
--- /var/tmp/diff_new_pack.Rmr2cT/_old  2012-02-17 12:00:07.0 +0100
+++ /var/tmp/diff_new_pack.Rmr2cT/_new  2012-02-17 12:00:07.0 +0100
@@ -66,6 +66,9 @@
   $apphash{$currentfile}-{$key} = $val;
 }
 
+# we don't need to keep this around - beside for debugging
+unlink $appdata;
+
 for my $rpm (@rpms) {
 next if ($rpm =~ m/-debuginfo/ || $rpm =~ m/-debugsource/);
 open (FILES, chroot $build_root rpm -qp --qf '[%{NAME} %{FILENAMES}\n]' 
$rpm|);
@@ -94,8 +97,13 @@
 print APPDATA ?xml version='1.0'?\n;
 print APPDATA applications version='0.1'\n;
 
+my $applications_output = 0;
+
 while (my ($file, $hash) = each(%apphash)) {
+   next if (($hash-{nodisplay} || '') =~ m,true,i);
+   $applications_output++;
print APPDATA   application\n;
+   $file =~ s,/usr/share/applications/,,;
print APPDATA id type='application' . _e($file) . /id\n;
print APPDATA pkgname . _e($hash-{pkgname}) . /pkgname\n;
if ($hash-{name}) {
@@ -135,12 +143,18 @@
 print APPDATA /applications\n;
 close(APPDATA);
 
+if ($applications_output == 0) {
+  print DEBUG: removing empty XML\n;
+  # all were nodisplay
+  unlink($output);
+  exit(0);
+}
+
 # just for debug
 open(APPDATA, , $output);
 while ( APPDATA ) {
   print XML: $_;
 }
 close(APPDATA);
-# we don't need to keep this around - beside for debugging
-unlink $appdata;
 exit 0;
+

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



commit cairo for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/cairo/cairo.changes  2012-01-06 
11:43:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.cairo.new/cairo.changes 2012-02-17 
12:00:16.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 14 09:59:51 UTC 2012 - vu...@opensuse.org
+
+- Ship additional COPYING files that come with some utilities.
+- Fix license of the tool subpackage: it is GPL-3.0+ (bnc#739748).
+- Change the group of library subpackages from
+  Development/Libraries/X11 to System/Libraries.
+
+---



Other differences:
--
++ cairo.spec ++
--- /var/tmp/diff_new_pack.hsADdx/_old  2012-02-17 12:00:17.0 +0100
+++ /var/tmp/diff_new_pack.hsADdx/_new  2012-02-17 12:00:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package 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
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define build_xcb_backend 0
 %define build_gl_backend 0
 
@@ -23,8 +24,8 @@
 Release:0
 # FIXME: on update, check that cairo-fix-libs.patch (patch1) is still needed 
(nobody has the right fix for upstream :/)
 Summary:Vector Graphics Library with Cross-Device Output Support
-License:LGPL-2.1+ ; MPL-1.1
-Group:  Development/Libraries/X11
+License:LGPL-2.1+ or MPL-1.1
+Group:  System/Libraries
 Url:http://cairographics.org/
 Source: %{name}-%{version}.tar.bz2
 Source99:   baselibs.conf
@@ -62,6 +63,8 @@
 
 %package -n libcairo2
 Summary:Vector Graphics Library with Cross-Device Output Support
+License:LGPL-2.1+ or MPL-1.1
+Group:  System/Libraries
 Provides:   cairo = %{version}
 Obsoletes:  cairo  %{version}
 # bug437293
@@ -79,6 +82,8 @@
 
 %package -n libcairo-gobject2
 Summary:Vector Graphics Library with Cross-Device Output Support
+License:LGPL-2.1+ or MPL-1.1
+Group:  System/Libraries
 
 %description -n libcairo-gobject2
 Cairo is a vector graphics library with cross-device output support.
@@ -92,6 +97,8 @@
 
 %package -n libcairo-script-interpreter2
 Summary:Vector Graphics Library with Cross-Device Output Support
+License:LGPL-2.1+ or MPL-1.1
+Group:  System/Libraries
 
 %description -n libcairo-script-interpreter2
 Cairo is a vector graphics library with cross-device output support.
@@ -102,6 +109,8 @@
 
 %package tools
 Summary:Vector Graphics Library with Cross-Device Output Support -- 
Utilities
+License:GPL-3.0+
+Group:  Development/Libraries/X11
 # We need an explicit requires since nothing links to the cairo library
 Requires:   libcairo2 = %{version}
 # Named changed during  development of 11.4
@@ -119,6 +128,8 @@
 
 %package devel
 Summary:Development environment for cairo
+License:LGPL-2.1+ or MPL-1.1
+Group:  Development/Libraries/X11
 Requires:   libcairo2 = %{version}
 Requires:   libcairo-gobject2 = %{version}
 Requires:   libcairo-script-interpreter2 = %{version}
@@ -191,10 +202,12 @@
 
 %files -n libcairo-script-interpreter2
 %defattr(-, root, root)
+%doc util/cairo-script/COPYING
 %{_libdir}/libcairo-script-interpreter.so.*
 
 %files tools
 %defattr(-, root, root)
+%doc util/cairo-trace/COPYING util/cairo-trace/COPYING-GPL-3
 %{_bindir}/cairo-sphinx
 %{_bindir}/cairo-trace
 %dir %{_libdir}/cairo

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



commit createrepo for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is createrepo, Maintainer is mbarrin...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/createrepo/createrepo.changes2011-09-23 
01:54:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.createrepo.new/createrepo.changes   
2012-02-17 12:00:18.0 +0100
@@ -1,0 +2,17 @@
+Wed Jan 25 13:17:41 UTC 2012 - sasc...@suse.de
+
+- Spec cleanup:
+  * Simplified macro usage
+  * Dropped old suse version checks
+  * Removed Requires libxml2-python, upstream now uses lxml
+  * Package COPYING and COPYING.lib
+- Update to version 0.9.9:
+  * Bugfix release
+- Rebased generate-gzip-headers, disable-symlinks, cache_utime, cachefix,
+  license-to-confirm, add-lzma-option-to-generate-primary.xml.lzma,
+  sort-packages-before-writing-repodata patches
+- Dropped createrepo-0.9.8-disable-deltarpm-1.patch and
+  createrepo-0.9.8-disable-deltarpm-2.patch, we now have deltarpm
+  Python bindings packaged as 'python-deltarpm'
+
+---

Old:

  createrepo-0.9.8-add-lzma-option-to-generate-primary.xml.lzma.patch
  createrepo-0.9.8-cache_utime.patch
  createrepo-0.9.8-cachefix.patch
  createrepo-0.9.8-disable-deltarpm-1.patch
  createrepo-0.9.8-disable-deltarpm-2.patch
  createrepo-0.9.8-disable-symlinks.patch
  createrepo-0.9.8-generate-gzip-headers.patch
  createrepo-0.9.8-license-to-confirm.patch
  createrepo-0.9.8-sort-packages-before-writing-repodata.patch
  createrepo-0.9.8.tar.bz2
  createrepo-rpmlintrc

New:

  createrepo-0.9.9-add-lzma-option-to-generate-primary.xml.lzma.patch
  createrepo-0.9.9-cache_utime.patch
  createrepo-0.9.9-cachefix.patch
  createrepo-0.9.9-disable-symlinks.patch
  createrepo-0.9.9-generate-gzip-headers.patch
  createrepo-0.9.9-license-to-confirm.patch
  createrepo-0.9.9-sort-packages-before-writing-repodata.patch
  createrepo-0.9.9.tar.gz



Other differences:
--
++ createrepo.spec ++
--- /var/tmp/diff_new_pack.f2n3p6/_old  2012-02-17 12:00:20.0 +0100
+++ /var/tmp/diff_new_pack.f2n3p6/_new  2012-02-17 12:00:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package createrepo
 #
-# 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,40 +15,34 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   createrepo
-BuildRequires:  python
-Version:0.9.8
-Release:9
-License:GPL-2.0+
+Version:0.9.9
+Release:0
 Summary:Creates a Common Metadata Repository
+License:GPL-2.0+
 Group:  System/Packages
-Source: %{name}-%{version}.tar.bz2
-Source1:createrepo-rpmlintrc
-Patch0: createrepo-0.9.8-disable-deltarpm-1.patch
-Patch1: createrepo-0.9.8-disable-deltarpm-2.patch
-Patch2: createrepo-0.9.8-cache_utime.patch
-Patch3: createrepo-0.9.8-cachefix.patch
-Patch4: createrepo-0.9.8-license-to-confirm.patch
-Patch5: createrepo-0.9.8-sort-packages-before-writing-repodata.patch
-Patch6: 
createrepo-0.9.8-add-lzma-option-to-generate-primary.xml.lzma.patch
-Patch7: createrepo-0.9.8-generate-gzip-headers.patch
-Patch8: createrepo-0.9.8-disable-symlinks.patch
-Patch9: createrepo-0.9.8-workaround-umask-reset.patch
 Url:http://linux.duke.edu/metadata/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-#BuildArch:  noarch
-Requires:   yum-common = 3.2.25
+Source: 
http://createrepo.baseurl.org/download/%{name}-%{version}.tar.gz
+Patch2: createrepo-0.9.9-cache_utime.patch
+Patch3: createrepo-0.9.9-cachefix.patch
+Patch4: createrepo-0.9.9-license-to-confirm.patch
+Patch5: createrepo-0.9.9-sort-packages-before-writing-repodata.patch
+Patch6: 
createrepo-0.9.9-add-lzma-option-to-generate-primary.xml.lzma.patch
+Patch7: createrepo-0.9.9-generate-gzip-headers.patch
+Patch8: createrepo-0.9.9-disable-symlinks.patch
+Patch9: createrepo-0.9.8-workaround-umask-reset.patch
+BuildRequires:  python-devel
+Requires:   python-deltarpm
+Requires:   python-lxml
+Requires:   python-urlgrabber
 Requires:   rpm = 4.1.1
 Requires:   rpm-python
-Requires:   libxml2-python
-Requires:   python-urlgrabber

commit gnome-themes-standard for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package gnome-themes-standard for 
openSUSE:Factory checked in at 2012-02-17 12:00:23

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


Package is gnome-themes-standard, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-themes-standard/gnome-themes-standard.changes  
2012-01-26 14:04:22.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-themes-standard.new/gnome-themes-standard.changes
 2012-02-17 12:00:26.0 +0100
@@ -1,0 +2,26 @@
+Wed Feb  8 06:43:04 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.5.1:
+  + Fix gedit/Epiphany tabs
+  + Fix wrong selected text color
+
+---
+Tue Feb  7 08:30:49 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.5:
+  + Use GTK resource file support
+  + Use PNG assets instead of SVG
+  + Remove the window resize grip
+  + Don't set child-displacement-y on buttons
+  + Don't set WM title/button borders on frameless windows
+  + Improve check/radio and slider assets
+  + Adapt to GTK+ master changed for:
+- border/padding/margin units
+- entry/combobox border allocations
+- GtkImage backgrounds
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+- Add gdk-pixbuf-loader-rsvg BuildRequires: this is needed at build
+  time to convert svg files to GdkPixbuf pixdata in GResource.
+
+---

Old:

  gnome-themes-standard-3.3.4.tar.xz

New:

  gnome-themes-standard-3.3.5.1.tar.xz



Other differences:
--
++ gnome-themes-standard.spec ++
--- /var/tmp/diff_new_pack.W9l105/_old  2012-02-17 12:00:28.0 +0100
+++ /var/tmp/diff_new_pack.W9l105/_new  2012-02-17 12:00:28.0 +0100
@@ -20,15 +20,15 @@
 Summary:Standard GNOME Themes
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
-Version:3.3.4
+Version:3.3.5.1
 Release:0
 Url:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/gnome-themes-standard/3.3/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  intltool
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
-BuildRequires:  pkgconfig(gtk+-3.0) = 3.3.7
+# Needed to convert svg to gresource
+BuildRequires:  gdk-pixbuf-loader-rsvg
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.3.14
 BuildRequires:  pkgconfig(librsvg-2.0)
 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 gvfs for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/gvfs/gvfs.changes2012-01-25 
10:37:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.gvfs.new/gvfs.changes   2012-02-17 
12:00:30.0 +0100
@@ -1,0 +2,24 @@
+Tue Feb  7 15:17:07 UTC 2012 - vu...@opensuse.org
+
+- Update to version 1.11.3:
+  + Brand new udisks2 volume monitor
+  + AFP backend fixes and enhancements
+  + User runtime dir is now used for gvfs mounts and the burn
+backend
+  + Fixed backends segfaulting on unmount
+  + Updated translations.
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+- Get ready for switch to udisks2:
+  + Add a with_udisk2 macro, currently set to 0 as udisk2 is still
+waiting for security review (bnc#742751).
+  + This will enable the use of the udisks2 volume monitor, instead
+of the gdu volume monitor.
+  + If with_udisk2 is set to 1:
+- Use pkgconfig(udisks2) BuildRequires.
+- Pass --enable-udisks2 --disable-gdu to configure.
+  + If with_udisk2 is set to 0:
+- Use libgdu-devel BuildRequires.
+- Pass --disable-udisks2 --enable-gdu to configure.
+
+---

Old:

  gvfs-1.11.2.tar.xz

New:

  gvfs-1.11.3.tar.xz



Other differences:
--
++ gvfs.spec ++
--- /var/tmp/diff_new_pack.ZxShI7/_old  2012-02-17 12:00:34.0 +0100
+++ /var/tmp/diff_new_pack.ZxShI7/_new  2012-02-17 12:00:34.0 +0100
@@ -16,8 +16,10 @@
 #
 
 
+%define with_udisks2 0
+
 Name:   gvfs
-Version:1.11.2
+Version:1.11.3
 Release:0
 Summary:VFS functionality for GLib
 License:LGPL-2.0+
@@ -39,7 +41,9 @@
 BuildRequires:  libcdio-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  libgcrypt-devel
+%if !%{with_udisks2}
 BuildRequires:  libgdu-devel
+%endif
 BuildRequires:  libgnome-keyring-devel
 BuildRequires:  libgphoto2-devel
 BuildRequires:  libgudev-1_0-devel
@@ -49,9 +53,10 @@
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  translation-update-upstream
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
 BuildRequires:  pkgconfig(libbluray)
+%if %{with_udisks2}
+BuildRequires:  pkgconfig(udisks2) = 1.90
+%endif
 Requires:   libgvfscommon0 = %{version}
 Recommends: %{name}-lang
 Recommends: gvfs-backends
@@ -124,14 +129,18 @@
 %build
 %configure \
 --libexecdir=%{_libexecdir}/%{name} \
+%if %{with_udisks2}
+--enable-udisks2 \
+--disable-gdu \
+%else
+--disable-udisks2 \
+--enable-gdu \
+%endif
 --disable-static
 %__make
 
 %install
 %makeinstall
-%if 0%{?suse_version} = 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
 rm %{buildroot}%{_libdir}/*.*a
 rm %{buildroot}%{_libdir}/gio/modules/*.*a
 # We can drop the chmod when bgo523420 is fixed.
@@ -186,7 +195,7 @@
 
 %files backends
 %defattr(-, root, root)
-%if 0%{suse_version}  1110
+%if !%{with_udisks2}
 %{_libexecdir}/%{name}/gvfs-gdu-volume-monitor
 %{_datadir}/dbus-1/services/org.gtk.Private.GduVolumeMonitor.service
 %{_datadir}/%{name}/remote-volume-monitors/gdu.monitor

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



commit htop for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is htop, Maintainer is thoe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/htop/htop.changes2011-11-25 
10:12:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.htop.new/htop.changes   2012-02-17 
12:00:34.0 +0100
@@ -1,0 +2,14 @@
+Fri Feb 17 06:37:59 UTC 2012 - pu...@suse.com
+
+- update to htop-1.0.1 (bugfix release)
+  * respecting $XDG_CONFIG_HOME 
+(thanks to Hadzhimurad Ustarkhan for the suggestion.)
+  * Safer behavior on the kill screen, to make it harder to kill
+the wrong process.
+  * BUGFIX: behavior of 'F' (follow) key was broken, also affecting
+the persistence of mouse selections.
+  * BUGFIX: keep main panel up-to-date when running the screen
+manager, to fix crash when processes die while on the F9/Kill
+screen.
+
+---

Old:

  htop-1.0.tar.bz2

New:

  htop-1.0.1.tar.gz



Other differences:
--
++ htop.spec ++
--- /var/tmp/diff_new_pack.Dk6qmt/_old  2012-02-17 12:00:36.0 +0100
+++ /var/tmp/diff_new_pack.Dk6qmt/_new  2012-02-17 12:00:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package htop
 #
-# 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,24 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   htop
 Url:http://htop.sourceforge.net
 Summary:An Interactive text-mode Process Viewer for Linux
-Version:1.0
-Release:14
 License:GPL-2.0+
 Group:  System/Monitoring
-Source0:%{name}-%{version}.tar.bz2
+Version:1.0.1
+Release:0
+Source0:%{name}-%{version}.tar.gz
 Patch0: htop-desktop-file-fix-thoenig-01.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ncurses-devel python
+BuildRequires:  ncurses-devel
+BuildRequires:  python
 BuildRequires:  update-desktop-files
 Recommends: strace
 Recommends: lsof
-AutoReqProv:on
 
 %description
 htop is an interactive text-mode process viewer for Linux. It aims to

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



commit kdebase4-openSUSE for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is kdebase4-openSUSE, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-openSUSE/kdebase4-openSUSE.changes  
2011-11-25 23:04:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4-openSUSE.new/kdebase4-openSUSE.changes 
2012-02-17 12:00:38.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 11 21:05:21 UTC 2012 - freespa...@gmx.de
+
+- Add sysinfo-fixed-opengl-detecting.patch (bnc#746599)
+
+---

New:

  sysinfo-fixed-opengl-detecting.patch



Other differences:
--
++ kdebase4-openSUSE.spec ++
--- /var/tmp/diff_new_pack.luTWhT/_old  2012-02-17 12:00:41.0 +0100
+++ /var/tmp/diff_new_pack.luTWhT/_new  2012-02-17 12:00:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdebase4-openSUSE
 #
-# 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,15 +16,14 @@
 #
 
 
-
 Name:   kdebase4-openSUSE
 Version:12.2
-Release:1
-License:GPL-2.0+
+Release:0
 Summary:openSUSE KDE Extension
+License:GPL-2.0+
+Group:  System/GUI/KDE
 # git clone git://git.opensuse.org/projects/desktop/kdebase4-openSUSE.git
 Url:http://www.opensuse.org/
-Group:  System/GUI/KDE
 Source0:kdebase4-openSUSE-%{version}.tar.bz2
 #svn export svn://anonsvn.kde.org/home/kde/trunk/playground/base/kio_sysinfo
 Source1:sysinfo.tar.bz2
@@ -34,14 +33,15 @@
 Patch1: link-to-qtxml.patch
 Patch2: noproxy.diff
 Patch3: kdebase4-openSUSE-bnc721114.patch
+Patch4: sysinfo-fixed-opengl-detecting.patch
 BuildRequires:  fdupes
 BuildRequires:  hwinfo-devel
+BuildRequires:  kdebase4-workspace-branding-upstream
+BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkde4-devel
 BuildRequires:  oxygen-icon-theme
-BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  rpm-devel
 BuildRequires:  wallpaper-branding-openSUSE
-BuildRequires:  kdebase4-workspace-branding-upstream
 
 PreReq: %fillup_prereq
 Requires:   kdebase4-workspace
@@ -58,7 +58,6 @@
 This package contains the standard openSUSE desktop and extensions.
 
 %package -n kio_sysinfo
-License:GPL-2.0+
 Summary:System Information KIO-Slave
 Group:  System/GUI/KDE
 Requires:   kio_sysinfo-branding = %{version}
@@ -71,7 +70,6 @@
 This package contains a KDE KIO-Slave showing system information.
 
 %package -n kdebase4-workspace-branding-openSUSE
-License:GPL-2.0+
 Summary:openSUSE KDE Extension
 Group:  System/GUI/KDE
 PreReq: %fillup_prereq
@@ -88,7 +86,6 @@
 This package contains the standard openSUSE desktop and extensions.
 
 %package -n kdebase4-runtime-branding-openSUSE
-License:GPL-2.0+
 Summary:The KDE Runtime Components
 Group:  System/GUI/KDE
 PreReq: %fillup_prereq
@@ -101,7 +98,6 @@
 This package contains all run-time dependencies of KDE applications.
 
 %package -n kio_sysinfo-branding-openSUSE
-License:GPL-2.0+
 Summary:System Information KIO-Slave
 Group:  System/GUI/KDE
 Requires:   kio_sysinfo
@@ -123,6 +119,7 @@
 
 cd sysinfo
 tar xvf %{SOURCE3}
+%patch4 -p1
 
 %build
   %cmake_kde4 -d build -- -DSYSINFO_DISTRO:STRING=SUSE


++ sysinfo-fixed-opengl-detecting.patch ++
diff -rup sysinfo.orig/kio_sysinfo/src/sysinfo.cpp 
sysinfo/kio_sysinfo/src/sysinfo.cpp
--- sysinfo.orig/kio_sysinfo/src/sysinfo.cpp2011-02-15 11:58:31.0 
+0100
+++ sysinfo/kio_sysinfo/src/sysinfo.cpp 2012-02-11 20:33:58.994424485 +0100
@@ -661,7 +661,7 @@ bool kio_sysinfoProtocol::glInfo()
 m_info[GFX_3D_DRIVER] = i18n(Unknown);
 }
 m_info[GFX_3D_DRIVER] +=  classic;
-} else if (opengl_vendor.contains(ATI)) { /* Proprietary ATI */
+} else if (opengl_vendor.contains(ATI) || 
opengl_vendor.contains(Advanced Micro Devices)) { /* Proprietary ATI */
 m_info[GFX_VENDOR] = GFX_VENDOR_ATI;
 m_info[GFX_MODEL] = opengl_renderer;
 m_info[GFX_3D_DRIVER] = ATI;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kiwi for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2012-02-14 
13:06:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2012-02-17 
12:00:45.0 +0100
@@ -1,0 +2,85 @@
+Thu Feb 16 16:05:45 CET 2012 - m...@suse.de
+
+- v5.02.10 released
+  
+---
+Thu Feb 16 15:22:18 CET 2012 - m...@suse.de
+  
+- added virtio drivers for sle10 boot image descriptions (bnc #747346)
+  
+---
+Thu Feb 16 15:00:30 CET 2012 - m...@suse.de
+  
+- arm: make boot.script more robust by checking alternative
+  variable names for kernel and initrd addresses
+  
+---
+Thu Feb 16 14:36:37 CET 2012 - m...@suse.de
+  
+- fixed checkLVMbind so that it directly reads the LVM
+  header from the specified disk device
+  
+---
+Thu Feb 16 13:02:36 CET 2012 - m...@suse.de
+  
+- arm: fixed installation of MLO loader, wrong path
+  
+---
+Thu Feb 16 11:25:28 CET 2012 - m...@suse.de
+  
+- call resetBootBind before preinit (bnc #747241)
+  
+---
+Wed Feb 15 16:55:54 CET 2012 - m...@suse.de
+  
+- removed use of suseRemovePackagesMarkedForDeletion
+  
+---
+Wed Feb 15 16:54:49 CET 2012 - m...@suse.de
+  
+- arm: renamed image descriptions to 'Factory'
+- arm: removed use of suseRemovePackagesMarkedForDeletion
+  
+---
+Wed Feb 15 16:30:19 CET 2012 - m...@suse.de
+  
+- arm: added vram setup to JeOS description
+- arm: fixed boot.script setup on first boot
+  
+---
+Wed Feb 15 12:30:54 CET 2012 - m...@suse.de
+  
+- DB: update documentation, added chapter about image caching
+  
+---
+Wed Feb 15 10:51:53 CET 2012 - m...@suse.de
+  
+- arm: added mmc sd card drivers to boot image descriptions
+  
+---
+Tue Feb 14 23:30:28 CET 2012 - m...@suse.de
+  
+- don't call images.sh and config.sh when in --init-cache mode
+- don't evaluate packages type=delete section in --init-cache mode
+- added check for rpm binary in cleanupRPMDatabase
+  
+---
+Tue Feb 14 18:34:23 CET 2012 - m...@suse.de
+  
+- arm: make creation of boot.script more generic by using
+  kerneladdr and ramdiskaddr variables
+- arm: fixed JeOS console setup for efika, setup baudrate
+  
+---
+Tue Feb 14 16:20:17 CET 2012 - m...@suse.de
+  
+- added newline for messages waiting for status flag when
+  they are written to the kiwi log file. It hurts when
+  multiple log messages are written without a newline
+  
+---
+Mon Feb 13 17:48:58 CET 2012 - m...@suse.de
+  
+- arm: fixed setup of boot.script, missing redirect
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.DVjLuR/_old  2012-02-17 12:00:47.0 +0100
+++ /var/tmp/diff_new_pack.DVjLuR/_new  2012-02-17 12:00:47.0 +0100
@@ -22,7 +22,7 @@
 Summary:OpenSuSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.02.9
+Version:5.02.10
 Release:0
 # requirements to build packages
 BuildRequires:  gcc-c++
@@ -455,7 +455,7 @@
 %exclude %{_datadir}/kiwi/image/suse-SLE11-JeOS
 %endif
 %ifarch %arm
-%exclude %{_datadir}/kiwi/image/suse-SLE12-JeOS
+%exclude %{_datadir}/kiwi/image/suse-Factory-JeOS
 %endif
 %{_datadir}/kiwi/.revision
 %{_datadir}/kiwi/modules
@@ -579,7 +579,7 @@
 %{_datadir}/kiwi/image/suse-SLE11-JeOS
 %endif
 %ifarch %arm
-%{_datadir}/kiwi/image/suse-SLE12-JeOS
+%{_datadir}/kiwi/image/suse-Factory-JeOS
 %endif
 %ifarch ppc ppc64
 %{_datadir}/kiwi/image/suse-SLE11-JeOS

++ kiwi-docu.tar.bz2 ++
/work/SRC/openSUSE:Factory/kiwi/kiwi-docu.tar.bz2 
/work/SRC/openSUSE:Factory/.kiwi.new/kiwi-docu.tar.bz2 differ: char 11, line 1


commit libaio for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is libaio, Maintainer is h...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libaio/libaio.changes2011-11-28 
12:54:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.libaio.new/libaio.changes   2012-02-17 
12:00:53.0 +0100
@@ -1,0 +2,16 @@
+Thu Feb 16 10:56:49 UTC 2012 - mvysko...@suse.cz
+
+- fix typo versoin/version 
+
+---
+Mon Feb 13 10:48:23 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Mon Nov 28 11:50:13 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Employ shlib packaging
+
+---



Other differences:
--
++ libaio.spec ++
--- /var/tmp/diff_new_pack.veSSKI/_old  2012-02-17 12:00:54.0 +0100
+++ /var/tmp/diff_new_pack.veSSKI/_new  2012-02-17 12:00:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libaio
 #
-# 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,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libaio
-License:LGPLv2.1+
-Group:  System/Libraries
-AutoReqProv:on
+%define lname  libaio1
 # bug437293
 %ifarch ppc64
 Obsoletes:  libaio-64bit
 %endif
 #
 Version:0.3.109
-Release:1
+Release:0
 Summary:Linux-Native Asynchronous I/O Access Library
+License:LGPL-2.1+
+Group:  Development/Libraries/C and C++
 Url:http://kernel.org/pub/linux/libs/aio/
 Source: libaio-%{version}.tar.bz2
 Source2:baselibs.conf
@@ -49,13 +47,25 @@
 kernel-accelerated async I/O capabilities, as do applications that
 require the Linux-native async I/O API.
 
+%package -n %lname
+Summary:Linux-Native Asynchronous I/O Access Library
+Group:  System/Libraries
+# O/P added 2011-11-27
+Obsoletes:  libaio  %version-%release
+Provides:   libaio = %version-%release
 
+%description -n %lname
+The Linux-native asynchronous I/O facility (async I/O, or aio) has
+a richer API and capability set than the simple POSIX async I/O
+facility. This library provides the Linux-native API for async I/O. The
+POSIX async I/O facility requires this library to provide
+kernel-accelerated async I/O capabilities, as do applications that
+require the Linux-native async I/O API.
 
 %package devel
-License:LGPLv2.1+
 Summary:Development Files for Linux-native Asynchronous I/O Access
 Group:  Development/Libraries/C and C++
-Requires:   libaio = %{version} glibc-devel
+Requires:   %lname = %version, glibc-devel
 # bug437293
 %ifarch ppc64
 Obsoletes:  libaio-devel-64bit
@@ -89,11 +99,11 @@
 t=$(readlink -f %buildroot/%_libdir/libaio.so)
 ln -fs ${t#%buildroot} %buildroot/%_libdir/libaio.so
 
-%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(644,root,root,755)
 %doc COPYING TODO
 %attr(0755,root,root) /%{_lib}/libaio.*

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



commit libcddb for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is libcddb, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libcddb/libcddb-utils.changes2012-01-20 
22:07:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcddb.new/libcddb-utils.changes   
2012-02-17 12:00:54.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 16 21:09:31 UTC 2012 - co...@suse.com
+
+- move license outside a %if to fix build of libcddb-utils
+
+---
libcddb.changes: same change



Other differences:
--
++ libcddb-utils.spec ++
--- /var/tmp/diff_new_pack.UieKLX/_old  2012-02-17 12:00:55.0 +0100
+++ /var/tmp/diff_new_pack.UieKLX/_new  2012-02-17 12:00:55.0 +0100
@@ -26,17 +26,14 @@
 Version:1.3.2
 Release:0
 Url:http://libcddb.sourceforge.net/
-%if %BUILD_CORE
 Summary:CDDB Access Library Utilities
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Other
+%if %BUILD_CORE
 # bug437293
 %ifarch ppc64
 Obsoletes:  libcddb-64bit
 %endif
-%else
-Summary:CDDB Access Library Utilities
-Group:  Productivity/Multimedia/Other
 %endif
 Source: %{_name}-%{version}.tar.bz2
 Source1:%{_name}_spec-prepare.sh

++ libcddb.spec ++
--- /var/tmp/diff_new_pack.UieKLX/_old  2012-02-17 12:00:55.0 +0100
+++ /var/tmp/diff_new_pack.UieKLX/_new  2012-02-17 12:00:55.0 +0100
@@ -26,17 +26,14 @@
 Version:1.3.2
 Release:0
 Url:http://libcddb.sourceforge.net/
-%if %BUILD_CORE
 Summary:CDDB Access Library Utilities
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Other
+%if %BUILD_CORE
 # bug437293
 %ifarch ppc64
 Obsoletes:  libcddb-64bit
 %endif
-%else
-Summary:CDDB Access Library Utilities
-Group:  Productivity/Multimedia/Other
 %endif
 Source: %{_name}-%{version}.tar.bz2
 Source1:%{_name}_spec-prepare.sh

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



commit libcryptui for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

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

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


Package is libcryptui, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libcryptui/libcryptui.changes2012-01-09 
15:18:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcryptui.new/libcryptui.changes   
2012-02-17 12:00:56.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb  5 21:18:18 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.3.5:
+  + Updated translations.
+
+---

Old:

  libcryptui-3.2.2.tar.bz2

New:

  libcryptui-3.3.5.tar.xz



Other differences:
--
++ libcryptui.spec ++
--- /var/tmp/diff_new_pack.LklqCY/_old  2012-02-17 12:00:57.0 +0100
+++ /var/tmp/diff_new_pack.LklqCY/_new  2012-02-17 12:00:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libcryptui
 #
-# 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,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   libcryptui
-Version:3.2.2
+Version:3.3.5
 Release:0
 # FIXME: find out why building introspection support for this package requires 
libtool
 Summary:Library for prompting for PGP keys
 License:LGPL-2.1+ ; GPL-2.0+
 Group:  Productivity/Security
 Url:http://projects.gnome.org/seahorse/
-Source: 
http://download.gnome.org/sources/libcryptui/3.2/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/libcryptui/3.3/%{name}-%{version}.tar.xz
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gpg2
 BuildRequires:  gpgme-devel

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



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 provided a 

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=pathname
+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 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 david.mosber...@acm.org
 
 %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 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 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 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, and 

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*.pc

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 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-targettype
requires libXprintAppUtil1-targettype = version
-- 
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-%release

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-targettype
requires libXrandr2-targettype = version
-- 
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-targettype
requires libXRes1-targettype = version
-- 
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-targettype
requires libXTrap6-targettype = version
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



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-targettype
requires libXtst6-targettype = version
-- 
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 Open Source 

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 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 mar...@oberhumer.com
 
 %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 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, e-mail: 

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 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 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 21
 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 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 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 jeng...@medozas.de
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 math.h
 #include match.h
 #include limits.h
 
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 stdlib.h
 #include ../src/common.h
 #include stdio.h
 #include time.h
@@ -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 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 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 kmar...@gnome.org
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 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-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-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 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 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 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/MANIFEST2012-01-05 

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
-# remove 

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.t

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 gi...@activestate.com
@@ -13,16 +13,16 @@
 requires:
 HTTP::Date:   6
 

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 gi...@activestate.com
@@ -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;

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 7324434239bc0678904a4eb406f6c3b08951b162 t/dependency.t
 SHA1 

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-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 gi...@activestate.com
@@ -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 gi...@activestate.com',
 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;
 

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: 

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 shlo...@iglu.org.il
+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

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-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 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 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 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-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 s...@glatzor.de
-
 %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-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-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 

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 http://packages.python.org/passlib`_
-  for details, installation instructions, and examples.
-
-* See the `passlib homepage http://passlib.googlecode.com`_
-  for the latest news, more information, and additional downloads.
-
-* See the `changelog http://packages.python.org/passlib/history.html`_
-  for a description of what's new in Passlib.
-
-All releases are signed with the gpg key
-`4CE1ED31 
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x4D8592DF4CE1ED31`_.
-
 %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-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-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 python version. 
+

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 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 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-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 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-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-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-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-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-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-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 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-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:   

  1   2   >