commit cvs for openSUSE:12.1:Update:Test

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package cvs for openSUSE:12.1:Update:Test 
checked in at 2012-02-23 10:42:03

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/cvs/cvs.changes 2012-02-13 
17:30:35.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.cvs.new/cvs.changes2012-02-23 
10:42:05.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 21 12:46:04 CET 2012 - p...@suse.de
+
+- Fix typo in last patch.
+
+---



Other differences:
--
++ cvs.spec ++
--- /var/tmp/diff_new_pack.IHQJcj/_old  2012-02-23 10:42:06.0 +0100
+++ /var/tmp/diff_new_pack.IHQJcj/_new  2012-02-23 10:42:06.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   cvs
 BuildRequires:  gdbm-devel
 BuildRequires:  zlib-devel

++ cvs-CVE-2012-0804.patch ++
--- /var/tmp/diff_new_pack.IHQJcj/_old  2012-02-23 10:42:07.0 +0100
+++ /var/tmp/diff_new_pack.IHQJcj/_new  2012-02-23 10:42:07.0 +0100
@@ -7,7 +7,7 @@
   */
read_line_via (from_server, to_server, read_buf);
 -  sscanf (read_buf, %s %d, write_buf, codenum);
-+  count = sscanf (read_buf, %s %d, write_buf, codenum);
++  count = sscanf (read_buf, %*s %d, codenum);
  
 -  if ((codenum / 100) != 2)
 +  if (count != 1 || (codenum / 100) != 2)

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



commit usbmuxd for openSUSE:12.1:Update:Test

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package usbmuxd for 
openSUSE:12.1:Update:Test checked in at 2012-02-23 10:42:51

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


Package is usbmuxd, Maintainer is sts...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/usbmuxd/usbmuxd.changes 2012-02-23 
10:42:51.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.usbmuxd.new/usbmuxd.changes
2012-02-23 10:42:51.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 21 18:48:59 UTC 2012 - sts...@suse.com
+
+- CVE-2012-0065.patch fixes recieve_packet() 
+  Buffer overflow vulnerability CVE-2012-0065
+  (bnc#742546)
+
+---

Old:

  _service:download_url:usbmuxd-1.0.7.tar.bz2

New:

  CVE-2012-0065.patch



Other differences:
--
++ usbmuxd.spec ++
--- /var/tmp/diff_new_pack.FgkmmQ/_old  2012-02-23 10:42:51.0 +0100
+++ /var/tmp/diff_new_pack.FgkmmQ/_new  2012-02-23 10:42:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package usbmuxd
 #
-# 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,17 @@
 #
 
 
-
 Name:   usbmuxd
 %define _libname   libusbmuxd
 Version:1.0.7
-Release:4
-License:LGPL v2.1 or GPL v2
+Release:0
 Summary:Socket daemon for the usbmux protocol of iPhone/iPod Touch 
devices
-Url:http://git.marcansoft.com/?p=usbmuxd.git
+License:LGPL-2.1 or GPL-2.0
 Group:  System/Libraries
+Url:http://git.marcansoft.com/?p=usbmuxd.git
 Source: %{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM bnc742546 CVE-2012-0065.patch sts...@suse.com -- Taken 
from usbmuxd.git
+Patch0: CVE-2012-0065.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  libplist-devel
@@ -44,8 +45,6 @@
 
 %package -n %{_libname}1
 
-
-License:LGPL v2.1 or GPL v2
 Summary:A library to abstract socket/protocol communication to the 
usbmuxd daemon
 Group:  System/Libraries
 Requires:   %{name}
@@ -58,7 +57,6 @@
 
 %package -n %{_libname}-devel
 
-
 Summary:Development files for %{_libname}
 Group:  Development/Libraries/C and C++
 Requires:   %{_libname} = %{version}
@@ -69,7 +67,6 @@
 developing applications that use %{_libname}.
 
 %package -n iproxy
-License:LGPL v2.1 or GPL v2
 Summary:Proxy enabling TCP tunneling to iPhone/iPod Touch via USB cable
 Group:  System/Libraries
 Requires:   %{_libname} = %{version}
@@ -86,6 +83,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 mkdir build

++ CVE-2012-0065.patch ++
Index: usbmuxd-1.0.7/libusbmuxd/libusbmuxd.c
===
--- usbmuxd-1.0.7.orig/libusbmuxd/libusbmuxd.c
+++ usbmuxd-1.0.7/libusbmuxd/libusbmuxd.c
@@ -189,7 +189,7 @@ static int receive_packet(int sfd, struc
char *strval = NULL;
plist_get_string_val(n, strval);
if (strval) {
-   strcpy(dev-serial_number, strval);
+   strncpy(dev-serial_number, strval, 
255);
free(strval);
}
n = plist_dict_get_item(props, LocationID);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit usbmuxd for openSUSE:11.4

2012-02-23 Thread h_root

Hello community,

here is the log from the commit of package usbmuxd for openSUSE:11.4
checked in at Thu Feb 23 12:11:24 CET 2012.




--- old-versions/11.4/UPDATES/all/usbmuxd/usbmuxd.changes   2011-03-24 
17:51:17.0 +0100
+++ 11.4/usbmuxd/usbmuxd.changes2012-02-21 20:48:42.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 21 18:48:59 UTC 2012 - sts...@suse.com
+
+- CVE-2012-0065.patch fixes recieve_packet() 
+  Buffer overflow vulnerability CVE-2012-0065
+  (bnc#742546)
+
+---

calling whatdependson for 11.4-i586


New:

  CVE-2012-0065.patch



Other differences:
--
++ usbmuxd.spec ++
--- /var/tmp/diff_new_pack.5pEsBs/_old  2012-02-23 12:10:44.0 +0100
+++ /var/tmp/diff_new_pack.5pEsBs/_new  2012-02-23 12:10:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package usbmuxd
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,14 @@
 Name:   usbmuxd
 %define _libname   libusbmuxd
 Version:1.0.7
-Release:3.RELEASE2
-License:LGPL v2.1 or GPL v2
+Release:3.RELEASE5
 Summary:Socket daemon for the usbmux protocol of iPhone/iPod Touch 
devices
-Url:http://git.marcansoft.com/?p=usbmuxd.git
+License:LGPL-2.1 or GPL-2.0
 Group:  System/Libraries
+Url:http://git.marcansoft.com/?p=usbmuxd.git
 Source: %{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM bnc742546 CVE-2012-0065.patch sts...@suse.com -- Taken 
from usbmuxd.git
+Patch0: CVE-2012-0065.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  libplist-devel
@@ -45,7 +47,6 @@
 %package -n %{_libname}1
 
 
-License:LGPL v2.1 or GPL v2
 Summary:A library to abstract socket/protocol communication to the 
usbmuxd daemon
 Group:  System/Libraries
 Requires:   %{name}
@@ -69,7 +70,7 @@
 developing applications that use %{_libname}.
 
 %package -n iproxy
-License:LGPL v2.1 or GPL v2
+
 Summary:Proxy enabling TCP tunneling to iPhone/iPod Touch via USB cable
 Group:  System/Libraries
 Requires:   %{_libname} = %{version}
@@ -86,6 +87,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 mkdir build

++ CVE-2012-0065.patch ++
Index: usbmuxd-1.0.7/libusbmuxd/libusbmuxd.c
===
--- usbmuxd-1.0.7.orig/libusbmuxd/libusbmuxd.c
+++ usbmuxd-1.0.7/libusbmuxd/libusbmuxd.c
@@ -189,7 +189,7 @@ static int receive_packet(int sfd, struc
char *strval = NULL;
plist_get_string_val(n, strval);
if (strval) {
-   strcpy(dev-serial_number, strval);
+   strncpy(dev-serial_number, strval, 
255);
free(strval);
}
n = plist_dict_get_item(props, LocationID);
continue with q...



Remember to have fun...

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



commit arpwatch-ethercodes for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2012-02-23 15:32:10

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-22 15:52:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new/arpwatch-ethercodes.changes 
2012-02-23 15:32:12.0 +0100
@@ -2 +2 @@
-Wed Feb 22 07:40:09 CET 2012 - autobu...@suse.de
+Thu Feb 23 08:40:09 CET 2012 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2012-02-22
+- automated update on 2012-02-23



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.9FYNL2/_old  2012-02-23 15:32:14.0 +0100
+++ /var/tmp/diff_new_pack.9FYNL2/_new  2012-02-23 15:32:14.0 +0100
@@ -23,7 +23,7 @@
 License:BSD-3-Clause
 Group:  Productivity/Networking/Diagnostic
 Summary:Ethercodes Data for arpwatch
-Version:2012.2.22
+Version:2012.2.23
 Release:1
 Source0:http://standards.ieee.org/regauth/oui/oui.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt ++
--- /var/tmp/diff_new_pack.9FYNL2/_old  2012-02-23 15:32:14.0 +0100
+++ /var/tmp/diff_new_pack.9FYNL2/_new  2012-02-23 15:32:14.0 +0100
@@ -65102,6 +65102,12 @@
Johnstown New York 12095
UNITED STATES
 
+00-36-F8   (hex)   Conti Temic microelectronic GmbH
+0036F8 (base 16)   Conti Temic microelectronic GmbH
+   Dornierstra�e 1
+   Markdorf  88677
+   GERMANY
+
 00-37-6D   (hex)   Murata Manufacturing Co., Ltd.
 00376D (base 16)   Murata Manufacturing Co., Ltd.
1-10-1,Higashikotari
@@ -82196,6 +82202,13 @@
San Jose CA 95134
UNITED STATES
 
+0C-8B-FD   (hex)   Intel Corporate
+0C8BFD (base 16)   Intel Corporate
+   Lot 8, Jalan Hi-Tech 2/3
+   Kulim Hi-Tech Park
+   Kulim Kedah 09000
+   MALAYSIA
+
 0C-8D-98   (hex)   TOP EIGHT IND CORP
 0C8D98 (base 16)   TOP EIGHT IND CORP
8F.,No79-1 Zhouzi St., Neihu District, Taipei 
City  (Neihu Technology Park)
@@ -84568,6 +84581,13 @@
San Antonio TX 78217
UNITED STATES
 
+2C-00-F7   (hex)   XOS
+2C00F7 (base 16)   XOS
+   15 Tech Valley Drive
+   Suite 1
+   East Greenbush NY 12061
+   UNITED STATES
+
 2C-06-23   (hex)   Win Leader Inc.
 2C0623 (base 16)   Win Leader Inc.
Level 3 ,Alexander House,
@@ -89462,6 +89482,13 @@
SHENZHEN GUANGDONG 518018
CHINA
 
+68-D9-25   (hex)   ProSys Development Services
+68D925 (base 16)   ProSys Development Services
+   Mill House
+   44-46 Mill Green Road
+   Mitcham Surrey CR4 4HY
+   UNITED KINGDOM
+
 68-DB-96   (hex)   OPWILL Technologies CO .,LTD
 68DB96 (base 16)   OPWILL Technologies CO .,LTD
Room 415,Digital Media Building,NO.7 Shangdi 
Information Road,HaiDian District,
@@ -91652,6 +91679,12 @@
New York NY 10001
UNITED STATES
 
+84-8D-84   (hex)   Rajant Corporation
+848D84 (base 16)   Rajant Corporation
+   400 East King Street
+   Malvern PA 19355
+   UNITED STATES
+
 84-8F-69   (hex)   Dell Inc.
 848F69 (base 16)   Dell Inc.
One Dell Way, MS:RR5-45
@@ -98395,6 +98428,13 @@
Cupertino CA 95014
UNITED STATES
 
+D8-33-7F   (hex)   Office FA.com Co.,Ltd.
+D8337F (base 16)   Office FA.com Co.,Ltd.
+   293-21
+ 

commit cgdb for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package cgdb for openSUSE:Factory checked in 
at 2012-02-23 15:32:22

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


Package is cgdb, Maintainer is bwa...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/cgdb/cgdb.changes2012-01-19 
09:41:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.cgdb.new/cgdb.changes   2012-02-23 
15:32:25.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 14 14:34:03 UTC 2012 - pu...@suse.com
+
+- fix build on sle11-sp1 
+
+---



Other differences:
--
++ cgdb.spec ++
--- /var/tmp/diff_new_pack.SuvhR1/_old  2012-02-23 15:32:25.0 +0100
+++ /var/tmp/diff_new_pack.SuvhR1/_new  2012-02-23 15:32:25.0 +0100
@@ -14,6 +14,8 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 Name:   cgdb
 Version:0.6.6
 Release:0
@@ -47,7 +49,7 @@
 make %{?_smp_mflags}
 
 %install
-%make_install
+%makeinstall
 
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz

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



commit cvs for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package cvs for openSUSE:Factory checked in 
at 2012-02-23 15:32:27

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


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

Changes:

--- /work/SRC/openSUSE:Factory/cvs/cvs.changes  2012-02-14 13:05:15.0 
+0100
+++ /work/SRC/openSUSE:Factory/.cvs.new/cvs.changes 2012-02-23 
15:32:29.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 21 11:50:12 CET 2012 - p...@suse.de
+
+- Fix typo in the last patch.
+
+---



Other differences:
--
++ cvs-CVE-2012-0804.patch ++
--- /var/tmp/diff_new_pack.1Pi1wq/_old  2012-02-23 15:32:31.0 +0100
+++ /var/tmp/diff_new_pack.1Pi1wq/_new  2012-02-23 15:32:31.0 +0100
@@ -7,7 +7,7 @@
   */
read_line_via (from_server, to_server, read_buf);
 -  sscanf (read_buf, %s %d, write_buf, codenum);
-+  count = sscanf (read_buf, %s %d, write_buf, codenum);
++  count = sscanf (read_buf, %*s %d, codenum);
  
 -  if ((codenum / 100) != 2)
 +  if (count != 1 || (codenum / 100) != 2)

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



commit grub for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package grub for openSUSE:Factory checked in 
at 2012-02-23 15:32:35

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


Package is grub, Maintainer is d...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/grub/grub.changes2011-12-25 
17:34:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.grub.new/grub.changes   2012-02-23 
15:32:36.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 15 15:34:00 UTC 2012 - lchiqui...@suse.com
+
+- Remove silly MAP_GROWSDOWN flag when allocating scratch mem
+  for the grub shell (bnc#717836, bnc#640391)
+
+---

New:

  no-MAP_GROWSDOWN



Other differences:
--
++ grub.spec ++
--- /var/tmp/diff_new_pack.5Z9LvW/_old  2012-02-23 15:32:39.0 +0100
+++ /var/tmp/diff_new_pack.5Z9LvW/_new  2012-02-23 15:32:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package grub
 #
-# 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,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   grub
 BuildRequires:  automake
 %ifarch x86_64
-BuildRequires:  gcc41-32bit glibc-devel-32bit libncurses5-32bit 
ncurses-devel-32bit
+BuildRequires:  gcc41-32bit
+BuildRequires:  glibc-devel-32bit
+BuildRequires:  libncurses5-32bit
+BuildRequires:  ncurses-devel-32bit
 %else
-BuildRequires:  gcc41 glibc-devel libncurses5 ncurses-devel
+BuildRequires:  gcc41
+BuildRequires:  glibc-devel
+BuildRequires:  libncurses5
+BuildRequires:  ncurses-devel
 %endif
-License:GPL-2.0+
-Group:  System/Boot
 Version:0.97
 Release:0
 Source0:%{name}-%{version}.tar.gz
@@ -70,9 +72,12 @@
 Patch41:stage2-gfx-cmdline-len-fix.diff
 Patch42:nulterminate-configfile
 Patch43:handle-incomplete-last-track
+Patch44:no-MAP_GROWSDOWN
 Url:http://www.gnu.org/software/grub/grub.en.html
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Grand Unified Boot Loader
+License:GPL-2.0+
+Group:  System/Boot
 PreReq: fileutils sh-utils util-linux
 Conflicts:  trustedgrub
 ExclusiveArch:  %ix86 x86_64
@@ -130,6 +135,7 @@
 %patch41 -p1
 %patch42 -p1
 %patch43 -p1
+%patch44 -p1
 
 %build
 perl -pi -e 's,/usr/share/grub/i386-pc,/usr/lib/grub,' docs/grub.texi

++ no-MAP_GROWSDOWN ++
--- grub-0.97/grub/asmstub.c.orig   2011-09-12 12:02:32.0 +0200
+++ grub-0.97/grub/asmstub.c2011-09-26 16:55:51.0 +0200
@@ -145,9 +145,9 @@ grub_stage2 (void)
 
   assert (grub_scratch_mem == 0);
 #ifdef MAP_32BIT
-#define MY_MAP_SET MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS | MAP_32BIT
+#define MY_MAP_SET MAP_PRIVATE | MAP_ANONYMOUS | MAP_32BIT
 #else
-#define MY_MAP_SET MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS
+#define MY_MAP_SET MAP_PRIVATE | MAP_ANONYMOUS
 #endif
   scratch = mmap(NULL,
  0x10 + EXTENDED_MEMSIZE + 15,
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit grub2 for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2012-02-23 15:32:40

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


Package is grub2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2012-01-04 
07:23:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2012-02-23 
15:32:41.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 20 13:04:51 UTC 2012 - andrea.turr...@gmail.com
+
+- fixed typos in grub2.spec
+
+---



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.o4jNxJ/_old  2012-02-23 15:32:42.0 +0100
+++ /var/tmp/diff_new_pack.o4jNxJ/_new  2012-02-23 15:32:42.0 +0100
@@ -84,7 +84,7 @@
 %description
 This is the second version of the GRUB (Grand Unified Bootloader),
 a highly configurable and customizable bootloader with modular
-architecture.  It support rich scale of kernel formats, file systems,
+architecture.  It supports rich scale of kernel formats, file systems,
 computer architectures and hardware devices.
 
 PLEASE NOTE: This is a development snapshot, and as such will not
@@ -106,7 +106,7 @@
 
 %description efi
 The GRand Unified Bootloader (GRUB) is a highly configurable and customizable
-bootloader with modular architecture.  It support rich variety of kernel 
formats,
+bootloader with modular architecture.  It supports rich variety of kernel 
formats,
 file systems, computer architectures and hardware devices.  This subpackage
 provides support for EFI systems.
 %endif


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



commit gstreamer-0_10-plugins-good for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-0_10-plugins-good for 
openSUSE:Factory checked in at 2012-02-23 15:32:48

Comparing /work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-good (Old)
 and  /work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-good.new (New)


Package is gstreamer-0_10-plugins-good, Maintainer is 
gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-good/gstreamer-0_10-plugins-good.changes
  2012-02-20 16:12:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-good.new/gstreamer-0_10-plugins-good.changes
 2012-02-23 15:32:51.0 +0100
@@ -1,0 +2,207 @@
+Tue Feb 21 14:46:28 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.10.31:
+  + audioparsers: propagate downstream caps constraints upstream
+  + ac3parse:
+- add support for IEC 61937 alignment and conversion/switching
+  between alignments
+- let bsid 9 and 10 through
+  + auparse: implement seeking
+  + avidemux: fix wrong stride when inverting uncompressed video
+  + cairotextoverlay: add a silent property to skip rendering;
+forward new segment events
+  + deinterlace:
+- add support for deinterlacing using buffer caps/flags (as set
+  by e.g. fieldanalysis)
+- new fieldanalysis-related properties: locking and
+  ignore-obscure
+  + directsoundsink: fix negotiation/device setup: 16-bit audio is
+signed, 8-bit is unsigned
+  + effecttv: fix reverse negotiation; repair color modes in
+radioactv by taking rgb,bgr into account
+  + equalizer: also sync the parameters for the filter bands
+  + flacdec:
+- better timestamp/offset handling; try upstream first for
+  duration queries
+- send EOS when seeking after the end of file instead of
+  failing
+  + flacenc: do not drop the first data buffer on the floor
+  + flacparse:
+- detect when a file lies about fixed block size; ignore
+  invalid minimum_blocksize
+- more accurate/better duration/timestamp handling
+  + flvdemux: better timestamp handling (negative cts, detect large
+pts gaps; fix discontinuity threshold check when timestamps go
+backwards)
+  + flvmux: properly determine final duration; metadata/header
+writing fixes
+  + gdkpixbufsink: fix inverted pixel-aspect-ratio info on pixbufs
+  + jack: add client-name property to jackaudiosink and
+jackaudiosrc
+  + jpegdec:
+- add sof-marker to template caps, so we don't get plugged for
+  lossless jpeg
+- implement upstream negotiation
+  + matroskademux:
+- seeking fixes; better handling of non-finalized files
+- better timestamp/duration handling, fix some stuttering A/V
+- add max-gap-time property to make gap handling configurable
+- UTF-8 subtitles may have markup
+  + matroskamux:
+- do not use unoffical V_MJPEG codec id
+- fix segment handling, so we actually use running time
+- for streaming files, push tags first
+- handle GstForceKeyUnit event
+  + multifile: new splitfilesrc element to read multiple files as
+if they were one single file
+  + multifilesrc: add loop property
+  + multifilesink:
+- handle buffer lists, useful to keep groups of buffers (GOPs)
+  in the same file
+- add flag to cut after a force key unit event
+- add max-files property
+- add new 'max-size' mode and max-file-size property for
+  switching to the next file based on size
+- write stream-headers when switching to the next file in
+  max-size mode
+  + multipartdemux: add property to assume a single stream and emit
+no-more-pads
+  + multipartmux: add \r\n to tail of pushed buffers
+  + navseek: toggle pause/play on space bar
+  + osxvideo: fix leak of NSOpenGLPixelFormat object
+  + pcmadepay,pcmudepay: allow variable sample rate
+  + pngenc: increase arbitrary resolution limits
+  + pulse:
+- drop support for PA versions before 0.9.16 (1.x is
+  recommended)
+- new pulseaudiosink element to handle format changes (not
+  autoplugged yet)
+  + pulsesink:
+- add support for compressed audio format passthrough (S/PDIF,
+  mp3-over-bluetooth)
+- allow writes in bigger chunks
+- use the extended stream API if available
+  + pulsesrc: add a source-output-index property; implement
+GstStreamVolume interface
+  + qtdemux:
+- better fragmented support (avoid adjustment for keyframe
+  seek; mark all audio track samples as keyframe)
+- parse embedded ID32 tags; improve bitrate guessing/extraction
+- push mode fixes, fix buffered streaming
+  + qtmux:
+- add direct dirac mapping
+- calculate average bitrate for streams
+- fix ctts generation for streams that don't start at 0
+  timestamps
+- use GST_TAG_IMAGE for coverart too
+  + ismlmux: use iso-fragmented as 

commit gstreamer-0_10-plugins-ugly for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-0_10-plugins-ugly for 
openSUSE:Factory checked in at 2012-02-23 15:33:03

Comparing /work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-ugly (Old)
 and  /work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-ugly.new (New)


Package is gstreamer-0_10-plugins-ugly, Maintainer is 
gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-ugly/gstreamer-0_10-plugins-ugly.changes
  2011-10-16 12:49:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-ugly.new/gstreamer-0_10-plugins-ugly.changes
 2012-02-23 15:33:05.0 +0100
@@ -1,0 +2,38 @@
+Tue Feb 21 19:51:07 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.10.19:
+  + a52dec: don't claim to support upstream renegotiation
+  + dvddemux: tweak subtitle stream setup based on dvd language
+codes event
+  + dvdreadsrc:
+- fix off by one in cell calculation for the last chapter
+- fix sector search for packed titles; fix sector seeking
+- map subtitle language tag to stream indicated in PGC data
+- take into account first sector of the current title
+  + lame, lamemp3enc:
+- ensure parsed output (most muxers need framed mp3 as input)
+- post CODEC and BITRATE tags
+  + mad: remove id3tag dependency used by in practice unreachable
+legacy code
+  + mpeg2dec:
+- don't treat non-fatal errors as fatal and fix spurious
+  failure to decode some files
+- post QoS messages when dropping a frame due to QoS
+  + rtpasfdepay: avoid re-sending header; fix fragmented packet
+handling and packet padding
+  + twolame: improve output framing and timestamping
+  + x264enc:
+- allow renegotiation but prefer current caps
+- negotiate profile, level and output stream-format from
+  downstream caps where appropriate
+  + Bugs fixed: bgo#391543, bgo#429476, bgo#644233, bgo#653473,
+bgo#655223, bgo#658297, bgo#659252, bgo#660562, bgo#662964,
+bgo#664175, bgo#665101.
+- Update gstreamer-0_10-plugins-bad-patch-source.sh (and
+  pre_checkin.sh) to deal with xz tarballs.
+- Add explicit glib2-devel BuildRequires so it can be versioned.
+- Add xz BuildRequires on openSUSE = 12.1, to be able to
+  decompress the xz tarball.
+- Remove libid3tag-devel: dependency is gone upstream.
+
+---

Old:

  gst-plugins-ugly-0.10.18-patched.tar.bz2
  gst-plugins-ugly-0.10.18.tar.bz2

New:

  gst-plugins-ugly-0.10.19-patched.tar.xz
  gst-plugins-ugly-0.10.19.tar.xz



Other differences:
--
++ gstreamer-0_10-plugins-ugly.spec ++
--- /var/tmp/diff_new_pack.EoMHzd/_old  2012-02-23 15:33:07.0 +0100
+++ /var/tmp/diff_new_pack.EoMHzd/_new  2012-02-23 15:33:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gstreamer-0_10-plugins-ugly
 #
-# 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
@@ -24,36 +24,40 @@
 %define _experimental 1
 
 Name:   gstreamer-0_10-plugins-ugly
-Version:0.10.18
-Release:1
+Version:0.10.19
+Release:0
+Summary:GStreamer Streaming-Media Framework Plug-Ins
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Other
-Summary:GStreamer Streaming-Media Framework Plug-Ins
 Url:http://gstreamer.freedesktop.org/
 %if 0%{?BUILD_ORIG}
-Source: 
http://gstreamer.freedesktop.org/src/%{_name}/%{_name}-%{version}.tar.bz2
+Source: 
http://gstreamer.freedesktop.org/src/gst-plugins-ugly/%{_name}-%{version}.tar.xz
 %else
 # WARNING: This is not a comment, but the real command to repack source:
-#%(bash %{_sourcedir}/%{name}-patch-source.sh %{_name}-%{version}.tar.bz2)
-Source: %{_name}-%{version}-patched.tar.bz2
+#%(bash %{_sourcedir}/%{name}-patch-source.sh %{_name}-%{version}.tar.xz)
+Source: %{_name}-%{version}-patched.tar.xz
 %endif
 Source1:%{name}-patch-source.sh
 # PATCH-FEATURE-OPENSUSE gstreamer010-plugins-ugly-patched.patch -- Disable 
plugins that can't be distributed by openSUSE
 Patch1: gstreamer010-plugins-ugly-patched.patch
 BuildRequires:  gcc-c++
-BuildRequires:  gstreamer-0_10-devel = 0.10.26
-BuildRequires:  gstreamer-0_10-plugins-base-devel = 0.10.26
+BuildRequires:  glib2-devel = 2.24
+BuildRequires:  gstreamer-0_10-devel = 0.10.36
+BuildRequires:  gstreamer-0_10-plugins-base-devel = 0.10.36
 BuildRequires:  gtk-doc
 BuildRequires:  libcdio-devel
 # Broken and disabled by upstream:
 

commit gthumb for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package gthumb for openSUSE:Factory checked 
in at 2012-02-23 15:33:09

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


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

Changes:

--- /work/SRC/openSUSE:Factory/gthumb/gthumb.changes2012-01-25 
12:18:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.gthumb.new/gthumb.changes   2012-02-23 
15:33:12.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 20 23:07:09 UTC 2012 - dims...@opensuse.org
+
+- Add pkgconfig(ice) and pkgconfig(sm) BuildRequires: they used to
+  be pulled in by something else, but the xorg-x11 relayout changed
+  that.
+
+---



Other differences:
--
++ gthumb.spec ++
--- /var/tmp/diff_new_pack.r2MxqI/_old  2012-02-23 15:33:13.0 +0100
+++ /var/tmp/diff_new_pack.r2MxqI/_new  2012-02-23 15:33:13.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   gthumb
 Version:2.14.2
 Release:0
@@ -49,6 +50,8 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(ice)
+BuildRequires:  pkgconfig(sm) = 1.0.0
 BuildRequires:  pkgconfig(unique-1.0)
 Recommends: %{name}-lang
 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 isdngw for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

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

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


Package is isdngw, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/isdngw/isdngw.changes2012-02-08 
17:18:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.isdngw.new/isdngw.changes   2012-02-23 
15:33:20.0 +0100
@@ -1,0 +2,9 @@
+Tue Feb 21 16:43:41 UTC 2012 - kk...@linux-pingi.de
+
+- update to latest upstream version 0.4.0
+  * update for PBoolean chnage in PTLib and H323Plus
+  * fix small memory corruption bug
+  * fix gcc 4.3.x warnings
+  * remove use of exceptions for easier compatibility
+
+---

Old:

  isdngw-0.3.4.tar.bz2

New:

  isdngw-0.4.0.tar.bz2



Other differences:
--
++ isdngw.spec ++
--- /var/tmp/diff_new_pack.43A45a/_old  2012-02-23 15:33:21.0 +0100
+++ /var/tmp/diff_new_pack.43A45a/_new  2012-02-23 15:33:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package isdngw
 #
-# 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,22 +29,21 @@
 BuildRequires:  sgml-skel
 BuildRequires:  sgmltool
 BuildRequires:  speex-devel
-URL:http://www.gnugk.org/h323-isdn-gw.html
+Url:http://www.gnugk.org/h323-isdn-gw.html
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %insserv_prereq %fillup_prereq
 %if %suse_version  1130
 PreReq: sysvinit(network)
 %endif
-Requires:   pwlib openh323
-Obsoletes:  isdn2h323
+Requires:   openh323
+Recommends: logrotate
 Summary:An ISDN to H.323 Gateway
 License:GPL-2.0+
 Group:  Productivity/Telephony/H323/Utilities
-Version:0.3.4
+Version:0.4.0
 Release:0
 Source0:isdngw-%{version}.tar.bz2
 Source1:rc.isdngw
-#Patch:openh323gk.dif
 
 %description
 isdngw is a gateway between telephony on ISDN and telephony on IP
@@ -53,8 +52,7 @@
 (pots, mobiles, etc.) can call and be called.
 
 %prep
-%setup -n isdngw
-#%patch
+%setup -q
 
 %build
 make RPM_OPT_FLAGS=$RPM_OPT_FLAGS -fexceptions 
OPENH323DIR=/usr/share/openh323 PREFIX=/usr OH323_LIBDIR=%{_libdir} opt 
%{?_smp_mflags}
@@ -91,7 +89,11 @@
 %post
 %{insserv_force_if_yast etc/init.d/isdngw }
 
+%preun
+%{stop_on_removal isdngw }
+
 %postun
+%{restart_on_update isdngw }
 %{insserv_cleanup}
 
 %files
@@ -102,7 +104,7 @@
 %config /etc/isdngw/isdngw.conf
 %{_sbindir}/isdngw
 %{_sbindir}/rcisdngw
-/etc/logrotate.d/isdngw
+%config /etc/logrotate.d/isdngw
 %dir /var/log/isdngw
 
 %changelog

++ isdngw-0.3.4.tar.bz2 - isdngw-0.4.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/isdngw/Makefile new/isdngw-0.4.0/Makefile
--- old/isdngw/Makefile 2004-09-19 19:43:31.0 +0200
+++ new/isdngw-0.4.0/Makefile   2008-02-10 11:35:19.0 +0100
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1.1.1 2004/09/19 17:43:31 jan Exp $
+# $Id: Makefile,v 1.2 2008/02/10 10:35:19 jan Exp $
 #
 # Makefile for isdngw, an ISDN-H.323 gateway
 # based on isdn2h323 by telos EDV Systementwicklung GmbH.
@@ -46,3 +46,4 @@
 endif
 
 include $(OPENH323DIR)/openh323u.mak
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/isdngw/README new/isdngw-0.4.0/README
--- old/isdngw/README   2004-09-19 19:52:50.0 +0200
+++ new/isdngw-0.4.0/README 2009-05-23 00:51:59.0 +0200
@@ -6,13 +6,6 @@
 make and receive calls but any type of phone (pots, mobiles...) can call and
 be called.
 
-See homepage for documentation.
-
-Original Homepage: http://www.virtual-net.fr/h323/isdngw (offline)
-Original Contact: isd...@virtual-net.fr
-
-Updates by Niklas �gren (isd...@7l.se, http://www.7l.se/software/h323/isdngw)
-
-Homepage for this version: http://www.gnugk.org/h323-isdn-gw.html
+See the web page for documentation: http://www.gnugk.org/h323-isdn-gw.html
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/isdngw/audio_delay.hxx 
new/isdngw-0.4.0/audio_delay.hxx
--- old/isdngw/audio_delay.hxx  2004-09-19 19:43:31.0 +0200
+++ new/isdngw-0.4.0/audio_delay.hxx2009-05-23 00:50:33.0 +0200
@@ -1,5 +1,5 @@
 /*
-  $Id: audio_delay.hxx,v 1.1.1.1 2004/09/19 17:43:31 jan Exp $
+  $Id: audio_delay.hxx,v 1.2 2009/05/22 22:50:33 jan 

commit namazu for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package namazu for openSUSE:Factory checked 
in at 2012-02-23 15:33:27

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


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

Changes:

--- /work/SRC/openSUSE:Factory/namazu/namazu.changes2012-02-15 
15:58:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.namazu.new/namazu.changes   2012-02-23 
15:33:28.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 15 16:49:28 CET 2012 - ti...@suse.de
+
+- remove obsoleted authors in descriptions
+
+---



Other differences:
--
++ namazu.spec ++
--- /var/tmp/diff_new_pack.fzYwXm/_old  2012-02-23 15:33:29.0 +0100
+++ /var/tmp/diff_new_pack.fzYwXm/_new  2012-02-23 15:33:29.0 +0100
@@ -44,25 +44,6 @@
 # 全文検索システムを構築することができるほか、コマンドライ
 # ンやEmacs上で電子メイルの山を検索するといった個人用途にも
 # 使えます。
-# 
-# Authors:
-# 
-# Satoru Takabayashi sat...@namazu.org
-# k...@daionet.gr.jp (NOKUBI Takatsugu)
-# Yukinori MAEDA y...@myu.org
-# Ken-ichi Hirose ken...@tama.or.jp
-# ma...@ulis.ac.jp (Masao Takaku)
-# Ryuji Abe ra...@t3.rim.or.jp
-# Hajime BABA b...@kusastro.kyoto-u.ac.jp
-# KOSEKI Yoshinori k...@wizard.tamra.co.jp
-# Rei FURUKAWA furuk...@tcp-ip.or.jp
-# Makoto Fujiwara mak...@ki.nu
-# Kenji Suzuki ke...@po.ganseki.ne.jp
-# MIYOSHI Masanori miyo...@ask.ne.jp
-# Hideyuki SHIRAI  shi...@rdmg.mgcs.mei.co.jp
-# Jose Juan Zapater Vera co...@arrakis.es
-# Yoshinori TAKESAKO takes...@robotics.im.hiroshima-cu.ac.jp
-# SATOH Fumiyasu fum...@samba.gr.jp
 
 %description
 Namazu is a full-text search engine software intended for easy use. It
@@ -70,27 +51,6 @@
 engines, but also works for personal use such as a search system for
 the local hard disk.
 
-
-
-Authors:
-
-Satoru Takabayashi sat...@namazu.org
-k...@daionet.gr.jp (NOKUBI Takatsugu)
-Yukinori MAEDA y...@myu.org
-Ken-ichi Hirose ken...@tama.or.jp
-ma...@ulis.ac.jp (Masao Takaku)
-Ryuji Abe ra...@t3.rim.or.jp
-Hajime BABA b...@kusastro.kyoto-u.ac.jp
-KOSEKI Yoshinori k...@wizard.tamra.co.jp
-Rei FURUKAWA furuk...@tcp-ip.or.jp
-Makoto Fujiwara mak...@ki.nu
-Kenji Suzuki ke...@po.ganseki.ne.jp
-MIYOSHI Masanori miyo...@ask.ne.jp
-Hideyuki SHIRAI  shi...@rdmg.mgcs.mei.co.jp
-Jose Juan Zapater Vera co...@arrakis.es
-Yoshinori TAKESAKO takes...@robotics.im.hiroshima-cu.ac.jp
-SATOH Fumiyasu fum...@samba.gr.jp
-
 %package -n namazu-devel
 Summary:Header files and libraries of Namazu
 Group:  Productivity/Networking/Web/Utilities
@@ -102,27 +62,6 @@
 %description -n namazu-devel
 header files and libraries of Namazu
 
-
-
-Authors:
-
-Satoru Takabayashi sat...@namazu.org
-k...@daionet.gr.jp (NOKUBI Takatsugu)
-Yukinori MAEDA y...@myu.org
-Ken-ichi Hirose ken...@tama.or.jp
-ma...@ulis.ac.jp (Masao Takaku)
-Ryuji Abe ra...@t3.rim.or.jp
-Hajime BABA b...@kusastro.kyoto-u.ac.jp
-KOSEKI Yoshinori k...@wizard.tamra.co.jp
-Rei FURUKAWA furuk...@tcp-ip.or.jp
-Makoto Fujiwara mak...@ki.nu
-Kenji Suzuki ke...@po.ganseki.ne.jp
-MIYOSHI Masanori miyo...@ask.ne.jp
-Hideyuki SHIRAI  shi...@rdmg.mgcs.mei.co.jp
-Jose Juan Zapater Vera co...@arrakis.es
-Yoshinori TAKESAKO takes...@robotics.im.hiroshima-cu.ac.jp
-SATOH Fumiyasu fum...@samba.gr.jp
-
 %package -n namazu-cgi
 Summary:A CGI interface for Namazu
 Group:  Productivity/Networking/Web/Utilities
@@ -134,27 +73,6 @@
 %description -n namazu-cgi
 a CGI interface for Namazu
 
-
-
-Authors:
-
-Satoru Takabayashi sat...@namazu.org
-k...@daionet.gr.jp (NOKUBI Takatsugu)
-Yukinori MAEDA y...@myu.org
-Ken-ichi Hirose ken...@tama.or.jp
-ma...@ulis.ac.jp (Masao Takaku)
-Ryuji Abe ra...@t3.rim.or.jp
-Hajime BABA b...@kusastro.kyoto-u.ac.jp
-KOSEKI Yoshinori k...@wizard.tamra.co.jp
-Rei FURUKAWA furuk...@tcp-ip.or.jp
-Makoto Fujiwara mak...@ki.nu
-Kenji Suzuki ke...@po.ganseki.ne.jp
-MIYOSHI Masanori miyo...@ask.ne.jp
-Hideyuki SHIRAI  shi...@rdmg.mgcs.mei.co.jp
-Jose Juan Zapater Vera co...@arrakis.es
-Yoshinori TAKESAKO takes...@robotics.im.hiroshima-cu.ac.jp
-SATOH Fumiyasu fum...@samba.gr.jp
-
 %prep
 %setup0 -q
 %patch0 -p1 -b .linguas

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



commit perl-Bootloader for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2012-02-23 15:33:33

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


Package is perl-Bootloader, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes  
2011-12-25 17:38:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 
2012-02-23 15:33:35.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 15 09:16:19 UTC 2012 - mch...@suse.com
+
+- add-basic-grub2-module.patch : add basic grub2 support 
+
+---

New:

  add-basic-grub2-module.patch



Other differences:
--
++ perl-Bootloader.spec ++
--- /var/tmp/diff_new_pack.fZJMwU/_old  2012-02-23 15:33:36.0 +0100
+++ /var/tmp/diff_new_pack.fZJMwU/_new  2012-02-23 15:33:36.0 +0100
@@ -28,6 +28,7 @@
 Source1:update-bootloader
 Source2:bootloader_entry
 Source3:boot.readme
+Patch:  add-basic-grub2-module.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 Conflicts:  multipath-tools  0.4.8-40.25.1
@@ -38,6 +39,7 @@
 
 %prep
 %setup -q
+%patch -p1
 rm -rf perl-Bootloader-testsuite
 mkdir -p lib
 mv src lib/Bootloader

++ add-basic-grub2-module.patch ++
 885 lines (skipped)

++ update-bootloader ++
--- /var/tmp/diff_new_pack.fZJMwU/_old  2012-02-23 15:33:36.0 +0100
+++ /var/tmp/diff_new_pack.fZJMwU/_new  2012-02-23 15:33:36.0 +0100
@@ -122,7 +122,7 @@
 if ( -f '/usr/bin/zypper' ){
   my $zypper_out = qx{zypper --terse tos -l};
   if ($zypper_out =~ 
m/^labelLong\s*(\S.*\S)\s*\nlabelShort\s*(\S.*\S)[\s\n]*$/){
-return $1 if ($1 ne   $loader eq grub);
+return $1 if ($1 ne   ($loader eq grub || $loader eq grub2));
 return $2 if ($2 ne );
   }
 }
@@ -131,7 +131,7 @@
 # Second try: Is there a usable /etc/SuSE-release?
 # This should really not be used anymore, as the syntax changed
 # no 'SP1' in the output. 
-if (open(RELEASE, /etc/SuSE-release)  $loader eq grub) {
+if (open(RELEASE, /etc/SuSE-release)  ($loader eq grub || $loader 
eq grub2)) {
# first line is sufficient
$namever = RELEASE;
 
@@ -212,26 +212,6 @@
   exit 0;
 }
 
-if (Bootloader::Tools::GetBootloader() eq grub2)
-{
-  open (LOG, $logname);
-  print LOG (grub2 bootloader, let grub2-mkconfig handle everything\n);
-  close LOG;
-
-  if (! -d '/boot/grub2' ) {
-open (LOG, $logname);
-print LOG (grub2: Run grub2-install first!\n);
-close LOG;
-
-exit 1;
-  }
-
-  system (cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.old);
-  system (/usr/sbin/grub2-mkconfig -o /boot/grub2/grub.cfg $logname 21);
-
-  exit 0;
-}
-
 if ($opt_image and $opt_image !~ m;^/;) {
 $opt_image = getcwd . '/' . $opt_image
 }
@@ -273,7 +253,7 @@
 
 unless ($opt_name) {
if ($opt_xen and $opt_previous) {
-   if ($loader eq grub || $loader eq lilo) {
+   if ($loader eq grub || $loader eq lilo || $loader eq grub2) {
$opt_name = Previous Xen;
$add_product = 1;
}
@@ -282,7 +262,7 @@
}
}
elsif ($opt_xen) {
-   if ($loader eq grub || $loader eq lilo) {
+   if ($loader eq grub || $loader eq lilo || $loader eq grub2) {
$opt_name = Xen;
$add_product = 1;
}
@@ -291,7 +271,7 @@
}
}
elsif ($opt_previous) {
-   if ($loader eq grub || $loader eq lilo) {
+   if ($loader eq grub || $loader eq lilo || $loader eq grub2) {
$opt_name = Previous Kernel;
$add_product = 1;
}
@@ -335,7 +315,7 @@
($opt_name =~ /-bigsmp/) ||
($opt_name =~ /-pae/)) {
 
-   if ($loader eq grub) {
+   if ($loader eq grub || $loader eq grub2) {
$opt_name =~ s/-[^-]*$//;
$opt_failsafe = Failsafe --  . GetProduct() .  -  . $opt_name;
$opt_name = GetProduct() .  -  . $opt_name;
@@ -347,7 +327,7 @@
 }
 # Naming scheme for all xen kernels, thus xen and xenpae
 elsif ($opt_xen) {
-   if ($loader eq grub) {
+   if ($loader eq grub || $loader eq grub2) {
my $version = $opt_name;
$version =~ s/-xen.*$//;
 
@@ -368,7 +348,7 @@
$flavor = ucfirst ($flavor);
 
# Create long labels for grub
-   if ($loader eq grub) {
+   if ($loader eq grub || $loader eq grub2) {
my $version = $opt_name;
$version =~ 

commit perl-CPAN-Meta for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package perl-CPAN-Meta for openSUSE:Factory 
checked in at 2012-02-23 15:33:39

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


Package is perl-CPAN-Meta, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-CPAN-Meta/perl-CPAN-Meta.changes
2012-02-14 11:25:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-CPAN-Meta.new/perl-CPAN-Meta.changes   
2012-02-23 15:33:40.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 09:55:46 UTC 2012 - co...@suse.com
+
+- updated to 2.120530
+ - Dialed back perl prereq to 5.006
+
+---

Old:

  CPAN-Meta-2.120351.tar.gz

New:

  CPAN-Meta-2.120530.tar.gz



Other differences:
--
++ perl-CPAN-Meta.spec ++
--- /var/tmp/diff_new_pack.u56jM4/_old  2012-02-23 15:33:41.0 +0100
+++ /var/tmp/diff_new_pack.u56jM4/_new  2012-02-23 15:33:41.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-CPAN-Meta
-Version:2.120351
+Version:2.120530
 Release:0
 %define cpan_name CPAN-Meta
 Summary:the distribution metadata for a CPAN dist

++ CPAN-Meta-2.120351.tar.gz - CPAN-Meta-2.120530.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Meta-2.120351/Changes 
new/CPAN-Meta-2.120530/Changes
--- old/CPAN-Meta-2.120351/Changes  2012-02-04 05:01:59.0 +0100
+++ new/CPAN-Meta-2.120530/Changes  2012-02-22 22:15:40.0 +0100
@@ -1,5 +1,11 @@
 Revision history for CPAN-Meta
 
+2.120530  2012-02-22 16:15:31 EST5EDT
+
+  [OTHER]
+
+  - Dialed back perl prereq to 5.006
+
 2.120351  2012-02-03 23:01:45 America/New_York
 
   [OTHER]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Meta-2.120351/META.json 
new/CPAN-Meta-2.120530/META.json
--- old/CPAN-Meta-2.120351/META.json2012-02-04 05:01:59.0 +0100
+++ new/CPAN-Meta-2.120530/META.json2012-02-22 22:15:40.0 +0100
@@ -5,7 +5,7 @@
   Ricardo Signes r...@cpan.org
],
dynamic_config : 0,
-   generated_by : Dist::Zilla version 4.33, CPAN::Meta::Converter 
version 2.113640,
+   generated_by : Dist::Zilla version 4.39, CPAN::Meta::Converter 
version 2.120351,
license : [
   perl_5
],
@@ -28,69 +28,61 @@
   runtime : {
  requires : {
 CPAN::Meta::YAML : 0.002,
-Carp : 0,
+Carp : 0,
 JSON::PP : 2.27103,
 Parse::CPAN::Meta : 1.4400,
-Scalar::Util : 0,
-perl : 5.008,
-strict : 0,
+Scalar::Util : 0,
+perl : 5.006,
+strict : 0,
 version : 0.82,
-warnings : 0
+warnings : 0
  }
   },
   test : {
  requires : {
-Data::Dumper : 0,
-File::Find : 0,
-File::Spec : 0,
+Data::Dumper : 0,
+File::Find : 0,
+File::Spec : 0,
 File::Temp : 0.20,
-IO::Dir : 0,
+IO::Dir : 0,
 Test::More : 0.88,
-overload : 0,
-utf8 : 0
+overload : 0,
+utf8 : 0
  }
   }
},
provides : {
   CPAN::Meta : {
  file : lib/CPAN/Meta.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Converter : {
  file : lib/CPAN/Meta/Converter.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Feature : {
  file : lib/CPAN/Meta/Feature.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::History : {
  file : lib/CPAN/Meta/History.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Prereqs : {
  file : lib/CPAN/Meta/Prereqs.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Requirements : {
  file : lib/CPAN/Meta/Requirements.pm,
- version : 2.120351
-  },
-  CPAN::Meta::Requirements::_Range::Exact : {
- file : lib/CPAN/Meta/Requirements.pm,
- version : 2.120351
-  },
-  CPAN::Meta::Requirements::_Range::Range : {
- file : lib/CPAN/Meta/Requirements.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Spec : {
  file : lib/CPAN/Meta/Spec.pm,
- version : 2.120351
+ version : 2.120530
   },
   CPAN::Meta::Validator : {
  file : lib/CPAN/Meta/Validator.pm,
- version : 2.120351
+  

commit perl-Dist-Zilla for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package perl-Dist-Zilla for openSUSE:Factory 
checked in at 2012-02-23 15:33:44

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


Package is perl-Dist-Zilla, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Dist-Zilla/perl-Dist-Zilla.changes  
2012-02-20 16:16:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Dist-Zilla.new/perl-Dist-Zilla.changes 
2012-02-23 15:33:47.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 23 09:55:57 UTC 2012 - co...@suse.com
+
+- updated to 4.39
+ PruneCruft also excludes the _Inline/ directory and MYMETA.json
+
+  MakeMaker has been refactored to make it easier to subclass
+  (Thanks, Christopher J. Madsen!)
+
+---

Old:

  Dist-Zilla-4.38.tar.gz

New:

  Dist-Zilla-4.39.tar.gz



Other differences:
--
++ perl-Dist-Zilla.spec ++
--- /var/tmp/diff_new_pack.5biJR8/_old  2012-02-23 15:33:48.0 +0100
+++ /var/tmp/diff_new_pack.5biJR8/_new  2012-02-23 15:33:48.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Dist-Zilla
-Version:4.38
+Version:4.39
 Release:0
 %define cpan_name Dist-Zilla
 Summary:distribution builder; installer not included!
@@ -181,8 +181,11 @@
 Requires:   perl(App::Cmd::Setup) = 0.309
 Requires:   perl(App::Cmd::Tester) = 0.306
 Requires:   perl(Archive::Tar)
-Requires:   perl(autobox) = 2.53
-Requires:   perl(autodie)
+Requires:   perl(CPAN::Meta::Converter) = 2.101550
+Requires:   perl(CPAN::Meta::Prereqs) = 2.101390
+Requires:   perl(CPAN::Meta::Requirements)
+Requires:   perl(CPAN::Meta::Validator) = 2.101550
+Requires:   perl(CPAN::Uploader) = 0.101550
 Requires:   perl(Class::Load)
 Requires:   perl(Config::INI::Reader)
 Requires:   perl(Config::MVP::Assembler)
@@ -192,20 +195,15 @@
 Requires:   perl(Config::MVP::Reader::Finder)
 Requires:   perl(Config::MVP::Reader::INI) = 2
 Requires:   perl(Config::MVP::Section) = 2.21
-Requires:   perl(CPAN::Meta::Converter) = 2.101550
-Requires:   perl(CPAN::Meta::Prereqs) = 2.101390
-Requires:   perl(CPAN::Meta::Requirements)
-Requires:   perl(CPAN::Meta::Validator) = 2.101550
-Requires:   perl(CPAN::Uploader) = 0.101550
 Requires:   perl(Data::Section) = 0.004
 Requires:   perl(DateTime) = 0.44
 Requires:   perl(ExtUtils::Manifest) = 1.54
 Requires:   perl(File::Copy::Recursive)
 Requires:   perl(File::Find::Rule)
 Requires:   perl(File::HomeDir)
-Requires:   perl(File::pushd)
 Requires:   perl(File::ShareDir)
 Requires:   perl(File::ShareDir::Install) = 0.03
+Requires:   perl(File::pushd)
 Requires:   perl(Hash::Merge::Simple)
 Requires:   perl(JSON) = 2
 Requires:   perl(List::MoreUtils)
@@ -221,14 +219,12 @@
 Requires:   perl(MooseX::Types::Moose)
 Requires:   perl(MooseX::Types::Path::Class)
 Requires:   perl(MooseX::Types::Perl)
-Requires:   perl(namespace::autoclean)
+Requires:   perl(PPI)
 Requires:   perl(Params::Util)
-Requires:   perl(parent)
 Requires:   perl(Path::Class)
 Requires:   perl(Perl::PrereqScanner) = 1.005
 Requires:   perl(Perl::Version)
 Requires:   perl(Pod::Eventual) = 0.091480
-Requires:   perl(PPI)
 Requires:   perl(Software::License) = 0.101370
 Requires:   perl(Software::LicenseUtils)
 Requires:   perl(String::Formatter) = 0.100680
@@ -242,8 +238,12 @@
 Requires:   perl(Text::Glob) = 0.08
 Requires:   perl(Text::Template)
 Requires:   perl(Try::Tiny)
-Requires:   perl(version)
 Requires:   perl(YAML::Tiny)
+Requires:   perl(autobox) = 2.53
+Requires:   perl(autodie)
+Requires:   perl(namespace::autoclean)
+Requires:   perl(parent)
+Requires:   perl(version)
 Recommends: perl(Term::ReadLine::Gnu)
 %{perl_requires}
 

++ Dist-Zilla-4.38.tar.gz - Dist-Zilla-4.39.tar.gz ++
 2820 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-ExtUtils-CBuilder for openSUSE:Factory

2012-02-23 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-23 15:33:49

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
2012-02-17 12:07:34.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CBuilder.new/perl-ExtUtils-CBuilder.changes
   2012-02-23 15:33:55.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 23 09:56:03 UTC 2012 - co...@suse.com
+
+- updated to 0.280205
+
+  Fixed:
+  - Fixed bug picking up ccflags from Config
+  - Quotation style cleanup
+  - Appends CFLAGS and LDFLAGS environments instead of overriding
+  - Reset ccflags on compilation for VMS.
+
+  Changed:
+  - Refactored OS name mapping to use Perl::OSType
+
+---

Old:

  ExtUtils-CBuilder-0.280202.tar.gz

New:

  ExtUtils-CBuilder-0.280205.tar.gz



Other differences:
--
++ perl-ExtUtils-CBuilder.spec ++
--- /var/tmp/diff_new_pack.zDCdLi/_old  2012-02-23 15:33:56.0 +0100
+++ /var/tmp/diff_new_pack.zDCdLi/_new  2012-02-23 15:33:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-ExtUtils-CBuilder
-Version:0.280202
+Version:0.280205
 Release:0
 %define cpan_name ExtUtils-CBuilder
 Summary:Compile and link C code for Perl modules
@@ -31,11 +31,13 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(File::Spec) = 3.13
 BuildRequires:  perl(IPC::Cmd)
+BuildRequires:  perl(Perl::OSType)
 #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)
+Requires:   perl(Perl::OSType)
 %{perl_requires}
 
 %description
@@ -63,6 +65,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README README.patching
+%doc Changes LICENSE
 
 %changelog

++ ExtUtils-CBuilder-0.280202.tar.gz - ExtUtils-CBuilder-0.280205.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CBuilder-0.280202/Changes 
new/ExtUtils-CBuilder-0.280205/Changes
--- old/ExtUtils-CBuilder-0.280202/Changes  2011-01-23 16:48:57.0 
+0100
+++ new/ExtUtils-CBuilder-0.280205/Changes  2012-02-22 22:25:13.0 
+0100
@@ -1,5 +1,29 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+0.280205 - 2011-12-20 (Perl v5.15.6)
+
+  Fixed:
+
+  - Fixed bug picking up ccflags from Config
+
+0.280204 - 2011-06-20 (Perl v5.15.0)
+
+  Minor:
+
+  - Quotation style cleanup
+
+0.280203 - 2011-05-14 (Perl v5.14.0)
+
+  Fixed:
+
+  - Appends CFLAGS and LDFLAGS environments instead of overriding
+
+  - Reset ccflags on compilation for VMS.
+
+  Changed:
+
+  - Refactored OS name mapping to use Perl::OSType
+
 0.280202 - Sun Jan 23 10:47:51 EST 2011
 
   - Different file names used for test files; allows EU::CB tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CBuilder-0.280202/LICENSE 
new/ExtUtils-CBuilder-0.280205/LICENSE
--- old/ExtUtils-CBuilder-0.280202/LICENSE  2011-01-23 16:48:57.0 
+0100
+++ new/ExtUtils-CBuilder-0.280205/LICENSE  2012-02-22 22:25:13.0 
+0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2011 by Ken Williams.
+This software is copyright (c) 2012 by Ken Williams.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,21 +12,22 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2011 by Ken Williams.
+This software is Copyright (c) 2012 by Ken Williams.
 
 This is free software, licensed under:
 
   The GNU General Public License, Version 1, February 1989
 
-   GNU GENERAL PUBLIC LICENSE
-Version 1, February 1989
+GNU GENERAL PUBLIC LICENSE
+ Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
-59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
+ 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-   Preamble
+Preamble
 
   The license agreements of most software companies try to keep users
 at the 

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

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types-Common for 
openSUSE:Factory checked in at 2012-02-23 15:33:54

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


Package is perl-MooseX-Types-Common, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Types-Common/perl-MooseX-Types-Common.changes
2012-02-22 15:54:23.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-Common.new/perl-MooseX-Types-Common.changes
   2012-02-23 15:33:56.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 22 18:18:12 UTC 2012 - co...@suse.com
+
+- updated to 0.001006
+ -  fix POD per RT#75168
+
+---

Old:

  MooseX-Types-Common-0.001005.tar.gz

New:

  MooseX-Types-Common-0.001006.tar.gz



Other differences:
--
++ perl-MooseX-Types-Common.spec ++
--- /var/tmp/diff_new_pack.Oco0CR/_old  2012-02-23 15:33:57.0 +0100
+++ /var/tmp/diff_new_pack.Oco0CR/_new  2012-02-23 15:33:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MooseX-Types-Common
-Version:0.001005
+Version:0.001006
 Release:0
 %define cpan_name MooseX-Types-Common
 Summary:A library of commonly used type constraints

++ MooseX-Types-Common-0.001005.tar.gz - 
MooseX-Types-Common-0.001006.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Common-0.001005/Changes 
new/MooseX-Types-Common-0.001006/Changes
--- old/MooseX-Types-Common-0.001005/Changes2012-02-20 02:46:39.0 
+0100
+++ new/MooseX-Types-Common-0.001006/Changes2012-02-21 19:50:36.0 
+0100
@@ -1,3 +1,5 @@
+0.001006 2012-02-21 13:50EST
+  - fix POD per RT #75168
 0.001005 2012-02-19 20:45EST
   - add NumericCode type, RT #74346
 0.001004 2011-12-05 23:30EST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Common-0.001005/META.yml 
new/MooseX-Types-Common-0.001006/META.yml
--- old/MooseX-Types-Common-0.001005/META.yml   2012-02-20 02:50:17.0 
+0100
+++ new/MooseX-Types-Common-0.001006/META.yml   2012-02-21 19:51:42.0 
+0100
@@ -27,4 +27,4 @@
   IRC: irc://irc.perl.org/#moose
   license: http://dev.perl.org/licenses/
   repository: git://git.moose.perl.org/MooseX-Types-Common.git
-version: 0.001005
+version: 0.001006
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Common-0.001005/MYMETA.json 
new/MooseX-Types-Common-0.001006/MYMETA.json
--- old/MooseX-Types-Common-0.001005/MYMETA.json2012-02-20 
02:50:16.0 +0100
+++ new/MooseX-Types-Common-0.001006/MYMETA.json2012-02-21 
19:51:42.0 +0100
@@ -40,5 +40,5 @@
   }
},
release_status : stable,
-   version : 0.001005
+   version : 0.001006
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MooseX-Types-Common-0.001005/MYMETA.yml 
new/MooseX-Types-Common-0.001006/MYMETA.yml
--- old/MooseX-Types-Common-0.001005/MYMETA.yml 2012-02-20 02:50:16.0 
+0100
+++ new/MooseX-Types-Common-0.001006/MYMETA.yml 2012-02-21 19:51:42.0 
+0100
@@ -22,4 +22,4 @@
 requires:
   Moose: 0.39
   MooseX::Types: 0.04
-version: 0.001005
+version: 0.001006
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/MooseX-Types-Common-0.001005/lib/MooseX/Types/Common/Numeric.pm 
new/MooseX-Types-Common-0.001006/lib/MooseX/Types/Common/Numeric.pm
--- old/MooseX-Types-Common-0.001005/lib/MooseX/Types/Common/Numeric.pm 
2012-02-20 02:47:06.0 +0100
+++ new/MooseX-Types-Common-0.001006/lib/MooseX/Types/Common/Numeric.pm 
2012-02-21 19:50:05.0 +0100
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.001005';
+our $VERSION = '0.001006';
 
 use MooseX::Types -declare = [
   qw(PositiveNum PositiveOrZeroNum
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/MooseX-Types-Common-0.001005/lib/MooseX/Types/Common/String.pm 
new/MooseX-Types-Common-0.001006/lib/MooseX/Types/Common/String.pm
--- old/MooseX-Types-Common-0.001005/lib/MooseX/Types/Common/String.pm  
2012-02-20 02:47:09.0 +0100
+++ new/MooseX-Types-Common-0.001006/lib/MooseX/Types/Common/String.pm  
2012-02-21 19:50:09.0 +0100
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.001005';
+our $VERSION = '0.001006';
 
 use MooseX::Types -declare = [
   qw(SimpleStr
@@ -214,8 +214,6 @@
 A Str with length  0 and all uppercase characters.
 A coercion exists via Cuc from 

commit perl-Perl-PrereqScanner for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package perl-Perl-PrereqScanner for 
openSUSE:Factory checked in at 2012-02-23 15:33:59

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


Package is perl-Perl-PrereqScanner, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Perl-PrereqScanner/perl-Perl-PrereqScanner.changes
  2012-02-16 16:22:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Perl-PrereqScanner.new/perl-Perl-PrereqScanner.changes
 2012-02-23 15:34:01.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 23 09:56:10 UTC 2012 - co...@suse.com
+
+- updated to 1.010
+  - fix documentation bug (thanks to Marius Olsthoorn for the report)
+  - add a test case to prove someone wrong on the internet
+
+---

Old:

  Perl-PrereqScanner-1.009.tar.gz

New:

  Perl-PrereqScanner-1.010.tar.gz



Other differences:
--
++ perl-Perl-PrereqScanner.spec ++
--- /var/tmp/diff_new_pack.QImfQ2/_old  2012-02-23 15:34:02.0 +0100
+++ /var/tmp/diff_new_pack.QImfQ2/_new  2012-02-23 15:34:02.0 +0100
@@ -17,10 +17,10 @@
 
 
 Name:   perl-Perl-PrereqScanner
-Version:1.009
+Version:1.010
 Release:0
 %define cpan_name Perl-PrereqScanner
-Summary:Scan your Perl code for its prerequisites
+Summary:a tool to scan your Perl code for its prerequisites
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Perl-PrereqScanner/
@@ -46,10 +46,10 @@
 Requires:   perl(List::MoreUtils)
 Requires:   perl(Moose)
 Requires:   perl(Moose::Role)
-Requires:   perl(namespace::autoclean)
-Requires:   perl(Params::Util)
 Requires:   perl(PPI) = 1.205
+Requires:   perl(Params::Util)
 Requires:   perl(String::RewritePrefix) = 0.005
+Requires:   perl(namespace::autoclean)
 %{perl_requires}
 
 %description

++ Perl-PrereqScanner-1.009.tar.gz - Perl-PrereqScanner-1.010.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Perl-PrereqScanner-1.009/Changes 
new/Perl-PrereqScanner-1.010/Changes
--- old/Perl-PrereqScanner-1.009/Changes2012-01-02 05:12:06.0 
+0100
+++ new/Perl-PrereqScanner-1.010/Changes2012-02-22 16:08:08.0 
+0100
@@ -1,5 +1,10 @@
 Revision history for Perl-PrereqScanner
 
+1.010 2012-02-22 10:07:46 America/New_York
+  - fix documentation bug (thanks to Marius Olsthoorn for the report)
+
+  - add a test case to prove someone wrong on the internet
+
 1.009 2012-01-01 23:11:51 America/New_York
  - switch from Version::Requirements to CPAN::Meta::Requirements
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Perl-PrereqScanner-1.009/META.json 
new/Perl-PrereqScanner-1.010/META.json
--- old/Perl-PrereqScanner-1.009/META.json  2012-01-02 05:12:06.0 
+0100
+++ new/Perl-PrereqScanner-1.010/META.json  2012-02-22 16:08:08.0 
+0100
@@ -5,7 +5,7 @@
   Ricardo Signes r...@cpan.org
],
dynamic_config : 0,
-   generated_by : Dist::Zilla version 4.35, CPAN::Meta::Converter 
version 2.113640,
+   generated_by : Dist::Zilla version 4.37, CPAN::Meta::Converter 
version 2.120351,
license : [
   perl_5
],
@@ -22,29 +22,29 @@
   },
   runtime : {
  requires : {
-CPAN::Meta::Requirements : 0,
-File::Spec::Functions : 0,
-FindBin : 0,
-Getopt::Long : 0,
-List::MoreUtils : 0,
-List::Util : 0,
-Moose : 0,
-Moose::Role : 0,
+CPAN::Meta::Requirements : 0,
+File::Spec::Functions : 0,
+FindBin : 0,
+Getopt::Long : 0,
+List::MoreUtils : 0,
+List::Util : 0,
+Moose : 0,
+Moose::Role : 0,
 PPI : 1.205,
-Params::Util : 0,
+Params::Util : 0,
 String::RewritePrefix : 0.005,
-namespace::autoclean : 0,
+namespace::autoclean : 0,
 perl : 5.008,
-strict : 0,
-warnings : 0
+strict : 0,
+warnings : 0
  }
   },
   test : {
  requires : {
-File::Temp : 0,
-PPI::Document : 0,
+File::Temp : 0,
+PPI::Document : 0,
 Test::More : 0.96,
-Try::Tiny : 0
+Try::Tiny : 0
  }
   }
},
@@ -58,13 +58,13 @@
   },
   x_MailingList : 

commit php5-pear-Horde_ActiveSync for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-Horde_ActiveSync for 
openSUSE:Factory checked in at 2012-02-23 15:34:04

Comparing /work/SRC/openSUSE:Factory/php5-pear-Horde_ActiveSync (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-Horde_ActiveSync.new (New)


Package is php5-pear-Horde_ActiveSync, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/php5-pear-Horde_ActiveSync/php5-pear-Horde_ActiveSync.changes
2012-02-15 15:58:33.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-Horde_ActiveSync.new/php5-pear-Horde_ActiveSync.changes
   2012-02-23 15:34:10.0 +0100
@@ -1,0 +2,13 @@
+Wed Feb 22 15:01:30 UTC 2012 - Ralf Lang l...@b1-systems.de
+
+- version 1.2.4
+- [mjr] Allow disabling of certain policies.
+- [mjr] Honor PROVISIONING_LOOSE if the device supports PROVISIONING, but not 
all of our requested policies.
+- [mjr] Fix issue that could cause PING failure in certain server environments.
+- [mjr] Tweak policy defaults. Minor compatibility improvements for 
WAP-Provisioning-XML strings.
+- [mjr] Added WP7 devices to the list of devices with broken provisioning.
+- [mjr] Fix issue that could cause improper timezone handling in events passed 
from device to server in the beginning of a calendar year (Bug #10960).
+- [mjr] More improvements to security policies and device compatibility.
+
+
+---

Old:

  Horde_ActiveSync-1.2.1.tgz

New:

  Horde_ActiveSync-1.2.4.tgz



Other differences:
--
++ php5-pear-Horde_ActiveSync.spec ++
--- /var/tmp/diff_new_pack.3gKe3y/_old  2012-02-23 15:34:11.0 +0100
+++ /var/tmp/diff_new_pack.3gKe3y/_new  2012-02-23 15:34:11.0 +0100
@@ -24,7 +24,7 @@
 Name:   php5-pear-Horde_ActiveSync
 %define pear_name  Horde_ActiveSync
 %define pear_sname horde_activesync
-Version:1.2.1
+Version:1.2.4
 Release:0
 Source0:http://pear.horde.org/get/Horde_ActiveSync-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Horde_ActiveSync-1.2.1.tgz - Horde_ActiveSync-1.2.4.tgz ++
 25021 lines of diff (skipped)

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



commit php5-pear-Horde_Auth for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-Horde_Auth for 
openSUSE:Factory checked in at 2012-02-23 15:34:11

Comparing /work/SRC/openSUSE:Factory/php5-pear-Horde_Auth (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-Horde_Auth.new (New)


Package is php5-pear-Horde_Auth, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/php5-pear-Horde_Auth/php5-pear-Horde_Auth.changes
2012-02-15 15:58:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-Horde_Auth.new/php5-pear-Horde_Auth.changes
   2012-02-23 15:34:16.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb 22 15:39:23 UTC 2012 - Ralf Lang l...@b1-systems.de
+
+- version 1.4.8
+- [jan] Add optimized exists() implementation to LDAP driver (Marco Ferrante 
ma...@csita.unige.it, Request #10944).
+- [jan] Add Spanish translation (Manuel P. Ayala may...@unex.es).
+
+---

Old:

  Horde_Auth-1.4.7.tgz

New:

  Horde_Auth-1.4.8.tgz



Other differences:
--
++ php5-pear-Horde_Auth.spec ++
--- /var/tmp/diff_new_pack.msiu4C/_old  2012-02-23 15:34:17.0 +0100
+++ /var/tmp/diff_new_pack.msiu4C/_new  2012-02-23 15:34:17.0 +0100
@@ -16,23 +16,36 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   php5-pear-Horde_Auth
 %define pear_name  Horde_Auth
 %define pear_sname horde_auth
-Summary:PEAR: Horde Authentication API
+Summary:Horde Authentication API
 License:LGPL-2.1
 Group:  Development/Libraries/PHP
-Version:1.4.7
+Version:1.4.8
 Release:0
 Source0:http://pear.horde.org/get/Horde_Auth-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Auth
 BuildRequires:  php5-pear = 1.4.7
-Requires:   php5-pear-Horde_Exception  2.0.0, php5-pear-Horde_Util  
2.0.0, php5-pear = 1.7.0
-BuildRequires:  php5-pear-channel-horde
+Requires:   php5-pear-Horde_Exception  2.0.0
+Requires:   php5-pear-Horde_Util  2.0.0
+Requires:   php5-pear = 1.7.0
+Requires:   php5-pear-Horde_Db
+Requires:   php5-pear-Horde_Imap_Client
 Requires:   php5-pear-channel-horde
-BuildArch:  noarch
+Requires:   php5-pear-channel-horde
+Requires:   php5-hash
+BuildRequires:  php5-pear-Horde_Db
+BuildRequires:  php5-pear-Horde_Imap_Client
+BuildRequires:  php5-pear-channel-horde
+BuildRequires:  php5-hash
 BuildRequires:  php-macros
+Suggests:   php5-sasl
+Suggests:   php5-pam
+BuildArch:  noarch
 
 # Fix for renaming (package convention)
 Provides:   php5-pear-%{pear_sname} = %{version}
@@ -77,6 +90,7 @@
 cd ..
 
 %php_pear_gen_filelist
+%find_lang %{pear_name}
 
 %clean
 rm -rf %{buildroot}
@@ -94,7 +108,7 @@
   %{__pear} uninstall --nodeps --ignore-errors --register-only 
pear.horde.org/%{pear_name}
 fi
 
-%files -f %{name}.files
+%files -f %{name}.files -f %{pear_name}.lang
 %defattr(-,root,root)
 %{_docdir}/%{name}
 

++ Horde_Auth-1.4.7.tgz - Horde_Auth-1.4.8.tgz ++
 13265 lines of diff (skipped)

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



commit php5-pear-Horde_Browser for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-Horde_Browser for 
openSUSE:Factory checked in at 2012-02-23 15:34:16

Comparing /work/SRC/openSUSE:Factory/php5-pear-Horde_Browser (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-Horde_Browser.new (New)


Package is php5-pear-Horde_Browser, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/php5-pear-Horde_Browser/php5-pear-Horde_Browser.changes
  2012-02-15 15:58:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-Horde_Browser.new/php5-pear-Horde_Browser.changes
 2012-02-23 15:34:18.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 22 15:42:42 UTC 2012 - Ralf Lang l...@b1-systems.de
+
+- version 1.0.6
+- [mms] Fix upload_tmp_dir checking (Bug #10976).
+- [mms] Update dataurl and cite capabilities for Internet Explorer.
+- [jan] Update utf capability for Firefox 10+.
+- [jan] Update capabilities for recent Blackberry devices.
+
+---

Old:

  Horde_Browser-1.0.4.tgz

New:

  Horde_Browser-1.0.6.tgz



Other differences:
--
++ php5-pear-Horde_Browser.spec ++
--- /var/tmp/diff_new_pack.kwjzy5/_old  2012-02-23 15:34:18.0 +0100
+++ /var/tmp/diff_new_pack.kwjzy5/_new  2012-02-23 15:34:18.0 +0100
@@ -15,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define peardir %(pear config-get php_dir 2 /dev/null || echo 
%{_datadir}/pear)
 %define xmldir  /var/lib/pear
 
-Summary:PEAR: Horde Browser API
+Summary:Horde Browser API
 License:LGPL-2.1
 Group:  Development/Libraries/PHP
 
 Name:   php5-pear-Horde_Browser
-Version:1.0.4
+Version:1.0.6
 Release:0
 Source0:http://pear.horde.org/get/Horde_Browser-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Horde_Browser-1.0.4.tgz - Horde_Browser-1.0.6.tgz ++
 8698 lines of diff (skipped)

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



commit php5-pear-Horde_Role for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-Horde_Role for 
openSUSE:Factory checked in at 2012-02-23 15:34:21

Comparing /work/SRC/openSUSE:Factory/php5-pear-Horde_Role (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-Horde_Role.new (New)


Package is php5-pear-Horde_Role, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/php5-pear-Horde_Role/php5-pear-Horde_Role.changes
2011-09-23 12:40:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-Horde_Role.new/php5-pear-Horde_Role.changes
   2012-02-23 15:34:25.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 22 16:05:14 UTC 2012 - Ralf Lang l...@b1-systems.de
+
+- make sure we really also have the tokenizer at runtime
+
+---



Other differences:
--
++ php5-pear-Horde_Role.spec ++
--- /var/tmp/diff_new_pack.6Jo5Cl/_old  2012-02-23 15:34:26.0 +0100
+++ /var/tmp/diff_new_pack.6Jo5Cl/_new  2012-02-23 15:34:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package php5-pear-Horde_Role
 #
-# 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
@@ -24,7 +24,7 @@
 
 Name:   php5-pear-Horde_Role
 Version:1.0.0
-Release:9
+Release:7
 License:LGPL-3.0+
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Role-%{version}.tgz
@@ -35,6 +35,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Role
 BuildRequires:  php5-pear php5-tokenizer
+Requires:   php5-pear php5-tokenizer
 BuildRequires:  php5-pear-channel-horde
 Requires:   php5-pear-channel-horde
 BuildArch:  noarch


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



commit python-gpgme for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-gpgme for openSUSE:Factory 
checked in at 2012-02-23 15:34:30

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


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

Changes:

--- /work/SRC/openSUSE:Factory/python-gpgme/python-gpgme.changes
2011-09-23 12:42:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-gpgme.new/python-gpgme.changes   
2012-02-23 15:34:34.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 22 13:07:05 UTC 2012 - fcro...@suse.com
+
+- Fix incorrect gpgme initialization (bnc#745257), patch extracted
+  by Benjamin Haskell.
+
+---

New:

  pygpgme-0.1-context.patch



Other differences:
--
++ python-gpgme.spec ++
--- /var/tmp/diff_new_pack.f7ckrV/_old  2012-02-23 15:34:35.0 +0100
+++ /var/tmp/diff_new_pack.f7ckrV/_new  2012-02-23 15:34:35.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-gpgme (Version 0.1)
+# spec file for package python-gpgme
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,21 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   python-gpgme
 Version:0.1
-Release:98
+Release:0
 Summary:A Python module for working with OpenPGP messages
-Group:  Development/Libraries/Python
 License:LGPL-2.1+
+Group:  Development/Libraries/Python
 Url:http://pypi.python.org/pypi/pygpgme
 Source: pygpgme-%{version}.tar.bz2
 Patch:  pygpgme-0.1-py23.patch
+Patch1: pygpgme-0.1-context.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
 BuildRequires:  gpgme-devel
+BuildRequires:  python-devel
 
 %description
 PyGPGME is a Python module that lets you sign, verify, encrypt and
@@ -46,6 +45,7 @@
 %prep
 %setup -q -n pygpgme-%{version}
 %patch -p1
+%patch1 -p2
 
 %build
 #CFLAGS=$RPM_OPT_FLAGS %{__python} setup.py build

++ pygpgme-0.1-context.patch ++
Based on suggestion found at:
http://lists.mandriva.com/bugs/2010-05/msg03921.php

--- a/pygpgme-0.1/src/pygpgme-context.c
+++ b/pygpgme-0.1/src/pygpgme-context.c
@@ -83,6 +83,7 @@ static int
 pygpgme_context_init(PyGpgmeContext *self, PyObject *args, PyObject *kwargs)
 {
 static char *kwlist[] = { NULL };
+gpgme_check_version(NULL);
 
 if (!PyArg_ParseTupleAndKeywords(args, kwargs, , kwlist))
 return -1;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rdesktop for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package rdesktop for openSUSE:Factory 
checked in at 2012-02-23 15:34:35

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


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

Changes:

--- /work/SRC/openSUSE:Factory/rdesktop/rdesktop.changes2012-02-14 
13:11:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.rdesktop.new/rdesktop.changes   2012-02-23 
15:34:39.0 +0100
@@ -1,0 +2,17 @@
+Wed Feb 22 15:27:08 UTC 2012 - ch...@computersalat.de
+
+- update to version rdesktop (1.7.1)
+  * Fix clipboard issue when not building with unicode support
+  * Fix compilation against newer PCSC lite versions
+  * Fix for per-device license mode on Windows 2008 R2 terminal server
+  * Fix building 64bit version with static openssl linkage
+  * Rewrite of smartcard handling for 64bit support, fixes several bugs
+  * Improved license handling using XDG directories
+- fix rpmlint
+  * incorrect-fsf-address
+  * non-standard-group
+- remove obsolete patch
+  * lib64 patch
+- rebase fix_pkgconfig_check patch
+
+---

Old:

  rdesktop-1.6.0-fix-pkgconfig-check.dif
  rdesktop-1.7.0.tar.bz2

New:

  rdesktop-1.7.1.tar.bz2
  rdesktop-fix_pkgconfig_check.patch



Other differences:
--
++ rdesktop.spec ++
--- /var/tmp/diff_new_pack.A2Zs5M/_old  2012-02-23 15:34:40.0 +0100
+++ /var/tmp/diff_new_pack.A2Zs5M/_new  2012-02-23 15:34:40.0 +0100
@@ -18,17 +18,25 @@
 
 
 Name:   rdesktop
-BuildRequires:  alsa-devel automake libsamplerate-devel openssl-devel 
pkg-config xorg-x11-devel
-Url:http://www.rdesktop.org/
-License:GPL-3.0+
-Group:  Productivity/Networking/Remote Desktop
-Version:1.7.0
-Release:1
 Summary:A Remote Desktop Protocol client
+License:GPL-3.0+
+Group:  Productivity/Networking/Other
+#Group:  Productivity/Networking/Remote Desktop
+Version:1.7.1
+Release:0
+Url:http://www.rdesktop.org/
 Source: %{name}-%{version}.tar.bz2
+## FIX-openSUSE: needs rebase (doesn't fit anymore)
 Patch0: rdesktop-1.7.0-lib64.dif
-Patch3: rdesktop-1.6.0-fix-pkgconfig-check.dif
+## FIX-openSUSE: remove Don't depend on pkg-config
+Patch1: rdesktop-fix_pkgconfig_check.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  alsa-devel
+BuildRequires:  automake
+BuildRequires:  libsamplerate-devel
+BuildRequires:  openssl-devel
+BuildRequires:  pkg-config
+BuildRequires:  xorg-x11-devel
 
 %description
 rdesktop is an open source client for Windows NT Terminal Server and
@@ -36,23 +44,19 @@
 Desktop Protocol (RDP) in order to present the user's NT desktop.
 Unlike Citrix ICA, no server extensions are required.
 
-
-
-Authors:
-
-Matt Chapman matth...@cse.unsw.edu.au
-
 %prep
 %setup
-%patch0
-%patch3 -p1
+#patch0
+%patch1
+## rpmlint
+# incorrect-fsf-address /usr/share/rdesktop/keymaps/convert-map
+perl -p -i -e 's|^# Foundation.*|# Foundation, 51 Franklin Street, Suite 500, 
Boston, MA 02110-1335, USA|' keymaps/convert-map
 
 %build
 %{suse_update_config}
 autoreconf --force --install --verbose
-CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing ./configure --prefix=/usr \
- --libdir=%{_libdir} \
- --mandir=%{_mandir} \
+CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing \
+%configure \
  --with-openssl=/usr \
  --with-ipv6
 make

++ rdesktop-1.7.0.tar.bz2 - rdesktop-1.7.1.tar.bz2 ++
 1945 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/rdesktop-1.7.0/channels.c new/rdesktop-1.7.1/channels.c
--- old/rdesktop-1.7.0/channels.c   2011-04-18 13:21:57.0 +0200
+++ new/rdesktop-1.7.1/channels.c   2011-09-28 11:36:59.0 +0200
@@ -1,7 +1,7 @@
 /* -*- c-basic-offset: 8 -*-
rdesktop: A Remote Desktop Protocol client.
Protocol services - Virtual channels
-   Copyright (C) Erik Forsberg forsb...@cendio.se 2003
+   Copyright 2003 Erik Forsberg forsb...@cendio.se for Cendio AB
Copyright (C) Matthew Chapman matthewc.unsw.edu.au 2003-2008
 
This program is free 

commit satsolver-bindings for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package satsolver-bindings for 
openSUSE:Factory checked in at 2012-02-23 15:34:44

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


Package is satsolver-bindings, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/satsolver-bindings/satsolver-bindings.changes
2012-02-14 11:27:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.satsolver-bindings.new/satsolver-bindings.changes   
2012-02-23 15:34:46.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 13 10:55:23 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ satsolver-bindings.spec ++
--- /var/tmp/diff_new_pack.KAF7cX/_old  2012-02-23 15:34:48.0 +0100
+++ /var/tmp/diff_new_pack.KAF7cX/_new  2012-02-23 15:34:48.0 +0100
@@ -20,22 +20,23 @@
 
 Name:   satsolver-bindings
 Version:0.44.5
-Release:1
-License:BSD-3-Clause
+Release:0
 Url:http://github.com/openSUSE/sat-solver-bindings
 Source: satsolver-bindings-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Group:  Development/Libraries/C and C++
 Summary:Placeholder for subpackages of satsolver-bindings
+License:BSD-3-Clause
+Group:  Development/Libraries/C and C++
 Prefix: /usr
-BuildRequires:  libsatsolver-devel
 BuildRequires:  doxygen
+BuildRequires:  libsatsolver-devel
 %if 0%{?mandriva_version}
 # force this version on mandriva
 BuildRequires:  libneon0.26-devel
 %endif
 %if 0%{?fedora_version}
-BuildRequires:  db4-devel perl-devel
+BuildRequires:  db4-devel
+BuildRequires:  perl-devel
 %endif
 %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
 BuildRequires:  ruby
@@ -58,7 +59,13 @@
 %else
 BuildRequires:  expat-devel
 %endif
-BuildRequires:  cmake gcc-c++ perl python-devel rpm-devel ruby-devel swig
+BuildRequires:  cmake
+BuildRequires:  gcc-c++
+BuildRequires:  perl
+BuildRequires:  python-devel
+BuildRequires:  rpm-devel
+BuildRequires:  ruby-devel
+BuildRequires:  swig
 BuildRequires:  zlib-devel
 # the testsuite uses the check framework
 BuildRequires:  check-devel
@@ -76,7 +83,6 @@
 
 
 %package -n libsatsolverapp0
-License:BSD-3-Clause
 Summary:Sat-solver application layer
 Group:  Development/Libraries/C and C++
 
@@ -88,7 +94,6 @@
 Klaus Kaempf kkae...@suse.de
 
 %package -n libsatsolverapp0-devel
-License:BSD-3-Clause
 Summary:Sat-solver application layer
 Group:  Development/Libraries/C and C++
 Requires:   libsatsolverapp0 = %version
@@ -101,7 +106,6 @@
 Klaus Kaempf kkae...@suse.de
 
 %package -n ruby-satsolver
-License:BSD-3-Clause
 Summary:Ruby bindings for sat solver
 Group:  Development/Languages/Ruby
 
@@ -114,7 +118,6 @@
 Duncan Mac-Vicar P. dmacvi...@suse.de
 
 %package -n python-satsolver
-License:BSD-3-Clause
 %py_requires
 Summary:Python bindings for sat solver
 Group:  Development/Languages/Python
@@ -128,7 +131,6 @@
 Duncan Mac-Vicar P. dmacvi...@suse.de
 
 %package -n perl-satsolver
-License:BSD-3-Clause
 Requires:   perl = %{perl_version}
 Summary:Perl bindings for sat solver
 Group:  Development/Languages/Perl
@@ -143,7 +145,6 @@
 Bernhard Wiedemann bwiedem...@suse.de
 
 %package -n satsolver-bindings-devel
-License:BSD-3-Clause
 Requires:   swig %{name}-devel
 Summary:Swig input files for satsolver bindings
 Group:  Development/Libraries/Other

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



commit tinyproxy for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package tinyproxy for openSUSE:Factory 
checked in at 2012-02-23 15:34:52

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


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

Changes:

--- /work/SRC/openSUSE:Factory/tinyproxy/tinyproxy.changes  2011-09-23 
12:48:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.tinyproxy.new/tinyproxy.changes 2012-02-23 
15:34:55.0 +0100
@@ -1,0 +2,36 @@
+Wed Feb 22 23:08:32 UTC 2012 - ch...@computersalat.de
+
+- fix init script
+  * TINYPROXY_CFG=/etc/tinyproxy.conf
+  * create PID DIR
+- fix logrotate script
+  * compress, dateext .
+- add user, group tinyproxy
+- add conf patch
+- add missing logdir
+- add missing rc_link
+- fix pre/post
+
+---
+Fri Dec  2 10:15:30 UTC 2011 - ch...@computersalat.de
+
+- spec-cleaner
+- fix build for suse_version 1110
+  * define missing _initdir macro
+
+---
+Mon Sep 19 08:51:04 UTC 2011 - tog...@opensuse.org
+
+- Update to 1.8.3 version
+  changed source format to bz2  
+* Fix upstream proxy support
+* Fix FilterURLs with transparent proxy support
+* Fix bug in ACL netmask generation
+
+---
+Fri Jul 29 12:04:39 UTC 2011 - tog...@opensuse.org
+
+- added /etc/init.d/tinyproxy
+- added tinyproxy logrotate 
+
+---

Old:

  tinyproxy-1.8.2.tar.xz

New:

  tinyproxy-1.8.3.tar.bz2
  tinyproxy-conf.patch
  tinyproxy.init
  tinyproxy.logrotate



Other differences:
--
++ tinyproxy.spec ++
--- /var/tmp/diff_new_pack.7KOpAG/_old  2012-02-23 15:34:57.0 +0100
+++ /var/tmp/diff_new_pack.7KOpAG/_new  2012-02-23 15:34:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tinyproxy
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,21 +16,27 @@
 #
 
 
+%if 0%{?suse_version} == 1110
+%define _initddir /etc/init.d
+%endif
 
 Name:   tinyproxy
-Version:1.8.2
-Release:1
-Group:  Productivity/Networking/Web/Proxy
 Summary:Minimalist WWW proxy
-License:GPLv2+
+License:GPL-2.0+
+Group:  Productivity/Networking/Web/Proxy
+Version:1.8.3
+Release:0
 Url:https://banu.com/tinyproxy/
-
-#Source:   https://banu.com/pub/tinyproxy/1.8/tinyproxy-1.8.2.tar.bz2
-Source: %name-%version.tar.xz
-
+Source: https://banu.com/pub/tinyproxy/1.8/%{name}-%{version}.tar.bz2
+Source1:%{name}.logrotate
+Source2:%{name}.init
+Patch0: %{name}-conf.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+
 # libxslt - xsltproc
-BuildRequires:  asciidoc libxslt xz
+BuildRequires:  asciidoc
+BuildRequires:  libxslt
+Requires:   logrotate
 
 %description
 Tinyproxy is a light-weight HTTP/HTTPS proxy daemon for POSIX
@@ -40,20 +46,67 @@
 system resources for a larger proxy are unavailable.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{version}
+%patch0
 
 %build
 %configure
 make  %{?_smp_mflags};
 
 %install
-make install DESTDIR=%buildroot;
+make install DESTDIR=%{buildroot}
+
+# add logrotate file
+install -D -m0644 %{S:1} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name}
+
+# add init script + rc_link
+install -D -m0755 %{S:2} %{buildroot}/%{_initddir}/%{name}
+ln -sf %{_initddir}/%{name} %{buildroot}/%{_sbindir}/rc%{name}
+
+# add logdir
+install -d -m0750 %{buildroot}/var/log/%{name}
+
+%pre
+# add group
+%{_sbindir}/groupadd -r %{name} 2/dev/null || :
+# add user
+%{_sbindir}/useradd -c Tinyproxy -d /usr/share/%{name} -G %{name} -g %{name} 
\
+  -r -s /bin/false %{name} 2/dev/null || :
+#if 0%{?has_systemd}
+#service_add_pre tinyproxy.service
+#endif
+
+%post
+%{fillup_and_insserv -n tinyproxy}
+
+#if 0%{?has_systemd}
+#service_add_post tinyproxy.service
+#endif
+
+%preun
+%stop_on_removal tinyproxy
+
+#if 0%{?has_systemd}
+#service_del_preun tinyproxy.service
+#endif
+
+%postun
+#if 0%{?has_systemd}
+#service_del_postun tinyproxy.service
+#endif
+
+%restart_on_update tinyproxy
+%insserv_cleanup
+%stop_on_removal
 
 %files
 %defattr(-,root,root)
-%config(noreplace) %_sysconfdir/*.conf
-%_sbindir/*
-%_mandir/man*/*
-%_datadir/tinyproxy
+%config(noreplace) %{_sysconfdir}/*.conf
+%config %{_sysconfdir}/logrotate.d/%{name}
+%attr(0755,root,root) 

commit xfsdump for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

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

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


Package is xfsdump, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xfsdump/xfsdump.changes  2011-09-23 
12:51:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.xfsdump.new/xfsdump.changes 2012-02-23 
15:35:02.0 +0100
@@ -1,0 +2,43 @@
+Mon Feb  6 22:27:49 UTC 2012 - rschweik...@suse.com
+
+- use %configure
+
+---
+Thu Feb  2 18:41:51 UTC 2012 - rschweik...@suse.com
+
+- place binaries in /usr tree (UsrMerge project)
+
+---
+Mon Jun 20 11:28:11 UTC 2011 - mma...@novell.com
+
+- updated to 3.0.5
+  - Release tags will now be digitally signed
+  - Quota files will now be dumped, regardless of the maxsize
+setting
+  - The new -s sessid flag allows inventory sessions to be pruned
+by their session ID.
+  - Fixed a bug in handling long dump filenames, and dropped
+(undocumented) support for encoding certain parameters within
+the dump filename
+  - NODECHK is now off by default, meaning xfsrestore will now
+support 16 times more directory entries (4 billion)
+  - nrh_t is now 64 bits wide, allowing xfsrestore to support dumps
+with up to 4 billion directory entries
+  - nix_t is no longer useful, and has been eliminated
+  - Memory use in xfsrestore is better managed now.  Segments of
+nodes are now power-of-2 sized, and allocated nodes are no
+longer needlessly zeroed and linked into the free list.
+  - Pathname resolution in xfsrestore has a number of performance
+improvements
+  - Better checking has been implemented for compatibility when
+resuming a cumulative restore
+  - Build system output has been cleaned up considerably
+  - Dead namreg code has been removed
+  - Build dependencies are now determined automatically
+  - Other miscellaneous build system improvements, as well bug
+fixes thanks to Mike Frysinger and Arkadiusz Miśkiewicz.
+  - Improve xfsinvutil man page and argument processing.
+  - Fix timestamp handling on 64-bit architectures in xfsinvutil.
+  - Various build system improvements.
+
+---

Old:

  xfsdump-3.0.1.tar.bz2

New:

  xfsdump-3.0.5.tar.gz



Other differences:
--
++ xfsdump.spec ++
--- /var/tmp/diff_new_pack.UCsSik/_old  2012-02-23 15:35:03.0 +0100
+++ /var/tmp/diff_new_pack.UCsSik/_new  2012-02-23 15:35:03.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xfsdump (Version 3.0.1)
+# spec file for package xfsdump
 #
-# 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,19 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   xfsdump
-BuildRequires:  e2fsprogs-devel libattr-devel ncurses-devel xfsprogs-devel
-Version:3.0.1
-Release:2
-AutoReqProv:on
-Group:  System/Filesystems
-License:GPLv2+
+BuildRequires:  e2fsprogs-devel
+BuildRequires:  libattr-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  xfsprogs-devel
+Version:3.0.5
+Release:0
 Url:http://oss.sgi.com/projects/xfs/
 Summary:Administrative Utilities for the XFS File System
-Source0:xfsdump-%version.tar.bz2
+License:GPL-2.0+
+Group:  System/Filesystems
+Source0:xfsdump-%version.tar.gz
 Patch0: xfsdump-docdir.diff
 Patch1: xfsdump-3.0.1-fix-bufferoverflow.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -63,25 +62,26 @@
 %build
 export CFLAGS=$RPM_OPT_FLAGS
 export DEBUG=-DNDEBUG
-./configure \
-   --prefix=/usr   \
-   --exec-prefix=/ \
-   --sbindir=/sbin \
-   --bindir=/usr/sbin  \
-   --mandir=%{_mandir}
+%configure --bindir=%{_sbindir} --mandir=%{_mandir}
 make %{?jobs:-j%jobs}
 
 %install
 export DIST_ROOT=$RPM_BUILD_ROOT
 make install
+#UsrMerge
+ln -sf %_sbindir/xfsdump $RPM_BUILD_ROOT/sbin
+ln -sf %_sbindir/xfsrestore $RPM_BUILD_ROOT/sbin
+#EndUsrMerge 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,755)
+ %_sbindir/*
+#UsrMerge
 /sbin/*
-/usr/sbin/*
+#EndUsrMerge 
 %doc %_defaultdocdir/%name
 /usr/share/man/man8/*
 

++ 

commit xfsprogs for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xfsprogs for openSUSE:Factory 
checked in at 2012-02-23 15:35:05

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


Package is xfsprogs, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xfsprogs/xfsprogs.changes2011-10-19 
00:56:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.xfsprogs.new/xfsprogs.changes   2012-02-23 
15:35:07.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb  6 22:33:58 UTC 2012 - rschweik...@suse.com
+
+- use %configure
+
+---
+Fri Feb  3 14:50:27 UTC 2012 - rschweik...@suse.com
+
+- move libs and executables to /usr tree (UsrMerge project)
+
+---



Other differences:
--
++ xfsprogs.spec ++
--- /var/tmp/diff_new_pack.hKEe9Q/_old  2012-02-23 15:35:08.0 +0100
+++ /var/tmp/diff_new_pack.hKEe9Q/_new  2012-02-23 15:35:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xfsprogs
 #
-# 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,22 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   xfsprogs
 BuildRequires:  e2fsprogs-devel
 Version:3.1.6
-Release:1
+Release:0
 %if 0%{?suse_version} = 1010
 # hint for ZYPP
 Supplements:filesystem(xfs)
 %endif
-AutoReqProv:on
-Group:  System/Filesystems
-License:GPL-2.0+
 Url:http://oss.sgi.com/projects/xfs/
 Summary:Utilities for managing the XFS file system
+License:GPL-2.0+
+Group:  System/Filesystems
 Source0:xfsprogs-%{version}.tar.gz
 Patch0: xfsprogs-docdir.diff
 Patch1: xfsprogs-ppc64.diff
@@ -58,11 +54,9 @@
 
 %package  devel
 Requires:   xfsprogs = %version
-AutoReqProv:on
-Group:  Development/Libraries/C and C++
-License:GPL-2.0+
 Url:http://oss.sgi.com/projects/xfs/
 Summary:XFS Filesystem-specific Static Libraries and Headers
+Group:  Development/Libraries/C and C++
 
 %description devel
 xfsprogs-devel contains the libraries and header files needed to
@@ -88,13 +82,7 @@
 export DEBUG=-DNDEBUG
 export LIBUUID=/usr/%{_lib}/libuuid.a
 export CFLAGS=$RPM_OPT_FLAGS
-./configure \
-   --prefix=%{_prefix} \
-   --libdir=/%{_libdir} \
-   --libexecdir=/usr/%{_lib} \
-   --includedir=%{_includedir} \
-   --mandir=%{_mandir} \
-   --datadir=%{_datadir}
+%configure --sbindir=%{_sbindir} --mandir=%{_mandir} --datadir=%{_datadir}
 make %{?jobs:-j %jobs}
 
 %install
@@ -104,11 +92,18 @@
 # remove devel stuff from /lib
 rm $RPM_BUILD_ROOT/%_lib/libhandle.{so,a,la}
 rm $RPM_BUILD_ROOT/%_libdir/libhandle.so
+# move things to usr
+mv $RPM_BUILD_ROOT/sbin/* $RPM_BUILD_ROOT%{_sbindir}
+mv $RPM_BUILD_ROOT/%_lib/* $RPM_BUILD_ROOT%{_libdir}
+#UsrMerge
+ln -sf %{_sbindir}/{fsck.xfs,mkfs.xfs,xfs_repair} $RPM_BUILD_ROOT/sbin
+ln -sf %{_libdir}/libhandle.so.1 $RPM_BUILD_ROOT/%{_lib}
+ln -sf %{_libdir}/libhandle.so.1.0.3 $RPM_BUILD_ROOT/%{_lib}
+#EndUserMerge
 pushd $RPM_BUILD_ROOT%_libdir
-   ls ../../%_lib/libhandle.so.[0-9]
-   ln -s ../../%_lib/libhandle.so.[0-9] libhandle.so
+   ln -s libhandle.so.[0-9] libhandle.so
 popd
-chmod 755 $RPM_BUILD_ROOT/sbin/fsck.xfs
+chmod 755 $RPM_BUILD_ROOT/%_sbindir/fsck.xfs
 %find_lang %name
 
 %clean
@@ -120,16 +115,19 @@
 
 %files -f %name.lang
 %defattr(-,root,root,755)
+#UsrMerge
 /sbin/*
-/usr/sbin/*
-# this is only used by xfs cmds, therefore no urgent need for a shlib package
 /%_lib/libhandle.so.*
+#EndUsrMerge
+%_sbindir/*
+# this is only used by xfs cmds, therefore no urgent need for a shlib package
+%_libdir/libhandle.so.*
 %doc /usr/share/man/man[58]/*
 %doc %_defaultdocdir/%name
 
 %files devel
 %defattr(-,root,root,755)
-/usr/include/xfs
+%_includedir/xfs
 %_libdir/*.so
 %_libdir/*.a
 %_libdir/*.la

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



commit xorg-x11-drv-omapfb for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-drv-omapfb for 
openSUSE:Factory checked in at 2012-02-23 15:35:11

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


Package is xorg-x11-drv-omapfb, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-drv-omapfb/xorg-x11-drv-omapfb.changes  
2012-02-17 12:11:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-drv-omapfb.new/xorg-x11-drv-omapfb.changes 
2012-02-23 15:35:15.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 22 20:18:13 UTC 2012 - joop.boo...@opensuse.org
+
+- correction in spec file for ./autogen.sh
+
+---



Other differences:
--
++ xorg-x11-drv-omapfb.spec ++
--- /var/tmp/diff_new_pack.TrlUzz/_old  2012-02-23 15:35:16.0 +0100
+++ /var/tmp/diff_new_pack.TrlUzz/_new  2012-02-23 15:35:16.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define jobs $(( `/usr/bin/getconf _NPROCESSORS_ONLN` + 1 ))
 
 Name:   xorg-x11-drv-omapfb
@@ -48,7 +49,7 @@
 %setup -q -n xf86-video-omapfb-%{version}
 
 %build
-%define _configure ./autogen.sh
+./autogen.sh
 export CFLAGS=%{optflags} -mfpu=neon
 %configure --disable-static \
 --enable-neon

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



commit yast2 for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2012-02-23 15:35:16

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


Package is yast2, Maintainer is jsr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2012-01-19 
09:44:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2012-02-23 
15:35:17.0 +0100
@@ -1,0 +2,14 @@
+Wed Feb 22 12:57:01 UTC 2012 - mfi...@suse.com
+
+- bnc#694582 - addedd @ as it is allowed in authority part of URI.
+- improve Exists(), don't return 'true' if SCR::Read() returned nil
+- fixed testsuite for WorkFlow.ycp - corrupted due to above Exists() fix
+- added String::YesNo
+- 2.22.4 
+
+---
+Tue Jan 31 14:44:38 CET 2012 - tgoettlic...@suse.de
+
+- Fixed typo
+
+---

Old:

  yast2-2.22.3.tar.bz2

New:

  yast2-2.22.4.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.fmJqaP/_old  2012-02-23 15:35:19.0 +0100
+++ /var/tmp/diff_new_pack.fmJqaP/_new  2012-02-23 15:35:19.0 +0100
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+# norootforbuild
 
 
 Name:   yast2
-Version:2.22.3
+Version:2.22.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -136,6 +137,7 @@
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
+%{?suse_update_config:%{suse_update_config -f}}
 ./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works

++ yast2-2.22.3.tar.bz2 - yast2-2.22.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-2.22.3/VERSION new/yast2-2.22.4/VERSION
--- old/yast2-2.22.3/VERSION2012-01-13 14:51:31.0 +0100
+++ new/yast2-2.22.4/VERSION2012-02-22 12:32:09.0 +0100
@@ -1 +1 @@
-2.22.3
+2.22.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-2.22.3/configure.in 
new/yast2-2.22.4/configure.in
--- old/yast2-2.22.3/configure.in   2012-01-13 14:51:32.0 +0100
+++ new/yast2-2.22.4/configure.in   2012-02-22 12:30:21.0 +0100
@@ -1,6 +1,6 @@
 dnl configure.in for yast2
 dnl
-dnl -- This file is generated by y2autoconf 2.21.7 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.21.6 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
 AC_INIT(yast2, 2.22.3, http://bugs.opensuse.org/, yast2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-2.22.3/library/control/testsuite/tests/WorkflowManager.ycp 
new/yast2-2.22.4/library/control/testsuite/tests/WorkflowManager.ycp
--- old/yast2-2.22.3/library/control/testsuite/tests/WorkflowManager.ycp
2012-01-13 14:51:27.0 +0100
+++ new/yast2-2.22.4/library/control/testsuite/tests/WorkflowManager.ycp
2012-02-22 14:54:36.0 +0100
@@ -7,6 +7,7 @@
 map READ = $[
 target : $[
size : 0,
+stat : $[ dummy: true ]
 ],
 ];
 
@@ -14,7 +15,9 @@
 
 map EXEC = $[];
 
-TESTSUITE_INIT([READ, WRITE, EXEC], nil);
+list MOCK = [READ, WRITE, EXEC];
+
+TESTSUITE_INIT( MOCK, nil);
 
 import WorkflowManager;
 import ProductControl;
@@ -28,29 +31,29 @@
 // init --
 
 
-TEST (``(WorkflowManager::SetBaseWorkflow (false)), [], nil);
+TEST (``(WorkflowManager::SetBaseWorkflow (false)), MOCK, nil);
 
 DUMP ();
 DUMP (Adding new Add-On product);
-TEST (``(WorkflowManager::AddWorkflow (`addon, 3, )), [], nil);
-TEST (``(WorkflowManager::GetAllUsedControlFiles ()), [], nil);
+TEST (``(WorkflowManager::AddWorkflow (`addon, 3, )), MOCK, nil);
+TEST (``(WorkflowManager::GetAllUsedControlFiles ()), MOCK, nil);
 
 DUMP ();
 DUMP (Adding another Add-On product);
-TEST (``(WorkflowManager::AddWorkflow (`addon, 12, )), [], nil);
-TEST (``(WorkflowManager::GetAllUsedControlFiles ()), [], nil);
+TEST (``(WorkflowManager::AddWorkflow (`addon, 12, )), MOCK, nil);
+TEST (``(WorkflowManager::GetAllUsedControlFiles ()), MOCK, nil);
 
 DUMP ();
 DUMP (Removing the first Add-On product);
-TEST (``(WorkflowManager::RemoveWorkflow (`addon, 3, )), [], nil);
-TEST (``(WorkflowManager::GetAllUsedControlFiles ()), [], nil);
+TEST (``(WorkflowManager::RemoveWorkflow (`addon, 3, )), MOCK, nil);
+TEST (``(WorkflowManager::GetAllUsedControlFiles ()), MOCK, nil);
 
 DUMP ();
 DUMP (Removing the first Add-On product);
-TEST 

commit yast2-ldap-client for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-ldap-client for 
openSUSE:Factory checked in at 2012-02-23 15:35:22

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


Package is yast2-ldap-client, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-ldap-client/yast2-ldap-client.changes  
2012-02-03 10:27:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-ldap-client.new/yast2-ldap-client.changes 
2012-02-23 15:35:24.0 +0100
@@ -1,0 +2,13 @@
+Wed Feb 22 16:38:12 CET 2012 - jsuch...@suse.cz
+
+- fixed handling of certificate download
+- 2.22.5 
+
+---
+Tue Feb 21 11:06:29 CET 2012 - jsuch...@suse.cz
+
+- removed password policies configuration from client, relevant parts
+  moved to server configuration (fate #313143)
+- 2.22.4
+
+---

Old:

  yast2-ldap-client-2.22.3.tar.bz2

New:

  yast2-ldap-client-2.22.5.tar.bz2



Other differences:
--
++ yast2-ldap-client.spec ++
--- /var/tmp/diff_new_pack.1ACKIy/_old  2012-02-23 15:35:25.0 +0100
+++ /var/tmp/diff_new_pack.1ACKIy/_new  2012-02-23 15:35:25.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   yast2-ldap-client
-Version:2.22.3
+Version:2.22.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ldap-client-2.22.3.tar.bz2 - yast2-ldap-client-2.22.5.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ldap-client-2.22.3/VERSION 
new/yast2-ldap-client-2.22.5/VERSION
--- old/yast2-ldap-client-2.22.3/VERSION2012-02-02 15:01:18.0 
+0100
+++ new/yast2-ldap-client-2.22.5/VERSION2012-02-22 16:38:37.0 
+0100
@@ -1 +1 @@
-2.22.3
+2.22.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ldap-client-2.22.3/src/Ldap.ycp 
new/yast2-ldap-client-2.22.5/src/Ldap.ycp
--- old/yast2-ldap-client-2.22.3/src/Ldap.ycp   2012-02-02 14:59:38.0 
+0100
+++ new/yast2-ldap-client-2.22.5/src/Ldap.ycp   2012-02-21 11:06:25.0 
+0100
@@ -25,7 +25,7 @@
  * Authors:Thorsten Kukuk ku...@suse.de
  * Anas Nashif nas...@suse.de
  *
- * $Id: Ldap.ycp 67232 2012-01-19 14:36:33Z jsuchome $
+ * $Id: Ldap.ycp 67491 2012-02-21 10:06:24Z jsuchome $
  */
 
 {
@@ -312,9 +312,6 @@
  */
 global boolean mkhomedir= false;
 
-// map with modifications of Password Policies objects
-global mapstring,map ppolicies   = $[];
-
 // packages needed for pam_ldap/nss_ldap configuration
 global liststring pam_nss_packages   = [pam_ldap, nss_ldap];
 
@@ -3035,12 +3032,6 @@
ldap_modified   = false;
}
}
-   if (ppolicies != $[])
-   {
-   WriteLDAP (ppolicies);
-   modified= true; // so data get reset in next step
-   ppolicies   = $[];
-   }
 
// final stage
Progress::NextStage ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ldap-client-2.22.3/src/LdapPopup.ycp 
new/yast2-ldap-client-2.22.5/src/LdapPopup.ycp
--- old/yast2-ldap-client-2.22.3/src/LdapPopup.ycp  2012-01-19 
15:36:39.0 +0100
+++ new/yast2-ldap-client-2.22.5/src/LdapPopup.ycp  2012-02-21 
11:26:44.0 +0100
@@ -24,7 +24,7 @@
  * Summary:Additional user interface functions: special edit popups
  * Authors:Jiri Suchomel jsuch...@suse.cz
  *
- * $Id: LdapPopup.ycp 67232 2012-01-19 14:36:33Z jsuchome $
+ * $Id: LdapPopup.ycp 67492 2012-02-21 10:26:43Z jsuchome $
  *
  * Popups for editing the values of LDAP configuration tables.
  */
@@ -566,371 +566,4 @@
 return $[ attr: attr, value: new_value ];
 }
 
-/**
- * dialog for Password Policy configuration object
- * @param ppolicy data with Password Policy object to be edited (as obtained 
from LDAP search)
- * @return map with modifications of ppolicy object, nil in case of `cancel
- */
-global define map PasswordPolicyDialog (map ppolicy) {
-
-// reduce the list values to single ones
-ppolicy= mapmap (string a, any val, (mapstring,any)ppolicy, {
-   if (is (val, list)  (Ldap::SingleValued (a) || size ((list)val) == 1))
-   val = ((list)val)[0]:nil;
-   if (val == TRUE || val == FALSE)
-   val = (val == TRUE);
-   return $[ a: val ];
-});
-map ppolicy_orig   = ppolicy;
-
-// help text for Password Policy Dialog
-string help_text = _(pSelect the bPassword Change Policies/b, 
bPassword Aging 

commit zypper for openSUSE:12.1:Update:Test

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package zypper for openSUSE:12.1:Update:Test 
checked in at 2012-02-23 16:09:32

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/zypper/zypper.changes   2012-01-11 
18:29:48.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.zypper.new/zypper.changes  
2012-02-23 16:09:34.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 12:25:22 CET 2012 - m...@suse.de
+
+- Fix augeas lense enforcing a non empty anonymous section (bnc#748144)
+- version 1.6.22
+
+---

Old:

  zypper-1.6.21.tar.bz2

New:

  zypper-1.6.22.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.cskcdP/_old  2012-02-23 16:09:35.0 +0100
+++ /var/tmp/diff_new_pack.cskcdP/_new  2012-02-23 16:09:35.0 +0100
@@ -34,7 +34,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Command line software manager using libzypp
-Version:1.6.21
+Version:1.6.22
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.6.21.tar.bz2 - zypper-1.6.22.tar.bz2 ++
/work/SRC/openSUSE:12.1:Update:Test/zypper/zypper-1.6.21.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.zypper.new/zypper-1.6.22.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 libxml2 for openSUSE:11.4

2012-02-23 Thread h_root

Hello community,

here is the log from the commit of package libxml2 for openSUSE:11.4
checked in at Fri Feb 24 02:40:10 CET 2012.




--- old-versions/11.4/UPDATES/all/libxml2/libxml2.changes   2012-01-06 
11:55:57.0 +0100
+++ 11.4/libxml2/libxml2.changes2012-02-23 12:11:37.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 22 10:19:27 UTC 2012 - vci...@suse.com
+
+- add fix for hash table collisions CVE-2012-0841 (bnc#748561) 
+
+---

calling whatdependson for 11.4-i586


New:

  libxml2-CVE-2012-0841.patch



Other differences:
--
++ libxml2-python.spec ++
--- /var/tmp/diff_new_pack.3Ec7Ow/_old  2012-02-24 02:38:12.0 +0100
+++ /var/tmp/diff_new_pack.3Ec7Ow/_new  2012-02-24 02:38:12.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   libxml2-python
 Version:2.7.8
-Release:5.RELEASE3
+Release:5.RELEASE4
 Summary:Python Bindings for libxml2
 License:MIT
 Group:  Development/Libraries/Python

++ libxml2.spec ++
--- /var/tmp/diff_new_pack.3Ec7Ow/_old  2012-02-24 02:38:12.0 +0100
+++ /var/tmp/diff_new_pack.3Ec7Ow/_new  2012-02-24 02:38:12.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   libxml2
 Version:2.7.8
-Release:16.RELEASE21
+Release:16.RELEASE23
 Summary:A Library to Manipulate XML Files
 License:MIT
 Group:  System/Libraries
@@ -32,6 +32,8 @@
 Patch4: libxml2-CVE-2011-2821.patch
 # PATCH-FIX-UPSTREAM CVE-2011-3919 (bnc#739894)
 Patch5: libxml2-CVE-2011-3919.patch
+# PATCH-FIX-UPSTREAM CVE-2012-0841 (bnc#748561)
+Patch6: libxml2-CVE-2012-0841.patch
 BuildRequires:  pkg-config
 BuildRequires:  readline-devel
 BuildRequires:  zlib-devel
@@ -59,6 +61,7 @@
 
 %package devel
 
+
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -76,6 +79,7 @@
 
 %package doc
 
+
 Summary:A Library to Manipulate XML Files
 Group:  System/Libraries
 Requires:   %{name} = %{version}
@@ -106,6 +110,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 %build
 %configure --disable-static \

++ libxml2-CVE-2012-0841.patch ++
From 8973d58b7498fa5100a876815476b81fd1a2412a Mon Sep 17 00:00:00 2001
From: Daniel Veillard veill...@redhat.com
Date: Sat, 04 Feb 2012 11:07:44 +
Subject: Add hash randomization to hash and dict structures

Following http://www.ocert.org/advisories/ocert-2011-003.html
it seems that having hash randomization might be a good idea
when using XML with untrusted data
* configure.in: lookup for rand, srand and time
* dict.c: add randomization to dictionaries hash tables
* hash.c: add randomization to normal hash tables
---
diff --git a/configure.in b/configure.in
index fa80375..828b66a 100644
--- a/configure.in
+++ b/configure.in
@@ -512,6 +512,7 @@ AC_CHECK_FUNCS(strdup strndup strerror)
 AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
 AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
 AC_CHECK_FUNCS(stat _stat signal)
+AC_CHECK_FUNCS(rand srand time)
 
 dnl Checking the standard string functions availability
 AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf 
sscanf,,
diff --git a/dict.c b/dict.c
index 3eff231..ae4966b 100644
--- a/dict.c
+++ b/dict.c
@@ -2,7 +2,7 @@
  * dict.c: dictionary of reusable strings, just used to avoid allocation
  * and freeing operations.
  *
- * Copyright (C) 2003 Daniel Veillard.
+ * Copyright (C) 2003-2012 Daniel Veillard.
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -19,6 +19,28 @@
 #define IN_LIBXML
 #include libxml.h
 
+#ifdef HAVE_STDLIB_H
+#include stdlib.h
+#endif
+#ifdef HAVE_TIME_H
+#include time.h
+#endif
+
+/*
+ * Following http://www.ocert.org/advisories/ocert-2011-003.html
+ * it seems that having hash randomization might be a good idea
+ * when using XML with untrusted data
+ * Note1: that it works correctly only if compiled with WITH_BIG_KEY
+ *  which is the default.
+ * Note2: the fast function used for a small dict won't protect very
+ *  well but since the attack is based on growing a very big hash
+ *  list we will use the BigKey algo as soon as the hash size grows
+ *  over MIN_DICT_SIZE so this actually works
+ */
+#if defined(HAVE_RAND)  defined(HAVE_SRAND)  defined(HAVE_TIME)
+#define DICT_RANDOMIZATION
+#endif
+
 #include string.h
 #ifdef HAVE_STDINT_H
 #include stdint.h
@@ -44,23 +66,23 @@ typedef unsigned __int32 uint32_t;
 #define WITH_BIG_KEY
 
 #ifdef WITH_BIG_KEY
-#define xmlDictComputeKey(dict, name, len) \
-(((dict)-size == MIN_DICT_SIZE) ? \
- xmlDictComputeFastKey(name, 

commit commoncpp2 for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package commoncpp2 for openSUSE:Factory 
checked in at 2012-02-24 06:52:41

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


Package is commoncpp2, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/commoncpp2/commoncpp2.changes2012-02-16 
10:05:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.commoncpp2.new/commoncpp2.changes   
2012-02-24 06:52:43.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 16:54:34 UTC 2012 - kk...@linux-pingi.de
+
+- Disable parallel builds again, it fails randomly (depending
+  how many parallel jobs are started)
+
+---



Other differences:
--
++ commoncpp2.spec ++
--- /var/tmp/diff_new_pack.17WGWy/_old  2012-02-24 06:52:45.0 +0100
+++ /var/tmp/diff_new_pack.17WGWy/_new  2012-02-24 06:52:45.0 +0100
@@ -16,6 +16,7 @@
 #
 
 
+
 Name:   commoncpp2
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
@@ -104,7 +105,7 @@
 %build
 autoreconf --install --force -v
 %configure --enable-shared --disable-static --with-pic
-make %{?_smp_mflags}
+make
 
 %install
 mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man3

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



commit libaal-1_0-5 for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package libaal-1_0-5 for openSUSE:Factory 
checked in at 2012-02-24 06:52:54

Comparing /work/SRC/openSUSE:Factory/libaal-1_0-5 (Old)
 and  /work/SRC/openSUSE:Factory/.libaal-1_0-5.new (New)


Package is libaal-1_0-5, Maintainer is mse...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/libaal-1_0-5/libaal-1_0-5.changes
2011-09-23 02:07:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libaal-1_0-5.new/libaal-1_0-5.changes   
2012-02-24 06:52:58.0 +0100
@@ -1,0 +2,25 @@
+Mon Feb 20 16:35:36 UTC 2012 - co...@suse.com
+
+- do not use setBadness in rpmlintrc
+
+---
+Mon Feb 13 10:48:20 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Sun Nov 13 09:12:43 UTC 2011 - co...@suse.com
+
+- add libtool as explicit buildrequire to avoid implicit dependency from 
prjconf
+
+---
+Wed Mar 23 18:51:39 UTC 2011 - pascal.ble...@opensuse.org
+
+- re-enable static libraries, as they are needed for some packages (most
+  prominently: reiserfs4progs)
+- remove embedded changelog from spec file
+- add rpmlintrc to suppress false positive error about explicit library
+  requires
+- removed NEWS, is an empty file
+
+---

New:

  libaal-1_0-5-rpmlintrc



Other differences:
--
++ libaal-1_0-5.spec ++
--- /var/tmp/diff_new_pack.DTZFyW/_old  2012-02-24 06:53:01.0 +0100
+++ /var/tmp/diff_new_pack.DTZFyW/_new  2012-02-24 06:53:01.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libaal-1_0-5 (Version 1.0.5)
+# spec file for package libaal-1_0-5
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libaal-1_0-5
 Version:1.0.5
-Release:76
-AutoReqProv:on
-Group:  System/Filesystems
+Release:0
 Url:http://www.namesys.com
-License:GPL v2 only
 Summary:A Library Providing Application Abstraction Mechanisms Used by 
Reiser4progs
+License:GPL-2.0
+Group:  System/Filesystems
 Requires:   libaal-minimal0 = %{version}
+BuildRequires:  libtool
 Source0:libaal-%{version}.tar.bz2
+Source99:   %{name}-rpmlintrc
 Patch1: libaal-%{version}-rpmoptflags.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Provides:   libaal = %{version}
@@ -36,50 +35,26 @@
 %description
 libaal includes device abstraction, libc independence code, and more.
 
-
-
-Authors:
-
-Hans Reiser h...@reiser.to
-Yury Umanets u...@namesys.com
-Vitaly Fertman vit...@namesys.com
-
 %package -n libaal-minimal0
-License:GPL v2 only
 Summary:A Library Providing Application Abstraction Mechanisms Used by 
Reiser4progs
+License:GPL-2.0
 Group:  System/Filesystems
-AutoReqProv:on
 
 %description -n libaal-minimal0
 libaal includes device abstraction, libc independence code, and more.
 
 
-
-Authors:
-
-Hans Reiser h...@reiser.to
-Yury Umanets u...@namesys.com
-Vitaly Fertman vit...@namesys.com
-
 %package -n libaal-devel
-License:GPL v2 or later
 Summary:A Library Providing Application Abstraction Mechanisms Used by 
Reiser4progs
+License:GPL-2.0+
 Group:  Development/Libraries/Other
+Provides:   libaal-devel-static
 Provides:   libaal:/usr/include/aal/libaal.h
 Requires:   libaal-1_0-5 = %{version}
-AutoReqProv:on
 
 %description -n libaal-devel
 libaal includes device abstraction, libc independence code, and more.
 
-
-
-Authors:
-
-Hans Reiser h...@reiser.to
-Yury Umanets u...@namesys.com
-Vitaly Fertman vit...@namesys.com
-
 %prep
 %setup -q -n libaal-%{version}
 %patch1
@@ -87,7 +62,7 @@
 %build
 autoreconf --force --install
 export CFLAGS=$RPM_OPT_FLAGS
-%configure --disable-static --with-pic
+%configure --enable-static --with-pic
 make %{?jobs:-j%jobs} 
 
 %install
@@ -103,11 +78,11 @@
 %postun -n libaal-minimal0 -p /sbin/ldconfig
 
 %clean
-rm -rf %{buildroot}
+%{?buildroot:%__rm -rf %{buildroot}}
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS BUGS COPYING CREDITS ChangeLog NEWS README THANKS TODO
+%doc AUTHORS BUGS COPYING CREDITS 

commit libqtweetlib for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package libqtweetlib for openSUSE:Factory 
checked in at 2012-02-24 06:53:03

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


Package is libqtweetlib, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libqtweetlib/libqtweetlib.changes
2012-01-27 15:22:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqtweetlib.new/libqtweetlib.changes   
2012-02-24 06:53:06.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 23:02:43 UTC 2012 - d...@dominik-schmidt.de
+
+- Version bump to 0.4
+  * Fix lib not working with Qt 4.8
+
+---

Old:

  QTweetLib-0.3.0.tar.bz2

New:

  QTweetLib-0.4.tar.gz



Other differences:
--
++ libqtweetlib.spec ++
--- /var/tmp/diff_new_pack.ThI18T/_old  2012-02-24 06:53:07.0 +0100
+++ /var/tmp/diff_new_pack.ThI18T/_new  2012-02-24 06:53:07.0 +0100
@@ -20,18 +20,20 @@
 %define soname 0
 
 Name:   libqtweetlib
-License:GPL-2.0+
-Version:0.3.0
+Version:0.4
 Release:0
-Source0:QTweetLib-%{version}.tar.bz2
+Source0:QTweetLib-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:https://github.com/minimoog/QTweetLib
 
-BuildRequires:  cmake gcc-c++
-BuildRequires:  libqjson-devel libqt4-devel
+BuildRequires:  cmake
+BuildRequires:  gcc-c++
+BuildRequires:  libqjson-devel
+BuildRequires:  libqt4-devel
 
 # main package
 Summary:C++ Qt Twitter library
+License:GPL-2.0+
 Group:  System/Libraries
 
 %description
@@ -39,16 +41,16 @@
 
 # bin package
 %package -n libqtweetlib%{soname}
-Group:  System/Libraries
 Summary:C++ Qt Twitter library
+Group:  System/Libraries
 
 %description -n libqtweetlib%{soname}
 C++ Qt based Twitter library.
 
 # devel package
 %package devel
-Group:  Development/Libraries/C and C++
 Summary:C++ Qt Twitter library
+Group:  Development/Libraries/C and C++
 Requires:   libqtweetlib%{soname} = %{version}
 Requires:   libqt4-devel
 
@@ -57,8 +59,8 @@
 
 # debug package
 %package debug
-Group:  Development/Libraries/C and C++
 Summary:C++ Qt Twitter library
+Group:  Development/Libraries/C and C++
 Requires:   libqtweetlib%{soname} = %{version}
 
 %description debug

-- 
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-23 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:Factory 
checked in at 2012-02-24 06:53:09

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-17 
12:06:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.mkinitrd.new/mkinitrd.changes   2012-02-24 
06:53:10.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 15:31:57 UTC 2012 - rjsch...@suse.com
+
+- support binaries in /usr tree.
+
+---



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-15 15:59:39.0 +0100
+++ new/mkinitrd-2.7.0/mkinitrd.changes 2012-02-23 16:32:27.0 +0100
@@ -1,4 +1,9 @@
 ---
+Thu Feb 23 15:31:57 UTC 2012 - rjsch...@suse.com
+
+- support binaries in /usr tree.
+
+---
 Wed Feb 15 14:58:47 UTC 2012 - mma...@suse.cz
 
 - Simplify calling of get_kernel_version.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.0/scripts/boot-start.sh 
new/mkinitrd-2.7.0/scripts/boot-start.sh
--- old/mkinitrd-2.7.0/scripts/boot-start.sh2012-02-15 15:59:39.0 
+0100
+++ new/mkinitrd-2.7.0/scripts/boot-start.sh2012-02-23 16:32:27.0 
+0100
@@ -2,7 +2,7 @@
 #
 #%stage: boot
 #%depends: devfunctions
-#%programs: /bin/bash umount mount mknod mkdir ln date sleep cat /bin/sed 
/sbin/insmod /sbin/modprobe kill /sbin/killall5 /sbin/halt /sbin/reboot 
/sbin/showconsole cp /sbin/pidof mv chmod rm true ls /lib/mkinitrd/bin/* dmesg
+#%programs: /bin/bash umount mount /bin/mknod /bin/mkdir /bin/ln /bin/date 
/bin/sleep /bin/cat /bin/sed /sbin/insmod /sbin/modprobe /bin/kill 
/sbin/killall5 /sbin/halt /sbin/reboot /sbin/showconsole cp /sbin/pidof /bin/mv 
/bin/chmod /bin/rm /bin/true /bin/ls /lib/mkinitrd/bin/* dmesg
 #%modules: $RESOLVED_INITRD_MODULES
 #%udevmodules: $RESOLVED_INITRD_MODULES_UDEV
 #%dontshow
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-15 15:59:39.0 
+0100
+++ new/mkinitrd-2.7.0/scripts/setup-prepare.sh 2012-02-23 16:32:27.0 
+0100
@@ -153,7 +153,7 @@
 cp $INITRD_PATH/bin/linuxrc $linuxrc
 mkdir $tmp_mnt/boot
 
-mkdir -p $tmp_mnt/{sbin,bin,etc,dev,proc,sys,root,config}
+mkdir -p $tmp_mnt/{sbin,bin,etc,dev,proc,sys,root,config,usr/bin,usr/sbin}
 
 mkdir -p -m 4777 $tmp_mnt/tmp
 

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



commit picard for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

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

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


Package is picard, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/picard/picard.changes2011-09-23 
12:41:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.picard.new/picard.changes   2012-02-24 
06:53:21.0 +0100
@@ -1,0 +2,16 @@
+Thu Feb 23 10:34:30 UTC 2012 - Ralf Lang l...@b1-systems.de
+
+- add a requires: on python-qt4. picard will not run without this
+
+---
+Tue Feb 21 11:14:04 UTC 2012 - sasc...@suse.de
+
+- Ran spec-cleaner
+
+---
+Mon Feb 20 09:45:40 UTC 2012 - pascal.ble...@opensuse.org
+
+- add conditional BUILD_ORIG_ADDON to buildrequire ffmpeg-devel and enable
+  ffmpeg fingerprinting support when picard is linked and built on Packman
+
+---



Other differences:
--
++ picard.spec ++
--- /var/tmp/diff_new_pack.WW2iBY/_old  2012-02-24 06:53:24.0 +0100
+++ /var/tmp/diff_new_pack.WW2iBY/_new  2012-02-24 06:53:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package picard
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,12 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   picard
 Version:0.15.1
-Release:1
+Release:0
 Summary:The Next Generation MusicBrainz Tagger
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Utilities
@@ -40,25 +39,34 @@
 Source15:   
http://users.musicbrainz.org/~brianfreud/SearchLortelArchives3.py
 Source16:   
http://users.musicbrainz.org/~brianfreud/SearchSoundtrackCollector3.py
 Source17:   
http://users.musicbrainz.org/~brianfreud/SearchSoundtrackINFO3.py
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
-BuildRequires:  desktop-file-utils gcc-c++ libofa-devel python-devel
+%if 0%{?BUILD_ORIG_ADDON:1}
+BuildRequires:  ffmpeg-devel
+%endif
+BuildRequires:  desktop-file-utils
+BuildRequires:  gcc-c++
 BuildRequires:  libdiscid-devel
+BuildRequires:  libofa-devel
+BuildRequires:  python-devel
 %if 0%{?suse_version}
-%py_requires
-BuildRequires:  hicolor-icon-theme python-mutagen python-qt4 
update-desktop-files
+BuildRequires:  hicolor-icon-theme
+BuildRequires:  python-mutagen
+BuildRequires:  python-qt4
+BuildRequires:  update-desktop-files
 Requires:   python-mutagen
+Requires:   python-qt4
+%py_requires
 %endif
 %if 0%{?fedora}
-BuildRequires:  PyQt4 python-mutagen
+BuildRequires:  PyQt4
+BuildRequires:  python-mutagen
 Requires:   python-mutagen
 %endif
 %if 0%{?mandriva_version}
 BuildRequires:  python-qt4
 %endif
-
-%{!?py_sitedir: %define py_sitedir %(%{__python} -c from distutils.sysconfig 
import get_python_lib; print get_python_lib(1))}
-%{!?py_ver_int: %define py_ver_int %(%{__python} -c import sys; 
v=sys.version_info[:2]; print '%%d%%d'%%v 2/dev/null)}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%{!?py_sitedir: %define py_sitedir %(python -c from distutils.sysconfig 
import get_python_lib; print get_python_lib(1))}
+%{!?py_ver_int: %define py_ver_int %(python -c import sys; 
v=sys.version_info[:2]; print '%%d%%d'%%v 2/dev/null)}
 %if 0%{?py_ver_int} == 24
 Requires:   python-ctypes
 %endif
@@ -69,19 +77,12 @@
 MusicBrainz, with a focus on album oriented tagging as opposed to track based
 tagging and cross platform compatibility.
 
-
-Authors:

-Lukáš Lalinský lalin...@gmail.com
-Robert Kaye r...@eorbit.net
-
-
 %lang_package
 %prep
 %setup -q
 
 %build
-export CFLAGS=$RPM_OPT_FLAGS
+export CFLAGS=%{optflags}
 cat  %{name}_libdiscid_dummy.c -EOF
 #include stdio.h
 #include discid/discid.h
@@ -97,14 +98,14 @@
 sed -i~ -e 
s@^\([[:blank:]]\+\)\(libName[[:blank:]]*=[[:blank:]]*'\)\(libdiscid.so.0\)\('[[:blank:]]*\)@\1\2${libdiscid_so}\4
 # was '\3'@ picard/disc.py
 if diff -u picard/disc.py~ picard/disc.py ; then : ; fi
 #
-%{__python} setup.py config
-%{__python} setup.py build
+python setup.py config
+python setup.py build
 
 %install
-%{__python} setup.py install --skip-build --prefix=%{_prefix} 
--root=$RPM_BUILD_ROOT
+python setup.py install --skip-build --prefix=%{_prefix} --root=%{buildroot}
 
 # install plugins

commit python-Jinja2 for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-Jinja2 for openSUSE:Factory 
checked in at 2012-02-24 06:53:27

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


Package is python-Jinja2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-Jinja2/python-Jinja2.changes  
2011-09-26 10:11:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Jinja2.new/python-Jinja2.changes 
2012-02-24 06:53:32.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 13:44:50 UTC 2012 - sasc...@suse.de
+
+- Simplified macro usage
+
+---



Other differences:
--
++ python-Jinja2.spec ++
--- /var/tmp/diff_new_pack.IXUoTa/_old  2012-02-24 06:53:33.0 +0100
+++ /var/tmp/diff_new_pack.IXUoTa/_new  2012-02-24 06:53:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Jinja2
 #
-# 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,30 +16,25 @@
 #
 
 
-
 Name:   python-Jinja2
 Version:2.6
 Release:0
-Url:http://jinja.pocoo.org/
 Summary:A fast and easy to use template engine written in pure Python
 License:BSD-3-Clause
 Group:  Development/Languages/Python
+Url:http://jinja.pocoo.org/
 Source: 
http://pypi.python.org/packages/source/J/Jinja2/Jinja2-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version}  1010
-BuildRequires:  fdupes
-%endif
-%if 0%{?suse_version}  1110
-BuildArch:  noarch
-%endif
-%endif
 Provides:   python-jinja2 = %{version}
 Obsoletes:  python-jinja2  %{version}
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
+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
 Jinja2 is a template engine written in pure Python.  It provides a Django
@@ -58,6 +53,7 @@
 
 %package vim
 Summary:Jinja2 syntax files for Vim
+License:BSD-3-Clause
 Group:  Productivity/Text/Editors
 Requires:   %{name} = %{version}
 

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



commit python-logilab-astng for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-logilab-astng for 
openSUSE:Factory checked in at 2012-02-24 06:53:37

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


Package is python-logilab-astng, Maintainer is dmuel...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/python-logilab-astng/python-logilab-astng.changes
2011-11-25 10:13:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-logilab-astng.new/python-logilab-astng.changes
   2012-02-24 06:53:43.0 +0100
@@ -1,0 +2,11 @@
+Sat Feb 18 16:21:22 UTC 2012 - tog...@opensuse.org
+
+- update to version 0.23.1
+  * #62295: avoid OSError: Too many open files by moving
+.file_stream as a Module property opening the file only when
+needed
+  * Lambda nodes should have a `name` attribute
+  * only call transformers if modname specified
+ 
+
+---

Old:

  logilab-astng-0.22.0.tar.gz

New:

  logilab-astng-0.23.1.tar.gz



Other differences:
--
++ python-logilab-astng.spec ++
--- /var/tmp/diff_new_pack.RYPd6Y/_old  2012-02-24 06:53:45.0 +0100
+++ /var/tmp/diff_new_pack.RYPd6Y/_new  2012-02-24 06:53:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-logilab-astng
 #
-# 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,9 +16,8 @@
 #
 
 
-
 Name:   python-logilab-astng
-Version:0.22.0
+Version:0.23.1
 Release:0
 Url:http://www.logilab.org/projects/astng
 Summary:Python Python Abstract Syntax Tree (New Generation)

++ logilab-astng-0.22.0.tar.gz - logilab-astng-0.23.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-astng-0.22.0/ChangeLog 
new/logilab-astng-0.23.1/ChangeLog
--- old/logilab-astng-0.22.0/ChangeLog  2011-07-18 16:02:38.0 +0200
+++ new/logilab-astng-0.23.1/ChangeLog  2011-12-08 15:26:42.0 +0100
@@ -1,6 +1,38 @@
 Change log for the astng package
 
 
+2011-12-08  --  0.23.1
+* #62295: avoid OSError: Too many open files by moving
+  .file_stream as a Module property opening the file only when needed
+
+* Lambda nodes should have a `name` attribute
+
+* only call transformers if modname specified
+
+
+
+2011-10-07  --  0.23.0
+* #77187: ancestor() only returns the first class when inheriting
+  from two classes coming from the same module
+
+* #76159: putting module's parent directory on the path causes problems
+  linting when file names clash
+
+* #74746: should return empty module when __main__ is imported (patch by
+  google)
+
+* #74748: getitem protocal return constant value instead of a Const node
+  (patch by google)
+
+* #77188: support lgc.decorators.classproperty
+
+* #77253: provide a way for user code to register astng transformers
+  using manager.register_transformer(callable) where callable will be
+  called after an astng has been built and given the related module node
+  as argument
+
+
+
 2011-07-18  --  0.22.0
 * added column offset information on nodes (patch by fawce)
 
@@ -41,7 +73,7 @@
 
 * fix #37105: Crash on AttributeError: 'NoneType' object has no attribute 
'_infer_name'
 
-* python2.4: drop python  2.4 support
+* python2.4: drop python  2.5 support
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-astng-0.22.0/MANIFEST.in 
new/logilab-astng-0.23.1/MANIFEST.in
--- old/logilab-astng-0.22.0/MANIFEST.in1970-01-01 01:00:00.0 
+0100
+++ new/logilab-astng-0.23.1/MANIFEST.in2011-01-13 21:36:37.0 
+0100
@@ -0,0 +1,8 @@
+include ChangeLog
+include README*
+include COPYING
+include COPYING.LESSER
+include test/fulltest.sh
+recursive-include test/data *.py *.zip *.egg
+recursive-include test/data2 *.py
+recursive-include test/regrtest_data *.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-astng-0.22.0/PKG-INFO 
new/logilab-astng-0.23.1/PKG-INFO
--- old/logilab-astng-0.22.0/PKG-INFO   2011-07-20 18:14:05.0 +0200
+++ new/logilab-astng-0.23.1/PKG-INFO   2011-12-08 15:26:51.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: logilab-astng
-Version: 0.22.0
+Version: 0.23.1
 Summary: rebuild a new abstract syntax 

commit python-logilab-common for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-logilab-common for 
openSUSE:Factory checked in at 2012-02-24 06:53:44

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


Package is python-logilab-common, Maintainer is dmuel...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/python-logilab-common/python-logilab-common.changes  
2011-09-23 12:42:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-logilab-common.new/python-logilab-common.changes
 2012-02-24 06:53:50.0 +0100
@@ -1,0 +2,9 @@
+Sat Feb 18 16:32:08 UTC 2012 - tog...@opensuse.org
+
+- Update to version 0.57.1
+  * daemon: change $HOME after dropping privileges (closes #81297)
+  * compat: method_type for py3k use instance of the class to
+  * have a real instance method (closes: #79268)
+ 
+
+---

Old:

  logilab-common-0.56.2.tar.gz

New:

  logilab-common-0.57.1.tar.gz



Other differences:
--
++ python-logilab-common.spec ++
--- /var/tmp/diff_new_pack.EbZpLM/_old  2012-02-24 06:53:52.0 +0100
+++ /var/tmp/diff_new_pack.EbZpLM/_new  2012-02-24 06:53:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-logilab-common
 #
-# 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,9 +16,8 @@
 #
 
 
-
 Name:   python-logilab-common
-Version:0.56.2
+Version:0.57.1
 Release:0
 Url:http://www.logilab.org/projects/common/
 Summary:Python lowlevel functionality shared by logilab projects

++ logilab-common-0.56.2.tar.gz - logilab-common-0.57.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-common-0.56.2/ChangeLog 
new/logilab-common-0.57.1/ChangeLog
--- old/logilab-common-0.56.2/ChangeLog 2011-09-08 16:43:22.0 +0200
+++ new/logilab-common-0.57.1/ChangeLog 2011-10-28 12:00:09.0 +0200
@@ -1,6 +1,29 @@
 ChangeLog for logilab.common
 
 
+2011-10-28  --  0.57.1
+* daemon: change $HOME after dropping privileges (closes #81297)
+
+* compat: method_type for py3k use instance of the class to have a
+  real instance method (closes: #79268)
+
+
+
+2011-10-12  --  0.57.0
+* only install unittest2 when python version  2.7 (closes: #76068)
+
+* daemon: make pidfile world-readable (closes #75968)
+
+* daemon: remove unused(?) DaemonMixin class
+
+* update compat module for callable() and method_type()
+
+* decorators: fix monkeypatch py3k compat (closes #75290)
+
+* decorators: provide a @cachedproperty decorator
+
+
+
 2011-09-08  --  0.56.2
 * daemon: call initgroups/setgid before setuid (closes #74173)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-common-0.56.2/PKG-INFO 
new/logilab-common-0.57.1/PKG-INFO
--- old/logilab-common-0.56.2/PKG-INFO  2011-09-08 18:14:09.0 +0200
+++ new/logilab-common-0.57.1/PKG-INFO  2011-10-28 12:00:19.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: logilab-common
-Version: 0.56.2
+Version: 0.57.1
 Summary: collection of low-level Python packages and modules used by Logilab 
projects
 Home-page: http://www.logilab.org/project/logilab-common
 Author: Logilab
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-common-0.56.2/__pkginfo__.py 
new/logilab-common-0.57.1/__pkginfo__.py
--- old/logilab-common-0.56.2/__pkginfo__.py2011-09-08 16:43:22.0 
+0200
+++ new/logilab-common-0.57.1/__pkginfo__.py2011-10-28 12:00:09.0 
+0200
@@ -17,13 +17,14 @@
 # with logilab-common.  If not, see http://www.gnu.org/licenses/.
 logilab.common packaging information
 __docformat__ = restructuredtext en
+import sys
 
 distname = 'logilab-common'
 modname = 'common'
 subpackage_of = 'logilab'
 subpackage_master = True
 
-numversion = (0, 56, 2)
+numversion = (0, 57, 1)
 version = '.'.join([str(num) for num in numversion])
 
 license = 'LGPL' # 2.1 or later
@@ -39,4 +40,6 @@
 scripts = [join('bin', 'pytest')]
 include_dirs = [join('test', 'data')]
 
-install_requires = ['unittest2 = 0.5.1']
+if sys.version_info  (2, 7):
+install_requires = ['unittest2 = 0.5.1']
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-common-0.56.2/bin/pytest 

commit python-pylint for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-pylint for openSUSE:Factory 
checked in at 2012-02-24 06:53:51

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


Package is python-pylint, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-pylint/python-pylint.changes  
2011-09-23 12:43:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pylint.new/python-pylint.changes 
2012-02-24 06:53:55.0 +0100
@@ -1,0 +2,31 @@
+Thu Feb 23 14:26:22 UTC 2012 - sasc...@suse.de
+
+- Provide detail about each version update to please darix ;-)
+
+---
+Sat Feb 18 16:06:21 UTC 2012 - tog...@opensuse.org
+
+- Update to version 0.25.1:
+  * #81078: Warn if names in  exception handlers clobber
+overwrite existing names (patch by tma...@google.com)
+  * #81113: Fix W0702 messages appearing with the wrong line
+number. (patch by tma...@google.com)
+  * #50461, #52020, #51222: Do not issue warnings when using
+2.6's property.setter/deleter functionality
+(patch by dn...@google.com)
+  * #9188, #4024: Do not trigger W0631 if a loop variable is
+assigned in the else branch of a for loop.
+- Changes from version 0.25.0:
+  * #74742: make allowed name for first argument of class method configurable
+(patch by Google)
+  * #74087: handle case where inference of a module return YES; this avoid
+some cases of TypeError: '_Yes' object does not support indexing (patch
+by Google)
+  * #74745: make too general exception names configurable (patch by Google)
+  * #74747: crash occurs when lookup up a special attribute in class scope
+(patch by google)
+  * #76920: crash if on eg pylint --rcfile(patch by Torsten Marek)
+  * #77237: warning for E0202 may be very misleading
+  * #73941: HTML report messages table is badly rendered
+
+---
@@ -4 +35 @@
-- update to 0.24.0:
+- Update to version 0.24.0:
@@ -26 +57 @@
-- update to 0.23.0
+- Update to version 0.23.0:
@@ -40 +71 @@
-- Update to 0.22.0:
+- Update to version 0.22.0:

Old:

  pylint-0.24.0.tar.gz

New:

  pylint-0.25.1.tar.gz



Other differences:
--
++ python-pylint.spec ++
--- /var/tmp/diff_new_pack.33T9pT/_old  2012-02-24 06:53:57.0 +0100
+++ /var/tmp/diff_new_pack.33T9pT/_new  2012-02-24 06:53:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pylint
 #
-# 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,14 +16,13 @@
 #
 
 
-
 Name:   python-pylint
-Version:0.24.0
-Release:1
-License:GPL-2.0+
+Version:0.25.1
+Release:0
 Summary:Syntax and style checker for Python code
-Url:http://www.logilab.org/projects/pylint/
+License:GPL-2.0+
 Group:  Development/Languages/Python
+Url:http://www.logilab.org/projects/pylint/
 Source: pylint-%{version}.tar.gz
 BuildRequires:  python-devel
 Requires:   python-logilab-astng = 0.21.1

++ pylint-0.24.0.tar.gz - pylint-0.25.1.tar.gz ++
 2145 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-Twisted for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-Twisted for openSUSE:Factory 
checked in at 2012-02-24 06:53:57

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


Package is python-Twisted, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-Twisted/python-Twisted.changes
2011-09-26 10:13:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Twisted.new/python-Twisted.changes   
2012-02-24 06:54:02.0 +0100
@@ -1,0 +2,50 @@
+Mon Feb 20 11:22:00 UTC 2012 - sasc...@suse.de
+
+- Changes file cleanup
+
+---
+Sun Feb 19 19:48:13 UTC 2012 - ter...@gmail.com
+
+- Update to version 0.12
+  * Features
+- The interface argument to IReactorTCP.listenTCP may now be an IPv6
+  address literal, allowing the creation of IPv6 TCP servers.
+- twisted.python.constants.Names now provides a way to define
+  collections of named constants, similar to the enum type feature
+  of C or Java.
+- twisted.python.constants.Values now provides a way to define
+  collections of named constants with arbitrary values.
+  * Bugfixes
+- Fixed an obscure case where connectionLost wasn't called on the
+  protocol when using half-close.
+- UDP ports handle socket errors better on Windows.
+- When idle, the gtk2 and glib2 reactors no longer wake up 10 times a
+  second.
+- Prevent a rare situation involving TLS transports, where a producer
+  may be erroneously left unpaused.
+- twisted.internet.iocpreactor.iocpsupport now has fewer 64-bit
+  compile warnings.
+- The GTK2 reactor is now more responsive on Windows.
+- TLS transports now correctly handle producer registration after the
+  connection has been lost.
+- twisted.protocols.htb.Bucket now empties properly with a non-zero
+  drip rate.
+- IReactorSSL and ITCPTransport.startTLS now synchronously propagate
+  errors from the getContext method of context factories, instead of
+  being capturing them and logging them as unhandled.
+  * Improved Documentation
+- The multicast documentation has been expanded.
+- twisted.internet.defer.Deferred now documents more return values.
+- Show a better starting page at
+  http://twistedmatrix.com/documents/current
+  * Deprecations and Removals
+- Remove the deprecated module twisted.enterprise.reflector.
+- Removed the deprecated module twisted.enterprise.row.
+- Remove the deprecated module twisted.enterprise.sqlreflector.
+- Removed the deprecated module twisted.enterprise.util, as well as
+  twisted.enterprise.adbapi.safe.
+- Python 2.4 is no longer supported on any platform.
+- Removed printTraceback and noOperation from twisted.spread.pb,
+  deprecated since Twisted 8.2.
+
+---
@@ -16,3 +66,3 @@
-Features:
-  * The twistd man page now has a SIGNALS section.
-  * reactor.spawnProcess now will not emit a PotentialZombieWarning when called
+  * Features:
+- The twistd man page now has a SIGNALS section.
+- reactor.spawnProcess now will not emit a PotentialZombieWarning when 
called
@@ -20 +70 @@
-  * High-throughput applications based on Perspective Broker should now run
+- High-throughput applications based on Perspective Broker should now run
@@ -23,3 +73,3 @@
-  * Documentation for trac-post-commit-hook functionality in svn-dev policy.
-  * twisted.protocols.socks.SOCKSv4 now supports the SOCKSv4a protocol.
-  * Trial can now output test results according to the subunit protocol, as
+- Documentation for trac-post-commit-hook functionality in svn-dev policy.
+- twisted.protocols.socks.SOCKSv4 now supports the SOCKSv4a protocol.
+- Trial can now output test results according to the subunit protocol, as
@@ -27 +77 @@
-  * twisted.protocols.amp now provides a ListOf argument type which can be
+- twisted.protocols.amp now provides a ListOf argument type which can be
@@ -30 +80 @@
-  * If returnValue is invoked outside of a function decorated with
+- If returnValue is invoked outside of a function decorated with
@@ -34 +84 @@
-  * twisted.python.logfile.BaseLogFile now has a reopen method allowing to
+- twisted.python.logfile.BaseLogFile now has a reopen method allowing to
@@ -36,2 +86,2 @@
-Bugfixes:
-  * FTP.ftp_NLST now handles requests on invalid paths in a way consistent
+  * Bugfixes:
+- FTP.ftp_NLST now handles requests on invalid paths in a way consistent
@@ -39 +89 @@
-  * twisted.python.util.initgroups now calls the low-level C initgroups by
+- twisted.python.util.initgroups now calls the low-level C initgroups by
@@ -42 +92 @@
-  * startLogging now does 

commit python-virtualenv for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package python-virtualenv for 
openSUSE:Factory checked in at 2012-02-24 06:54:03

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


Package is python-virtualenv, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-virtualenv/python-virtualenv.changes  
2012-02-14 19:06:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-virtualenv.new/python-virtualenv.changes 
2012-02-24 06:54:07.0 +0100
@@ -1,0 +2,9 @@
+Fri Feb 17 11:55:11 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.7.1.2:
+  * Fixed minor issue in --relocatable. Thanks, Cap Petschulat.
+- Aditional changes from 1.7.1.1:
+  * Bumped the version string in virtualenv.py up, too.
+  * Fixed rST rendering bug of long description.
+
+---

Old:

  virtualenv-1.7.tar.bz2

New:

  virtualenv-1.7.1.2.tar.bz2



Other differences:
--
++ python-virtualenv.spec ++
--- /var/tmp/diff_new_pack.vkmxAO/_old  2012-02-24 06:54:09.0 +0100
+++ /var/tmp/diff_new_pack.vkmxAO/_new  2012-02-24 06:54:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-virtualenv
 #
-# 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,10 +16,12 @@
 #
 
 
+%{!?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))}
 
 Name:   python-virtualenv
-Version:1.7
-Release:1
+Version:1.7.1.2
+Release:0
 Url:http://www.virtualenv.org/
 Summary:Virtual Python Environment builder
 License:MIT
@@ -35,7 +37,6 @@
 BuildArch:  noarch
 %endif
 %endif
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 
 %description
 virtualenv is a tool to create isolated Python environments.
@@ -70,9 +71,6 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS.txt LICENSE.txt docs

++ virtualenv-1.7.tar.bz2 - virtualenv-1.7.1.2.tar.bz2 ++
 4835 lines of diff (skipped)

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



commit qemu for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package qemu for openSUSE:Factory checked in 
at 2012-02-24 06:54:08

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


Package is qemu, Maintainer is brog...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/qemu/qemu.changes2012-02-10 
17:19:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.qemu.new/qemu.changes   2012-02-24 
06:54:14.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 22 23:04:48 UTC 2012 - brog...@suse.com
+
+- update to latest stable release: 1.0.1. For changes see:
+  http://wiki.qemu.org/ChangeLog/1.0
+
+---

Old:

  0032-PPC-Fix-linker-scripts-on-ppc-hosts.patch
  0033-linux-user-reserve-4GB-of-vmem-for-32-on-64.patch
  0034-PPC-KVM-Disable-mmu-notifier-check.patch
  0035-linux-user-improve-fake-proc-self-stat-making-ps.patch
  0036-linux-user-target_argv-is-placed-on-ts-bprm-argv.patch
  0037-PPC-KVM-Ignore-SET_ONE_REG-failures.patch
  0038-PPC-KVM-Ignore-ENABLE_PAPR-to-support-very-old-HV.patch
  0039-console-Fix-segfault-on-screendump-without-VGA-adap.patch
  0040-pseries-Fix-array-overrun-bug-in-PCI-code.patch
  0041-kvm-ppc-halt-secondary-cpus-when-guest-reset.patch
  0042-pseries-Emit-device-tree-nodes-in-reg-order.patch
  0043-pseries-Add-a-routine-to-find-a-stable-default-vt.patch
  0044-pseries-Populate-chosen-linux-stdout-path-in-the.patch
  0045-linux-user-fix-segfault-deadlock.patch
  0046-linux-user-implement-device-mapper-ioctls.patch
  0047-linux-user-add-struct-old_dev_t-compat.patch
  0048-linux-user-fix-BLK-ioctl-arguments.patch
  0049-linux-user-add-BLKSSZGET-ioctl-wrapper.patch
  0050-linux-user-Add-ioctl-for-BLKBSZGET.patch
  0051-linux-user-take-RESERVED_VA-into-account-for-g2h_va.patch
  0052-linux-user-binfmt-support-host-binaries.patch
  0053-linux-user-fix-fallocate.patch
  0054-e1000-bounds-packet-size-against-buffer-size.patch
  qemu-1.0.tar.bz2

New:

  0032-linux-user-reserve-4GB-of-vmem-for-32-on-64.patch
  0033-PPC-KVM-Disable-mmu-notifier-check.patch
  0034-linux-user-improve-fake-proc-self-stat-making-ps.patch
  0035-linux-user-target_argv-is-placed-on-ts-bprm-argv.patch
  0036-PPC-KVM-Ignore-SET_ONE_REG-failures.patch
  0037-PPC-KVM-Ignore-ENABLE_PAPR-to-support-very-old-HV.patch
  0038-linux-user-fix-segfault-deadlock.patch
  0039-linux-user-implement-device-mapper-ioctls.patch
  0040-linux-user-add-struct-old_dev_t-compat.patch
  0041-linux-user-fix-BLK-ioctl-arguments.patch
  0042-linux-user-add-BLKSSZGET-ioctl-wrapper.patch
  0043-linux-user-Add-ioctl-for-BLKBSZGET.patch
  0044-linux-user-take-RESERVED_VA-into-account-for-g2h_va.patch
  0045-linux-user-binfmt-support-host-binaries.patch
  0046-linux-user-fix-fallocate.patch
  qemu-1.0.1.tar.bz2



Other differences:
--
++ qemu.spec ++
--- /var/tmp/diff_new_pack.gx9kbE/_old  2012-02-24 06:54:16.0 +0100
+++ /var/tmp/diff_new_pack.gx9kbE/_new  2012-02-24 06:54:16.0 +0100
@@ -15,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   qemu
 Url:http://fabrice.bellard.free.fr/qemu/
 Summary:Universal CPU emulator
 License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+ ; MIT
 Group:  System/Emulators/PC
-Version:1.0
+Version:1.0.1
 Release:0
 Source: %name-%version.tar.bz2
 Patch0001:  0001-Handle-CPU-interrupts-by-inline-checking-of-a-flag.patch
@@ -54,29 +55,21 @@
 Patch0029:  0029-linux-user-add-binfmt-wrapper-for-argv-0-handling.patch
 Patch0030:  0030-linux-user-Ignore-timer_create-syscall.patch
 Patch0031:  0031-linux-user-be-silent-about-capget-failures.patch
-Patch0032:  0032-PPC-Fix-linker-scripts-on-ppc-hosts.patch
-Patch0033:  0033-linux-user-reserve-4GB-of-vmem-for-32-on-64.patch
-Patch0034:  0034-PPC-KVM-Disable-mmu-notifier-check.patch
-Patch0035:  0035-linux-user-improve-fake-proc-self-stat-making-ps.patch
-Patch0036:  0036-linux-user-target_argv-is-placed-on-ts-bprm-argv.patch
-Patch0037:  0037-PPC-KVM-Ignore-SET_ONE_REG-failures.patch
-Patch0038:  0038-PPC-KVM-Ignore-ENABLE_PAPR-to-support-very-old-HV.patch
-Patch0039:  0039-console-Fix-segfault-on-screendump-without-VGA-adap.patch
-Patch0040:  0040-pseries-Fix-array-overrun-bug-in-PCI-code.patch
-Patch0041:  0041-kvm-ppc-halt-secondary-cpus-when-guest-reset.patch
-Patch0042:  0042-pseries-Emit-device-tree-nodes-in-reg-order.patch
-Patch0043:  0043-pseries-Add-a-routine-to-find-a-stable-default-vt.patch
-Patch0044:  0044-pseries-Populate-chosen-linux-stdout-path-in-the.patch
-Patch0045:  

commit syslog-ng for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package syslog-ng for openSUSE:Factory 
checked in at 2012-02-24 06:54:24

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


Package is syslog-ng, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/syslog-ng/syslog-ng.changes  2012-01-30 
12:28:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.syslog-ng.new/syslog-ng.changes 2012-02-24 
06:54:31.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 23 16:21:05 UTC 2012 - m...@suse.com
+
+- Detect if we have to use the new /run/systemd/journal/syslog
+  socket under newer systemd versions, instead of the default
+  _PATH_LOG (/dev/log) socket. Avoids update problems and the
+  need to adopt config before using init=... boot parameter
+  (bnc#747871).
+
+---

New:

  syslog-ng-3.3.4-sd-sock-name.patch



Other differences:
--
++ syslog-ng.spec ++
--- /var/tmp/diff_new_pack.hQ7sMA/_old  2012-02-24 06:54:32.0 +0100
+++ /var/tmp/diff_new_pack.hQ7sMA/_new  2012-02-24 06:54:32.0 +0100
@@ -40,6 +40,7 @@
 Source2:syslog-ng.sysconfig
 Source3:syslog-ng.conf.default
 Patch0: syslog-ng-%{version}-less-static.diff
+Patch1: syslog-ng-3.3.4-sd-sock-name.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  flex
@@ -144,6 +145,7 @@
 %if 0%{suse_version} = 1130
 %patch0 -p0
 %endif
+%patch1 -p1
 
 cp -a $RPM_SOURCE_DIR/syslog-ng.rc-script.
 cp -a $RPM_SOURCE_DIR/syslog-ng.conf.default .

++ syslog-ng-3.3.4-sd-sock-name.patch ++
From da1d7a240090021188db1bb818159ca1999d54e0 Mon Sep 17 00:00:00 2001
From: Marius Tomaschewski m...@suse.com
Date: Thu, 23 Feb 2012 17:08:55 +0100
Subject: [PATCH] Detect if to use /run/systemd/journal/syslog under systemd

Detect if we have to use the new /run/systemd/journal/syslog
socket under newer systemd versions, instead of the default
_PATH_LOG (/dev/log) socket.

Signed-off-by: Marius Tomaschewski m...@suse.com
---
 modules/afsocket/afunix.c |   29 +
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/modules/afsocket/afunix.c b/modules/afsocket/afunix.c
index 8145f1a..5fe600a 100644
--- a/modules/afsocket/afunix.c
+++ b/modules/afsocket/afunix.c
@@ -34,12 +34,25 @@
 
 #include string.h
 #include sys/types.h
+#include sys/syslog.h
 #include sys/socket.h
 #include sys/un.h
 #include sys/stat.h
 #include unistd.h
 #include stdlib.h
 
+#if ENABLE_SYSTEMD
+/*
+ * default log socket name is usually defined
+ * as _PATH_LOG in the sys/socket.h (/dev/log
+ * on linux or /var/run/log on bsd), but under
+ * systemd, we have to use a different one...
+ */
+#ifndef SYSTEMD_PATH_LOG
+#define SYSTEMD_PATH_LOG /run/systemd/journal/syslog
+#endif
+#endif
+
 void
 afunix_sd_set_uid(LogDriver *s, gchar *owner)
 {
@@ -228,6 +241,22 @@ afunix_sd_new(gchar *filename, guint32 flags)
   else if (self-super.flags  AFSOCKET_STREAM)
 afsocket_sd_set_transport(self-super.super.super, unix-stream);
 
+#if defined(_PATH_LOG)  ENABLE_SYSTEMD
+  /*
+   * systemd = 38 wants we use /run/systemd/journal/syslog,
+   * instead of /dev/log, so use it when the socket exists...
+   */
+  if(sd_booted()  strcmp(filename, _PATH_LOG) == 0) {
+struct stat st;
+if(stat(SYSTEMD_PATH_LOG, st) != -1  S_ISSOCK(st.st_mode)) {
+  msg_debug(Systemd socket name override,
+evt_tag_str(log-socket-old, filename),
+evt_tag_str(log-socket-new, SYSTEMD_PATH_LOG),
+   NULL);
+  filename = SYSTEMD_PATH_LOG;
+}
+  }
+#endif
   self-filename = g_strdup(filename);
   self-owner = -1;
   self-group = -1;
-- 
1.7.7

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



commit xcb for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xcb for openSUSE:Factory checked in 
at 2012-02-24 06:54:30

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


Package is xcb, Maintainer is nadvor...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xcb/xcb.changes  2011-09-23 12:51:01.0 
+0200
+++ /work/SRC/openSUSE:Factory/.xcb.new/xcb.changes 2012-02-24 
06:54:36.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 11:30:32 UTC 2012 - co...@suse.com
+
+- fix build on factory
+
+---



Other differences:
--
++ xcb.spec ++
--- /var/tmp/diff_new_pack.Ci5Jg9/_old  2012-02-24 06:54:38.0 +0100
+++ /var/tmp/diff_new_pack.Ci5Jg9/_new  2012-02-24 06:54:38.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xcb (Version 2.5)
+# spec file for package xcb
 #
-# 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,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   xcb
 %define _appdefdif %_prefix/share/X11/app-defaults
 BuildRequires:  xorg-x11-devel
 Url:http://www.goof.com/pcg/marc/xcb.html
-License:MIT
-Group:  System/X11/Utilities
-AutoReqProv:on
 Version:2.5
-Release:185
+Release:0
 Summary:X11 cutpaste utility
+License:MIT
+Group:  System/X11/Utilities
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -54,7 +51,7 @@
 %files
 %defattr(-,root,root)
 %_bindir/xcb
-%_appdefdif/Xcb
+%_appdefdif
 %doc %_mandir/man1/xcb.1x*
 
 %clean

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



commit xlockmore for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xlockmore for openSUSE:Factory 
checked in at 2012-02-24 06:54:36

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xlockmore/xlockmore.changes  2012-01-04 
07:32:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.xlockmore.new/xlockmore.changes 2012-02-24 
06:54:38.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 11:36:38 UTC 2012 - co...@suse.com
+
+- own app-defaults directory to fix build on factory
+
+---



Other differences:
--
++ xlockmore.spec ++
--- /var/tmp/diff_new_pack.Fh54PW/_old  2012-02-24 06:54:43.0 +0100
+++ /var/tmp/diff_new_pack.Fh54PW/_new  2012-02-24 06:54:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xlockmore
 #
-# 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
@@ -117,7 +117,7 @@
 %doc %{_xorg7_mandir}/man1/xlock.1x.gz
 %doc README docs/cell_automata docs/Purify docs/Revisions docs/TODO
 %config /etc/pam.d/xlock
-/usr/%{_xorg7libshare}/X11/app-defaults/XLock
+/usr/%{_xorg7libshare}/X11/app-defaults
 /usr/%{_xorg7bin}/xlock
 /usr/%{_xorg7libs32}/xlock
 

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



commit xscreensaver for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xscreensaver for openSUSE:Factory 
checked in at 2012-02-24 06:54:41

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xscreensaver/xscreensaver.changes
2012-01-04 07:33:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.xscreensaver.new/xscreensaver.changes   
2012-02-24 06:54:44.0 +0100
@@ -1,0 +2,14 @@
+Tue Feb 21 09:21:12 UTC 2012 - co...@suse.com
+
+- update to 5.15
+   * New hacks, hilbert, companioncube and tronbit.
+   * Image-manipulating hacks can now load from RSS or Atom feeds: 
+ imageDirectory may contain a URL.
+   * Updated webcollage for recent search engine changes.
+   * phosphor and apple2 can now be run as standalone terminal
+ emulator applications on MacOS.
+   * photopile sped up.
+   * New molecule in molecule.
+   * Turned on LC_CTYPE on Linux; maybe Japanese password entry works now? 
+
+---

Old:

  xscreensaver-5.14.tar.gz

New:

  xscreensaver-5.15.tar.gz



Other differences:
--
++ xscreensaver.spec ++
--- /var/tmp/diff_new_pack.h3yW36/_old  2012-02-24 06:54:46.0 +0100
+++ /var/tmp/diff_new_pack.h3yW36/_new  2012-02-24 06:54:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xscreensaver
 #
-# 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,12 +29,15 @@
 BuildRequires:  pam-devel
 BuildRequires:  perl-XML-Parser
 BuildRequires:  update-desktop-files
-Provides:   xscrns xscreensaver-gnome
+BuildRequires:  xorg-x11-devel
+Provides:   xscreensaver-gnome
+Provides:   xscrns
 Obsoletes:  xscrns xscreensaver-gnome
-Requires:   desktop-data pam-modules
 Requires:   %{name}-data
+Requires:   desktop-data
+Requires:   pam-modules
 Suggests:   %{name}-data-extra
-Version:5.14
+Version:5.15
 Release:0
 Summary:A screen saver and locker for the X Window System
 License:BSD-3-Clause and GPL-2.0+
@@ -79,6 +82,7 @@
 
 %package data
 Summary:Selection of screensavers from xscreensaver
+Group:  Amusements/Toys/Screensavers
 
 %description data
 The xscreensaver program waits until the keyboard and mouse have been
@@ -91,6 +95,7 @@
 
 %package data-extra
 Summary:Selection of screensavers from xscreensaver
+Group:  Amusements/Toys/Screensavers
 
 %description data-extra
 The xscreensaver program waits until the keyboard and mouse have been

++ xscreensaver-5.14.tar.gz - xscreensaver-5.15.tar.gz ++
 25085 lines of diff (skipped)

++ xscreensaver-background.patch ++
--- /var/tmp/diff_new_pack.h3yW36/_old  2012-02-24 06:54:46.0 +0100
+++ /var/tmp/diff_new_pack.h3yW36/_new  2012-02-24 06:54:46.0 +0100
@@ -1,9 +1,11 @@
 change default background to black
 
 

 utils/resources.c
-+++ utils/resources.c
-@@ -164,7 +164,7 @@
+Index: utils/resources.c
+===
+--- utils/resources.c.orig 2006-07-04 02:25:18.0 +0200
 utils/resources.c  2012-02-20 20:20:41.070048934 +0100
+@@ -177,7 +177,7 @@ get_pixel_resource (Display *dpy, Colorm
if (s) free (s);
  
{

++ xscreensaver-data-extra.list ++
--- /var/tmp/diff_new_pack.h3yW36/_old  2012-02-24 06:54:46.0 +0100
+++ /var/tmp/diff_new_pack.h3yW36/_new  2012-02-24 06:54:46.0 +0100
@@ -30,6 +30,7 @@
 celtic
 circuit
 cloudlife
+companioncube
 compass
 coral
 crackberg
@@ -82,6 +83,7 @@
 halftone
 halo
 helix
+hilbert
 hopalong
 hypertorus
 hypnowheel
@@ -170,6 +172,7 @@
 timetunnel
 topblock
 triangle
+tronbit
 truchet
 twang
 vermiculate

++ xscreensaver-default-screensaver.patch ++
--- /var/tmp/diff_new_pack.h3yW36/_old  2012-02-24 06:54:46.0 +0100
+++ /var/tmp/diff_new_pack.h3yW36/_new  2012-02-24 06:54:46.0 +0100
@@ -10,10 +10,10 @@
 - lock screen by default
 - nice to 19
 
-Index: xscreensaver-5.14/driver/XScreenSaver_ad.h
+Index: xscreensaver-5.15/driver/XScreenSaver_ad.h
 ===
 xscreensaver-5.14.orig/driver/XScreenSaver_ad.h
-+++ xscreensaver-5.14/driver/XScreenSaver_ad.h
+--- 

commit xstroke for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xstroke for openSUSE:Factory checked 
in at 2012-02-24 06:54:45

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


Package is xstroke, Maintainer is dkuka...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xstroke/xstroke.changes  2011-11-22 
17:50:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.xstroke.new/xstroke.changes 2012-02-24 
06:54:47.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 11:28:41 UTC 2012 - co...@suse.com
+
+- fix build on factory
+
+---



Other differences:
--
++ xstroke.spec ++
--- /var/tmp/diff_new_pack.ajXM0V/_old  2012-02-24 06:54:50.0 +0100
+++ /var/tmp/diff_new_pack.ajXM0V/_new  2012-02-24 06:54:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xstroke
 #
-# 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,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   xstroke
-BuildRequires:  gtk2-devel libtool update-desktop-files
+BuildRequires:  gtk2-devel
+BuildRequires:  libtool
+BuildRequires:  update-desktop-files
+BuildRequires:  xorg-x11-devel
 Url:http://xstroke.org/
 Version:0.6
-Release:237
+Release:0
 Summary:Fullscreen gesture recognition for X
 License:GPL-2.0+
-# PreReq:   %fillup_prereq %insserv_prereq 
 Group:  Hardware/Mobile
-AutoReqProv:on
 Source: xstroke-%{version}.tar.bz2
 Source1:xstroke.png
 Source2:xstroke.desktop
@@ -42,17 +41,9 @@
 a mouse, a stylus, or a pen/tablet), recognizes the gestures and
 performs actions based on the gestures.
 
-
-
-Authors:
-
-Carl Worth cwo...@east.isi.edu
-
 %prep
 %setup 
 %patch0 -p1
-%{?suse_update_config:%{suse_update_config -f . }}
-libtoolize --force
 autoreconf -f --install 
 
 %build
@@ -60,26 +51,12 @@
 make
 
 %install
-rm -rf $RPM_BUILD_ROOT
 make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} libdir=%{_libdir} install
-%if %suse_version1030
-%suse_update_desktop_file -i -G Fullscreen Gesture Recognition xstroke 
Utility Accessibility
-%else
-%suse_update_desktop_file -i xstroke Utility Accessibility
-%endif
+%suse_update_desktop_file -i xstroke
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
 cp %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/pixmaps
 mkdir -p $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
-cp -pr AUTHORS COPYING INSTALL ChangeLog NEWS README TODO 
$RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-#
-
-%postun
-#
+cp -pr AUTHORS COPYING ChangeLog NEWS README TODO 
$RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/
 
 %files
 %defattr(-, root, root)

++ xstroke.desktop ++
--- /var/tmp/diff_new_pack.ajXM0V/_old  2012-02-24 06:54:50.0 +0100
+++ /var/tmp/diff_new_pack.ajXM0V/_new  2012-02-24 06:54:50.0 +0100
@@ -3,6 +3,7 @@
 Name=xstroke
 Exec=xstroke
 Icon=xstroke
-GenericName=Fullscreen gesture recognition
+GenericName=Fullscreen Gesture Recognition
 Comment=Fullscreen gesture recognition for X
 X-KDE-StartupNotify=false
+Categories=Utility;Accessibility;


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



commit xvkbd for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package xvkbd for openSUSE:Factory checked 
in at 2012-02-24 06:54:50

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


Package is xvkbd, Maintainer is dkuka...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xvkbd/xvkbd.changes  2011-09-23 
12:53:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.xvkbd.new/xvkbd.changes 2012-02-24 
06:54:54.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 11:25:14 UTC 2012 - co...@suse.com
+
+- fix build on factory
+
+---



Other differences:
--
++ xvkbd.spec ++
--- /var/tmp/diff_new_pack.bmspdG/_old  2012-02-24 06:54:54.0 +0100
+++ /var/tmp/diff_new_pack.bmspdG/_new  2012-02-24 06:54:54.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xvkbd (Version 3.2)
+# spec file for package xvkbd
 #
-# 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,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %if 0%{?suse_version}  1020
 %define _prefix %{_usr}/X11R6
@@ -26,15 +25,17 @@
 %endif
 
 Name:   xvkbd
-BuildRequires:  update-desktop-files xaw3d xorg-x11-devel
+BuildRequires:  update-desktop-files
+BuildRequires:  xaw3d
+BuildRequires:  xorg-x11-devel
 %if 0%{?suse_version}  1020
 BuildRequires:  xaw3d-devel
 %endif
 Summary:Virtual Keyboard for the X Window System
-Version:3.2
-Release:2
 License:GPL-2.0+
 Group:  System/X11/Utilities
+Version:3.2
+Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://homepage3.nifty.com/tsato/xvkbd/
 # http://homepage3.nifty.com/tsato/xvkbd/xvkbd-%{version}.tar.gz
@@ -49,12 +50,6 @@
 which provides a facility to enter characters onto other clients
 (software) by clicking on an on-screen keyboard.
 
-
-
-Authors:
-
-Tom Sato vef00...@nifty.ne.jp
-
 %prep
 %setup -q
 %patch1 -p1
@@ -66,27 +61,19 @@
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
 make DESTDIR=$RPM_BUILD_ROOT install.man
-%if %suse_version  820
 %__install -D -m0644 %{SOURCE1} 
%{buildroot}%{_usr}/share/applications/%{name}.desktop
 %if %suse_version  1010
 %suse_update_desktop_file -r %{name} Utility Accessibility
 %endif #1010
-%endif #820
 %__install -D -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_usr}/share/pixmaps/xvkbd.png
 %__install -D -m0644 %{SOURCE3} $RPM_BUILD_ROOT%{appdefdir}/xvkbd.default
 
-%clean
-%__rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc %{_mandir}/man1/xvkbd.1*
-%{appdefdir}/XVkbd*
-%{appdefdir}/xvkbd.default
+%{appdefdir}
 %{_bindir}/xvkbd
-%if %suse_version  820
 %{_usr}/share/applications/%{name}.desktop
-%endif
 %{_usr}/share/pixmaps/xvkbd.png
 %doc README
 


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



commit yast2-qt for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-24 06:54:55

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


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-20 
16:20:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-24 
06:54:58.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---

Old:

  yast2-qt-2.22.3.tar.bz2

New:

  yast2-qt-2.22.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.EGrLvM/_old  2012-02-24 06:55:00.0 +0100
+++ /var/tmp/diff_new_pack.EGrLvM/_new  2012-02-24 06:55:00.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.3
+Version:2.22.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.3.tar.bz2
+Source0:yast2-qt-2.22.4.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.3.tar.bz2 - yast2-qt-2.22.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/VERSION.cmake 
new/yast2-qt-2.22.4/VERSION.cmake
--- old/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/VERSION.cmake   2012-02-23 15:16:05.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 3)
+SET(VERSION_PATCH 4)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/package/yast2-qt.changes 
new/yast2-qt-2.22.4/package/yast2-qt.changes
--- old/yast2-qt-2.22.3/package/yast2-qt.changes2012-02-17 
16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/package/yast2-qt.changes2012-02-23 
15:16:05.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---
 Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
 
 - Fixed selection and sorting in Table widget (bnc#746156) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/src/YQTable.cc 
new/yast2-qt-2.22.4/src/YQTable.cc
--- old/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/src/YQTable.cc  2012-02-23 15:16:05.0 +0100
@@ -296,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-if ( listViewItem  listViewItem-isSelected() )
+if ( listViewItem  _qt_listView-selectedItems().count()  0 )
selectOrigItem( listViewItem );
 else
 {

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