commit kvm for openSUSE:11.3

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package kvm for openSUSE:11.3
checked in at Thu May 19 01:04:54 CEST 2011.




--- old-versions/11.3/UPDATES/all/kvm/kvm.changes   2010-10-06 
00:01:48.0 +0200
+++ 11.3/kvm/kvm.changes2011-05-18 17:55:02.0 +0200
@@ -1,0 +2,6 @@
+Thu May 12 20:02:17 UTC 2011 - brog...@novell.com
+
+- enforce sector granularity in virtio-blk (bnc#689895)
+- don't allow hot unplug for certain devices (bnc#690781)
+
+---

calling whatdependson for 11.3-i586


New:

  kvm-qemu-no-hot-unplug-for-certain-devices.patch
  kvm-qemu-preXX-virtio-blk-fail-unaligned-requests.patch



Other differences:
--
++ kvm.spec ++
--- /var/tmp/diff_new_pack.a1CO2j/_old  2011-05-19 01:04:31.0 +0200
+++ /var/tmp/diff_new_pack.a1CO2j/_new  2011-05-19 01:04:31.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kvm (Version 0.12.5)
+# spec file for package kvm
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -77,7 +77,7 @@
 Summary:Kernel-based Virtual Machine
 Url:http://kvm.qumranet.com/
 Version:0.12.5
-Release:1.
+Release:1.
 Source0:qemu-%{name}-%{version}.tar.bz2
 Source1:60-kvm.rules
 Source2:qemu-ifup
@@ -132,6 +132,8 @@
 Patch119:   kvm-qemu-pre0.13-flush-unsafe-snapshot.patch
 Patch120:   
kvm-qemu-preXX-move-unsafe-to-end-of-caching-modes-in-help.patch
 Patch121:   kvm-qemu-preXX-report-default-mac-used.patch
+Patch122:   kvm-qemu-preXX-virtio-blk-fail-unaligned-requests.patch
+Patch123:   kvm-qemu-no-hot-unplug-for-certain-devices.patch
 
 Patch200:   kvm-studio-slirp-nooutgoing.patch
 Patch201:   kvm-studio-vnc.patch
@@ -244,6 +246,8 @@
 %patch119 -p1
 %patch120 -p1
 %patch121 -p1
+%patch122 -p1
+%patch123 -p1
 
 # Studio addons
 %patch200 -p1

++ kvm-qemu-no-hot-unplug-for-certain-devices.patch ++
This patch is in the spirit of upstream fixes which exclude certain
devices from taking part in hot-unplug handling, specifically those
which do not have complete hot-unplug handling, and for which we do
not want to even try to allow hot-unplug. See bnc#690781.

Signed-off-by: Bruce Rogers children, sibling, next) {
 dev = DO_UPCAST(PCIDevice, qdev, qdev);
-if (PCI_SLOT(dev->devfn) == slot) {
+if (PCI_SLOT(dev->devfn) == slot && (qdev->info == NULL ||
+!qdev->info->no_hotplug)) {
 qdev_free(qdev);
 }
 }
Index: qemu-kvm-0.12.5/hw/vga-pci.c
===
--- qemu-kvm-0.12.5.orig/hw/vga-pci.c
+++ qemu-kvm-0.12.5/hw/vga-pci.c
@@ -131,6 +131,7 @@ static PCIDeviceInfo vga_info = {
 .qdev.name= "VGA",
 .qdev.size= sizeof(PCIVGAState),
 .qdev.vmsd= &vmstate_vga_pci,
+.qdev.no_hotplug = 1,
 .init = pci_vga_initfn,
 .config_write = pci_vga_write_config,
 .qdev.props   = (Property[]) {
Index: qemu-kvm-0.12.5/hw/qdev.h
===
--- qemu-kvm-0.12.5.orig/hw/qdev.h
+++ qemu-kvm-0.12.5/hw/qdev.h
@@ -128,6 +128,8 @@ struct DeviceInfo {
 size_t size;
 Property *props;
 int no_user;
+/* Kludge! for use with hot-unplug unsafe pci devices only: */
+int no_hotplug;
 
 /* callbacks */
 qdev_resetfn reset;
Index: qemu-kvm-0.12.5/hw/cirrus_vga.c
===
--- qemu-kvm-0.12.5.orig/hw/cirrus_vga.c
+++ qemu-kvm-0.12.5/hw/cirrus_vga.c
@@ -3242,6 +3242,7 @@ static PCIDeviceInfo cirrus_vga_info = {
 .qdev.desc= "Cirrus CLGD 54xx VGA",
 .qdev.size= sizeof(PCICirrusVGAState),
 .qdev.vmsd= &vmstate_pci_cirrus_vga,
+.qdev.no_hotplug = 1,
 .init = pci_cirrus_vga_initfn,
 .romfile  = VGABIOS_CIRRUS_FILENAME,
 .config_write = pci_cirrus_write_config,
Index: qemu-kvm-0.12.5/hw/ide/piix.c
===
--- qemu-kvm-0.12.5.orig/hw/ide/piix.c
+++ qemu-kvm-0.12.5/hw/ide/piix.c
@@ -216,11 +216,13 @@ static PCIDeviceInfo piix_ide_info[] = {
 .qdev.name= "piix3-ide",
 .qdev.size= sizeof(PCIIDEState),
 .qdev.no_user = 1,
+.qdev.no_hotplug = 1,
 .init = pci_piix3_ide_initfn,
 },{
 .qdev.name= "piix4-ide",
 .qdev.size= sizeof(PCIIDEState),
 .qdev.no_user = 1,
+.qdev.no_hotplug = 1,
 .init = pci_piix4_ide_initfn,
 },{
 .qdev.name= "ICH6 IDE",
Index: 

commit logrotate for openSUSE:11.4

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package logrotate for openSUSE:11.4
checked in at Wed May 18 19:10:07 CEST 2011.




--- old-versions/11.4/all/logrotate/logrotate.changes   2010-11-18 
13:45:15.0 +0100
+++ 11.4/logrotate/logrotate.changes2011-05-16 11:35:22.0 +0200
@@ -1,0 +2,7 @@
+Tue May 10 14:27:07 UTC 2011 - pu...@novell.com
+
+- add logrotate-CVE-2011-1098.patch (bnc#677336) 
+- add logrotate-shred-CVE-2011-1154.patch (bnc#679661)
+- add logrotate-CVE-2011-1155.patch (bnc#679662)
+
+---

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


New:

  logrotate-CVE-2011-1098.patch
  logrotate-CVE-2011-1155.patch
  logrotate-shred-CVE-2011-1154.patch



Other differences:
--
++ logrotate.spec ++
--- /var/tmp/diff_new_pack.Q1cQL4/_old  2011-05-18 18:57:44.0 +0200
+++ /var/tmp/diff_new_pack.Q1cQL4/_new  2011-05-18 18:57:44.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package logrotate (Version 3.7.9)
+# spec file for package logrotate
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 BuildRequires:  libselinux-devel
 Summary:Rotate, Compress, Remove, and Mail System Log Files
 Version:3.7.9
-Release:3
+Release:6.
 License:GPLv2+
 Group:  System/Base
 Source: %{name}-%{version}.tar.bz2
@@ -34,6 +34,9 @@
 Patch2: logrotate-3.7.8-autoext.patch
 Patch3: logrotate-3.7.8-addextension.patch
 Patch4: logrotate-3.7.8-mess_err.patch
+Patch5: logrotate-CVE-2011-1098.patch
+Patch6: logrotate-shred-CVE-2011-1154.patch
+Patch7: logrotate-CVE-2011-1155.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %fillup_prereq /bin/rm /bin/mv
 Requires:   bzip2 cron
@@ -61,6 +64,9 @@
 %patch2
 %patch3
 %patch4
+%patch5 -p1
+%patch6
+%patch7
 
 %build
 make %{?_smp_mflags} RPM_OPT_FLAGS="$RPM_OPT_FLAGS" WITH_SELINUX=yes

++ logrotate-CVE-2011-1098.patch ++
Index: logrotate-3.7.9/logrotate.c
===
--- logrotate-3.7.9.orig/logrotate.c
+++ logrotate-3.7.9/logrotate.c
@@ -204,7 +204,9 @@ int createOutputFile(char *fileName, int
 {
 int fd;
 
-fd = open(fileName, flags, sb->st_mode);
+unlink(fileName);
+fd = open(fileName, (flags | O_EXCL | O_NOFOLLOW),
+   (S_IRUSR | S_IWUSR) & sb->st_mode);
 if (fd < 0) {
message(MESS_ERROR, "error creating output file %s: %s\n",
fileName, strerror(errno));
@@ -316,7 +318,7 @@ static int compressLogFile(char *name, s
 }
 
 outFile =
-   createOutputFile(compressedName, O_RDWR | O_CREAT | O_TRUNC, sb);
+   createOutputFile(compressedName, O_RDWR | O_CREAT, sb);
 if (outFile < 0) {
close(inFile);
return 1;
@@ -495,7 +497,7 @@ static int copyTruncate(char *currLog, c
}
 #endif
fdsave =
-   createOutputFile(saveLog, O_WRONLY | O_CREAT | O_TRUNC, sb);
+   createOutputFile(saveLog, O_WRONLY | O_CREAT, sb);
 #ifdef WITH_SELINUX
if (selinux_enabled) {
setfscreatecon_raw(prev_context);
++ logrotate-CVE-2011-1155.patch ++
Index: logrotate.c
===
--- logrotate.c.orig
+++ logrotate.c
@@ -36,6 +36,12 @@ int selinux_enforce = 0;
 #define GLOB_ABORTED GLOB_ABEND
 #endif
 
+#ifdef PATH_MAX
+#define STATEFILE_BUFFER_SIZE 2 * PATH_MAX + 16
+#else
+#define STATEFILE_BUFFER_SIZE 4096
+#endif
+
 struct logState {
 char *fn;
 struct tm lastRotated; /* only tm.mon, tm_mday, tm_year are good! */
@@ -82,6 +88,34 @@ static int globerr(const char *pathname,
 return 1;
 }
 
+static void unescape(char *arg)
+{
+   char *p = arg;
+   char *next;
+   char escaped;
+   while ((next = strchr(p, '\\')) != NULL) {
+
+   p = next;
+
+   switch (p[1]) {
+   case 'n':
+   escaped = '\n';
+   break;
+   case '\\':
+   escaped = '\\';
+   break;
+   default:
+   ++p;
+   continue;
+   }
+
+   /* Overwrite the backslash with the intended character,
+* and shift everything down one */
+   *p++ = escaped;
+   memmove(p, p+1, 1 + strlen(p+1));
+   }
+}

commit logrotate for openSUSE:11.3

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package logrotate for openSUSE:11.3
checked in at Wed May 18 18:21:59 CEST 2011.




--- old-versions/11.3/all/logrotate/logrotate.changes   2009-12-20 
16:30:13.0 +0100
+++ 11.3/logrotate/logrotate.changes2011-05-16 11:34:46.0 +0200
@@ -1,0 +2,7 @@
+Tue May 10 14:27:07 UTC 2011 - pu...@novell.com
+
+- add logrotate-CVE-2011-1098.patch (bnc#677336) 
+- add logrotate-shred-CVE-2011-1154.patch (bnc#679661)
+- add logrotate-CVE-2011-1155.patch (bnc#679662)
+
+---

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


New:

  logrotate-CVE-2011-1098.patch
  logrotate-CVE-2011-1155.patch
  logrotate-shred-CVE-2011-1154.patch



Other differences:
--
++ logrotate.spec ++
--- /var/tmp/diff_new_pack.kxvXjl/_old  2011-05-18 18:15:56.0 +0200
+++ /var/tmp/diff_new_pack.kxvXjl/_new  2011-05-18 18:15:56.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package logrotate (Version 3.7.8)
+# spec file for package logrotate
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 BuildRequires:  libselinux-devel
 Summary:Rotate, Compress, Remove, and Mail System Log Files
 Version:3.7.8
-Release:2
+Release:7.
 License:GPL v2 or later
 Group:  System/Base
 Source: %{name}-%{version}.tar.bz2
@@ -34,6 +34,9 @@
 Patch3: %{name}-%{version}-addextension.patch
 Patch4: %{name}-%{version}-mess_err.patch
 Patch5: %{name}-%{version}-cron-check-for-another-instance.patch
+Patch6: logrotate-CVE-2011-1098.patch
+Patch7: logrotate-shred-CVE-2011-1154.patch
+Patch8: logrotate-CVE-2011-1155.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %fillup_prereq /bin/rm /bin/mv
 Requires:   bzip2 cron
@@ -62,6 +65,9 @@
 %patch3
 %patch4
 %patch5
+%patch6 -p1
+%patch7
+%patch8
 
 %build
 make %{?_smp_mflags} RPM_OPT_FLAGS="$RPM_OPT_FLAGS" WITH_SELINUX=yes

++ logrotate-CVE-2011-1098.patch ++
Index: logrotate-3.7.8/logrotate.c
===
--- logrotate-3.7.8.orig/logrotate.c
+++ logrotate-3.7.8/logrotate.c
@@ -198,7 +198,9 @@ int createOutputFile(char *fileName, int
 {
 int fd;
 
-fd = open(fileName, flags, sb->st_mode);
+unlink(fileName);
+fd = open(fileName, (flags | O_EXCL | O_NOFOLLOW),
+   (S_IRUSR | S_IWUSR) & sb->st_mode);
 if (fd < 0) {
message(MESS_ERROR, "error creating output file %s: %s\n",
fileName, strerror(errno));
@@ -309,7 +311,7 @@ static int compressLogFile(char *name, s
 }
 
 outFile =
-   createOutputFile(compressedName, O_RDWR | O_CREAT | O_TRUNC, sb);
+   createOutputFile(compressedName, O_RDWR | O_CREAT, sb);
 if (outFile < 0) {
close(inFile);
return 1;
@@ -482,7 +484,7 @@ static int copyTruncate(char *currLog, c
}
 #endif
fdsave =
-   createOutputFile(saveLog, O_WRONLY | O_CREAT | O_TRUNC, sb);
+   createOutputFile(saveLog, O_WRONLY | O_CREAT, sb);
 #ifdef WITH_SELINUX
if (selinux_enabled) {
setfscreatecon_raw(prev_context);
++ logrotate-CVE-2011-1155.patch ++
Index: logrotate.c
===
--- logrotate.c.orig
+++ logrotate.c
@@ -30,6 +30,12 @@ int selinux_enforce = 0;
 #define GLOB_ABORTED GLOB_ABEND
 #endif
 
+#ifdef PATH_MAX
+#define STATEFILE_BUFFER_SIZE 2 * PATH_MAX + 16
+#else
+#define STATEFILE_BUFFER_SIZE 4096
+#endif
+
 struct logState {
 char *fn;
 struct tm lastRotated; /* only tm.mon, tm_mday, tm_year are good! */
@@ -76,6 +82,34 @@ static int globerr(const char *pathname,
 return 1;
 }
 
+static void unescape(char *arg)
+{
+   char *p = arg;
+   char *next;
+   char escaped;
+   while ((next = strchr(p, '\\')) != NULL) {
+
+   p = next;
+
+   switch (p[1]) {
+   case 'n':
+   escaped = '\n';
+   break;
+   case '\\':
+   escaped = '\\';
+   break;
+   default:
+   ++p;
+   continue;
+   }
+
+   /* Overwrite the backslash with the intended character,
+* and shift everything down one */
+   *p++ = escaped;
+   memm

commit perl-Time-modules for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Time-modules for 
openSUSE:Factory
checked in at Wed May 18 17:18:46 CEST 2011.




--- perl-Time-modules/perl-Time-modules.changes 2010-11-30 20:29:22.0 
+0100
+++ /mounts/work_src_done/STABLE/perl-Time-modules/perl-Time-modules.changes
2011-05-18 13:42:13.0 +0200
@@ -1,0 +2,20 @@
+Wed May 18 09:54:57 UTC 2011 - vci...@novell.com
+
+- update to 2011.0517
+   Bugfix from Sophie Hamilton: call tzset() when changing timezones.
+   Bugfix: bail out of tests cleanly when tzset doesn't work.
+- license changed
+
+---
+Fri May 13 10:25:15 UTC 2011 - vci...@novell.com
+
+- update to 2011.0505
+   Bugfix: make sure $ampm is defined so no undefined string warnings
+   are issued.
+   Honor the GMT flag when parsing time specs.  Patch from
+   kris at shannon.id.au.
+   Bugfix: RT#31477 noon & midnight would match in the middle of strings.
+   Added %v conversion for Time::CTime
+   Added tests to disprove invalid bug reports.
+
+---

calling whatdependson for head-i586


Old:

  Time-modules-2006.0814.tar.bz2

New:

  Time-modules-2011.0517.tar.bz2



Other differences:
--
++ perl-Time-modules.spec ++
--- /var/tmp/diff_new_pack.Tg5cKE/_old  2011-05-18 17:18:28.0 +0200
+++ /var/tmp/diff_new_pack.Tg5cKE/_new  2011-05-18 17:18:28.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Time-modules (Version 2006.0814)
+# spec file for package perl-Time-modules
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,12 +19,12 @@
 
 
 Name:   perl-Time-modules
-Version:2006.0814
-Release:133
+Version:2011.0517
+Release:1
 AutoReqProv:on
 Group:  Development/Libraries/Perl
 Url:http://www.cpan.org/modules/by-module/Time/
-License:PERMISSIVE-OSI-COMPLIANT
+License:Freely redistributable without restriction
 Summary:Various Perl time modules
 Source: Time-modules-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -47,6 +47,8 @@
 %build
 perl Makefile.PL
 make %{?_smp_mflags}
+
+%check
 make test
 
 %install

++ Time-modules-2006.0814.tar.bz2 -> Time-modules-2011.0517.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Time-modules-2006.0814/CHANGELOG 
new/Time-modules-2011.0517/CHANGELOG
--- old/Time-modules-2006.0814/CHANGELOG2006-08-15 23:38:13.0 
+0200
+++ new/Time-modules-2011.0517/CHANGELOG2011-05-17 17:42:47.0 
+0200
@@ -1,3 +1,19 @@
+2011.0517:
+   Bugfix from Sophie Hamilton: call tzset() when changing timezones.
+
+   Bugfix: bail out of tests cleanly when tzset doesn't work.
+2011.0505:
+   Bugfix: make sure $ampm is defined so no undefined string warnings
+   are issued.
+
+   Honor the GMT flag when parsing time specs.  Patch from
+   kris at shannon.id.au.
+
+   Bugfix: RT#31477 noon & midnight would match in the middle of strings.
+
+   Added %v conversion for Time::CTime
+
+   Added tests to disprove invalid bug reports.
 2006.0814:
A bugfix for negative offsets that overflowed (from Vernon Lyon 
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Time-modules-2006.0814/MANIFEST 
new/Time-modules-2011.0517/MANIFEST
--- old/Time-modules-2006.0814/MANIFEST 2006-08-15 23:38:59.0 +0200
+++ new/Time-modules-2011.0517/MANIFEST 2011-05-06 06:30:04.0 +0200
@@ -8,4 +8,7 @@
 lib/Time/ParseDate.pm
 lib/Time/Timezone.pm
 t/datetime.t
+t/metdate.t
+t/order1.t
+t/order2.t
 META.yml Module meta-data (added by MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Time-modules-2006.0814/META.yml 
new/Time-modules-2011.0517/META.yml
--- old/Time-modules-2006.0814/META.yml 2006-08-15 23:39:54.0 +0200
+++ new/Time-modules-2011.0517/META.yml 2011-05-17 17:43:34.0 +0200
@@ -1,10 +1,23 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXX This is a prototype!!!  It will change in the future!!! X#
-name: Time-modules
-version:  2006.0814
-version_from: lib/Time/ParseDate.pm
-installdirs:  site
-requires:
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.21
+--- #YAML:1.0
+name:   Time-modules
+version:2011.0517
+abstract:

commit pam-modules for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package pam-modules for openSUSE:Factory
checked in at Wed May 18 17:18:21 CEST 2011.




--- pam-modules/pam-modules.changes 2011-03-01 17:18:17.0 +0100
+++ /mounts/work_src_done/STABLE/pam-modules/pam-modules.changes
2011-05-18 16:44:24.0 +0200
@@ -1,0 +2,18 @@
+Wed May 18 16:43:28 CEST 2011 - ku...@suse.de
+
+- Update pam_unix2 to version 2.8.1
+  - better error handling
+
+---
+Thu May 12 17:03:31 CEST 2011 - ku...@suse.de
+
+- Remove pam_make
+- Remove xcrypt from BuildRequires
+
+---
+Wed May 11 17:16:28 CEST 2011 - ku...@suse.de
+
+- Update pam_unix2 to version 2.8
+  - Remove xcrypt dependency
+
+---

calling whatdependson for head-i586


Old:

  pam-modules-10.3-pam_make-fix-open.dif
  pam_make-1.2.tar.bz2
  pam_unix2-2.7.5.tar.bz2
  pam_unix2-man.dif

New:

  pam_unix2-2.8.1.tar.bz2



Other differences:
--
++ pam-modules.spec ++
--- /var/tmp/diff_new_pack.MO1QPn/_old  2011-05-18 17:17:46.0 +0200
+++ /var/tmp/diff_new_pack.MO1QPn/_new  2011-05-18 17:17:46.0 +0200
@@ -25,27 +25,23 @@
 
 Name:   pam-modules
 Summary:Additional PAM Modules
-Version:11.4
-Release:6
+Version:11.5
+Release:1
 License:BSD3c ; GPLv2+
 Group:  System/Libraries
 AutoReqProv:on
 #
-Source0:pam_unix2-2.7.5.tar.bz2
+Source0:pam_unix2-2.8.1.tar.bz2
 Source1:pam_pwcheck-3.12.5.tar.bz2
 Source2:pam_homecheck-2.0.tar.bz2
-Source5:pam_make-1.2.tar.bz2
 Source6:baselibs.conf
 Source21:   unix2_chkpwd.c
 Source41:   unix2_chkpwd.8
 Source50:   dlopen.sh
 #
-Patch0: pam-modules-10.3-pam_make-fix-open.dif
-Patch1: pam_unix2-man.dif
-#
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: permissions
-BuildRequires:  libxcrypt-devel pam-devel
+BuildRequires:  pam-devel
 BuildRequires:  cracklib-devel
 %if %{enable_selinux}
 BuildRequires:  libselinux-devel
@@ -66,9 +62,7 @@
 
 
 %prep
-%setup -q -c %{name} -b1 -b2 -b5 
-%patch0
-%patch1 -p1
+%setup -q -c %{name} -b1 -b2
 
 %build
 for i in * ; do
@@ -115,7 +109,6 @@
 # Find lang files
 %{find_lang} pam_unix2
 %{find_lang} pam_pwcheck pam_unix2.lang
-%{find_lang} pam_make pam_unix2.lang
 
 %post
 %run_permissions
@@ -130,10 +123,8 @@
 %doc %{_defaultdocdir}/pam
 %verify(not mode) %attr(4755,root,shadow) /sbin/unix2_chkpwd
 %attr(755,root,root) /%{_lib}/security/pam_homecheck.so
-%attr(755,root,root) /%{_lib}/security/pam_make.so
 %attr(755,root,root) /%{_lib}/security/pam_pwcheck.so
 %attr(755,root,root) /%{_lib}/security/pam_unix2.so
-%attr(644,root,root) %doc %{_mandir}/man8/pam_make.8.gz
 %attr(644,root,root) %doc %{_mandir}/man8/pam_pwcheck.8.gz
 %attr(644,root,root) %doc %{_mandir}/man8/pam_unix2.8.gz
 %attr(644,root,root) %doc %{_mandir}/man8/unix2_chkpwd.8.gz

++ pam_unix2-2.7.5.tar.bz2 -> pam_unix2-2.8.1.tar.bz2 ++
 13202 lines of diff (skipped)






Remember to have fun...

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



commit python-py2pack for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package python-py2pack for openSUSE:Factory
checked in at Wed May 18 16:58:11 CEST 2011.




--- python-py2pack/python-py2pack.changes   2011-04-27 11:49:16.0 
+0200
+++ python-py2pack/python-py2pack.changes   2011-05-18 13:41:03.0 
+0200
@@ -1,0 +2,10 @@
+Wed May 18 11:36:27 UTC 2011 - sasc...@suse.de
+
+- Update to version 0.3.17
+  * Fix unicode encoding issues
+  * New spec file template for Mageia (formerly Mandriva)
+- Changes from version 0.3.16
+  * More testing
+  * Updated spec file templates according to distro policies
+
+---

calling whatdependson for head-i586


Old:

  py2pack-0.3.15.tar.gz

New:

  py2pack-0.3.17.tar.gz



Other differences:
--
++ python-py2pack.spec ++
--- /var/tmp/diff_new_pack.X8z3fY/_old  2011-05-18 16:56:01.0 +0200
+++ /var/tmp/diff_new_pack.X8z3fY/_new  2011-05-18 16:56:01.0 +0200
@@ -19,7 +19,7 @@
 %define mod_name py2pack
 
 Name:   python-%{mod_name}
-Version:0.3.15
+Version:0.3.17
 Release:1
 Url:http://github.com/saschpe/py2pack
 Summary:Generate distribution packages from Python packages on PyPI

++ py2pack-0.3.15.tar.gz -> py2pack-0.3.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.3.15/PKG-INFO new/py2pack-0.3.17/PKG-INFO
--- old/py2pack-0.3.15/PKG-INFO 2011-04-27 10:47:06.0 +0200
+++ new/py2pack-0.3.17/PKG-INFO 2011-05-18 13:32:53.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: py2pack
-Version: 0.3.15
+Version: 0.3.17
 Summary: Generate distribution packages from Python packages on PyPI
 Home-page: http://github.com/saschpe/py2pack
 Author: Sascha Peilicke
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.3.15/py2pack/__init__.py 
new/py2pack-0.3.17/py2pack/__init__.py
--- old/py2pack-0.3.15/py2pack/__init__.py  2011-04-27 10:46:13.0 
+0200
+++ new/py2pack-0.3.17/py2pack/__init__.py  2011-05-18 13:32:15.0 
+0200
@@ -1,5 +1,5 @@
 __doc__ = 'Generate distribution packages from Python packages on PyPI'
 __author__ = 'Sascha Peilicke '
-__version__ = '0.3.15'
+__version__ = '0.3.17'
 
 from py2pack import list, search, fetch, generate, main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.3.15/py2pack/py2pack.py 
new/py2pack-0.3.17/py2pack/py2pack.py
--- old/py2pack-0.3.15/py2pack/py2pack.py   2011-02-16 09:25:03.0 
+0100
+++ new/py2pack-0.3.17/py2pack/py2pack.py   2011-05-18 13:30:19.0 
+0200
@@ -64,13 +64,13 @@
 data = pypi.release_data(args.name, args.version)   # 
fetch all meta data
 url = newest_download_url(args)
 if url:
-  data['ending'] = url['filename'].rsplit(args.name + "-" + 
args.version)[1] # split of name-version to get ending
+data['file_name'] = url['filename']
 else:
-  data['ending'] = '.zip'   # 
set sane default if no download available
+data['file_name'] = args.name + '-' + args.version + '.zip'
 data['year'] = datetime.now().year  # 
set current year
 data['user_name'] = pwd.getpwuid(os.getuid())[4]# 
set system user (packager)
 template = env.get_template(args.template)
-result = template.render(data)
+result = template.render(data).encode('utf-8')  # 
render template and encode properly
 outfile = open(args.filename, 'w')  # 
write result to spec file
 try:
 outfile.write(result)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.3.15/py2pack/templates/fedora.spec 
new/py2pack-0.3.17/py2pack/templates/fedora.spec
--- old/py2pack-0.3.15/py2pack/templates/fedora.spec2010-12-20 
12:44:22.0 +0100
+++ new/py2pack-0.3.17/py2pack/templates/fedora.spec2011-05-06 
15:51:01.0 +0200
@@ -1,10 +1,10 @@
 #
-# spec file for package python-{{ name|lower }}
+# spec file for package python-{{ name }}
 #
 # Copyright (c) {{ year }} {{ user_name }}.
 #
 
-%define mod_name {{ name|lower }}
+%define mod_name {{ name }}
 
 Name:   python-%{mod_name}
 Version:{{ version }}
@@ -13,37 +13,25 @@
 Summary:{{ summary }}
 License:{{ license }}
 Group:  Development/Languages/Python
-{%- if name != name|lower %}
-Source: {{ name }}-%{version}{{ ending }}
-{%- else %}
-Source: %{mod_name}-%{version}{{ ending }}
-{%- endif %}
+Source: {{ file_name }}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Buil

commit NetworkManager-novellvpn for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package NetworkManager-novellvpn for 
openSUSE:Factory
checked in at Wed May 18 16:55:49 CEST 2011.




--- NetworkManager-novellvpn/NetworkManager-novellvpn.changes   2011-02-15 
14:28:37.0 +0100
+++ NetworkManager-novellvpn/NetworkManager-novellvpn.changes   2011-02-18 
20:40:15.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb 18 20:39:54 CET 2011 - sbra...@suse.cz
+
+- Translations migrated to translation-update-upstream.
+- Created lang package.
+- Merged patches from SLE11 SP1.
+
+---

calling whatdependson for head-i586


Old:

  NetworkManager-novellvpn-po.tar.gz

New:

  NetworkManager-novellvpn-pot.patch
  NetworkManager-novellvpn-system-connection-password.patch



Other differences:
--
++ NetworkManager-novellvpn.spec ++
--- /var/tmp/diff_new_pack.iZ66Dm/_old  2011-05-18 16:54:42.0 +0200
+++ /var/tmp/diff_new_pack.iZ66Dm/_new  2011-05-18 16:54:42.0 +0200
@@ -19,28 +19,32 @@
 
 
 Name:   NetworkManager-novellvpn
-BuildRequires:  NetworkManager-devel NetworkManager-gnome intltool 
libglade2-devel libgnomeui-devel libnl-devel perl-XML-Parser 
update-desktop-files
+BuildRequires:  NetworkManager-devel NetworkManager-gnome intltool 
libglade2-devel libgnomeui-devel libnl-devel perl-XML-Parser 
translation-update-upstream update-desktop-files
 Summary:VPN support for Turnpike
 Version:0.7.2.r1138
-Release:10
+Release:15
 License:GPLv2+
 Group:  Productivity/Networking/System
 Url:http://www.gnome.org/projects/NetworkManager
 Source0:%{name}-%{version}.tar.bz2
 Source1:gnome-mime-application-x-novellvpn-settings.png
-Source2:%{name}-po.tar.gz 
 Patch0: %{name}-dbus-policy.patch
 # PATCH-FIX-UPSTREAM NetworkManager-novellvpn-nm08.patch dims...@opensuse.org 
-- Fix build against NM 0.8
 Patch1: NetworkManager-novellvpn-nm08.patch
 # PATCH-FIX-UPSTREAM NetworkManager-novellvpn-dhgroup-pfsgroup-default.patch 
b...@novell.com -- Fix default value for dhgroup&pfsgroup.
 Patch2: NetworkManager-novellvpn-dhgroup-pfsgroup-default.patch
 Patch3: NetworkManager-novellvpn-nm082.patch
+# PATCH-FIX-UPSTREAM NetworkManager-novellvpn-pot.patch sbra...@suse.cz -- Fix 
POTFILES.in to not include files not existing in the tarball.
+Patch4: %{name}-pot.patch
+# bnc#582593 NetworkManger-novellvpn-system-connection-password.patch 
b...@novell.com
+Patch5: %{name}-system-connection-password.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   NetworkManager >= 0.7.0.r4274
 Requires:   %{name}-frontend
 Requires:   novell-ipsec-tools >= 0.7
 Requires:   novell-nortelplugins >= 0.1.4
 Requires:   turnpike >= 0.1.2
+Recommends: %{name}-lang
 
 %description
 NetworkManager-novellvpn provides VPN support to NetworkManager for
@@ -74,13 +78,18 @@
 NetworkManager-novellvpn. It provides interface for configuring Novell
 related VPN in NetworkManager.
 
+%lang_package
 %prep
 #'
-%setup -n %{name}-0.7.2 -q -a2
+%setup -n %{name}-0.7.2 -q
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
 %patch3
+%patch4 -p1
+%patch5 -p1
+# Call translation-update-upstream after patching - LCN should include strings 
in patches.
+translation-update-upstream
 
 %build
 autoreconf -f -i
@@ -107,7 +116,7 @@
 
 %postun gnome -p /sbin/ldconfig
 
-%files -f %{name}.lang
+%files
 %defattr(-,root,root,-)
 %doc README
 %dir %{_sysconfdir}/NetworkManager
@@ -120,6 +129,8 @@
 %{_libexecdir}/nm-novellvpn-service-novellvpn-helper
 %{_libexecdir}/nm_novellvpn_racoon_launcher.sh
 
+%files lang -f %{name}.lang
+
 %files gnome
 %defattr(-,root,root,-)
 %{_libdir}/NetworkManager/libnm-novellvpn-properties.so*

++ NetworkManager-novellvpn-pot.patch ++
Index: NetworkManager-novellvpn-0.7.2/po/POTFILES.in
===
--- NetworkManager-novellvpn-0.7.2.orig/po/POTFILES.in
+++ NetworkManager-novellvpn-0.7.2/po/POTFILES.in
@@ -4,5 +4,5 @@ auth-dialog/gnome-two-password-dialog.c
 auth-dialog/main.c
 nm-novellvpn.desktop.in
 properties/nm-novellvpn-dialog.glade
-properties/nm-novellvpn-vpnui-impl.c
+properties/nm-novellvpn.c
 src/nm-novellvpn-service.c
++ NetworkManager-novellvpn-system-connection-password.patch ++
Index: NetworkManager-novellvpn-0.7.2/properties/nm-novellvpn.c
===
--- NetworkManager-novellvpn-0.7.2.orig/properties/nm-novellvpn.c
+++ NetworkManager-novellvpn-0.7.2/properties/nm-novellvpn.c
@@ -1129,6 +1142,34 @@ update_connection (NMVpnPluginUiWidgetIn
auth_widget_update_connection (priv->xml, auth_type, s_vpn);
}
 
+   /* System secrets get stored in the connection, user secrets are sav

commit dbus-1 for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package dbus-1 for openSUSE:Factory
checked in at Wed May 18 16:31:18 CEST 2011.




--- dbus-1/dbus-1-x11.changes   2011-05-05 13:46:15.0 +0200
+++ /mounts/work_src_done/STABLE/dbus-1/dbus-1-x11.changes  2011-05-18 
16:05:03.0 +0200
@@ -1,0 +2,5 @@
+Wed May 18 14:04:24 UTC 2011 - co...@novell.com
+
+- buildrequire update-desktop-files for mimetypes.prov
+
+---
dbus-1.changes: same change

calling whatdependson for head-i586


Old:

  _service:download_files:dbus-1.5.0.tar.gz
  _service:download_files:dbus-1.5.0.tar.gz.1



Other differences:
--
++ dbus-1-x11.spec ++
--- /var/tmp/diff_new_pack.BggiyZ/_old  2011-05-18 16:30:57.0 +0200
+++ /var/tmp/diff_new_pack.BggiyZ/_new  2011-05-18 16:30:57.0 +0200
@@ -26,10 +26,10 @@
 Summary:D-Bus Message Bus System
 # COMMON1-BEGIN
 # COMMON1-BEGIN
-BuildRequires:  doxygen libexpat-devel libzio pkgconfig
+BuildRequires:  doxygen libexpat-devel libzio pkg-config update-desktop-files
 BuildRequires:  audit-devel
 Version:1.5.0
-Release:1
+Release:2
 AutoReqProv:on
 # bug437293
 %ifarch ppc64

++ dbus-1.spec ++
--- /var/tmp/diff_new_pack.BggiyZ/_old  2011-05-18 16:30:57.0 +0200
+++ /var/tmp/diff_new_pack.BggiyZ/_new  2011-05-18 16:30:57.0 +0200
@@ -24,10 +24,10 @@
 Group:  System/Daemons
 Summary:D-Bus Message Bus System
 # COMMON1-BEGIN
-BuildRequires:  doxygen libexpat-devel libzio pkgconfig
+BuildRequires:  doxygen libexpat-devel libzio pkg-config update-desktop-files
 BuildRequires:  audit-devel
 Version:1.5.0
-Release:1
+Release:3
 AutoReqProv:on
 # bug437293
 %ifarch ppc64
@@ -55,6 +55,7 @@
 
 %package -n dbus-1-devel
 
+
 Summary:Developer package for D-Bus
 Requires:   %{name} = %{version} glibc-devel
 AutoReqProv:on
@@ -62,6 +63,7 @@
 
 %package -n dbus-1-devel-doc
 
+
 Summary:Developer documentation package for D-Bus
 Requires:   %{name} = %{version}
 Group:  Development/Libraries/Other






Remember to have fun...

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



commit perl-Prima for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Prima for openSUSE:Factory
checked in at Wed May 18 16:16:47 CEST 2011.




--- perl-Prima/perl-Prima.changes   2011-04-01 10:38:31.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Prima/perl-Prima.changes  2011-05-18 
10:18:21.0 +0200
@@ -1,0 +2,6 @@
+Wed May 18 08:09:24 UTC 2011 - co...@opensuse.org
+
+- updated to 1.30
+  * builds with 5.14
+
+---

calling whatdependson for head-i586


Old:

  Prima-1.29.tar.gz

New:

  Prima-1.30.tar.gz



Other differences:
--
++ perl-Prima.spec ++
--- /var/tmp/diff_new_pack.Gu5vaq/_old  2011-05-18 16:16:31.0 +0200
+++ /var/tmp/diff_new_pack.Gu5vaq/_new  2011-05-18 16:16:31.0 +0200
@@ -24,7 +24,7 @@
 Group:  Development/Libraries/Perl
 AutoReqProv:on
 Requires:   xorg-x11
-Version:1.29
+Version:1.30
 Release:1
 Summary:A Perl toolkit for multi-platform GUI development
 Url:http://prima.eu.org

++ Prima-1.29.tar.gz -> Prima-1.30.tar.gz ++
 5261 lines of diff (skipped)








Remember to have fun...

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



commit python-anyjson for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package python-anyjson for openSUSE:Factory
checked in at Wed May 18 15:56:51 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-anyjson/python-anyjson.changes  
2011-03-26 02:05:35.0 +0100
@@ -0,0 +1,40 @@
+---
+Sat Mar 26 01:05:09 UTC 2011 - alexan...@exatati.com.br
+
+- Add CHANGELOG and README file as documentation.
+
+---
+Tue Mar 22 16:53:07 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 0.3.1:
+  * Added deprecation warning for cjson and made it the least preferred
+implementation. See: http://pypi.python.org/pypi/python-cjson/1.0.5
+- Regenerates spec file with py2pack.
+
+---
+Sat Dec  4 09:15:31 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 0.3:
+  * Added support for python3
+
+---
+Fri Sep 10 05:25:20 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 0.2.5;
+- Spec file cleaned with spec-cleaner.
+
+---
+Thu Jan 28 13:53:20 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 0.2.3.
+
+---
+Sat Sep 26 17:50:59 UTC 2009 - alexan...@exatati.com.br
+
+- Update to 0.2.2;
+- Building as noarch for openSUSE >= 11.2.
+
+---
+Tue Sep 22 13:49:10 UTC 2009 - alexan...@exatati.com.br
+
+- Initial package (0.2.1) for openSUSE.

calling whatdependson for head-i586


New:

  anyjson-0.3.1.tar.bz2
  python-anyjson.changes
  python-anyjson.spec



Other differences:
--
++ python-anyjson.spec ++
#
# spec file for package python-anyjson
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild

%{!?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)")}

%define mod_name anyjson

Name:   python-%{mod_name}
Version:0.3.1
Release:1
Url:http://bitbucket.org/runeh/anyjson
Summary:Wraps the best available JSON implementation available in a 
common interface
License:BSD
Group:  Development/Languages/Python
Source: %{mod_name}-%{version}.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python-devel
BuildRequires:  python-setuptools
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch:  noarch
%endif
%endif

%description
Anyjson loads whichever is the fastest JSON module installed and provides
a uniform API regardless of which JSON implementation is used.

Originally part of carrot (http://github.com/ask/carrot/)

%prep
%setup -q -n %{mod_name}-%{version}

%build
export CFLAGS="%{optflags}"
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc CHANGELOG README
%python_sitelib/%{mod_name}*
%python_sitelib/*.egg-info

%changelog





Remember to have fun...

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



commit numactl for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package numactl for openSUSE:Factory
checked in at Wed May 18 15:44:28 CEST 2011.




--- numactl/numactl.changes 2011-01-04 16:43:37.0 +0100
+++ /mounts/work_src_done/STABLE/numactl/numactl.changes2011-03-16 
12:03:37.0 +0100
@@ -1,0 +2,16 @@
+Wed Mar 16 11:02:22 UTC 2011 - tr...@novell.com
+
+- Only use LGPL for the library licence, remove the gpl part.
+
+---
+Wed Mar 16 09:43:28 UTC 2011 - tr...@novell.com
+
+- Add lesser GPL public license to libnuma as metioned in the
+  sources
+
+---
+Wed Mar 16 09:39:02 UTC 2011 - tr...@novell.com
+
+- Adjust/refresh patch, no functional change
+
+---

calling whatdependson for head-i586




Other differences:
--
++ numactl.spec ++
--- /var/tmp/diff_new_pack.zkpGQG/_old  2011-05-18 15:31:45.0 +0200
+++ /var/tmp/diff_new_pack.zkpGQG/_new  2011-05-18 15:31:45.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package numactl (Version 2.0.6)
+# spec file for package numactl
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -23,7 +23,7 @@
 License:GPLv2+
 Summary:NUMA Policy Control
 Version:2.0.6
-Release:2
+Release:8
 %define origversion 2.0.6
 AutoReqProv:on
 # bug437293
@@ -44,7 +44,7 @@
 individual NUMA policy in applications.
 
 %package -n libnuma1
-License:GPLv2+
+License:LGPLv2.1+
 Summary:NUMA Policy Control
 Group:  Development/Languages/C and C++
 AutoReqProv:on

++ numactl_install_all_manpages ++
--- /var/tmp/diff_new_pack.zkpGQG/_old  2011-05-18 15:31:45.0 +0200
+++ /var/tmp/diff_new_pack.zkpGQG/_new  2011-05-18 15:31:45.0 +0200
@@ -2,11 +2,11 @@
  Makefile |3 +++
  1 file changed, 3 insertions(+)
 
-Index: numactl-2.0.4-rc1/Makefile
+Index: numactl-2.0.6/Makefile
 ===
 numactl-2.0.4-rc1.orig/Makefile
-+++ numactl-2.0.4-rc1/Makefile
-@@ -135,6 +135,9 @@ install: numactl migratepages migspeed n
+--- numactl-2.0.6.orig/Makefile
 numactl-2.0.6/Makefile
+@@ -136,6 +136,9 @@ install: numactl migratepages migspeed n
install -m 0755 memhog ${prefix}/bin
mkdir -p ${prefix}/share/man/man2 ${prefix}/share/man/man8 
${prefix}/share/man/man3
install -m 0644 numactl.8 ${prefix}/share/man/man8






Remember to have fun...

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



commit ocaml for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package ocaml for openSUSE:Factory
checked in at Wed May 18 15:27:13 CEST 2011.




--- ocaml/ocaml.changes 2010-08-24 17:58:58.0 +0200
+++ /mounts/work_src_done/STABLE/ocaml/ocaml.changes2011-04-27 
16:24:14.0 +0200
@@ -1,0 +2,12 @@
+Wed Apr 27 10:02:51 UTC 2011 - vci...@novell.com
+
+- license correction to GPLv2 and QPL 
+- removed author from spec
+
+---
+Tue Apr 26 11:43:56 UTC 2011 - idoen...@novell.com
+
+- Add ocaml-3.12-fix-size-directive.patch:
+  incorrect .size directives generated for x86-32 and x86-64 
+
+---

calling whatdependson for head-i586


New:

  ocaml-3.12-fix-size-directive.patch



Other differences:
--
++ ocaml.spec ++
--- /var/tmp/diff_new_pack.0rcLRz/_old  2011-05-18 15:26:15.0 +0200
+++ /var/tmp/diff_new_pack.0rcLRz/_new  2011-05-18 15:26:15.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ocaml (Version 3.12.0)
+# spec file for package ocaml
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,11 +20,11 @@
 
 Name:   ocaml
 BuildRequires:  emacs-nox fdupes gdbm-devel ncurses-devel tk-devel
-License:GPLv2+ ; QPL ..
+License:GPLv2 and QPL
 Group:  Development/Languages/Other
 AutoReqProv:on
 Version:3.12.0
-Release:1
+Release:5
 %define doc_version 3.12
 %ifarch s390 s390x
 %define do_opt 0
@@ -44,6 +44,8 @@
 Patch6: ocaml-3.08.3.patch
 Patch7: ocaml-3.09-emacs_localcompile.patch
 Patch8: ocaml-3.09-rpmoptflags.patch
+# PATCH-FIX-UPSTREAM ocaml-3.12-fix-size-directive.patch idoen...@suse.de -- 
PR# 5237: fix incorrect .size directives
+Patch9: ocaml-3.12-fix-size-directive.patch
 Url:http://caml.inria.fr/
 Summary:The Objective Caml Compiler and Programming Environment
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -59,11 +61,6 @@
 system, Lex&Yacc tools, a replay debugger, and a comprehensive library.
 
 
-
-Authors:
-
-Pierre Weis 
-
 %package devel
 License:GPLv2+ ; QPL ..
 Summary:The Objective Caml Compiler and Programming Environment
@@ -82,10 +79,6 @@
 
 
 
-Authors:
-
-Pierre Weis 
-
 %package -n labltk
 License:GPLv2+ ; QPL ..
 Group:  Development/Languages/Other
@@ -102,10 +95,6 @@
 
 
 
-Authors:
-
-Pierre Weis 
-
 %package -n camlp4
 License:GPLv2+ ; QPL ..
 Group:  Development/Languages/Other
@@ -122,10 +111,6 @@
 
 
 
-Authors:
-
-Pierre Weis 
-
 %package ocamldoc
 License:GPLv2+ ; QPL ..
 Group:  Development/Languages/Other
@@ -142,10 +127,6 @@
 
 
 
-Authors:
-
-Pierre Weis 
-
 %package emacs
 License:GPLv2+ ; QPL ..
 Group:  Development/Languages/Other
@@ -163,10 +144,6 @@
 
 
 
-Authors:
-
-Pierre Weis 
-
 %package docs
 License:GPLv2+ ; QPL ..
 Group:  Development/Languages/Other
@@ -182,11 +159,6 @@
 system, Lex&Yacc tools, a replay debugger, and a comprehensive library.
 
 
-
-Authors:
-
-Pierre Weis 
-
 %prep
 %setup -q -T -b 0
 %setup -q -T -D -a 1
@@ -200,6 +172,7 @@
 %patch6
 %patch7
 %patch8
+%patch9
 find -name ".cvsignore" | xargs -r rm -f
 
 %build

++ ocaml-3.12-fix-size-directive.patch ++
PR#5237: incorrect .size directives generated for x86-32 and x86-64
See http://caml.inria.fr/cgi-bin/viewcvs.cgi?diff_format=u&rev=10981&view=rev

--- asmcomp/amd64/emit.mlp  2011/03/13 13:33:17 10980
+++ asmcomp/amd64/emit.mlp  2011/03/13 13:36:00 10981
@@ -688,17 +688,18 @@
   emit_all true fundecl.fun_body;
   List.iter emit_call_gc !call_gc_sites;
   emit_call_bound_errors ();
+  begin match Config.system with
+"linux" | "gnu" ->
+  `.type   {emit_symbol fundecl.fun_name},@function\n`;
+  `.size   {emit_symbol fundecl.fun_name},.-{emit_symbol 
fundecl.fun_name}\n`
+| _ -> ()
+  end;
   if !float_constants <> [] then begin
 if macosx
 then ` .literal8\n`
 else ` .section.rodata.cst8,\"a\",@progbits\n`;
 List.iter emit_float_constant !float_constants
-  end;
-  match Config.system with
-"linux" | "gnu" ->
-  `.type   {emit_symbol fundecl.fun_name},@function\n`;
-  `.size   {emit_symbol fundecl.fun_name},.-{emit_symbol 
fundecl.fun_name}\n`
-  | _ -> ()
+  end
 
 (* Emission of data *)
 
--- asmcomp/i386/emit.mlp   2011/03/13 13:33:17 10980
+++ asmcomp/i386/emit.mlp   2011/03/

commit qt-gstreamer for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package qt-gstreamer for openSUSE:Factory
checked in at Wed May 18 15:20:43 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/qt-gstreamer/qt-gstreamer.changes  
2011-02-03 12:27:46.0 +0100
@@ -0,0 +1,11 @@
+---
+Wed Feb  2 21:27:36 UTC 2011 - wstephen...@novell.com
+
+- Update to 0.10.1 stable
+- Standardize packaging
+
+---
+Sun Sep 26 11:05:04 UTC 2010 - tittiatc...@gmail.com
+
+- Initial package
+

calling whatdependson for head-i586


New:

  fix-install-path.diff
  qt-gstreamer-0.10.1.tar.bz2
  qt-gstreamer.changes
  qt-gstreamer.spec



Other differences:
--
++ qt-gstreamer.spec ++
#
# spec file for package qt-gstreamer
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   qt-gstreamer
Url:http://gstreamer.freedesktop.org/wiki/QtGStreamer
BuildRequires:  fdupes
BuildRequires:  gstreamer-0_10-plugins-base-devel
BuildRequires:  libkde4-devel
BuildRequires:  doxygen
BuildRequires:  boost-devel
BuildRequires:  bison
BuildRequires:  flex
License:LGPLv2.1+
Group:  System/Libraries
Summary:C++/Qt bindings for GStreamer
Version:0.10.1
Release:1
Source: %{name}-%{version}.tar.bz2
Patch0: fix-install-path.diff
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
GStreamer is a streaming-media framework, based on graphs of filters
which operate on media data. Applications using this library can do
anything from real-time sound processing to playing videos, and just
about anything else media-related.  Its plug-in-based architecture
means that new data types or processing capabilities can be added by
installing new plug-ins.

This package contains C++/Qt Bindings for GStreamer.


Authors:

   George Kiagiadakis

%prep
%setup -q -n qt-gstreamer-%{version}
%patch0 -p0

%package -n libQtGStreamer-0_10-devel
License:LGPLv2.1+
Group:  Development/Libraries/C and C++
Summary:Include files and libraries mandatory for development
Requires:   libQtGStreamer-0_10-0 = %version
Requires:   gstreamer-0_10-plugins-base-devel

%description -n libQtGStreamer-0_10-devel
GStreamer is a streaming-media framework, based on graphs of filters
which operate on media data. Applications using this library can do
anything from real-time sound processing to playing videos, and just
about anything else media-related.  Its plug-in-based architecture
means that new data types or processing capabilities can be added by
installing new plug-ins.

This package contains C++/Qt Bindings for GStreamer.


Authors:

   George Kiagiadakis

%package -n libQtGLib-2_0-0
License:LGPLv2.1+
Group:  System/Libraries
Summary:C++/Qt bindings for GLib

%description -n libQtGLib-2_0-0
GLib is a general-purpose utility library, which provides many useful
data types, macros, type conversions, string utilities, file utilities,
a main loop abstraction, and so on.

This package contains C++/Qt bindings for GLib.


Authors:

   George Kiagiadakis



%package -n libQtGStreamer-0_10-0
License:LGPLv2.1+
Group:  System/Libraries
Summary:C++/Qt bindings for GStreamer

%description -n libQtGStreamer-0_10-0
GStreamer is a streaming-media framework, based on graphs of filters
which operate on media data. Applications using this library can do
anything from real-time sound processing to playing videos, and just
about anything else media-related.  Its plug-in-based architecture
means that new data types or processing capabilities can be added by
installing new plug-ins.

This package contains C++/Qt Bindings for GStreamer.


Authors:

   George Kiagiadakis

%build
  %cmake_kde4 -d build -- -DQTGSTREAMER_STATIC=OFF
  %make_jobs

%install
  cd build
  %makeinstall
  %fdupes -s %{buildroot}%{_includedir}

%post -n libQtGLib-2_0-0 -p /sbin/ldconfig

%postun -n libQtGLib-2_0-0 -p /sbin/ldconfig

%post -n libQtGStreamer-0_10-0 -p /sbin/ldconfig

%postun -n libQtGStreamer-0_10-0 -p /s

commit cutecom for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package cutecom for openSUSE:Factory
checked in at Wed May 18 15:07:11 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/cutecom/cutecom.changes2011-05-11 
18:04:17.0 +0200
@@ -0,0 +1,9 @@
+---
+Tue Apr 26 18:39:52 CEST 2011 - opens...@dstoecker.de
+
+- fix line breaking issue (patch copied from Debian)
+
+---
+Tue Jan 27 12:00:00 CEST 2009 - opens...@dstoecker.de
+
+- initial setup

calling whatdependson for head-i586


New:

  cutecom-0.22.0-nolinebreak.diff
  cutecom-0.22.0.tar.gz
  cutecom.changes
  cutecom.desktop
  cutecom.png
  cutecom.spec



Other differences:
--
++ cutecom.spec ++
#
# spec file for package cutecom
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   cutecom
Version:0.22.0
Release:1
Url:http://cutecom.sourceforge.net/
License:GPL
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  cmake gcc-c++ libqt4-devel
Group:  Applications/Communications
Summary:Serial terminal
Source: %{name}-%{version}.tar.gz
Source3:%{name}.desktop
Source4:%{name}.png
Patch:  cutecom-0.22.0-nolinebreak.diff

%if 0%{?suse_version}
# for >= 11.1 validity tests
BuildRequires:  gnome-icon-theme kdelibs3
%endif

%description
Qt based serial terminal

%prep
%setup
%patch -p1

%build
cmake .
make

%install
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
install -s -m 755 %{name} $RPM_BUILD_ROOT/%{_bindir}/
gzip %{name}.1
install -m 644 %{name}.1.gz $RPM_BUILD_ROOT/%{_mandir}/man1/

install -d 755 $RPM_BUILD_ROOT%{_datadir}/applications
install -m 644 %SOURCE3 $RPM_BUILD_ROOT%{_datadir}/applications/
install -d 755 $RPM_BUILD_ROOT%{_datadir}/pixmaps
install -m 644 %SOURCE4 $RPM_BUILD_ROOT%{_datadir}/pixmaps/

%clean
rm -rf "$RPM_BUILD_ROOT"

%files
%defattr(-,root,root)
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1.gz
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png
%doc Changelog TODO COPYING README

%changelog
++ cutecom-0.22.0-nolinebreak.diff ++
diff -ruN cutecom-0.22.0/qcppdialogimpl.cpp 
cutecom-0.22.0-nolinebreak/qcppdialogimpl.cpp
--- cutecom-0.22.0/qcppdialogimpl.cpp   2009-06-25 21:10:49.0 +0100
+++ cutecom-0.22.0-nolinebreak/qcppdialogimpl.cpp   2010-08-04 
15:57:15.951009886 +0100
@@ -18,6 +18,7 @@
 
 #include "qcppdialogimpl.h"
 
+#include 
 #include 
 #include 
 #include 
@@ -1362,13 +1363,23 @@
 
 void QCPPDialogImpl::doOutput()
 {
-   if (m_outputBuffer.isEmpty())
-   {
-  return;
-   }
+  QScrollBar* vScrollBar;
+  bool scrollWithText;
+
+  if (m_outputBuffer.isEmpty())
+return;
+  
+  vScrollBar = m_outputView->verticalScrollBar();
+  scrollWithText = (vScrollBar->value() == vScrollBar->maximum());
+  
+  QTextCursor cursor(m_outputView->document());
+  cursor.movePosition(QTextCursor::End);
+  cursor.insertText(m_outputBuffer);
+
+  if ((scrollWithText))
+vScrollBar->setValue(vScrollBar->maximum());
 
-   m_outputView->append(m_outputBuffer); 
-   m_outputBuffer.clear();
+  m_outputBuffer.clear();
 }
 
 void QCPPDialogImpl::hexOutputClicked(bool /* on */)
++ cutecom.desktop ++
[Desktop Entry]
Encoding=UTF-8
Name=CuteCom
GenericName=Serial Terminal
Exec=cutecom
Icon=cutecom
Type=Application
Terminal=0
X-KDE-StartupNotify=false
X-SuSE-translate=false
Categories=System;TerminalEmulator;





Remember to have fun...

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



commit perl-CPAN-Mini for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-CPAN-Mini for openSUSE:Factory
checked in at Wed May 18 15:05:02 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-CPAN-Mini/perl-CPAN-Mini.changes  
2011-04-08 21:17:03.0 +0200
@@ -0,0 +1,6 @@
+---
+Fri Apr  8 19:16:57 UTC 2011 - co...@novell.com
+
+- initial package 1.111001
+* created by cpanspec 1.78.04
+

calling whatdependson for head-i586


New:

  CPAN-Mini-1.111001.tar.gz
  perl-CPAN-Mini.changes
  perl-CPAN-Mini.spec



Other differences:
--
++ perl-CPAN-Mini.spec ++
#
# spec file for package perl-CPAN-Mini
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   perl-CPAN-Mini
Version:1.111001
Release:1
License:GPL+ or Artistic
%define cpan_name CPAN-Mini
Summary:create a minimal mirror of CPAN
Url:http://search.cpan.org/dist/CPAN-Mini/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/CPAN-Mini-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Carp)
BuildRequires:  perl(Compress::Zlib) >= 1.20
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(File::Basename)
BuildRequires:  perl(File::Copy)
BuildRequires:  perl(File::Find)
BuildRequires:  perl(File::HomeDir) >= 0.57
BuildRequires:  perl(File::Path) >= 2.04
BuildRequires:  perl(File::Spec)
BuildRequires:  perl(File::Temp)
BuildRequires:  perl(Getopt::Long)
BuildRequires:  perl(LWP::UserAgent) >= 5
BuildRequires:  perl(Pod::Usage) >= 1.00
BuildRequires:  perl(Test::More) >= 0.96
BuildRequires:  perl(URI) >= 1
Requires:   perl(Carp)
Requires:   perl(Compress::Zlib) >= 1.20
Requires:   perl(File::Basename)
Requires:   perl(File::Copy)
Requires:   perl(File::Find)
Requires:   perl(File::HomeDir) >= 0.57
Requires:   perl(File::Path) >= 2.04
Requires:   perl(File::Spec)
Requires:   perl(File::Temp)
Requires:   perl(Getopt::Long)
Requires:   perl(LWP::UserAgent) >= 5
Requires:   perl(Pod::Usage) >= 1.00
Requires:   perl(URI) >= 1
%{perl_requires}

%description
CPAN::Mini provides a simple mechanism to build and update a minimal mirror
of the CPAN on your local disk. It contains only those files needed to
install the newest version of every distribution. Those files are:

* *

  01mailrc.txt.gz

* *

  02packages.details.txt.gz

* *

  03modlist.data.gz

* *

  the last non-developer release of every dist for every author

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,755)
%doc %attr(644,-,-) Changes LICENSE README

%changelog





Remember to have fun...

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



commit perl-Class-ReturnValue for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Class-ReturnValue for 
openSUSE:Factory
checked in at Wed May 18 15:04:26 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Class-ReturnValue/perl-Class-ReturnValue.changes
  2010-11-30 20:24:27.0 +0100
@@ -0,0 +1,25 @@
+---
+Tue Nov 30 19:19:57 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Mon Nov 29 18:29:29 UTC 2010 - co...@novell.com
+
+- remove /var/adm/perl-modules
+
+---
+Mon Nov 29 13:42:12 UTC 2010 - co...@novell.com
+
+- recreated by cpanspec 1.78.02
+
+---
+Sun Nov 28 11:37:43 UTC 2010 - co...@novell.com
+
+- remove .packlist file
+
+---
+Mon Aug 11 19:42:01 CEST 2008 - lr...@suse.de
+
+- initial version 0.55
+

calling whatdependson for head-i586


New:

  Class-ReturnValue-0.55.tar.bz2
  perl-Class-ReturnValue.changes
  perl-Class-ReturnValue.spec



Other differences:
--
++ perl-Class-ReturnValue.spec ++
#
# spec file for package perl-Class-ReturnValue
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Class-ReturnValue
%define cpan_name Class-ReturnValue
Summary:Return-value object that lets you treat it as as a boolean, 
array or object
Version:0.55
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Class-ReturnValue/
#Source: 
http://www.cpan.org/modules/by-module/Class/Class-ReturnValue-%{version}.tar.bz2
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Devel::StackTrace)
Requires:   perl(Devel::StackTrace)

%description
Class::ReturnValue is a "clever" return value object that can allow code
calling your routine to expect: a boolean value (did it fail) or a list
(what are the return values)

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes

%changelog





Remember to have fun...

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



commit perl-Crypt-SaltedHash for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Crypt-SaltedHash for 
openSUSE:Factory
checked in at Wed May 18 15:03:26 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Crypt-SaltedHash/perl-Crypt-SaltedHash.changes
2010-12-01 14:41:18.0 +0100
@@ -0,0 +1,11 @@
+---
+Wed Dec  1 13:31:20 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Fri Oct  1 22:44:08 UTC 2010 - db...@novell.com
+
+- initial package 0.05
+  * created by cpanspec 1.78
+

calling whatdependson for head-i586


New:

  Crypt-SaltedHash-0.06.tar.bz2
  perl-Crypt-SaltedHash.changes
  perl-Crypt-SaltedHash.spec



Other differences:
--
++ perl-Crypt-SaltedHash.spec ++
#
# spec file for package perl-Crypt-SaltedHash
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Crypt-SaltedHash
%define cpan_name Crypt-SaltedHash
Summary:Perl interface to functions that assist in working with salted 
hashes
Version:0.06
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Crypt-SaltedHash/
#Source: 
http://www.cpan.org/authors/id/E/ES/ESSKAR/Crypt-SaltedHash-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl(Module::Build)
BuildRequires:  perl-macros
BuildRequires:  perl(Digest)
Requires:   perl(Digest)

%description
The Crypt::SaltedHash module provides an object oriented interface to
create salted (or seeded) hashes of clear text data. The original
formalization of this concept comes from RFC-3112 and is extended by the
use of different digital agorithms.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}

%check
./Build test

%install
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes README

%changelog





Remember to have fun...

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



commit perl-Image-Info for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Image-Info for openSUSE:Factory
checked in at Wed May 18 15:02:45 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Image-Info/perl-Image-Info.changes
2011-04-09 13:15:24.0 +0200
@@ -0,0 +1,6 @@
+---
+Sat Apr  9 11:15:16 UTC 2011 - co...@novell.com
+
+- initial package 1.31
+* created by cpanspec 1.78.04
+

calling whatdependson for head-i586


New:

  Image-Info-1.31.tar.gz
  perl-Image-Info.changes
  perl-Image-Info.spec



Other differences:
--
++ perl-Image-Info.spec ++
#
# spec file for package perl-Image-Info
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   perl-Image-Info
Version:1.31
Release:1
License:GPL+ or Artistic
%define cpan_name Image-Info
Summary:Extract meta information from image files
Url:http://search.cpan.org/dist/Image-Info/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/S/SR/SREZIC/Image-Info-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(Test::More) >= 0.62
Recommends: perl(Bundle::Image::Info::PNG)
Recommends: perl(Bundle::Image::Info::SVG)
Recommends: perl(Bundle::Image::Info::XBM)
Recommends: perl(Bundle::Image::Info::XPM)
%{perl_requires}

%description
This module provide functions to extract various kind of meta information
from image files.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,755)
%doc %attr(644,-,-) CHANGES CREDITS exifdump imgdump README TODO

%changelog





Remember to have fun...

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



commit perl-Locale-Maketext-Gettext for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Locale-Maketext-Gettext for 
openSUSE:Factory
checked in at Wed May 18 15:00:15 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Locale-Maketext-Gettext/perl-Locale-Maketext-Gettext.changes
  2010-12-01 14:48:09.0 +0100
@@ -0,0 +1,12 @@
+---
+Wed Dec  1 13:33:16 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Fri Nov 12 22:23:17 UTC 2010 - j...@novell.com
+
+- needed by publican
+- initial package 1.28
+  * created by cpanspec 1.78.02
+

calling whatdependson for head-i586


New:

  Locale-Maketext-Gettext-1.28.tar.bz2
  perl-Locale-Maketext-Gettext.changes
  perl-Locale-Maketext-Gettext.spec



Other differences:
--
++ perl-Locale-Maketext-Gettext.spec ++
#
# spec file for package perl-Locale-Maketext-Gettext
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Locale-Maketext-Gettext
%define cpan_name Locale-Maketext-Gettext
Summary:Joins the gettext and Maketext frameworks
Version:1.28
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Locale-Maketext-Gettext/
Source: 
http://www.cpan.org/authors/id/I/IM/IMACAT/Locale-Maketext-Gettext-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl(Module::Build)
BuildRequires:  perl-macros

%description
Locale::Maketext::Gettext joins the GNU gettext and Maketext frameworks. It
is a subclass of Locale::Maketext(3) that follows the way GNU gettext
works. It works seamlessly, both in the sense of GNU gettext and Maketext.
As a result, you enjoy both their advantages, and get rid of both their
problems, too.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}

%check
./Build test

%install
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Artistic BUGS Changes COPYING README THANKS TODO

%changelog





Remember to have fun...

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



commit rubygem-racc for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package rubygem-racc for openSUSE:Factory
checked in at Wed May 18 14:55:39 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/rubygem-racc/rubygem-racc.changes  
2011-05-03 14:31:29.0 +0200
@@ -0,0 +1,38 @@
+---
+Tue May  3 12:22:27 UTC 2011 - mrueck...@suse.de
+
+- switch to gem based package
+- update to 1.4.6
+  - over 300 lines in changelog
+  see /usr/lib*/ruby/gems/1.8/gems/racc-1.4.6/ChangeLog
+
+---
+Tue May  3 12:21:43 CEST 2011 - r...@suse.de
+
+- update description 
+
+---
+Sat Sep 30 23:15:53 CEST 2006 - mrueck...@suse.de
+
+- install into vendor_ruby
+
+---
+Wed Jan 25 21:41:15 CET 2006 - m...@suse.de
+
+- converted neededforbuild to BuildRequires
+
+---
+Tue Jan 24 21:10:55 CET 2006 - mrueck...@suse.de
+
+- dont build the runtime. ruby 1.8 already has it
+
+---
+Fri Jan 20 18:43:51 CET 2006 - mrueck...@suse.de
+
+- update to version 1.4.5-all
+
+---
+Mon Oct 17 20:03:34 CEST 2005 - mrueck...@suse.de
+
+- Initial package of version 1.4.4-all
+

calling whatdependson for head-i586


New:

  racc-1.4.6.gem
  rubygem-racc.changes
  rubygem-racc.spec



Other differences:
--
++ rubygem-racc.spec ++
#
# spec file for package rubygem-racc
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   rubygem-racc
Version:1.4.6
Release:1
%define mod_name racc
#
Group:  Development/Languages/Ruby
License:LGPL v2.1 or later
#
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  rubygems_with_buildroot_patch
%rubygems_requires
Provides:   ruby-racc = %{version}
Obsoletes:  ruby-racc < %{version}
#
Url:http://racc.rubyforge.org/
Source: %{mod_name}-%{version}.gem
#
Summary:Racc is a LALR(1) parser generator

%description
Racc is a LALR(1) parser generator. It is written in Ruby itself, and generates 
Ruby program.

%package doc

Summary:RDoc documentation for %{mod_name}
Group:  Development/Languages/Ruby
Requires:   %{name} = %{version}

%description doc
Documentation generated at gem installation time.
Usually in RDoc and RI formats.

%package testsuite

Summary:Test suite for %{mod_name}
Group:  Development/Languages/Ruby
Requires:   %{name} = %{version}

%description testsuite
Test::Unit or RSpec files, useful for developers.

%prep

%build

%install
%gem_install %{S:0}
%gem_cleanup
pushd %{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
perl -pi -e 's|/usr/local/bin/ruby|/usr/bin/ruby|g' bin/*
popd

%clean
%{__rm} -rf %{buildroot}

%files
%defattr(-,root,root,-)
%{_bindir}/racc
%{_bindir}/racc2y
%{_bindir}/y2racc
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec

%files doc
%defattr(-,root,root,-)
%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/

%files testsuite
%defattr(-,root,root,-)
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test

%changelog





Remember to have fun...

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



commit unison for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package unison for openSUSE:Factory
checked in at Wed May 18 14:49:59 CEST 2011.




--- unison/unison.changes   2011-03-31 15:20:54.0 +0200
+++ /mounts/work_src_done/STABLE/unison/unison.changes  2011-04-29 
13:05:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Apr 29 09:13:36 UTC 2011 - mh...@novell.com
+
+- Update to 2.40.63:
+  * Include makefile patch
+  * Make unison compile with ocaml 3.12
+  * Fix incompatibility with OpenSSH 5.6
+
+---

calling whatdependson for head-i586


Old:

  fix_makefile.patch
  unison-2.40.61-manual.html
  unison-2.40.61.tar.gz

New:

  unison-2.40.63-manual.html
  unison-2.40.63.tar.gz



Other differences:
--
++ unison.spec ++
--- /var/tmp/diff_new_pack.s3pesw/_old  2011-05-18 14:49:15.0 +0200
+++ /var/tmp/diff_new_pack.s3pesw/_new  2011-05-18 14:49:15.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   unison
-Version:2.40.61
+Version:2.40.63
 Release:1
 Summary:A file synchronization tool
 Group:  Productivity/Networking/Other
@@ -28,7 +28,6 @@
 Source1:
http://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/unison-%{version}-manual.html
 Source2:%{name}.desktop
 Source3:%{name}.png
-Patch0: fix_makefile.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gtk2-devel ncurses-devel update-desktop-files
 %if 0%{?suse_version} > 1020
@@ -47,7 +46,6 @@
 
 %prep
 %setup -q
-%patch0 -p 1
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.

++ unison-2.40.61-manual.html -> unison-2.40.63-manual.html ++

++ unison-2.40.61.tar.gz -> unison-2.40.63.tar.gz ++
 6131 lines of diff (skipped)







Remember to have fun...

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



commit satsolver-bindings for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package satsolver-bindings for 
openSUSE:Factory
checked in at Wed May 18 14:49:06 CEST 2011.




--- satsolver-bindings/satsolver-bindings.changes   2011-03-31 
14:49:23.0 +0200
+++ /mounts/work_src_done/STABLE/satsolver-bindings/satsolver-bindings.changes  
2011-05-18 12:04:58.0 +0200
@@ -1,0 +2,5 @@
+Wed May 18 10:04:44 UTC 2011 - co...@novell.com
+
+- do not use -Werror for release packages
+
+---

calling whatdependson for head-i586


New:

  avoidwerror.diff



Other differences:
--
++ satsolver-bindings.spec ++
--- /var/tmp/diff_new_pack.ma1YOL/_old  2011-05-18 14:48:45.0 +0200
+++ /var/tmp/diff_new_pack.ma1YOL/_new  2011-05-18 14:48:45.0 +0200
@@ -19,10 +19,11 @@
 
 Name:   satsolver-bindings
 Version:0.42.0
-Release:2
+Release:5
 License:BSD3c
 Url:git://gitorious.org/opensuse/sat-solver-bindings.git
 Source: satsolver-bindings-%{version}.tar.bz2
+Patch0: avoidwerror.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  Development/Libraries/C and C++
 Summary:Placeholder for subpackages of satsolver-bindings
@@ -158,6 +159,7 @@
 
 %prep
 %setup -n %{name}-%{version}
+%patch0 -p1
 
 %build
 export CFLAGS="$RPM_OPT_FLAGS"

++ avoidwerror.diff ++
Index: satsolver-bindings-0.42.0/CMakeLists.txt
===
--- satsolver-bindings-0.42.0.orig/CMakeLists.txt   2011-03-17 
18:26:29.0 +0100
+++ satsolver-bindings-0.42.0/CMakeLists.txt2011-05-18 12:01:10.388652496 
+0200
@@ -146,9 +146,9 @@ INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOU
 
 MESSAGE(STATUS "Looking modules in ${CMAKE_MODULE_PATH}")
 
-set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror -Wall" )
-set ( CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS} -g -O3 -Werror -Wall" )
-set ( CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS} -g3 -O0 -Werror -Wall" )
+set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall" )
+set ( CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS} -g -O3" )
+set ( CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS} -g3 -O0 -Werror" )
 
 
 ADD_SUBDIRECTORY(applayer)





Remember to have fun...

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



commit yelp-xsl for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package yelp-xsl for openSUSE:Factory
checked in at Wed May 18 14:48:33 CEST 2011.




--- GNOME/yelp-xsl/yelp-xsl.changes 2011-04-26 16:07:31.0 +0200
+++ /mounts/work_src_done/STABLE/yelp-xsl/yelp-xsl.changes  2011-05-17 
18:18:12.0 +0200
@@ -1,0 +2,8 @@
+Tue May 17 15:23:46 UTC 2011 - fcro...@suse.com
+
+- Add yelp-xsl-update-jquery-syntax.patch: Update jquery.syntax to
+  3.0 release, which is MIT licensed.  bnc#693971 bgo#650308
+- Update License tag to add MIT license.
+- Call autoreconf, needed by yelp-xsl-update-jquery-syntax.patch.
+
+---

calling whatdependson for head-i586


New:

  yelp-xsl-update-jquery-syntax.patch



Other differences:
--
++ yelp-xsl.spec ++
--- /var/tmp/diff_new_pack.SQXEMu/_old  2011-05-18 14:47:11.0 +0200
+++ /var/tmp/diff_new_pack.SQXEMu/_new  2011-05-18 14:47:11.0 +0200
@@ -20,11 +20,13 @@
 
 Name:   yelp-xsl
 Version:3.0.1
-Release:1
-License:GPLv2+, LGPLv2.1+
+Release:3
+License:GPLv2+, LGPLv2.1+, MIT
 Summary:XSL stylesheets for the yelp help browser
 Group:  System/Libraries
 Source: %{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM yelp-xsl-update-jquery-syntax.patch bnc#693971 bgo#650308 
fcro...@suse.com -- update jquery.syntax to latest version (from git)
+Patch0: yelp-xsl-update-jquery-syntax.patch
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(libxslt)
@@ -37,8 +39,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+#needed by patch0
+autoreconf
 %configure
 %__make %{?_smp_mflags}
 

++ yelp-xsl-update-jquery-syntax.patch ++
 2443 lines (skipped)






Remember to have fun...

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



commit python-sip for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package python-sip for openSUSE:Factory
checked in at Wed May 18 12:11:04 CEST 2011.




--- python-sip/python-sip.changes   2011-01-25 11:56:50.0 +0100
+++ /mounts/work_src_done/STABLE/python-sip/python-sip.changes  2011-05-02 
18:56:25.0 +0200
@@ -1,0 +2,9 @@
+Mon May  2 18:22:42 CEST 2011 - dmuel...@suse.de
+
+- update to 4.12.2:
+ * /KeepReference/ is now supported as a function annotation.
+ * Handwritten code in class templates no longer have the types 
+   substituted in lines that appear to contain C preprocessor directives.
+ * Added support for global inplace numeric operators.
+
+---

calling whatdependson for head-i586


Old:

  sip-4.12.1.tar.bz2

New:

  sip-4.12.2.tar.bz2



Other differences:
--
++ python-sip.spec ++
--- /var/tmp/diff_new_pack.Kzc7AG/_old  2011-05-18 12:10:47.0 +0200
+++ /var/tmp/diff_new_pack.Kzc7AG/_new  2011-05-18 12:10:47.0 +0200
@@ -23,7 +23,7 @@
 License:GPLv2+
 Group:  Development/Libraries/Python
 Summary:SIP tool to use python sip bindings
-Version:4.12.1
+Version:4.12.2
 Release:1
 %define rversion %version
 Url:http://www.riverbankcomputing.com/software/sip/intro

++ sip-4.12.1.tar.bz2 -> sip-4.12.2.tar.bz2 ++
 27305 lines of diff (skipped)






Remember to have fun...

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



commit perl-Try-Tiny for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Try-Tiny for openSUSE:Factory
checked in at Wed May 18 11:50:14 CEST 2011.




--- perl-Try-Tiny/perl-Try-Tiny.changes 2010-11-30 20:29:27.0 +0100
+++ /mounts/work_src_done/STABLE/perl-Try-Tiny/perl-Try-Tiny.changes
2011-05-17 14:14:42.0 +0200
@@ -1,0 +2,7 @@
+Tue May 17 12:12:23 UTC 2011 - co...@opensuse.org
+
+- updated to 0.09
+  - don't index Try::Tiny::ScopeGuard
+  - fix require vs use issue in blead (RT63410)
+
+---

calling whatdependson for head-i586


Old:

  Try-Tiny-0.07.tar.bz2

New:

  Try-Tiny-0.09.tar.gz



Other differences:
--
++ perl-Try-Tiny.spec ++
--- /var/tmp/diff_new_pack.qPJ7H2/_old  2011-05-18 11:49:39.0 +0200
+++ /var/tmp/diff_new_pack.qPJ7H2/_new  2011-05-18 11:49:39.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Try-Tiny (Version 0.07)
+# spec file for package perl-Try-Tiny
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,48 +15,39 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-Try-Tiny
-%define cpan_name Try-Tiny
-Summary:Minimal try/catch with proper localization of $@
-Version:0.07
-Release:2
+Version:0.09
+Release:1
 License:MIT
-Group:  Development/Libraries/Perl
+%define cpan_name Try-Tiny
+Summary:minimal try/catch with proper localization of $@
 Url:http://search.cpan.org/dist/Try-Tiny/
-#Source: 
http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Try-Tiny-0.07.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Group:  Development/Libraries/Perl
+Source: 
http://www.cpan.org/authors/id/D/DO/DOY/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Test::More)
+%{perl_requires}
 
 %description
-This module provides bare bones try/catch statements that are designed to
-minimize common mistakes with eval blocks, and NOTHING else.
+This module provides bare bones 'try'/'catch'/'finally' statements that are
+designed to minimize common mistakes with eval blocks, and NOTHING else.
 
-This is unlike TryCatch which provides a nice syntax and avoids adding another
-call stack layer, and supports calling return from the try block to return from
-the parent subroutine. These extra features come at a cost of a few
-dependencies, namely Devel::Declare and Scope::Upper which are occasionally
-problematic, and the additional catch filtering uses Moose type constraints
-which may not be desirable either.
-
-The main focus of this module is to provide simple and reliable error handling
-for those having a hard time installing TryCatch, but who still want to write
-correct eval blocks without 5 lines of boilerplate each time.
-
-It's designed to work as correctly as possible in light of the various
-pathological edge cases (see BACKGROUND) and to be compatible with any style of
-error values (simple strings, references, objects, overloaded objects, etc).
-
-Authors:
-
-Yuval Kogman 
+This is unlike the TryCatch manpage which provides a nice syntax and avoids
+adding another call stack layer, and supports calling 'return' from the try
+block to return from the parent subroutine. These extra features come at a
+cost of a few dependencies, namely the Devel::Declare manpage and the
+Scope::Upper manpage which are occasionally problematic, and the additional
+catch filtering uses the Moose manpage type constraints which may not be
+desirable either.
+
+The main focus of this module is to provide simple and reliable error
+handling for those having a hard time installing the TryCatch manpage, but
+who still want to write correct 'eval' blocks without 5 lines of
+boilerplate each time.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -70,18 +61,14 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf $RPM_BUILD_ROOT
+%{__rm} -rf %{buildroot}
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes
 
 %changelog






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse

commit global for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package global for openSUSE:Factory
checked in at Wed May 18 11:49:18 CEST 2011.




--- global/global.changes   2011-03-15 11:00:55.0 +0100
+++ /mounts/work_src_done/STABLE/global/global.changes  2011-05-18 
11:22:57.0 +0200
@@ -1,0 +2,17 @@
+Wed May 18 07:56:08 UTC 2011 - pu...@novell.com
+
+- update to global-5.9.5 
+ [FIXED BUGS]
+  * The processing of the --ncol option was missing.
+ [CHANGES]
+  * gtags-cscope: re-implemented using cscope's code.
+Now, it is almost compatible with cscope itself.
+  * Config variable 'suffixes' was completely removed.
+Instead, config variable 'langmap' was actualized.
+ [INCOMPATIBLE CHANGES]
+  * Removed GPATH,GTAGS,GRTAGS,GSYMS and html/ from the skip
+variable in gtags.conf file. From now on, gtags unconditionally
+ignore the tag files. Though 'html/' was added for Windows, it
+brought troubles for UNIX.
+
+---

calling whatdependson for head-i586


Old:

  global-5.9.4.tar.bz2

New:

  global-5.9.5-fix-gcc-warnings.patch
  global-5.9.5.tar.bz2



Other differences:
--
++ global.spec ++
--- /var/tmp/diff_new_pack.817vw3/_old  2011-05-18 11:48:47.0 +0200
+++ /var/tmp/diff_new_pack.817vw3/_new  2011-05-18 11:48:47.0 +0200
@@ -23,14 +23,16 @@
 Group:  Development/Tools/Navigators
 AutoReqProv:on
 Summary:Common Source Code Tag System
-Version:5.9.4
+Version:5.9.5
 Release:1
 Url:http://www.gnu.org/software/global/
 Source: %{name}-%{version}.tar.bz2
 Patch:  global-5.7.diff
 Patch1: global-5.7-gcc.diff
 Patch2: global-disable-plugin-example.patch
+Patch3: global-5.9.5-fix-gcc-warnings.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ncurses-devel
 PreReq: %install_info_prereq
 
 %description
@@ -50,6 +52,7 @@
 %patch
 %patch1
 %patch2 -p1
+%patch3 -p1
 
 %build
 autoreconf -fi

++ global-5.9.5-fix-gcc-warnings.patch ++
Index: global-5.9.5/gtags-cscope/exec.c
===
--- global-5.9.5.orig/gtags-cscope/exec.c
+++ global-5.9.5/gtags-cscope/exec.c
@@ -128,6 +128,7 @@ myexecvp(char *a, char **args)
 askforreturn();/* wait until the user sees the message */
 myexit(1); /* exit the child */
 /* NOTREACHED */
+return 0; /* make gcc happy */
 }
 
 /* myfork acts like fork but also handles signals */
++ global-5.9.4.tar.bz2 -> global-5.9.5.tar.bz2 ++
 11804 lines of diff (skipped)






Remember to have fun...

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



commit gpick for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package gpick for openSUSE:Factory
checked in at Wed May 18 11:31:19 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/gpick/gpick.changes2011-05-16 
21:38:10.0 +0200
@@ -0,0 +1,36 @@
+---
+Mon May 16 19:09:40 UTC 2011 - nmarq...@opensuse.org
+
+- Update to version 0.2.4:
+  + Bug fix release only
+- Drop gpick-no-return-in-non-void.patch, 01_expat_dependency.patch
+  and 02_dsolink_expat.patch: fixed upstream
+- BuildRequire pkgconfig instead of pkg-config (this is provided
+  cross distro)
+
+---
+Sat May  7 17:47:21 UTC 2011 - nmarq...@opensuse.org
+
+- Updated source package to experimental 'amalgamation' package
+  provided by upstream for testing
+  + Removed lemon parser dependency (source includes now the
+generated files)
+- Add _smp_mflags to scons call in build section
+- BuildRequire expat
+- Add 'COPYRIGHT' file with the licences, provided by upstream
+- Add patches:
+  + gpick-no-return-in-non-void.patch: adds missing return to
+non-void function (sent upstream);
+  + Add 01_expat_dependency.patch: Adds expat dependency
+  + Add 02_dsolink_expat.patch: fixes linking with expat.
+
+---
+Thu May  5 20:47:47 UTC 2011 - nmarq...@opensuse.org
+
+- Modified spec file with required stuff for Fedora builds.
+
+---
+Thu May  5 16:07:27 UTC 2011 - nmarq...@opensuse.org
+
+- Initial package from version 0.2.3
+

calling whatdependson for head-i586


New:

  copyright
  gpick-0.2.4.tar.bz2
  gpick.changes
  gpick.spec



Other differences:
--
++ gpick.spec ++
#
# spec file for package gpick
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   gpick
Version:0.2.4
Release:1
License:BSD-3 ; Expat License ; LUA License ; Others (BSD like)
Summary:Advanced color picker writen in GTK+
Url:http://code.google.com/p/gpick/
Group:  Productivity/Graphics/Visualization/Other
Source0:%{name}-%{version}.tar.bz2
Source1:copyright
BuildRequires:  boost-devel
BuildRequires:  expat
BuildRequires:  flex
BuildRequires:  gcc-c++
# hicolor-icon-theme BuildRequires for directory ownership
BuildRequires:  hicolor-icon-theme
BuildRequires:  scons
BuildRequires:  pkgconfig
BuildRequires:  pkgconfig(dbus-glib-1)
BuildRequires:  pkgconfig(gtk+-2.0)
BuildRequires:  pkgconfig(lua) >= 5.1
%if 0%{?suse_version}
BuildRequires:  update-desktop-files
%endif
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Gpick is a featured color picker with palette creation and modification tools.
It is written in C++ and uses GTK+ toolkit for user interface.

%prep
%setup -q -n %{name}_%{version}

%build
scons %{?_smp_mflags}

%install
scons install DESTDIR=%{buildroot}%{_prefix}
%if 0%{?suse_version}
%suse_update_desktop_file -i -r %{name} GNOME Graphics Viewer
%endif
# Install copyright file. This file was given to me by the author/upstream.
cp %{SOURCE1} COPYRIGHT

%clean
%{?buildroot:rm -rf %{buildroot}}

%if 0%{?suse_version} >= 1140

%post
%icon_theme_cache_post

%postun
%icon_theme_cache_postun
%endif

%if 0%{?fedora_version}

%post
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :

%postun
if [ $1 -eq 0 ] ; then
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi

%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%endif

%files
%defattr(-,root,root)
%doc extern/expat/COPYING COPYRIGHT
%{_bindir}/%{name}
%{_datadir}/applications/*.desktop
%{_datadir}/%{name}/
%{_datadir}/doc/%{name}/
%{_datadir}/icons/hicolor/*/*/%{name}.*
%{_mandir}/man1/%{name}.*

%changelog
++ copyright ++
Format: http://dep.debian.net/deps/dep5
Upstream-Name: gpick
Source: http://code.google.com/gpick/
Upstream-Contact: Albertas Vyšniauskas 

Files: *
Copyright: (C) 2009, 2010 Albertas Vyšniauskas 
License: BSD-3
 Redistrib

commit rpmlint for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory
checked in at Wed May 18 11:23:38 CEST 2011.




--- rpmlint/rpmlint.changes 2011-05-11 14:31:54.0 +0200
+++ /mounts/work_src_done/STABLE/rpmlint/rpmlint.changes2011-05-17 
12:42:52.0 +0200
@@ -1,0 +2,6 @@
+Tue May 17 09:41:43 UTC 2011 - lnus...@suse.de
+
+- update rpmlint-pie.diff and suse-file-var-run.diff with upstream
+  accepted variant
+
+---

calling whatdependson for head-i586


New:

  rpmlint-typo.diff



Other differences:
--
++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.qlXPww/_old  2011-05-18 11:23:05.0 +0200
+++ /var/tmp/diff_new_pack.qlXPww/_new  2011-05-18 11:23:05.0 +0200
@@ -23,7 +23,7 @@
 BuildRequires:  rpm-python
 Summary:Rpm correctness checker
 Version:1.1
-Release:35
+Release:37
 Source0:%{name}-%{version}.tar.bz2
 Source1:config
 Source1001: config.in
@@ -71,6 +71,7 @@
 Patch8: suse-binarieschecks.diff
 Patch9: no-doc-for-lib.diff
 Patch10:add-scoring-support.diff
+# accepted upstream
 Patch11:suse-file-var-run.diff
 Patch12:usr-arch.diff
 Patch13:script-interpreter-only-for-exec-scripts.diff
@@ -122,10 +123,13 @@
 Patch84:extend-suse-conffiles-check.diff
 Patch85:suse-changelog.patch
 Patch86:suse-rclink-check.diff
-# already upstream
+# accepted upstream
 Patch87:rpmlint-add-details.diff
 Patch88:suse-speccheck-utf8.diff
+# accepted upstream
 Patch89:rpmlint-pie.diff
+# accepted upstream
+Patch90:rpmlint-typo.diff
 %py_requires
 
 %description
@@ -206,6 +210,7 @@
 %patch87 -p1
 %patch88
 %patch89 -p1
+%patch90 -p1
 cp -p %{SOURCE1} .
 cp -p %{SOURCE2} .
 cp -p %{SOURCE3} .

++ pie.config ++
--- /var/tmp/diff_new_pack.qlXPww/_old  2011-05-18 11:23:05.0 +0200
+++ /var/tmp/diff_new_pack.qlXPww/_new  2011-05-18 11:23:05.0 +0200
@@ -3,8 +3,7 @@
 # This file should list daemons and programs that are likely to be set setuid
 # by users. Files listed in permissions.eays are automatically checked.
 
-setOption("PieExecutables",
-(
+pie_execs = (
 "/bin/ping",
 "/bin/ping6",
 "/bin/su",
@@ -231,4 +230,5 @@
 "/usr/sbin/ypserv",
 "/usr/bin/zone2ldap",
 )
-)
+
+setOption('PieExecutables', '^(?:%s)$' % '|'.join(pie_execs))

++ rpmlint-pie.diff ++
--- /var/tmp/diff_new_pack.qlXPww/_old  2011-05-18 11:23:05.0 +0200
+++ /var/tmp/diff_new_pack.qlXPww/_new  2011-05-18 11:23:05.0 +0200
@@ -1,56 +1,61 @@
-From cdf3d7e6338e8133d9b2b8f19de8e5a3308327bc Mon Sep 17 00:00:00 2001
-From: Ludwig Nussel 
-Date: Mon, 9 May 2011 11:54:48 +0200
-Subject: [PATCH] check for position independent executables
+From 6eedb2e510533cb196f37803b78ca64c0d0a77d4 Mon Sep 17 00:00:00 2001
+From: scop 
+Date: Sun, 15 May 2011 09:05:04 +
+Subject: [PATCH] Check for position independent executables (based on patch by 
Ludwig Nussel).
 
+git-svn-id: http://rpmlint.zarb.org/svn/trunk@1865 
9bc8b190-ac0f-0410-8968-dc7d1f502856
 ---
- BinariesCheck.py |   11 +++
+ BinariesCheck.py |   10 ++
  config   |4 
- 2 files changed, 15 insertions(+), 0 deletions(-)
+ 2 files changed, 14 insertions(+), 0 deletions(-)
 
 Index: rpmlint-1.1/BinariesCheck.py
 ===
 --- rpmlint-1.1.orig/BinariesCheck.py
 +++ rpmlint-1.1/BinariesCheck.py
-@@ -25,6 +25,9 @@ DEFAULT_SYSTEM_LIB_PATHS = (
- '/lib', '/usr/lib', '/usr/X11R6/lib',
- '/lib64', '/usr/lib64', '/usr/X11R6/lib64')
- 
-+DEFAULT_PIE_EXECUTABLES = (
-+)
-+
- class BinaryInfo:
- 
- needed_regex = re.compile('\s+\(NEEDED\).*\[(\S+)\]')
-@@ -189,6 +192,7 @@ so_regex = re.compile('/lib(64)?/[^/]+\.
+@@ -189,6 +189,8 @@ so_regex = re.compile('/lib(64)?/[^/]+\.
  validso_regex = re.compile('(\.so\.\d+(\.\d+)*|\d\.so)$')
  sparc_regex = re.compile('SPARC32PLUS|SPARC V9|UltraSPARC')
  system_lib_paths = Config.getOption('SystemLibPaths', 
DEFAULT_SYSTEM_LIB_PATHS)
-+pie_executables = Config.getOption('PieExecutables', DEFAULT_PIE_EXECUTABLES)
++pie_exec_re = Config.getOption('PieExecutables')
++if pie_exec_re: pie_exec_re = re.compile(pie_exec_re)
  usr_lib_regex = re.compile('^/usr/lib(64)?/')
  bin_regex = re.compile('^(/usr(/X11R6)?)?/s?bin/')
  soversion_regex = 
re.compile('.*?([0-9][.0-9]*)\\.so|.*\\.so\\.([0-9][.0-9]*).*')
-@@ -377,6 +381,9 @@ class BinariesCheck(AbstractCheck.Abstra
+@@ -377,6 +379,11 @@ class BinariesCheck(AbstractCheck.Abstra
  if not is_exec and not is_shobj:
  continue
  
-+if fname in pie_executables and not is_shobj:
-+printError(pkg, 'not-a-position-independent-executable', 
fname)
++if is_shob

commit perl-Class-Std for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Class-Std for openSUSE:Factory
checked in at Wed May 18 11:22:38 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Class-Std/perl-Class-Std.changes  
2010-11-30 20:24:30.0 +0100
@@ -0,0 +1,50 @@
+---
+Tue Nov 30 19:19:58 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Wed Sep  8 22:34:52 UTC 2010 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78
+- noarch pkg
+- bzipped/cleanup source
+
+---
+Thu Dec 24 09:51:40 UTC 2009 - r...@opensuse.org
+
+- Removed git repository information (thanks for all the work, Dan)
+- Fixed incompatibility with Perl 5.11+ label constraints
+- Remove unneeded dependency on version.pm
+
+---
+Sat Jul 25 19:29:40 CEST 2009 - ch...@computersalat.de
+
+- spec mods
+  * removed ^--
+  * removed ^#-
+
+---
+Fri Jun 19 01:09:38 CEST 2009 - ch...@computersalat.de
+
+- spec fix for perl-macros
+
+---
+Wed Jun 17 00:29:53 CEST 2009 - ch...@computersalat.de
+
+- added perl-macros
+  o autogen filelist with perl_gen_filelist
+
+---
+Fri Jun 12 23:18:26 CEST 2009 - ch...@computersalat.de
+
+- upgrade to new version 0.0.9
+- some spec mods
+  o deps
+  o autogen filelist
+
+---
+Tue Dec 09 20:10:33 UTC 2007 - r...@opensuse.org
+
+- Initial rpm build
+

calling whatdependson for head-i586


New:

  Class-Std-0.011.tar.bz2
  perl-Class-Std.changes
  perl-Class-Std.spec



Other differences:
--
++ perl-Class-Std.spec ++
#
# spec file for package perl-Class-Std
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild

%bcond_with pod

Name:   perl-Class-Std
%define cpan_name Class-Std
Summary:Support for creating standard "inside-out" classes
Version:0.011
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Class-Std/
#Source: 
http://www.cpan.org/modules/by-module/Class/Class-Std-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl(Module::Build)
BuildRequires:  perl-macros
%if %{with pod}
BuildRequires:  perl(Test::Pod) >= 1.14
BuildRequires:  perl(Test::Pod::Coverage)
%endif
BuildRequires:  perl(Data::Dumper)
BuildRequires:  perl(Scalar::Util)
BuildRequires:  perl(Test::More)
Requires:   perl(Data::Dumper)
Requires:   perl(Scalar::Util)

%description
This module provides tools that help to implement the "inside out object"
class structure in a convenient and standard way.

Authors:

Damian Conway 

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}

%check
./Build test

%install
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes README

%changelog





Remember to have fun...

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



commit perl-Class-Container for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Class-Container for 
openSUSE:Factory
checked in at Wed May 18 11:18:03 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Class-Container/perl-Class-Container.changes  
2010-11-30 20:24:07.0 +0100
@@ -0,0 +1,16 @@
+---
+Tue Nov 30 19:19:54 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sun Jul 11 18:05:14 UTC 2010 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78
+- noarch pkg
+- changelog to changes file
+
+---
+Thu Nov  1 13:27:30 CET 2007 - jf...@funktronics.ca
+
+- Initial release

calling whatdependson for head-i586


New:

  Class-Container-0.12.tar.bz2
  perl-Class-Container.changes
  perl-Class-Container.spec



Other differences:
--
++ perl-Class-Container.spec ++
#
# spec file for package perl-Class-Container
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Class-Container
%define cpan_name Class-Container
Summary:Glues object frameworks together transparently
Version:0.12
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Class-Container/
#Source: 
http://www.cpan.org/modules/by-module/Class/Class-Container-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl(Module::Build)
BuildRequires:  perl-macros
BuildRequires:  perl(Carp)
BuildRequires:  perl(Params::Validate) >= 0.23
BuildRequires:  perl(Scalar::Util)
Requires:   perl(Carp)
Requires:   perl(Params::Validate) >= 0.23
Requires:   perl(Scalar::Util)

%description
This class facilitates building frameworks of several classes that inter-
operate. It was first designed and built for HTML::Mason, in which the
Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and several
other objects must create each other transparently, passing the appropriate
parameters to the right class, possibly substituting other subclasses for
any of these objects.


Authors:

Ken Williams 
Dave Rolsky 

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build

%check
./Build test

%install
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes README

%changelog





Remember to have fun...

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



commit perl-CSS-Tiny for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-CSS-Tiny for openSUSE:Factory
checked in at Wed May 18 11:14:19 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-CSS-Tiny/perl-CSS-Tiny.changes
2010-11-30 20:24:56.0 +0100
@@ -0,0 +1,12 @@
+---
+Tue Nov 30 19:20:03 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Fri Nov 12 23:28:06 UTC 2010 - j...@novell.com
+
+- needed by PPI::HTML, publican
+- initial package 1.19
+  * created by cpanspec 1.78.02
+

calling whatdependson for head-i586


New:

  CSS-Tiny-1.19.tar.bz2
  perl-CSS-Tiny.changes
  perl-CSS-Tiny.spec



Other differences:
--
++ perl-CSS-Tiny.spec ++
#
# spec file for package perl-CSS-Tiny
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-CSS-Tiny
%define cpan_name CSS-Tiny
Summary:Read/Write .css files with as little code as possible
Version:1.19
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/CSS-Tiny/
Source: 
http://www.cpan.org/authors/id/A/AD/ADAMK/CSS-Tiny-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl-macros

%description
CSS::Tiny is a perl class to read and write .css stylesheets with as little
code as possible, reducing load time and memory overhead. CSS.pm requires
about 2.6 meg or ram to load, which is a large amount of overhead if you
only want to do trivial things. Memory usage is normally scoffed at in
Perl, but in my opinion should be at least kept in mind.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes LICENSE README test.css

%changelog





Remember to have fun...

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



commit perl-Math-BigInt-GMP for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Math-BigInt-GMP for 
openSUSE:Factory
checked in at Wed May 18 10:38:03 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Math-BigInt-GMP/perl-Math-BigInt-GMP.changes  
2010-12-01 14:49:10.0 +0100
@@ -0,0 +1,11 @@
+---
+Wed Dec  1 13:33:33 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Fri Jul 16 15:23:21 UTC 2010 - ch...@computersalat.de
+
+- initial package 1.24
+  * created by cpanspec 1.78
+

calling whatdependson for head-i586


New:

  Math-BigInt-GMP-1.24.tar.bz2
  perl-Math-BigInt-GMP.changes
  perl-Math-BigInt-GMP.spec



Other differences:
--
++ perl-Math-BigInt-GMP.spec ++
#
# spec file for package perl-Math-BigInt-GMP
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Math-BigInt-GMP
%define cpan_name Math-BigInt-GMP
Summary:Math::BigInt::GMP Perl module
Version:1.24
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Math-BigInt-GMP/
#Source: 
http://www.cpan.org/modules/by-module/Math/Math-BigInt-GMP-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  gmp-devel
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Math::BigInt) >= 1.87
BuildRequires:  perl(XSLoader) >= 0.02
BuildRequires:  perl(YAML)
Requires:   perl(Math::BigInt) >= 1.87
Requires:   perl(XSLoader) >= 0.02

%description
This package contains a replacement (drop-in) module for Math::BigInt's
core, Math::BigInt::Calc.pm. It needs the new versions of Math::BigInt and
Math::BigFloat as they are from Perl 5.7.x onwards.

Authors:

Tels 

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"

%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc BUGS CHANGES CREDITS LICENSE README TODO

%changelog





Remember to have fun...

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



commit perl-DateTime-Format-Builder for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-DateTime-Format-Builder for 
openSUSE:Factory
checked in at Wed May 18 10:37:14 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-DateTime-Format-Builder/perl-DateTime-Format-Builder.changes
  2010-12-01 10:45:27.0 +0100
@@ -0,0 +1,10 @@
+---
+Wed Dec  1 09:44:31 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sun May  9 13:18:03 UTC 2010 - l...@linux-schulserver.de
+
+- initial version 0.80
+

calling whatdependson for head-i586


New:

  DateTime-Format-Builder-0.80.tar.bz2
  perl-DateTime-Format-Builder.changes
  perl-DateTime-Format-Builder.spec



Other differences:
--
++ perl-DateTime-Format-Builder.spec ++
#
# spec file for package perl-DateTime-Format-Builder
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-DateTime-Format-Builder
%definecpan_name %( %{__sed} -e 's,perl-,,' <<< %{name} )
Summary:Create DateTime parser classes and objects
Url:http://search.cpan.org/perldoc?DateTime::Format::Builder
Group:  Development/Libraries/Perl
License:Artistic License
Version:0.80
Release:1
Source: %{cpan_name}-%{version}.tar.bz2
BuildRequires:  perl-macros
BuildRequires:  perl(DateTime)
BuildRequires:  perl(DateTime::Format::Strptime)
BuildRequires:  perl(Class::Factory::Util)
BuildRequires:  perl(Test::Pod)
BuildRequires:  perl(Test::Memory::Cycle)
Requires:   perl(DateTime)
Requires:   perl(DateTime::Format::Strptime)
Requires:   perl(Class::Factory::Util)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}

%description
DateTime::Format::Builder creates DateTime parsers. Many string formats of
dates and times are simple and just require a basic regular expression to
extract the relevant information. Builder provides a simple way to do this
without writing reams of structural code.

Builder provides a number of methods, most of which you'll never need, or at
least rarely need. They're provided more for exposing of the module's innards
to any subclasses, or for when you need to do something slightly beyond what I
expected.

Author:
---
Iain Truskett ,
Dave Rolsky 


%prep
%setup -n %{cpan_name}-%{version}

%build
perl Makefile.PL 
make %{?jobs:-j%jobs}

%check
make test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
rm -rf %{buildroot}

%files -f %{name}.files 
%defattr(-, root, root)
%doc Changes README MANIFEST

%changelog





Remember to have fun...

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



commit liboggz for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package liboggz for openSUSE:Factory
checked in at Wed May 18 10:36:10 CEST 2011.




--- liboggz/liboggz.changes 2011-01-15 16:39:48.0 +0100
+++ /mounts/work_src_done/STABLE/liboggz/liboggz.changes2011-05-17 
16:26:50.0 +0200
@@ -1,0 +2,11 @@
+Tue May 17 14:25:20 UTC 2011 - co...@opensuse.org
+
+- fix build (do not patch configure.ac)
+
+---
+Sun May  1 17:35:27 UTC 2011 - toddrme2...@gmail.com
+ 
+- Added 32bit compatibility libraries
+- Removed test for obsolete openSUSE versions
+ 
+---

calling whatdependson for head-i586


New:

  baselibs.conf



Other differences:
--
++ _service:set_version:liboggz.spec ++
--- /var/tmp/diff_new_pack.rm4mm8/_old  2011-05-18 10:35:27.0 +0200
+++ /var/tmp/diff_new_pack.rm4mm8/_new  2011-05-18 10:35:27.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package liboggz
+# spec file for package liboggz (Version 1.1.1)
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2010 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,13 @@
 
 Name:   liboggz
 Version:1.1.1
-Release:2
+Release: 0
 License:BSD3c
 Summary:Shared libraries for oggz
 Url:http://xiph.org/oggz/
 Group:  System/Libraries
 Source0:%{name}-%{version}.tar.bz2
+Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM %{name}-1.1.1-docdir.patch 
https://trac.xiph.org/ticket/1758 reddw...@opensuse.org -- This patch makes 
configure honor --docdir
 Patch0: %{name}-1.1.1-docdir.patch
 BuildRequires:  doxygen
@@ -42,7 +43,6 @@
 these files.
 
 %package -n liboggz%{_SO_nr}
-
 Summary:Shared Libraries For Oggz
 Group:  System/Libraries
 
@@ -55,7 +55,6 @@
 these files.
 
 %package -n oggz-tools
-License:BSD3c
 Summary:A library that provides parsing and seeking of Ogg-files
 Group:  Productivity/Multimedia/Sound/Utilities
 
@@ -67,7 +66,6 @@
 libannodex respectively.
 
 %package devel
-License:BSD3c
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
 Requires:   libogg-devel
@@ -78,13 +76,10 @@
 needed to develop applications that require these.
 
 %package doc
-License:BSD3c
 Summary:Documentation for Oggz
 Group:  Documentation/HTML
 Requires:   %{name}%{_SO_nr} = %{version}
-%if 0%{?suse_version} >= 1120
 BuildArch:  noarch
-%endif
 
 %description doc
 This package contains HTML documentation needed for development using
@@ -108,9 +103,6 @@
 %check
 %__make check
 
-%clean
-[ -d %{buildroot} -a %{buildroot} != "" ] && %__rm -rf %{buildroot}
-
 %post -n liboggz%{_SO_nr}  -p /sbin/ldconfig
 
 %postun -n liboggz%{_SO_nr} -p /sbin/ldconfig

++ liboggz.spec ++
--- /var/tmp/diff_new_pack.rm4mm8/_old  2011-05-18 10:35:27.0 +0200
+++ /var/tmp/diff_new_pack.rm4mm8/_new  2011-05-18 10:35:27.0 +0200
@@ -20,12 +20,13 @@
 
 Name:   liboggz
 Version:to_be_filled_by_service
-Release:2
+Release:3
 License:BSD3c
 Summary:Shared libraries for oggz
 Url:http://xiph.org/oggz/
 Group:  System/Libraries
 Source0:%{name}-%{version}.tar.bz2
+Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM %{name}-1.1.1-docdir.patch 
https://trac.xiph.org/ticket/1758 reddw...@opensuse.org -- This patch makes 
configure honor --docdir
 Patch0: %{name}-1.1.1-docdir.patch
 BuildRequires:  doxygen
@@ -55,7 +56,7 @@
 these files.
 
 %package -n oggz-tools
-License:BSD3c
+
 Summary:A library that provides parsing and seeking of Ogg-files
 Group:  Productivity/Multimedia/Sound/Utilities
 
@@ -67,7 +68,7 @@
 libannodex respectively.
 
 %package devel
-License:BSD3c
+
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
 Requires:   libogg-devel
@@ -78,13 +79,11 @@
 needed to develop applications that require these.
 
 %package doc
-License:BSD3c
+
 Summary:Documentation for Oggz
 Group:  Documentation/HTML
 Requires:   %{name}%{_SO_nr} = %{version}
-%if 0%{?suse_version} >= 1120
 BuildArch:  noarch
-%endif
 
 %description doc
 This package contains HTML documentation needed for development using
@@ -108,9 +107,6 @@
 %check
 %__make check
 
-%clean
-[ -d %{buildroot} -a %{buildroot} != "" ] && %__rm -rf %{buildroot}
-
 %post -n liboggz%{_SO_nr}  -p /sbin/ldconfig
 
 %postun -n liboggz%{

commit wine for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package wine for openSUSE:Factory
checked in at Wed May 18 10:33:28 CEST 2011.




--- wine/wine.changes   2011-02-24 17:53:13.0 +0100
+++ /mounts/work_src_done/STABLE/wine/wine.changes  2011-05-17 
12:58:20.0 +0200
@@ -1,0 +2,83 @@
+Mon May 16 17:45:44 CEST 2011 - meiss...@suse.de
+
+- escape a single \ with \\ in the wine-browsedrive.desktop file.
+
+---
+Sat May 14 14:21:25 CEST 2011 - meiss...@suse.de
+
+- Updated to 1.3.20 development snapshot
+  - Option to clip the mouse inside fullscreen windows.
+  - Support for persistent HTTP connections.
+  - Initial implementation of the XML writer.
+  - Support for drawing rectangles in the DIB engine.
+  - Volume control in MMDevAPI.
+  - More MSVC runtime functions.
+  - Various bug fixes.
+- updated winetricks
+
+---
+Fri Apr 29 20:41:37 CEST 2011 - meiss...@suse.de
+
+- Updated to 1.3.19 development snapshot
+  - New sound driver architecture for MMDevAPI.
+  - Better support for relative mouse events in DInput.
+  - Debugger support for the ARM platform.
+  - Various improvements in D3DX9.
+  - More MSVC runtime functions.
+  - Various bug fixes.
+
+---
+Fri Apr 29 11:27:34 UTC 2011 - meiss...@novell.com
+
+- Updated winetricks
+
+---
+Fri Apr 15 20:19:30 CEST 2011 - meiss...@suse.de
+
+- Updated to 1.3.18 development snapshot
+  - Support for mouse pointer clipping.
+  - Raw mouse events support using XInput2.
+  - First steps of a DIB engine implementation.
+  - More properties supported in DXDiag.
+  - New security tab in the Internet control panel.
+  - Improved video playback on Mac OS X.
+  - Various bug fixes.
+- Updated winetricks 
+
+---
+Fri Apr  1 23:54:35 CEST 2011 - meiss...@suse.de
+
+- Updated to 1.3.17 development snapshot
+  - Implementation of the new Vista file dialogs.
+  - Initial support for patching in MSI installers.
+  - Improvements to the calendar control.
+  - A few fixes for file associations.
+  - Menus cleaned up in built-in applications.
+  - Various bug fixes.
+- Updated winetricks 
+
+---
+Fri Mar 18 21:24:18 CET 2011 - meiss...@suse.de
+
+- Updated to 1.3.16 development snapshot
+  - New version of the Gecko engine, based on Firefox 4.
+  - Better support for Dwarf debugging information.
+  - Improved handling of animated cursors.
+  - GnuTLS no longer required on Mac OS X.
+  - Improvements to the GDI driver infrastructure.
+  - A number of MSI fixes for the .NET installers.
+  - Several GdiPlus improvements.
+  - Various bug fixes.
+- new winetricks release
+
+---
+Sat Mar  5 07:16:17 UTC 2011 - meiss...@suse.de
+
+- Updated to 1.3.15 development snapshot
+  - Support for changing network passwords.
+  - Reflection support in shader compiler.
+  - Tests no longer attempt to cope with Win9x behavior.
+  - A number of MSHTML and MSXML improvements.
+  - Various bug fixes.
+
+---

calling whatdependson for head-i586


Old:

  susepatches.patch
  wine-1.3.14.tar.bz2

New:

  wine-1.3.20.tar.bz2



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.ZH42uy/_old  2011-05-18 10:32:53.0 +0200
+++ /var/tmp/diff_new_pack.ZH42uy/_new  2011-05-18 10:32:53.0 +0200
@@ -30,7 +30,7 @@
 License:LGPLv2.1+
 Group:  System/Emulators/PC
 AutoReqProv:on
-Version:1.3.14
+Version:1.3.20
 Release:1
 Summary:An MS Windows Emulator
 Url:http://www.winehq.com
@@ -42,7 +42,8 @@
 Source4:wine.desktop
 Source5:ubuntuwine.tar.bz2
 # SUSE specific patches
-Patch0: susepatches.patch
+# - currently none, but add them here
+#Patch0: susepatches.patch
 Recommends: wine-gecko wine-mp3
 %ifarch %ix86 x86_64
 Requires:   wine-32bit = %version
@@ -99,7 +100,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
+#%patch0 -p1
 #
 cp %{S:3} .
 #

++ ubuntuwine.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ubuntuwine/wine-browsedrive.desktop 
new/ubuntuwine/wine-browsedrive.desktop
--- old/ubuntuwine/wine-browsedrive.desktop 2010-06-16 22:48:28.0 
+0200
+++ new/ubuntuwine/wine-browsedrive.desktop 2011-05-16 17:34:42.0 
+0200
@@ -1,18 +1,18 @@
 [Desktop Entry]
 X-SuSE-translate=false
-Name=Browse C:\ Drive
-GenericName=Browse C:\ Drive
-Name[sv]=Bläddra i C:\
-Name[de]=Durch

commit ktorrent for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package ktorrent for openSUSE:Factory
checked in at Wed May 18 10:32:39 CEST 2011.




--- KDE/ktorrent/ktorrent.changes   2011-03-17 07:55:24.0 +0100
+++ /mounts/work_src_done/STABLE/ktorrent/ktorrent.changes  2011-05-01 
20:40:59.0 +0200
@@ -1,0 +2,19 @@
+Sun May  1 18:28:40 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to 4.1.1:
+  * Make sure that libktorrent translation catalog is inserted (bko#269515)
+  * Fix wrong tooltip in QM preference page
+  * Make sure activities list is added again to the GUI after toolbars are
+edited (bko#269727)
+  * Prevent port conflicts from happening (bko#268989)
+  * Clear labels of BasicJobProgressWidget in constructor (bko#270035)
+  * Make tabbar widget icons follow KDE size changes (bko#270277)
+  * Fix crash in search plugin (bko#271516)
+- Spec file updates:
+  * Simplified License: to GPLv2+ which is the main license.
+  * Better fix for wrong-icon-size.
+  * Fix locales removal if suse_version is not set.
+  * Minor other updates.
+- Updated manpages.
+
+---

calling whatdependson for head-i586


Old:

  ktorrent-4.1.0.tar.bz2

New:

  ktorrent-4.1.1.tar.bz2



Other differences:
--
++ ktorrent.spec ++
--- /var/tmp/diff_new_pack.r5S4aH/_old  2011-05-18 10:31:15.0 +0200
+++ /var/tmp/diff_new_pack.r5S4aH/_new  2011-05-18 10:31:15.0 +0200
@@ -18,14 +18,14 @@
 
 
 Name:   ktorrent
-Version:4.1.0
+Version:4.1.1
 Release:1
 Summary:KDE BitTorrent Client
 
-License:GPLv2+ and GPLv3 and LGPLv2 and LGPLv2+ and LGPLv2.1+ and BSD
+License:GPLv2+
 Url:http://ktorrent.org/
 Group:  Productivity/Networking/File-Sharing
-Source0:http://ktorrent.org/downloads/4.1.0/%{name}-%{version}.tar.bz2
+Source0:http://ktorrent.org/downloads/4.1.1/%{name}-%{version}.tar.bz2
 # Mimetype icons
 Source1:icons.tar.bz2
 Source2:ktorrent.1
@@ -42,7 +42,7 @@
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdepimlibs4-devel
-BuildRequires:  libktorrent-devel >= 1.1.0
+BuildRequires:  libktorrent-devel >= 1.1.1
 BuildRequires:  taglib-devel
 %if 0%{?suse_version}
 BuildRequires:  update-desktop-files
@@ -50,8 +50,12 @@
 %kde4_pimlibs_requires
 %kde4_runtime_requires
 Recommends: %{name}-lang = %{version}
-Obsoletes:  ktorrent-devel
-Obsoletes:  libktcore12
+# ktorrent-devel was last used in openSUSE 11.4
+Provides:   ktorrent-devel = %{version}
+Obsoletes:  ktorrent-devel < %{version}
+# libktcore12 was last used in openSUSE 11.4
+Provides:   libktcore12 = %{version}
+Obsoletes:  libktcore12 < %{version}
 
 %description
 KTorrent is a bittorrent application for KDE which allows you to download files
@@ -81,13 +85,14 @@
 # Not needed, fix "devel-file-in-non-devel-package" rpmlint warning
 rm -f %{buildroot}%{_kde4_libdir}/libktcore.so
 
-# Fix wrong-icon-size
-convert -scale 22x22! 
%{buildroot}%{_kde4_iconsdir}/hicolor/22x22/actions/kt-encrypted.png 
%{buildroot}%{_kde4_iconsdir}/hicolor/22x22/actions/kt-encrypted.png
+# patch image with wrong dimensions - fix rpmlint warning "wrong-icon-size"
+mogrify -extent 16x16 -background transparent -gravity center 
%{buildroot}%{_kde4_iconsdir}/hicolor/22x22/actions/kt-encrypted.png
+mogrify -scale 22x22 -background transparent 
%{buildroot}%{_kde4_iconsdir}/hicolor/22x22/actions/kt-encrypted.png
 
 # Add man pages from help2man edited.
 mkdir -p %{buildroot}%{_mandir}/man1
-cp %{S:2} %{buildroot}%{_mandir}/man1
-cp %{S:3} %{buildroot}%{_mandir}/man1
+cp -a %{S:2} %{buildroot}%{_mandir}/man1
+cp -a %{S:3} %{buildroot}%{_mandir}/man1
 
 # Fix any .py files with shebangs and wrong permissions.
 if test -z `find %{buildroot} -name *.py -perm 0644 -print0|xargs -0r grep -l 
'#!'`; \
@@ -100,7 +105,7 @@
 %endif
 
 # Remove unneeded locales
-%if 0%{?suse_version} < 1140
+%if 0%{?suse_version} && 0%{?suse_version} < 1140
 rm -rf %{buildroot}%{_datadir}/locale/ast/
 rm -rf %{buildroot}%{_datadir}/locale/hne/
 rm -rf %{buildroot}%{_datadir}/locale/sr@ijekavian/
@@ -145,34 +150,34 @@
 %{_kde4_libdir}/libktcore.so.*
 %{_kde4_applicationsdir}/ktorrent.desktop
 %doc %{_kde4_htmldir}/en/ktorrent/
-%{_kde4_iconsdir}/*/*/actions/kt-add-feeds.*
-%{_kde4_iconsdir}/*/*/actions/kt-add-filters.*
-%{_kde4_iconsdir}/*/*/actions/kt-bandwidth-scheduler.*
-%{_kde4_iconsdir}/*/*/actions/kt-change-tracker.*
-%{_kde4_iconsdir}/*/*/actions/kt-check-data.*
-%{_kde4_iconsdir}/*/*/actions/kt-chunks.*
-%{_kde4_iconsdir}/*/*/actions/kt-encrypted.*
-%{_kde4_iconsdir}/*/*/actions/kt-info-widget.*
-%{_kde4_iconsdir}/*/*/actions/kt-magnet.*
-%{_kde4_iconsdir}/*/*/actions/kt-pause.*
-%{_kde4_iconsdir}/*/*/actions/kt-plugins.*
-%{_kde4_iconsdir}/*/*/ac

commit libktorrent for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package libktorrent for openSUSE:Factory
checked in at Wed May 18 10:31:08 CEST 2011.




--- libktorrent/libktorrent.changes 2011-05-02 02:53:01.0 +0200
+++ /mounts/work_src_done/STABLE/libktorrent/libktorrent.changes
2011-05-02 22:05:07.0 +0200
@@ -1,0 +2,8 @@
+Mon May  2 20:04:12 UTC 2011 - asterios.dra...@gmail.com
+
+- Spec file updates:
+  * Simplified License: to GPLv2+ which is the main license.
+  * Fix locales removal if suse_version is not set.
+  * %kde_post_install is not needed.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libktorrent.spec ++
--- /var/tmp/diff_new_pack.iENXwd/_old  2011-05-18 10:30:42.0 +0200
+++ /var/tmp/diff_new_pack.iENXwd/_new  2011-05-18 10:30:42.0 +0200
@@ -19,10 +19,10 @@
 
 Name:   libktorrent
 Version:1.1.1
-Release:1
+Release:2
 Summary:Torrent Downloading Library
 
-License:GPLv2+ and LGPLv2+ and MIT and BSD
+License:GPLv2+
 Url:http://ktorrent.org/
 Group:  Productivity/Networking/File-Sharing
 Source0:http://ktorrent.org/downloads/4.1.1/%{name}-%{version}.tar.bz2
@@ -40,7 +40,7 @@
 
 %package devel
 Summary:Development files for libktorrent
-License:GPLv2+ and LGPLv2+ and MIT and BSD
+License:GPLv2+
 Group:  Development/Libraries/C and C++
 Requires:   libktorrent3 = %{version}
 
@@ -49,7 +49,7 @@
 
 %package -n libktorrent3
 Summary:Torrent Downloading Library
-License:GPLv2+ and LGPLv2+ and MIT and BSD
+License:GPLv2+
 Group:  Productivity/Networking/File-Sharing
 Recommends: libktorrent3-lang = %{version}
 
@@ -70,7 +70,7 @@
 cd ..
 
 # Remove unneeded locales
-%if 0%{?suse_version} < 1140
+%if 0%{?suse_version} && 0%{?suse_version} < 1140
  rm -rf %{buildroot}%{_datadir}/locale/ast/
  rm -rf %{buildroot}%{_datadir}/locale/hne/
  rm -rf %{buildroot}%{_datadir}/locale/sr@ijekavian/
@@ -79,8 +79,6 @@
 
 %find_lang %{name}
 
-%kde_post_install
-
 %clean
 rm -rf %{buildroot}
 






Remember to have fun...

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



commit swig for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package swig for openSUSE:Factory
checked in at Wed May 18 10:30:32 CEST 2011.




--- swig/swig.changes   2010-04-06 15:39:55.0 +0200
+++ /mounts/work_src_done/STABLE/swig/swig.changes  2011-05-02 
18:01:34.0 +0200
@@ -1,0 +2,22 @@
+Mon May  2 15:36:04 UTC 2011 - idoen...@novell.com
+
+- Update to swig 2.0.3 
+  * Much better nested class/struct support.
+  * Much improved template partial specialization and explicit 
+specialization handling.
+  * Namespace support improved with the 'nspace' feature where 
+namespaces can be automatically translated into Java packages or C# 
namespaces.
+  * Improved typemap and symbol table debugging.
+  * Numerous subtle typemap matching rule changes when using the 
+default (SWIGTYPE) type. These now work much like C++ class template 
+partial specialization matching.
+  * Other small enhancements for typemaps. 
+Typemap fragments are also now official and documented.
+  * Warning and error display refinements.
+  * Wrapping of shared_ptr is improved and documented now.
+  * Numerous C++ unary scope operator (::) fixes.
+  * Better support for boolean expressions.
+  * Various bug fixes and improvements in the Allegrocl, C#, Java, 
+Lua, Octave, PHP, Python, R, Ruby and XML modules.
+
+---

calling whatdependson for head-i586


Old:

  swig-1.3.36-perl-long-long.patch
  swig-1.3.40.tar.bz2
  swig-fixassert.diff

New:

  swig-2.0.3-disable-broken-tests.patch
  swig-2.0.3-support-python32.patch
  swig-2.0.3-use-python-capsule-api.patch
  swig-2.0.3.tar.bz2



Other differences:
--
++ swig.spec ++
--- /var/tmp/diff_new_pack.bkGkWs/_old  2011-05-18 10:28:21.0 +0200
+++ /var/tmp/diff_new_pack.bkGkWs/_new  2011-05-18 10:28:21.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package swig (Version 1.3.40)
+# spec file for package swig
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   swig
-BuildRequires:  boost-devel gcc-c++ python-devel
-BuildRequires:  perl python-devel
+BuildRequires:  boost-devel
+BuildRequires:  gcc-c++
+BuildRequires:  pcre-devel
+BuildRequires:  perl
+BuildRequires:  python-devel
 %if 0%{?rhel_version} > 0
 BuildRequires:  -vim
 %endif
 %if 0%{?fedora} + 0%{?rhel_version} > 0
-BuildRequires:  pkgconfig ruby-devel
+BuildRequires:  pkgconfig
+BuildRequires:  ruby-devel
 %if 0%{?rhel_version} == 0
 BuildRequires:  perl-devel
 %endif
@@ -36,24 +39,28 @@
 %endif
 # SLE9
 %if 0%{?suse_version} < 920
-BuildRequires:  pkgconfig ruby
+BuildRequires:  pkgconfig
+BuildRequires:  ruby
 %else
+BuildRequires:  pkg-config
 # SLE10 and up
 BuildRequires:  ruby-devel
-BuildRequires:  pkg-config
 %endif
 %endif
+Version:2.0.3
+Release:1
+License:GPLv3+ and BSD
+Summary:Simplified Wrapper and Interface Generator
 Url:http://www.swig.org
-License:BSD3c
 Group:  Development/Languages/C and C++
-AutoReqProv:on
-Summary:Simplified Wrapper and Interface Generator
-Version:1.3.40
-Release:3
 Source: swig-%{version}.tar.bz2
-Patch1: swig-1.3.36-perl-long-long.patch
-Patch2: swig-fixassert.diff
-Patch3: adapt-perl512.diff
+Patch1: adapt-perl512.diff
+# PATCH-FIX-UPSTREAM swig-2.0.3-disable-broken-tests.patch idoen...@suse.de -- 
Disable broken tests
+Patch2: swig-2.0.3-disable-broken-tests.patch
+# PATCH-FIX-UPSTREAM swig-2.0.3-use-python-capsule-api.patch idoen...@suse.de 
-- Use Python capsule api
+Patch3: swig-2.0.3-use-python-capsule-api.patch
+# PATCH-FIX-UPSTREAM swig-2.0.3-support-python32.patch idoen...@suse.de -- 
Support Python 3.2
+Patch4: swig-2.0.3-support-python32.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -66,13 +73,6 @@
 documentation generation, module and library management, extensive
 customization options, and more.
 
-
-
-Authors:
-
-Dave Beazley 
-William S Fulton 
-
 %package doc
 License:BSD3c
 Summary:SWIG Manual
@@ -94,12 +94,6 @@
 
 This package contains the SWIG manual.
 
-
-
-Authors:
-
-Dave Beazley 
-
 %package examples
 License:BSD3c
 Summary:SWIG example files
@@ -119,54 +113,45 @@
 This package contains SWIG examples, useful both for testing and
 understandig SWIG usage.
 
-
-
-Authors:
-
-Dave Beazley 
-
 %prep
 %setup -q
-%patch1
+%patch1 -p1

commit aaa_base for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory
checked in at Wed May 18 10:28:07 CEST 2011.




--- aaa_base/aaa_base.changes   2011-05-09 16:23:59.0 +0200
+++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes  2011-05-17 
14:43:10.0 +0200
@@ -1,0 +2,12 @@
+Tue May 17 12:16:26 UTC 2011 - lnus...@suse.de
+
+- create loop devices in %post (bnc#661715)
+- don't mount /sys/fs/cgroup/systemd as it makes programs think
+  systemd is in use
+
+---
+Mon May  9 15:40:00 UTC 2011 - r...@novell.com
+
+- rc.status: in rc_wait test for existance of binary
+
+---

calling whatdependson for head-i586




Other differences:
--
++ aaa_base.spec ++
--- /var/tmp/diff_new_pack.obssjF/_old  2011-05-18 10:19:06.0 +0200
+++ /var/tmp/diff_new_pack.obssjF/_new  2011-05-18 10:19:06.0 +0200
@@ -21,7 +21,7 @@
 
 Name:   aaa_base
 Version:11.5
-Release:77
+Release:79
 License:GPLv2+
 Group:  System/Fhs
 Url:http://gitorious.org/opensuse/aaa_base
@@ -207,14 +207,14 @@
 /var/adm/fillup-templates/sysconfig.windowmanager
 %dir /lib/udev
 %dir /lib/udev/devices
-%attr(660,root,disk) %dev(b,7,0) /lib/udev/devices/loop0
-%attr(660,root,disk) %dev(b,7,1) /lib/udev/devices/loop1
-%attr(660,root,disk) %dev(b,7,2) /lib/udev/devices/loop2
-%attr(660,root,disk) %dev(b,7,3) /lib/udev/devices/loop3
-%attr(660,root,disk) %dev(b,7,4) /lib/udev/devices/loop4
-%attr(660,root,disk) %dev(b,7,5) /lib/udev/devices/loop5
-%attr(660,root,disk) %dev(b,7,6) /lib/udev/devices/loop6
-%attr(660,root,disk) %dev(b,7,7) /lib/udev/devices/loop7
+%ghost %attr(660,root,disk) %dev(b,7,0) /lib/udev/devices/loop0
+%ghost %attr(660,root,disk) %dev(b,7,1) /lib/udev/devices/loop1
+%ghost %attr(660,root,disk) %dev(b,7,2) /lib/udev/devices/loop2
+%ghost %attr(660,root,disk) %dev(b,7,3) /lib/udev/devices/loop3
+%ghost %attr(660,root,disk) %dev(b,7,4) /lib/udev/devices/loop4
+%ghost %attr(660,root,disk) %dev(b,7,5) /lib/udev/devices/loop5
+%ghost %attr(660,root,disk) %dev(b,7,6) /lib/udev/devices/loop6
+%ghost %attr(660,root,disk) %dev(b,7,7) /lib/udev/devices/loop7
 
 %files extras
 %defattr(-,root,root)

++ aaa_base.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/aaa_base.post new/aaa_base/aaa_base.post
--- old/aaa_base/aaa_base.post  2011-05-09 16:21:26.0 +0200
+++ new/aaa_base/aaa_base.post  2011-05-17 14:16:22.0 +0200
@@ -206,4 +206,13 @@
 fi
 fi
 
+# create loop devices here instead of doing it in rpm to allow
+# graceful fail (bnc#661715)
+for i in 0 1 2 3 4 5 6 7; do
+   mkdir -p /lib/udev/devices
+   test -b /lib/udev/devices/loop$i || continue
+   /bin/mknod -m 0660 /lib/udev/devices/loop$i b 7 $i || break
+   chown root:disk /lib/udev/devices/loop$i
+done
+
 exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/init.d/boot.localfs 
new/aaa_base/files/etc/init.d/boot.localfs
--- old/aaa_base/files/etc/init.d/boot.localfs  2011-05-09 16:21:26.0 
+0200
+++ new/aaa_base/files/etc/init.d/boot.localfs  2011-05-17 14:16:22.0 
+0200
@@ -281,19 +281,6 @@
mount -t securityfs securityfs /sys/kernel/security
esac
fi
-   if test -d /sys/fs/cgroup -a "$(stat -fc '%T' /sys/fs/cgroup)" != tmpfs 
; then
-   case "$memfs" in
-   *,cgroup,*)
-   mount -t tmpfs -o nosuid,nodev,noexec,mode=755 tmpfs 
/sys/fs/cgroup && \
-   mkdir /sys/fs/cgroup/systemd && \
-   mount -t cgroup -o nosuid,nodev,noexec,none,name=systemd cgroup 
/sys/fs/cgroup/systemd
-   esac
-   case "$memfs" in
-   *,cpuset,*)
-   mkdir /sys/fs/cgroup/cpuset && \
-   mount -t cgroup -o nosuid,nodev,noexec,cpuset cpuset 
/sys/fs/cgroup/cpuset
-   esac
-   fi
# remount to make sure options from fstab are honoured
mount -oremount /proc
mount -oremount /sys
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/rc.status 
new/aaa_base/files/etc/rc.status
--- old/aaa_base/files/etc/rc.status2011-05-09 16:21:26.0 +0200
+++ new/aaa_base/files/etc/rc.status2011-05-17 14:16:22.0 +0200
@@ -369,6 +369,7 @@
parent_processes="${parent_processes:+$parent_processes:}${ppid}"
 done
 for comm ; do
+   test -s $comm || continue
ppid="$(/sbin/pidofproc $comm 2> /dev/null)" || continue
parent_processes="${parent_processes:+$parent_processes:}${ppid}"
 done


++

commit gcc45 for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package gcc45 for openSUSE:Factory
checked in at Wed May 18 10:14:36 CEST 2011.




--- gcc45/gcc45-testresults.changes 2011-04-19 13:22:11.0 +0200
+++ /mounts/work_src_done/STABLE/gcc45/gcc45-testresults.changes
2011-05-11 10:12:45.0 +0200
@@ -1,0 +2,11 @@
+Wed May 11 08:12:08 UTC 2011 - rguent...@novell.com
+
+- Disable icecream and cross compiler builds.
+
+---
+Thu Apr 28 15:41:45 UTC 2011 - rguent...@novell.com
+
+- Update to gcc-4_5-branch head (r173117).
+- Includes GCC 4.5.3 release.
+
+---
gcc45.changes: same change
libffi45.changes: same change
libgcj45.changes: same change

calling whatdependson for head-i586


Old:

  cross-hppa-gcc-icecream-backend.changes
  cross-hppa-gcc-icecream-backend.spec
  cross-i386-gcc-icecream-backend.changes
  cross-i386-gcc-icecream-backend.spec
  cross-ia64-gcc-icecream-backend.changes
  cross-ia64-gcc-icecream-backend.spec
  cross-ppc-gcc-icecream-backend.changes
  cross-ppc-gcc-icecream-backend.spec
  cross-ppc64-gcc-icecream-backend.changes
  cross-ppc64-gcc-icecream-backend.spec
  cross-s390-gcc-icecream-backend.changes
  cross-s390-gcc-icecream-backend.spec
  cross-s390x-gcc-icecream-backend.changes
  cross-s390x-gcc-icecream-backend.spec
  cross-x86_64-gcc-icecream-backend.changes
  cross-x86_64-gcc-icecream-backend.spec
  gcc-4.5.2-20110419.tar.bz2
  pr47976.diff

New:

  gcc-4.5.3-20110428.tar.bz2



Other differences:
--
++ gcc45-testresults.spec ++
--- /var/tmp/diff_new_pack.QknRjt/_old  2011-05-18 10:13:24.0 +0200
+++ /var/tmp/diff_new_pack.QknRjt/_new  2011-05-18 10:13:24.0 +0200
@@ -159,7 +159,7 @@
 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
 
 Url:http://gcc.gnu.org/
-Version:4.5.2_20110419
+Version:4.5.3_20110428
 Release:1
 %define gcc_version %(echo %version | sed 's/_.*//')
 %define gcc_dir_version %(echo %gcc_version | cut -d '.' -f 1-2)
@@ -219,7 +219,6 @@
 Patch30:gcc43-no-unwind-tables.diff
 Patch31:pr43270.diff
 Patch32:gcc45-disable-ipa-sra-O2.diff
-Patch35:pr47976.diff
 # A set of patches from the RH srpm
 Patch51:gcc41-ia64-stack-protector.patch
 Patch55:gcc41-java-slow_pthread_self.patch
@@ -420,7 +419,6 @@
 %patch30
 %patch31
 %patch32
-%patch35
 %patch51
 %patch55
 %patch57

++ gcc45.spec ++
--- /var/tmp/diff_new_pack.QknRjt/_old  2011-05-18 10:13:24.0 +0200
+++ /var/tmp/diff_new_pack.QknRjt/_new  2011-05-18 10:13:24.0 +0200
@@ -141,7 +141,7 @@
 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
 
 Url:http://gcc.gnu.org/
-Version:4.5.2_20110419
+Version:4.5.3_20110428
 Release:1
 %define gcc_version %(echo %version | sed 's/_.*//')
 %define gcc_dir_version %(echo %gcc_version | cut -d '.' -f 1-2)
@@ -201,7 +201,6 @@
 Patch30:gcc43-no-unwind-tables.diff
 Patch31:pr43270.diff
 Patch32:gcc45-disable-ipa-sra-O2.diff
-Patch35:pr47976.diff
 # A set of patches from the RH srpm
 Patch51:gcc41-ia64-stack-protector.patch
 Patch55:gcc41-java-slow_pthread_self.patch
@@ -231,7 +230,8 @@
 
 # COMMON-END
 %package -n gcc45-32bit
-License:GPLv3+
+
+
 Summary:The GNU C Compiler 32bit support
 Group:  Development/Languages/C and C++
 AutoReqProv:on
@@ -253,7 +253,8 @@
 This package contains 32bit support for the GNU Compiler Collection.
 
 %package -n gcc45-64bit
-License:GPLv3+
+
+
 Summary:The GNU C Compiler 64bit support
 Group:  Development/Languages/C and C++
 AutoReqProv:on
@@ -1146,7 +1147,8 @@
 
 
 %package -n gcc45-gij
-License:GPLv2+ <= %{version}-%{release}
@@ -1159,7 +1161,7 @@
 # PACKAGE-BEGIN
 # PACKAGE-BEGIN
 %package -n libffi45
-License:BSD3c
+License:BSD 3-Clause
 Summary:Foreign Function Interface library
 Group:  Development/Languages/C and C++
 AutoReqProv:on
@@ -1180,7 +1182,7 @@
 # PACKAGE-BEGIN
 
 %package -n libffi45-32bit
-License:BSD3c
+License:BSD 3-Clause
 Summary:Foreign Function Interface library
 Group:  Development/Languages/C and C++
 AutoReqProv:on
@@ -1201,7 +1203,7 @@
 # PACKAGE-BEGIN
 
 %package -n libffi45-64bit
-License:BSD3c
+License:BSD 3-Clause
 Summary:Foreign Function Interface library
 Group:  Development/Languages/C and C++
 AutoReqProv:on
@@ -1223,7 +1225,7 @@
 # PACKAGE-BEGIN
 
 %package -n libffi45-devel
-License:BSD3c
+License:BSD 3-Clause
 Summary:Foreign Function Interface library development files
 Group:  Development/Languages/C and C++

commit perl-DateTime-Format-MySQL for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-DateTime-Format-MySQL for 
openSUSE:Factory
checked in at Wed May 18 10:07:57 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-DateTime-Format-MySQL/perl-DateTime-Format-MySQL.changes
  2011-02-17 17:39:19.0 +0100
@@ -0,0 +1,17 @@
+---
+Thu Feb 17 14:48:21 UTC 2011 - j...@novell.com
+
+- recreated by cpanspec 1.78.03
+- removed obsolete vendor patch (Makefile.PL)
+  o using Build.PL
+
+---
+Wed Dec  1 13:31:46 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sun May  9 13:12:48 UTC 2010 - l...@linux-schulserver.de
+
+- initial version 0.04
+

calling whatdependson for head-i586


New:

  DateTime-Format-MySQL-0.04.tar.bz2
  perl-DateTime-Format-MySQL.changes
  perl-DateTime-Format-MySQL.spec



Other differences:
--
++ perl-DateTime-Format-MySQL.spec ++
#
# spec file for package perl-DateTime-Format-MySQL
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   perl-DateTime-Format-MySQL
Version:0.04
Release:1
License:GPL+ or Artistic
%define cpan_name DateTime-Format-MySQL
Summary:Parse and format MySQL dates and times
Url:http://search.cpan.org/dist/DateTime-Format-MySQL/
Group:  Development/Libraries/Perl
Source: 
http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-MySQL-0.04.tar.bz2
# Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Module::Build)
BuildRequires:  perl(DateTime)
BuildRequires:  perl(DateTime::Format::Builder) >= 0.6
Requires:   perl(DateTime)
Requires:   perl(DateTime::Format::Builder) >= 0.6
%{perl_requires}

%description
This module understands the formats used by MySQL for its DATE, DATETIME,
TIME, and TIMESTAMP data types. It can be used to parse these formats in
order to create DateTime objects, and it can take a DateTime object and
produce a string representing it in the MySQL format.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}

%check
./Build test

%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes LICENSE README

%changelog





Remember to have fun...

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



commit perl-DateTime-Format-Strptime for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-DateTime-Format-Strptime for 
openSUSE:Factory
checked in at Wed May 18 10:05:53 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.changes
2010-12-01 14:42:41.0 +0100
@@ -0,0 +1,72 @@
+---
+Wed Dec  1 13:31:47 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sun Oct 17 16:54:30 UTC 2010 - ch...@computersalat.de
+
+- update to 1.5000
+  - This module did not recognize UTC as a valid time zone. RT #59209.
+- added deps patch
+
+---
+Fri Jul  2 15:00:46 UTC 2010 - ch...@computersalat.de
+
+- update to 1.4000
+  - Actually update $VERSION in module file. Reported by David Wheeler.
+- 1.3000 2010-06-26
+  - Specifiers which allowed for leading space before a number (like %e)
+would cause DateTime.pm to throw an error if the date being parsed
+actually contained leading space. Patch by Alex Vandiver. RT #58459.
+  - License is now Artistic 2.0
+- 1.2000 2010-03-19
+  - Updated to use non-deprecated DateTime::Locale API
+- 1.1000 2009-07-13 -- Regex Pattern
+  - If the pattern you pass in is a regular expression, that will be honored.
+  - Changed the locale tests to use require the latest version of Locale
+until the target stops moving.
+- spec created by cpanspec 1.78
+  - noarch
+
+---
+Sat Jul 25 19:36:40 CEST 2009 - ch...@computersalat.de
+
+- spec mods
+  * removed ^--
+  * removed ^#-
+
+---
+Mon Jun 22 13:38:05 CEST 2009 - ch...@computersalat.de
+
+- fixed Summary
+
+---
+Sun Jun 21 17:29:33 CEST 2009 - ch...@computersalat.de
+
+- update to 1.0901
+  - 1.0901 2009-05-16 -- Official release of above
+  - 1.0900_01 2009-04-18 -- DEVELOPER RELEASE ONLY
+   - Makefile.PL changes for Windows users as per issue #16
+  - 1.0900 2009-02-22
+   - Another pile-o-bugs
+   - It seems that I also wasn't seeing notifications from RT
+ (please don't use it, use the Gooogle project) so all the
+ following are fixed:
+   36672   Started failing mid May
+   23313   Bug handling time zones like America/New_York
+   2   Module dies even when on_error is 'undef'
+   23768   Olson timezone handling incorrect
+   22450   locale test failing with bleadperl
+   20487   nmake test_more fail (with patch); incorrect
+   META.yml
+   12071   format_datetime uses datetime locale rather than
+   format locale
+   11863   bug in DateTime::Format::Strptime 1.0601 when 
using %s
+   - And a couple from Google:
+   #8  Add DateTime::Locale to documentation
+   #10 Parsing bug -- can't detect word boundry after 
month abbr
+- added perl-macros
+  o autogen filelist with perl_gen_filelist
+- spec mods
+  o fixed deps

calling whatdependson for head-i586


New:

  DateTime-Format-Strptime-1.5000-deps.patch
  DateTime-Format-Strptime-1.5000.tar.bz2
  perl-DateTime-Format-Strptime.changes
  perl-DateTime-Format-Strptime.spec



Other differences:
--
++ perl-DateTime-Format-Strptime.spec ++
#
# spec file for package perl-DateTime-Format-Strptime
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-DateTime-Format-Strptime
%define cpan_name DateTime-Format-Strptime
Summary:Parse and format strp and strf time patterns
Version:1.5000
Release:1
License:Artistic 2.0
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/DateTime-Format-Strp

commit perl-Mozilla-CA for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Mozilla-CA for openSUSE:Factory
checked in at Wed May 18 10:00:52 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Mozilla-CA/perl-Mozilla-CA.changes
2011-03-25 15:21:53.0 +0100
@@ -0,0 +1,5 @@
+---
+Fri Mar 25 15:08:34 CET 2011 - dmuel...@suse.de
+
+- Initial package (20110301)
+

calling whatdependson for head-i586


New:

  Mozilla-CA-20110301.tar.gz
  perl-Mozilla-CA.changes
  perl-Mozilla-CA.spec



Other differences:
--
++ perl-Mozilla-CA.spec ++
#
# spec file for package perl-Mozilla-CA
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

# norootforbuild


Name:   perl-Mozilla-CA
Version:20110301
Release:1
Summary:Library for handling Mozilla's CA cert bundle in PEM format
Source: 
http://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-%{version}.tar.gz
Url:http://search.cpan.org/~abh/Mozilla-CA-20110301/
Group:  Development/Libraries/Perl
License:GPLv2+ ; LGPLv2.1+ ; MPLv1.1+
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
BuildRequires:  make perl
Requires:   perl = %{perl_version}

%description
Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority
certificates in a form that can be consumed by modules and libraries
based on OpenSSL.

The module provide a single function:

SSL_ca_file()
Returns the absolute path to the Mozilla's CA cert bundle PEM file.

%prep
%setup -q -n "Mozilla-CA-%{version}"
%__sed -i '/^auto_install/d' Makefile.PL

%build
%__perl Makefile.PL PREFIX="%{_prefix}"
%__make

%install
%perl_make_install
%perl_process_packlist
%if 0%{?suse_version} <= 1130
rm -rf %{buildroot}%{perl_vendorarch}
%endif

%clean
%__rm -rf "%{buildroot}"

%files
%defattr(-,root,root)
%dir %{perl_vendorlib}/Mozilla
%dir %{perl_vendorlib}/Mozilla/CA
%{perl_vendorlib}/Mozilla/CA.pm
%{perl_vendorlib}/Mozilla/CA/cacert.pem
%{_mandir}/man3/Mozilla::CA.3pm.gz
%if 0%{?suse_version} <= 1130
%{_var}/adm/perl-modules/%name
%endif

%changelog





Remember to have fun...

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



commit perl-Perl-Version for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Perl-Version for 
openSUSE:Factory
checked in at Wed May 18 09:57:21 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Perl-Version/perl-Perl-Version.changes
2011-05-16 10:58:19.0 +0200
@@ -0,0 +1,11 @@
+---
+Mon May 16 08:52:22 UTC 2011 - co...@opensuse.org
+
+- updated to 1.011
+
+---
+Fri Jan 14 11:33:26 UTC 2011 - co...@novell.com
+
+- initial package 1.010
+  * created by cpanspec 1.78.03
+

calling whatdependson for head-i586


New:

  Perl-Version-1.011.tar.gz
  perl-Perl-Version.changes
  perl-Perl-Version.spec



Other differences:
--
++ perl-Perl-Version.spec ++
#
# spec file for package perl-Perl-Version
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   perl-Perl-Version
Version:1.011
Release:1
License:GPL+ or Artistic
%define cpan_name Perl-Version
Summary:Parse and manipulate Perl version strings
Url:http://search.cpan.org/dist/Perl-Version/
Group:  Development/Libraries/Perl
Source: 
http://www.cpan.org/authors/id/A/AN/ANDYA/%{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(File::Slurp) >= .12
Requires:   perl(File::Slurp) >= .12
%{perl_requires}

%description
Perl::Version provides a simple interface for parsing, manipulating and
formatting Perl version strings.

Unlike version.pm (which concentrates on parsing and comparing version
strings) Perl::Version is designed for cases where you'd like to parse a
version, modify it and get back the modified version formatted like the
original.

For example:

my $version = Perl::Version->new( '1.2.3' );
$version->inc_version;
print "$version\n";

prints

1.3.0

whereas

my $version = Perl::Version->new( 'v1.02.03' );
$version->inc_version;
print "$version\n";

prints

v1.03.00

Both are representations of the same version and they'd compare equal but
their formatting is different.

Perl::Version tries hard to guess and recreate the format of the original
version and in most cases it succeeds. In rare cases the formatting is
ambiguous. Consider

1.10.03

Do you suppose that second component '10' is zero padded like the third
component? Perl::Version will assume that it is:

my $version = Perl::Version->new( '1.10.03' );
$version->inc_revision;
print "$version\n";

will print

2.00.00

If all of the components after the first are the same length (two
characters in this case) and any of them begins with a zero Perl::Version
will assume that they're all zero padded to the same length.

The first component and any alpha suffix are handled separately. In each
case if either of them starts with a zero they will be zero padded to the
same length when stringifying the version.

%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes examples Notes.txt README

%changelog





Remember to have fun...

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



commit bomberclone for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package bomberclone for openSUSE:Factory
checked in at Wed May 18 09:51:30 CEST 2011.




--- bomberclone/bomberclone.changes 2008-01-29 21:50:08.0 +0100
+++ /mounts/work_src_done/STABLE/bomberclone/bomberclone.changes
2011-05-17 00:02:23.0 +0200
@@ -1,0 +2,31 @@
+Mon May 16 21:50:13 UTC 2011 - reddw...@opensuse.org
+
+- update to 0.11.9
+  * changed: opengamecache had to move to my own server. New
+address: ogc.gulpe.de:1
+  * fixed: bug with selecting a player gfx.
+  * bug about compute points of the winner in multiplayer mode
+  * fixed: bug for server for coputing point (Suppress all process
+in reception of playerdata)
+  * display points on general menu
+  * scorring now a unique players wins a round add 1 point (bonus
+for victory) and numer of player killed by the winner
+  * Added Joystick support
+  * Added some more resolutions. (requested by some users)
+  * Fixed some drawing issues with flying bombs.
+  * The last special item use was lost on clients in a network
+game.
+  * Fixed problem with kicked bombs can travel in time.
+  * Special settings will be saved into the config file.
+  * Fixed problem on slow networks with the loop that the selected
+player gfx gots selected and deselected. (infinite loop on the
+network)
+  * Fixed problem with overwriting the servers address on clients
+  * Multiple bug fixes
+- fixed gcc 4.6 compilations problems
+- fixed math functions and SDL detection
+- made it honor configure options
+- added desktop file (menu entry)
+- cleaned with spec-cleaner
+
+---

calling whatdependson for head-i586


Old:

  bomberclone-0.11.7.tar.bz2
  bomberclone-0.11.7_array-subscript.patch
  bomberclone-0.11.7_prototype.patch
  bomberclone-docpath.patch

New:

  _service
  _service:recompress:download_url:bomberclone-0.11.9.tar.bz2
  _service:set_version:bomberclone.spec
  bomberclone-0.11.9-dirs.patch
  bomberclone-0.11.9-gcc46.patch
  bomberclone-0.11.9-libm.patch
  bomberclone-0.11.9-prototype.patch
  bomberclone-0.11.9-sdl.patch
  bomberclone.desktop



Other differences:
--
++ _service:set_version:bomberclone.spec ++
#
# spec file for package bomberclone (Version 0.11.9)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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



Name:   bomberclone
Version: 0.11.9
Release: 0
License:GPLv2+
Summary:Clone of the game AtomicBomberMan
Url:http://www.bomberclone.de/
Group:  Amusements/Games/Action/Other
Source: %{name}-%{version}.tar.bz2
Patch0: %{name}-0.11.9-sdl.patch
Patch1: %{name}-0.11.9-gcc46.patch
Patch2: %{name}-0.11.9-prototype.patch
Patch3: %{name}-0.11.9-dirs.patch
Patch4: %{name}-0.11.9-libm.patch
BuildRequires:  fdupes
BuildRequires:  libSDL_image-devel
BuildRequires:  libSDL_mixer-devel
BuildRequires:  update-desktop-files
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Clone of the game AtomicBomberMan.

%prep
%setup -q
%patch0
%patch1
%patch2
%patch3
%patch4

%build
autoreconf -fi
%configure --docdir=%{_docdir}/%{name}
make %{?_smp_mflags}

%install
%make_install
%suse_update_desktop_file -i %{name}
%fdupes %{buildroot}

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root)
%{_docdir}/%{name}
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png

%changelog
++ bomberclone.spec ++
--- /var/tmp/diff_new_pack.b6b0dB/_old  2011-05-18 09:46:42.0 +0200
+++ /var/tmp/diff_new_pack.b6b0dB/_new  2011-05-18 09:46:42.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package bomberclone (Version 0.11.7)
+# spec file for package bomberclone
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,75 +15,57 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   bomberclone
-BuildReq

commit bundle-lang-common for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory
checked in at Wed May 18 09:46:27 CEST 2011.




--- bundle-lang-common/bundle-lang-common.changes   2011-03-22 
15:57:48.0 +0100
+++ /mounts/work_src_done/STABLE/bundle-lang-common/bundle-lang-common.changes  
2011-05-16 15:49:03.0 +0200
@@ -1,0 +2,6 @@
+Mon May 16 13:47:17 UTC 2011 - co...@opensuse.org
+
+- update package list
+- merge scripts
+
+---
bundle-lang-gnome-extras.changes: same change
bundle-lang-gnome.changes: same change
bundle-lang-kde.changes: same change

calling whatdependson for head-i586


Old:

  pre_checkin.sh
  update-gnome-extras.sh

New:

  update-list.sh



Other differences:
--
++ bundle-lang-common.spec ++
--- /var/tmp/diff_new_pack.bBrCqP/_old  2011-05-18 09:40:26.0 +0200
+++ /var/tmp/diff_new_pack.bBrCqP/_new  2011-05-18 09:40:26.0 +0200
@@ -20,7 +20,7 @@
 #!BuildIgnore: gimp-unstable
 
 Name:   bundle-lang-common
-BuildRequires:  NetworkManager-lang NetworkManager-openvpn-lang 
NetworkManager-pptp-lang NetworkManager-vpnc-lang PackageKit-lang avahi-lang 
bash-lang coreutils-lang cpio-lang gconf2-lang gdk-pixbuf-lang gimp-lang 
glib-networking-lang glib2-lang gnome-keyring-lang gnome-vfs2-lang gpg2-lang 
gstreamer-0_10-lang gstreamer-0_10-plugins-base-lang gtk2-lang libgphoto2-lang 
login-lang mc-lang nano-lang pulseaudio-lang tar-lang upower-lang 
util-linux-lang vorbis-tools-lang wdiff-lang
+BuildRequires:  NetworkManager-lang NetworkManager-openvpn-lang 
NetworkManager-pptp-lang NetworkManager-vpnc-lang PackageKit-lang avahi-lang 
bash-lang coreutils-lang cpio-lang gconf2-lang gdk-pixbuf-lang gimp-lang 
glib-networking-lang glib2-lang gnome-keyring-lang gnome-vfs2-lang gpg2-lang 
gstreamer-0_10-lang gstreamer-0_10-plugins-base-lang gtk2-lang gtk3-lang 
libgphoto2-lang libgpod-lang login-lang mc-lang nano-lang pulseaudio-lang 
tar-lang upower-lang util-linux-lang vorbis-tools-lang wdiff-lang
 BuildRequires:  fdupes
 #!BuildIgnore:  xorg-x11-driver-input
 #!BuildIgnore:  NetworkManager-openvpn
@@ -29,7 +29,7 @@
 License:MIT License (or similar)
 Group:  System/Localization
 Version:11.4
-Release:17
+Release:18
 Summary:Translations for a Group of Programs
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -38,8 +38,7 @@
 Source2:packages.txt
 Source3:attributes
 Source4:update_spec.pl
-Source5:pre_checkin.sh
-Source6:update-gnome-extras.sh
+Source5:update-list.sh
 
 %description
 This package groups translations for a dozen of programs which are both
@@ -90,8 +89,12 @@
 Provides:   locale(gstreamer-0_10-plugins-base:en)
 Provides:   gtk2-lang = %(rpm -q --queryformat '%{VERSION}' gtk2-lang)
 Provides:   locale(gtk2:en)
+Provides:   gtk3-lang = %(rpm -q --queryformat '%{VERSION}' gtk3-lang)
+Provides:   locale(gtk3:en)
 Provides:   libgphoto2-lang = %(rpm -q --queryformat '%{VERSION}' 
libgphoto2-lang)
 Provides:   locale(libgphoto2:en)
+Provides:   libgpod-lang = %(rpm -q --queryformat '%{VERSION}' 
libgpod-lang)
+Provides:   locale(libgpod:en)
 Provides:   login-lang = %(rpm -q --queryformat '%{VERSION}' login-lang)
 Provides:   locale(login:en)
 Provides:   mc-lang = %(rpm -q --queryformat '%{VERSION}' mc-lang)
@@ -160,8 +163,12 @@
 Provides:   locale(gstreamer-0_10-plugins-base:de)
 Provides:   gtk2-lang = %(rpm -q --queryformat '%{VERSION}' gtk2-lang)
 Provides:   locale(gtk2:de)
+Provides:   gtk3-lang = %(rpm -q --queryformat '%{VERSION}' gtk3-lang)
+Provides:   locale(gtk3:de)
 Provides:   libgphoto2-lang = %(rpm -q --queryformat '%{VERSION}' 
libgphoto2-lang)
 Provides:   locale(libgphoto2:de)
+Provides:   libgpod-lang = %(rpm -q --queryformat '%{VERSION}' 
libgpod-lang)
+Provides:   locale(libgpod:de)
 Provides:   login-lang = %(rpm -q --queryformat '%{VERSION}' login-lang)
 Provides:   locale(login:de)
 Provides:   mc-lang = %(rpm -q --queryformat '%{VERSION}' mc-lang)
@@ -230,8 +237,12 @@
 Provides:   locale(gstreamer-0_10-plugins-base:es)
 Provides:   gtk2-lang = %(rpm -q --queryformat '%{VERSION}' gtk2-lang)
 Provides:   locale(gtk2:es)
+Provides:   gtk3-lang = %(rpm -q --queryformat '%{VERSION}' gtk3-lang)
+Provides:   locale(gtk3:es)
 Provides:   libgphoto2-lang = %(rpm -q --queryformat '%{VERSION}' 
libgphoto2-lang)
 Provides:   locale(libgphoto2:es)
+Provides:   libgpod-lang = %(rpm -q --queryformat '%{VERSION}' 
libgpod-lang)
+Provides:   locale(libgpod:es)
 Provides:   login-lang = %(rpm -q --queryformat '%{VERSION}' login-lang)
 Provides:   locale(login:es)
 Provides:   mc-l

commit kde4-l10n for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package kde4-l10n for openSUSE:Factory
checked in at Wed May 18 09:39:38 CEST 2011.




--- KDE/kde4-l10n/kde4-l10n.changes 2011-04-01 15:51:37.0 +0200
+++ /mounts/work_src_done/STABLE/kde4-l10n/kde4-l10n.changes2011-05-03 
03:03:59.0 +0200
@@ -1,0 +2,12 @@
+Tue May  3 01:03:04 UTC 2011 - jav...@opensuse.org
+
+- add Obsoletes: konqueror-plugins-lang
+
+---
+Thu Apr 28 16:15:09 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.3
+  * Bugfixes over KDE 4.6.2
+  *  see http://kde.org/announcements/changelogs/changelog4_6_2to4_6_3.php for 
details
+
+---

calling whatdependson for head-i586


Old:

  kde-l10n-ar-4.6.2.tar.bz2
  kde-l10n-bg-4.6.2.tar.bz2
  kde-l10n-ca-4.6.2.tar.bz2
  kde-l10n...@valencia-4.6.2.tar.bz2
  kde-l10n-cs-4.6.2.tar.bz2
  kde-l10n-da-4.6.2.tar.bz2
  kde-l10n-de-4.6.2.tar.bz2
  kde-l10n-el-4.6.2.tar.bz2
  kde-l10n-en_GB-4.6.2.tar.bz2
  kde-l10n-es-4.6.2.tar.bz2
  kde-l10n-et-4.6.2.tar.bz2
  kde-l10n-eu-4.6.2.tar.bz2
  kde-l10n-fi-4.6.2.tar.bz2
  kde-l10n-fr-4.6.2.tar.bz2
  kde-l10n-ga-4.6.2.tar.bz2
  kde-l10n-gl-4.6.2.tar.bz2
  kde-l10n-gu-4.6.2.tar.bz2
  kde-l10n-he-4.6.2.tar.bz2
  kde-l10n-hi-4.6.2.tar.bz2
  kde-l10n-hr-4.6.2.tar.bz2
  kde-l10n-hu-4.6.2.tar.bz2
  kde-l10n-ia-4.6.2.tar.bz2
  kde-l10n-id-4.6.2.tar.bz2
  kde-l10n-is-4.6.2.tar.bz2
  kde-l10n-it-4.6.2.tar.bz2
  kde-l10n-ja-4.6.2.tar.bz2
  kde-l10n-kk-4.6.2.tar.bz2
  kde-l10n-km-4.6.2.tar.bz2
  kde-l10n-kn-4.6.2.tar.bz2
  kde-l10n-ko-4.6.2.tar.bz2
  kde-l10n-lt-4.6.2.tar.bz2
  kde-l10n-lv-4.6.2.tar.bz2
  kde-l10n-mai-4.6.2.tar.bz2
  kde-l10n-nb-4.6.2.tar.bz2
  kde-l10n-nds-4.6.2.tar.bz2
  kde-l10n-nl-4.6.2.tar.bz2
  kde-l10n-nn-4.6.2.tar.bz2
  kde-l10n-pa-4.6.2.tar.bz2
  kde-l10n-pl-4.6.2.tar.bz2
  kde-l10n-pt-4.6.2.tar.bz2
  kde-l10n-pt_BR-4.6.2.tar.bz2
  kde-l10n-ro-4.6.2.tar.bz2
  kde-l10n-ru-4.6.2.tar.bz2
  kde-l10n-sk-4.6.2.tar.bz2
  kde-l10n-sl-4.6.2.tar.bz2
  kde-l10n-sr-4.6.2.tar.bz2
  kde-l10n-sv-4.6.2.tar.bz2
  kde-l10n-th-4.6.2.tar.bz2
  kde-l10n-tr-4.6.2.tar.bz2
  kde-l10n-uk-4.6.2.tar.bz2
  kde-l10n-wa-4.6.2.tar.bz2
  kde-l10n-zh_CN-4.6.2.tar.bz2
  kde-l10n-zh_TW-4.6.2.tar.bz2

New:

  kde-l10n-ar-4.6.3.tar.bz2
  kde-l10n-bg-4.6.3.tar.bz2
  kde-l10n-ca-4.6.3.tar.bz2
  kde-l10n...@valencia-4.6.3.tar.bz2
  kde-l10n-cs-4.6.3.tar.bz2
  kde-l10n-da-4.6.3.tar.bz2
  kde-l10n-de-4.6.3.tar.bz2
  kde-l10n-el-4.6.3.tar.bz2
  kde-l10n-en_GB-4.6.3.tar.bz2
  kde-l10n-es-4.6.3.tar.bz2
  kde-l10n-et-4.6.3.tar.bz2
  kde-l10n-eu-4.6.3.tar.bz2
  kde-l10n-fi-4.6.3.tar.bz2
  kde-l10n-fr-4.6.3.tar.bz2
  kde-l10n-ga-4.6.3.tar.bz2
  kde-l10n-gl-4.6.3.tar.bz2
  kde-l10n-gu-4.6.3.tar.bz2
  kde-l10n-he-4.6.3.tar.bz2
  kde-l10n-hi-4.6.3.tar.bz2
  kde-l10n-hr-4.6.3.tar.bz2
  kde-l10n-hu-4.6.3.tar.bz2
  kde-l10n-ia-4.6.3.tar.bz2
  kde-l10n-id-4.6.3.tar.bz2
  kde-l10n-is-4.6.3.tar.bz2
  kde-l10n-it-4.6.3.tar.bz2
  kde-l10n-ja-4.6.3.tar.bz2
  kde-l10n-kk-4.6.3.tar.bz2
  kde-l10n-km-4.6.3.tar.bz2
  kde-l10n-kn-4.6.3.tar.bz2
  kde-l10n-ko-4.6.3.tar.bz2
  kde-l10n-lt-4.6.3.tar.bz2
  kde-l10n-lv-4.6.3.tar.bz2
  kde-l10n-mai-4.6.3.tar.bz2
  kde-l10n-nb-4.6.3.tar.bz2
  kde-l10n-nds-4.6.3.tar.bz2
  kde-l10n-nl-4.6.3.tar.bz2
  kde-l10n-nn-4.6.3.tar.bz2
  kde-l10n-pa-4.6.3.tar.bz2
  kde-l10n-pl-4.6.3.tar.bz2
  kde-l10n-pt-4.6.3.tar.bz2
  kde-l10n-pt_BR-4.6.3.tar.bz2
  kde-l10n-ro-4.6.3.tar.bz2
  kde-l10n-ru-4.6.3.tar.bz2
  kde-l10n-sk-4.6.3.tar.bz2
  kde-l10n-sl-4.6.3.tar.bz2
  kde-l10n-sr-4.6.3.tar.bz2
  kde-l10n-sv-4.6.3.tar.bz2
  kde-l10n-th-4.6.3.tar.bz2
  kde-l10n-tr-4.6.3.tar.bz2
  kde-l10n-uk-4.6.3.tar.bz2
  kde-l10n-wa-4.6.3.tar.bz2
  kde-l10n-zh_CN-4.6.3.tar.bz2
  kde-l10n-zh_TW-4.6.3.tar.bz2



Other differences:
--
++ kde4-l10n.spec ++
 677 lines (skipped)
 between KDE/kde4-l10n/kde4-l10n.spec
 and /mounts/work_src_done/STABLE/kde4-l10n/kde4-l10n.spec

++ kde-l10n-ar-4.6.2.tar.bz2 -> kde-l10n-ar-4.6.3.tar.bz2 ++
 50283 lines of diff (skipped)

++ kde-l10n-bg-4.6.2.tar.bz2 -> kde-l10n-bg-4.6.3.tar.bz2 ++
 52527 lines of diff (skipped)

++ kde-l10n-ca-4.6.2.tar.bz2 -> kde-l10n-ca-4.6.3.tar.bz2 ++
 76212 lines of diff (skipped)

++ kde-l10n...@valencia-4.6.2.tar.bz2 -> kde-l10n...@valencia-4.6.3.tar.bz2 
++
 73000 lines of diff (skipped)

++ kde-l10n-cs-4.6.2.tar.bz2 -> kde-l10n-cs-4.6.3.tar.bz2 ++
 64520 lines of diff (skipped)

++ kde-l10n-da-4.6.2.tar.bz2 -> kde-l10n-da-4.6.3.tar.bz2 ++
KDE/kde4-l10n/kde-l10n-da-4.6.2.tar.bz2 
/mounts/work_src_done/STABLE/kde4-l10n/kde-l10n-da-4.6.3.tar.bz2 differ: char 
11, line 1

++ kde-l10n-de-4.6.2.tar.bz2 -> kde-l10n-de-4.6.3.tar.bz2 ++
KDE/kde4-l10n/kde-l10n-de-4.6.2.tar.bz2 
/mounts/work_src_done/STABL

commit qtcurve-kde4 for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package qtcurve-kde4 for openSUSE:Factory
checked in at Wed May 18 09:25:23 CEST 2011.




--- KDE/qtcurve-kde4/qtcurve-kde4.changes   2011-03-15 23:32:39.0 
+0100
+++ /mounts/work_src_done/STABLE/qtcurve-kde4/qtcurve-kde4.changes  
2011-05-16 16:46:11.0 +0200
@@ -1,0 +2,10 @@
+Mon May 16 14:45:13 UTC 2011 - corne...@solcon.nl
+
+- Update to 1.8.7
+  1. Fix QtDesigner crash when using transparent background - thanks to 
Friedemann Kleint.
+  2. When installing background images, need to remove and previous files 
first (as QFile::copy will not overwrite files)
+  3. Fix incorrent window-drag trigger when dragging dock widget title widgets 
(set via QDockWidget::setTitleBarWidget() )
+  4. Fix crash when opening style config dialog whilst kwin config dialog is 
open.
+  5. Allow scrollbar sliders to be as thin as 5 pixels. At this setting, 
sliders will be squared.
+
+---

calling whatdependson for head-i586


Old:

  QtCurve-KDE4-1.8.6.tar.bz2

New:

  QtCurve-KDE4-1.8.7.tar.bz2



Other differences:
--
++ qtcurve-kde4.spec ++
--- /var/tmp/diff_new_pack.Z56Ak7/_old  2011-05-18 09:24:53.0 +0200
+++ /var/tmp/diff_new_pack.Z56Ak7/_new  2011-05-18 09:24:53.0 +0200
@@ -24,7 +24,7 @@
 License:GPLv2+
 Group:  System/GUI/KDE
 Summary:QtCurve style for KDE 4
-Version:1.8.6
+Version:1.8.7
 Release:1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:QtCurve-KDE4-%{version}.tar.bz2

++ QtCurve-KDE4-1.8.6.tar.bz2 -> QtCurve-KDE4-1.8.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QtCurve-KDE4-1.8.6/CMakeLists.txt 
new/QtCurve-KDE4-1.8.7/CMakeLists.txt
--- old/QtCurve-KDE4-1.8.6/CMakeLists.txt   2011-03-15 22:47:04.0 
+0100
+++ new/QtCurve-KDE4-1.8.7/CMakeLists.txt   2011-04-06 21:22:59.0 
+0200
@@ -8,7 +8,7 @@
 set(CPACK_SOURCE_GENERATOR "TBZ2")
 set(CPACK_PACKAGE_VERSION_MAJOR "1")
 set(CPACK_PACKAGE_VERSION_MINOR "8")
-set(CPACK_PACKAGE_VERSION_PATCH "6")
+set(CPACK_PACKAGE_VERSION_PATCH "7")
 set(CPACK_PACKAGE_CONTACT "Craig Drummond ")
 set(QTCURVE_VERSION 
"${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
 set(QTCURVE_VERSION_FULL "${QTCURVE_VERSION}.${CPACK_PACKAGE_VERSION_PATCH}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QtCurve-KDE4-1.8.6/ChangeLog 
new/QtCurve-KDE4-1.8.7/ChangeLog
--- old/QtCurve-KDE4-1.8.6/ChangeLog2011-03-15 22:47:04.0 +0100
+++ new/QtCurve-KDE4-1.8.7/ChangeLog2011-04-06 21:22:59.0 +0200
@@ -1,3 +1,16 @@
+1.8.7
+-
+1. Fix QtDesigner crash when using transparent background - thanks to
+   Friedemann Kleint.
+2. When installing background images, need to remove and previous files
+   first (as QFile::copy will not overwrite files)
+3. Fix incorrent window-drag trigger when dragging dock widget title
+   widgets (set via QDockWidget::setTitleBarWidget() )
+4. Fix crash when opening style config dialog whilst kwin config dialog is
+   open.
+5. Allow scrollbar sliders to be as thin as 5 pixels. At this setting, sliders
+   will be squared.
+
 1.8.6
 -
 1. Fix potential crash when using translucency and the raster engine.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QtCurve-KDE4-1.8.6/common/common.h 
new/QtCurve-KDE4-1.8.7/common/common.h
--- old/QtCurve-KDE4-1.8.6/common/common.h  2011-03-15 22:47:04.0 
+0100
+++ new/QtCurve-KDE4-1.8.7/common/common.h  2011-04-06 21:22:59.0 
+0200
@@ -257,9 +257,11 @@
 #define MIN_MENU_DELAY   0
 #define MAX_MENU_DELAY 500
 
-#define DEFAULT_SLIDER_WIDTH 15
-#define MIN_SLIDER_WIDTH 11
-#define MAX_SLIDER_WIDTH 31
+#define DEFAULT_SLIDER_WIDTH  15
+#define MIN_SLIDER_WIDTH_ROUND 7
+#define MIN_SLIDER_WIDTH_THIN_GROOVE 9
+#define MIN_SLIDER_WIDTH   5
+#define MAX_SLIDER_WIDTH  31
 
 #define SIZE_GRIP_SIZE 12
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QtCurve-KDE4-1.8.6/common/config_file.c 
new/QtCurve-KDE4-1.8.7/common/config_file.c
--- old/QtCurve-KDE4-1.8.6/common/config_file.c 2011-03-15 22:47:04.0 
+0100
+++ new/QtCurve-KDE4-1.8.7/common/config_file.c 2011-04-06 21:22:59.0 
+0200
@@ -1555,6 +1555,12 @@
 if(opts->sliderWidthsliderWidth>MAX_SLIDER_WIDTH)
 opts->sliderWidth=DEFAULT_SLIDER_WIDTH;
 
+if(opts->sliderWidthsquare|=SQUARE_SB_SLIDER;
+
+if(opts->sliderWidththinSbarGroove=false;
+
 if(opts->sliderWidthsliderThumbs=LINE_NONE;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QtCurve-KDE4-1.8.6/config/

commit xine-ui for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package xine-ui for openSUSE:Factory
checked in at Wed May 18 09:24:26 CEST 2011.




--- xine-ui/xine-ui.changes 2010-04-04 19:07:26.0 +0200
+++ /mounts/work_src_done/STABLE/xine-ui/xine-ui.changes2011-05-12 
16:22:16.0 +0200
@@ -1,0 +2,5 @@
+Thu May 12 14:22:06 UTC 2011 - mh...@novell.com
+
+- Fix path to help directory (bnc #680277)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ xine-ui.spec ++
--- /var/tmp/diff_new_pack.XHuqup/_old  2011-05-18 09:22:50.0 +0200
+++ /var/tmp/diff_new_pack.XHuqup/_new  2011-05-18 09:22:50.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package xine-ui (Version 0.99.5)
+# spec file for package xine-ui
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 BuildRequires:  update-desktop-files xine-devel xorg-x11-devel
 Summary:Video player with plugins
 Version:0.99.5
-Release:224
+Release:234
 License:GPLv2+ ; Public Domain, Freeware
 Group:  Productivity/Multimedia/Video/Players
 Url:http://xine.sourceforge.net
@@ -74,6 +74,7 @@
 export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
 # ignore nonupdated automake+co files
 rm -f missing ; touch missing
+export XINE_DOCPATH=/usr/share/doc/packages/xine-ui
 %configure \
--enable-vdr-keys \
--with-pic \
@@ -83,7 +84,6 @@
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
 install -d -m755 $RPM_BUILD_ROOT%{_defaultdocdir}
-mv $RPM_BUILD_ROOT/usr/share/doc/xine-ui 
$RPM_BUILD_ROOT%{_defaultdocdir}/xine-ui
 mv $RPM_BUILD_ROOT/usr/share/doc/xitk $RPM_BUILD_ROOT%{_defaultdocdir}/xine-ui
 mkdir -p $RPM_BUILD_ROOT/usr/share/applications/
 rm $RPM_BUILD_ROOT/usr/share/xine/desktop/xine.desktop 








Remember to have fun...

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



commit yast2-snapper for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package yast2-snapper for openSUSE:Factory
checked in at Wed May 18 09:22:39 CEST 2011.




--- yast2-snapper/yast2-snapper.changes 2011-04-18 09:20:39.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-snapper/yast2-snapper.changes
2011-05-11 11:27:09.0 +0200
@@ -1,0 +2,7 @@
+Wed May 11 10:41:42 CEST 2011 - jsuch...@suse.cz
+
+- added initialization code to agent, check for exceptions
+- updated agent documentation
+- 2.21.5 
+
+---

calling whatdependson for head-i586


Old:

  _cvsignore
  yast2-snapper-2.21.4.tar.bz2

New:

  yast2-snapper-2.21.5.tar.bz2



Other differences:
--
++ yast2-snapper.spec ++
--- /var/tmp/diff_new_pack.WnyffJ/_old  2011-05-18 09:17:57.0 +0200
+++ /var/tmp/diff_new_pack.WnyffJ/_new  2011-05-18 09:17:57.0 +0200
@@ -19,18 +19,18 @@
 
 
 Name:   yast2-snapper
-Version:2.21.4
+Version:2.21.5
 Release:1
 
 Group:  System/YaST
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-snapper-2.21.4.tar.bz2
+Source0:yast2-snapper-2.21.5.tar.bz2
 
 Prefix: /usr
 
-Requires:   yast2 libsnapper
-License:GPLv2+
-BuildRequires:  doxygen gcc-c++ libsnapper libsnapper-devel perl-XML-Writer 
update-desktop-files yast2 yast2-core-devel yast2-devtools yast2-testsuite
+Requires:   yast2
+License:GPL v2 or later
+BuildRequires:  doxygen gcc-c++ libsnapper-devel perl-XML-Writer 
update-desktop-files yast2 yast2-core-devel yast2-devtools yast2-testsuite
 
 Summary:YaST - file system snapshots review
 
@@ -38,7 +38,7 @@
 YaST module for accessing and managing btrfs system snapshots
 
 %prep
-%setup -n yast2-snapper-2.21.4
+%setup -n yast2-snapper-2.21.5
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-snapper-2.21.4.tar.bz2 -> yast2-snapper-2.21.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.21.4/VERSION 
new/yast2-snapper-2.21.5/VERSION
--- old/yast2-snapper-2.21.4/VERSION2011-04-18 09:18:55.0 +0200
+++ new/yast2-snapper-2.21.5/VERSION2011-05-11 10:42:39.0 +0200
@@ -1 +1 @@
-2.21.4
+2.21.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.21.4/agent-snapper/doc/snapper.html 
new/yast2-snapper-2.21.5/agent-snapper/doc/snapper.html
--- old/yast2-snapper-2.21.4/agent-snapper/doc/snapper.html 2011-03-24 
13:15:50.0 +0100
+++ new/yast2-snapper-2.21.5/agent-snapper/doc/snapper.html 2011-05-11 
11:24:58.0 +0200
@@ -32,6 +32,8 @@
 
 .snapper
 
+The initialization call of Execute (.snapper) must be done before any other 
calls.
+
 
 Complete Read paths table
 
@@ -43,7 +45,18 @@
Result
 
 
-   .snapper.snapshotsYCPList
+   .snapper.error(none)YCPMap
+   Return information about last error.
+   Example of result:
+   
+   $[
+   "type"  : "config_not_found"
+   ]
+   
+   
+   
+
+   .snapper.snapshots(none)YCPList
Return list of current snapshot maps.
Example of result:

@@ -75,7 +88,7 @@


 
-   .snapper.diffYCPMapYCPList
+   .snapper.diff_listYCPMapYCPList
Returns the list of files modified between given snapshots.
Each file is described by YCPMap which contains file path and type of 
the change.
Argument map contains 2 integers, identifying the snapshots.
@@ -100,6 +113,93 @@
  ]


+
+   .snapper.diff_indexYCPMapYCPMap
+   Returns the differences between snapnots num1 and num2 as one-level 
map
+   (mapping each file to its changes).
+   Example of argument map:
+   
+   $[
+   "from"  : 1,
+   "to": 2
+   $]
+   
+   Example of result:
+   
+ $[
+   "/etc/group": "c...",
+   "/etc/group.YaST2save"  : "c..."
+ ]
+   
+   
+
+   .snapper.diff_treeYCPMapYCPMap
+   Returns the differences between snapnots num1 and num2 as a tree.
+   Map is recursively describing the filesystem structure; it is used to 
build Tree widget contents
+   in yast2-snapper UI.
+   
+   Example of argument map:
+   
+   $[
+   "from"  : 1,
+   "to": 2
+   $]
+   
+   Example of result:
+   
+   $[
+   "etc"   : $[
+   "group" : $[],
+   "group.YaST2save"   : $[],
+   "passwd": $[],
+   "passwd.YaST2save"  : $[]
+   ],
+   "var"   : $[
+ 

commit gnome-devel-docs for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-devel-docs for openSUSE:Factory
checked in at Wed May 18 09:17:51 CEST 2011.




--- GNOME/gnome-devel-docs/gnome-devel-docs.changes 2011-02-13 
18:39:49.0 +0100
+++ /mounts/work_src_done/STABLE/gnome-devel-docs/gnome-devel-docs.changes  
2011-04-26 17:56:01.0 +0200
@@ -1,0 +2,29 @@
+Tue Apr 26 15:14:32 UTC 2011 - fcro...@novell.com
+
+- Update to version 3.0.2:
+  + Actually install catalog file correctly.
+- Changes from version 3.0.1:
+  + Accessibility Devel Guide:
+- Updated translations.
+  + Developper Demos:
+- Added content to Clutter page.
+- Install catalog file correctly.
+- Updated translations.
+  + Human Interface Guidelines:
+- Updated translations.
+  + Platform Overview:
+- Updated translations.
+
+---
+Wed Apr  6 08:32:13 UTC 2011 - fcro...@novell.com
+
+- Update to version 3.0.0:
+  + Updates to demos and overview.
+- Changes from version 2.91.91:
+  + Updated translations.
+- Changes from version 2.91.90:
+  + New developer demo tutorials.
+  + Updated translations.
+- gdp-handbook and gdp-style-guide are no longer shipped.
+
+---

calling whatdependson for head-i586


Old:

  gnome-devel-docs-2.32.0.tar.bz2

New:

  gnome-devel-docs-3.0.2.tar.bz2



Other differences:
--
++ gnome-devel-docs.spec ++
--- /var/tmp/diff_new_pack.QUDJx9/_old  2011-05-18 09:16:19.0 +0200
+++ /var/tmp/diff_new_pack.QUDJx9/_new  2011-05-18 09:16:19.0 +0200
@@ -18,8 +18,8 @@
 
 
 Name:   gnome-devel-docs
-Version:2.32.0
-Release:2
+Version:3.0.2
+Release:1
 License:GFDL 1.1
 Summary:GNOME Platform Documentation
 Url:http://www.gnome.org
@@ -47,8 +47,7 @@
 %install
 %makeinstall
 %find_lang accessibility-devel-guide %{?no_lang_C} devel-docs.lang
-%find_lang gdp-handbook %{?no_lang_C} devel-docs.lang
-%find_lang gdp-style-guide %{?no_lang_C} devel-docs.lang
+%find_lang gnome-devel-demos %{?no_lang_C} devel-docs.lang
 %find_lang hig-book %{?no_lang_C} devel-docs.lang
 %find_lang integration-guide %{?no_lang_C} devel-docs.lang
 %find_lang optimization-guide %{?no_lang_C} devel-docs.lang
@@ -68,14 +67,8 @@
 %doc %{_datadir}/gnome/help/accessibility-devel-guide/C/
 %dir %{_datadir}/omf/accessibility-devel-guide/
 %doc %{_datadir}/omf/accessibility-devel-guide/accessibility-devel-guide-C.omf
-%dir %{_datadir}/gnome/help/gdp-handbook/
-%doc %{_datadir}/gnome/help/gdp-handbook/C/
-%dir %{_datadir}/omf/gdp-handbook/
-%doc %{_datadir}/omf/gdp-handbook/gdp-handbook-C.omf
-%dir %{_datadir}/gnome/help/gdp-style-guide/
-%doc %{_datadir}/gnome/help/gdp-style-guide/C/
-%dir %{_datadir}/omf/gdp-style-guide/
-%doc %{_datadir}/omf/gdp-style-guide/gdp-style-guide-C.omf
+%dir %{_datadir}/gnome/help/gnome-devel-demos/
+%doc %{_datadir}/gnome/help/gnome-devel-demos/C/
 %dir %{_datadir}/gnome/help/hig-book/
 %doc %{_datadir}/gnome/help/hig-book/C/
 %dir %{_datadir}/omf/hig-book/
@@ -90,8 +83,6 @@
 %doc %{_datadir}/omf/optimization-guide/optimization-guide-C.omf
 %dir %{_datadir}/gnome/help/platform-overview/
 %doc %{_datadir}/gnome/help/platform-overview/C/
-%dir %{_datadir}/omf/platform-overview/
-%doc %{_datadir}/omf/platform-overview/platform-overview-C.omf
 
 %files lang -f devel-docs.lang
 

++ gnome-devel-docs-2.32.0.tar.bz2 -> gnome-devel-docs-3.0.2.tar.bz2 ++
GNOME/gnome-devel-docs/gnome-devel-docs-2.32.0.tar.bz2 
/mounts/work_src_done/STABLE/gnome-devel-docs/gnome-devel-docs-3.0.2.tar.bz2 
differ: char 11, line 1






Remember to have fun...

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



commit yast2-iscsi-client for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package yast2-iscsi-client for 
openSUSE:Factory
checked in at Wed May 18 09:16:12 CEST 2011.




--- yast2-iscsi-client/yast2-iscsi-client.changes   2011-01-19 
14:04:56.0 +0100
+++ /mounts/work_src_done/STABLE/yast2-iscsi-client/yast2-iscsi-client.changes  
2011-05-12 15:00:38.0 +0200
@@ -1,0 +2,11 @@
+Thu May 12 14:20:50 CEST 2011 - f...@suse.de
+
+- implement support for iSCSI offload cards (fate#311711)
+- 2.21.0 
+
+---
+Tue Mar  1 16:24:05 CET 2011 - jsr...@suse.cz
+
+- assure required packages are installed via AutoYaST (bnc#670863)
+
+---

calling whatdependson for head-i586


Old:

  yast2-iscsi-client-2.20.0.tar.bz2

New:

  yast2-iscsi-client-2.21.0.tar.bz2



Other differences:
--
++ yast2-iscsi-client.spec ++
--- /var/tmp/diff_new_pack.uYLfkt/_old  2011-05-18 09:15:51.0 +0200
+++ /var/tmp/diff_new_pack.uYLfkt/_new  2011-05-18 09:15:51.0 +0200
@@ -19,16 +19,16 @@
 
 
 Name:   yast2-iscsi-client
-Version:2.20.0
+Version:2.21.0
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-iscsi-client-2.20.0.tar.bz2
+Source0:yast2-iscsi-client-2.21.0.tar.bz2
 
 Prefix: /usr
 
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets doxygen libicu-devel libxslt 
perl-XML-Writer popt-devel sgml-skel update-desktop-files yast2 yast2-devtools 
yast2-packagemanager-devel yast2-packager yast2-perl-bindings yast2-testsuite
 
 Requires:   yast2-packager
@@ -46,7 +46,7 @@
 client.
 
 %prep
-%setup -n yast2-iscsi-client-2.20.0
+%setup -n yast2-iscsi-client-2.21.0
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-iscsi-client-2.20.0.tar.bz2 -> yast2-iscsi-client-2.21.0.tar.bz2 
++
 2376 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/yast2-iscsi-client-2.20.0/MAINTAINER 
new/yast2-iscsi-client-2.21.0/MAINTAINER
--- old/yast2-iscsi-client-2.20.0/MAINTAINER2010-08-18 13:48:46.0 
+0200
+++ new/yast2-iscsi-client-2.21.0/MAINTAINER2011-03-08 17:13:07.0 
+0100
@@ -1 +1 @@
-Michal Zugec 
+Thomas Fehr 
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/yast2-iscsi-client-2.20.0/VERSION new/yast2-iscsi-client-2.21.0/VERSION
--- old/yast2-iscsi-client-2.20.0/VERSION   2011-01-19 14:03:47.0 
+0100
+++ new/yast2-iscsi-client-2.21.0/VERSION   2011-05-12 14:23:08.0 
+0200
@@ -1 +1 @@
-2.20.0
+2.21.0
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/yast2-iscsi-client-2.20.0/configure.in 
new/yast2-iscsi-client-2.21.0/configure.in
--- old/yast2-iscsi-client-2.20.0/configure.in  2011-01-19 15:18:42.0 
+0100
+++ new/yast2-iscsi-client-2.21.0/configure.in  2011-05-12 14:38:18.0 
+0200
@@ -3,7 +3,7 @@
 dnl -- This file is generated by y2autoconf 2.18.11 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
-AC_INIT(yast2-iscsi-client, 2.20.0, http://bugs.opensuse.org/, 
yast2-iscsi-client)
+AC_INIT(yast2-iscsi-client, 2.21.0, http://bugs.opensuse.org/, 
yast2-iscsi-client)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,9 +18,9 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="2.20.0"
+VERSION="2.21.0"
 RPMNAME="yast2-iscsi-client"
-MAINTAINER="Michal Zugec "
+MAINTAINER="Thomas Fehr "
 
 dnl pkgconfig honors lib64
 pkgconfigdir=\${libdir}/pkgconfig
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/yast2-iscsi-client-2.20.0/src/IscsiClient.ycp 
new/yast2-iscsi-client-2.21.0/src/IscsiClient.ycp
--- old/yast2-iscsi-client-2.20.0/src/

commit yast2-ncurses for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package yast2-ncurses for openSUSE:Factory
checked in at Wed May 18 09:14:09 CEST 2011.




--- yast2-ncurses/yast2-ncurses.changes 2011-04-26 11:14:00.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-ncurses/yast2-ncurses.changes
2011-05-17 11:46:19.0 +0200
@@ -1,0 +2,11 @@
+Tue May 17 11:36:16 CEST 2011 - g...@suse.de
+
+- NCInputField: return event reason 'Activated' on key 'Return'
+- V 2.21.3 
+
+---
+Mon May  9 09:59:12 UTC 2011 - cgiboude...@gmx.com
+ 
+- Add gcc46_build_fix.patch
+
+---

calling whatdependson for head-i586


Old:

  yast2-ncurses-2.21.2.tar.bz2

New:

  yast2-ncurses-2.21.3.tar.bz2



Other differences:
--
++ yast2-ncurses.spec ++
--- /var/tmp/diff_new_pack.QZm73v/_old  2011-05-18 09:12:59.0 +0200
+++ /var/tmp/diff_new_pack.QZm73v/_new  2011-05-18 09:12:59.0 +0200
@@ -19,16 +19,16 @@
 
 
 Name:   yast2-ncurses
-Version:2.21.2
+Version:2.21.3
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ncurses-2.21.2.tar.bz2
+Source0:yast2-ncurses-2.21.3.tar.bz2
 
 Prefix: /usr
 
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 BuildRequires:  dejagnu doxygen gcc-c++ yast2-devtools
 BuildRequires:  blocxx-devel libxcrypt-devel ncurses-devel
 
@@ -44,7 +44,7 @@
 component for YaST2.
 
 %package devel
-License:GPLv2+
+
 Requires:   yast2-ncurses = %version
 Group:  Development/Libraries
 Summary:YaST2 - Character Based User Interface
@@ -56,7 +56,7 @@
 component for YaST2.
 
 %prep
-%setup -n yast2-ncurses-2.21.2
+%setup -n yast2-ncurses-2.21.3
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-ncurses-2.21.2.tar.bz2 -> yast2-ncurses-2.21.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ncurses-2.21.2/VERSION 
new/yast2-ncurses-2.21.3/VERSION
--- old/yast2-ncurses-2.21.2/VERSION2011-04-26 11:05:32.0 +0200
+++ new/yast2-ncurses-2.21.3/VERSION2011-05-17 11:41:05.0 +0200
@@ -1 +1 @@
-2.21.2
+2.21.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ncurses-2.21.2/configure 
new/yast2-ncurses-2.21.3/configure
--- old/yast2-ncurses-2.21.2/configure  2011-04-26 11:07:10.0 +0200
+++ new/yast2-ncurses-2.21.3/configure  2011-05-17 11:43:37.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-ncurses 2.21.2.
+# Generated by GNU Autoconf 2.68 for yast2-ncurses 2.21.3.
 #
 # Report bugs to .
 #
@@ -709,8 +709,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ncurses'
 PACKAGE_TARNAME='yast2-ncurses'
-PACKAGE_VERSION='2.21.2'
-PACKAGE_STRING='yast2-ncurses 2.21.2'
+PACKAGE_VERSION='2.21.3'
+PACKAGE_STRING='yast2-ncurses 2.21.3'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1488,7 +1488,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures yast2-ncurses 2.21.2 to adapt to many kinds of systems.
+\`configure' configures yast2-ncurses 2.21.3 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1559,7 +1559,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-ncurses 2.21.2:";;
+ short | recursive ) echo "Configuration of yast2-ncurses 2.21.3:";;
esac
   cat <<\_ACEOF
 
@@ -1673,7 +1673,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-ncurses configure 2.21.2
+yast2-ncurses configure 2.21.3
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2308,7 +2308,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-ncurses $as_me 2.21.2, which was
+It was created by yast2-ncurses $as_me 2.21.3, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3238,7 +3238,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-ncurses'
- VERSION='2.21.2'
+ VERSION='2.21.3'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3360,7 +3360,7 @@
 
 
 
-VERSION="2.21.2"
+VERSION="2.21.3"
 RPMNAME="yast2-ncurses"
 MAINTAINER="Gabriele Mohr "
 
@@ -16101,7 +16101,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yast2-

commit perl-Authen-SASL for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Authen-SASL for openSUSE:Factory
checked in at Wed May 18 09:12:49 CEST 2011.




--- perl-Authen-SASL/perl-Authen-SASL.changes   2010-12-01 07:56:00.0 
+0100
+++ /mounts/work_src_done/STABLE/perl-Authen-SASL/perl-Authen-SASL.changes  
2011-05-16 09:56:49.0 +0200
@@ -1,0 +2,7 @@
+Mon May 16 07:34:56 UTC 2011 - vci...@novell.com
+
+- update to 2.15
+  * Makes sure that user callbacks are called [Yann Kerherve]
+- license correction
+
+---

calling whatdependson for head-i586


Old:

  Authen-SASL-2.1401.tar.bz2

New:

  Authen-SASL-2.15.tar.bz2



Other differences:
--
++ perl-Authen-SASL.spec ++
--- /var/tmp/diff_new_pack.eeGS1b/_old  2011-05-18 09:12:23.0 +0200
+++ /var/tmp/diff_new_pack.eeGS1b/_new  2011-05-18 09:12:23.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Authen-SASL (Version 2.1401)
+# spec file for package perl-Authen-SASL
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,9 +20,9 @@
 
 Name:   perl-Authen-SASL
 Summary:SASL Authentication framework
-Version:2.1401
-Release:4
-License:Artistic
+Version:2.15
+Release:1
+License:GPL+ or Artistic
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Authen-SASL
 Source: Authen-SASL-%{version}.tar.bz2

++ Authen-SASL-2.1401.tar.bz2 -> Authen-SASL-2.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Authen-SASL-2.1401/Changes 
new/Authen-SASL-2.15/Changes
--- old/Authen-SASL-2.1401/Changes  2010-03-29 21:22:58.0 +0200
+++ new/Authen-SASL-2.15/Changes2010-06-02 20:47:57.0 +0200
@@ -1,3 +1,7 @@
+Authen-SASL 2.15 -- Wed Jun 2 13:47:41 CDT 2010
+
+  * Makes sure that user callbacks are called [Yann Kerherve]
+
 Authen-SASL 2.1401 -- Mon Mar 29 14:22:54 CDT 2010
 
   * Add META.yml to release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Authen-SASL-2.1401/META.yml 
new/Authen-SASL-2.15/META.yml
--- old/Authen-SASL-2.1401/META.yml 2010-03-29 21:24:35.0 +0200
+++ new/Authen-SASL-2.15/META.yml   2010-06-02 20:56:07.0 +0200
@@ -27,4 +27,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/gbarr/perl-authen-sasl
-version: 2.1401
+version: 2.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Authen-SASL-2.1401/SIGNATURE 
new/Authen-SASL-2.15/SIGNATURE
--- old/Authen-SASL-2.1401/SIGNATURE2010-03-29 21:24:40.0 +0200
+++ new/Authen-SASL-2.15/SIGNATURE  2010-06-02 20:56:09.0 +0200
@@ -14,10 +14,10 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
-SHA1 ead88ab7f0116246edbaedf5bc646d88ece4b270 Changes
+SHA1 f588621ba950f29ab4d0b7635cd7fe1d0acab746 Changes
 SHA1 e8a4bccd71bb2a65e047160d57769d30ada1e6c9 MANIFEST
 SHA1 76ce2a83a03713855f54e0f0f13093bab0f5de6d MANIFEST.SKIP
-SHA1 81015bd0fa16bb4ca02accc1f6600425e4d8e386 META.yml
+SHA1 169c92712c34939ff317c772ff87fbd63d917c77 META.yml
 SHA1 30e38ea2e9ae64de8ddbf1529b823c930df7ac54 Makefile.PL
 SHA1 d458613a6aef99468b37defcbf8321ec7c88fe76 api.txt
 SHA1 81644069dc4507a71e4cfeef20780fee6c7ee00a compat_pl
@@ -30,7 +30,7 @@
 SHA1 38c657de4d91f5a60ff8e6c6f6a5547daf7c4ab2 inc/Module/Install/Metadata.pm
 SHA1 5c25f1104c0038041e3b93e0660c39171e4caf2b inc/Module/Install/Win32.pm
 SHA1 94d47349c803c4bd2a9230d25e4db0b6aaf1acd8 inc/Module/Install/WriteAll.pm
-SHA1 80e9c208e23fb7246180def17db1e664b330b924 lib/Authen/SASL.pm
+SHA1 4bb43826d7ed6484737df5cee2c78d996efe6c59 lib/Authen/SASL.pm
 SHA1 ef5e0a8a3c4ca083d307ab603b7a5a028d2cbf99 lib/Authen/SASL.pod
 SHA1 81c1f6d65fb94ebf36e3928558d0f50b4968e2be lib/Authen/SASL/CRAM_MD5.pm
 SHA1 dabe43f97abab76f875643defe311e7e29e46895 lib/Authen/SASL/EXTERNAL.pm
@@ -41,8 +41,8 @@
 SHA1 6c60d02b4f05762f0e6e5d9faf2e06e0acbd25a7 
lib/Authen/SASL/Perl/DIGEST_MD5.pm
 SHA1 c4fce50b535c88ccddf6c844faf0870c52a3c90e lib/Authen/SASL/Perl/EXTERNAL.pm
 SHA1 7c9facb2f8b81c430d1fd530a634e8cfc67e33f6 lib/Authen/SASL/Perl/GSSAPI.pm
-SHA1 2239365f6d105a5f855593a7ec5d5d361de033d0 lib/Authen/SASL/Perl/LOGIN.pm
-SHA1 16c6c896c4817309950c737f2cc36a355b244c03 lib/Authen/SASL/Perl/PLAIN.pm
+SHA1 e6eb9dcf283d92e9962b9df4d9805672b4d56a50 lib/Authen/SASL/Perl/LOGIN.pm
+SHA1 205ba41fe5d77fa431f1c41f00ba695794695da8 lib/Authen/SASL/Perl/PLAIN.pm
 SHA1 be0c439da3f8f1740fa8b623cee9662946a62c3f t/anon.t
 SHA1 2f0bc824

commit yast2-theme for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory
checked in at Wed May 18 09:11:51 CEST 2011.




--- yast2-theme/yast2-theme.changes 2011-02-02 16:50:32.0 +0100
+++ /mounts/work_src_done/STABLE/yast2-theme/yast2-theme.changes
2011-05-17 15:17:02.0 +0200
@@ -1,0 +2,18 @@
+Tue May 17 15:14:02 CEST 2011 - tgoettlic...@suse.de
+
+- Added icons for FCoE (Fibre Channel over Ethernet)
+- 2.21.3
+
+---
+Fri Apr 29 14:31:58 CEST 2011 - tgoettlic...@suse.de
+
+- Removed openSUSE-Metal theme (bnc #690851)
+- 2.21.2
+
+---
+Thu Apr 28 17:22:33 CEST 2011 - tgoettlic...@suse.de
+
+- Added openSUSE-Metal theme 
+- 2.21.1
+
+---

calling whatdependson for head-i586


Old:

  yast2-theme-2.20.3.tar.bz2

New:

  yast2-theme-2.21.3.tar.bz2



Other differences:
--
++ yast2-theme.spec ++
--- /var/tmp/diff_new_pack.2iUF7t/_old  2011-05-18 09:11:05.0 +0200
+++ /var/tmp/diff_new_pack.2iUF7t/_new  2011-05-18 09:11:05.0 +0200
@@ -19,16 +19,16 @@
 
 
 Name:   yast2-theme
-Version:2.20.3
+Version:2.21.3
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-theme-2.20.3.tar.bz2
+Source0:yast2-theme-2.21.3.tar.bz2
 
 Prefix: /usr
 
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 BuildRequires:  fdupes hicolor-icon-theme pkg-config update-desktop-files 
yast2-devtools
 BuildArch:  noarch
 Summary:YaST2 - Theme
@@ -37,9 +37,9 @@
 Contains the SuSE Linux theme for YaST2.
 
 %package openSUSE
-License:GPLv2+
+
 Summary:YaST2 - Theme (openSUSE)
-Version:2.20.3
+Version:2.21.3
 Release:1
 Group:  System/YaST
 Provides:   yast2_theme = %{version}
@@ -53,9 +53,9 @@
 Provides:   yast2-theme-UnitedLinux
 
 %package openSUSE-Crystal
-License:GPLv2+
+
 Summary:YaST2 - Theme (openSUSE)
-Version:2.20.3
+Version:2.21.3
 Release:1
 Group:  System/YaST
 Provides:   yast2_theme = %{version}
@@ -63,9 +63,9 @@
 PreReq: /bin/ln yast2-theme-openSUSE
 
 %package openSUSE-Oxygen
-License:GPLv2+
+
 Summary:YaST2 - Theme (openSUSE)
-Version:2.20.3
+Version:2.21.3
 Release:1
 Group:  System/YaST
 Provides:   yast2_theme = %{version}
@@ -74,9 +74,9 @@
 Conflicts:  yast2-theme-openSUSE-Crystal
 
 %package SLE
-License:GPLv2+
+
 Summary:YaST2 - SLE Theme
-Version:2.20.3
+Version:2.21.3
 Release:1
 Group:  System/YaST
 Provides:   yast2_theme = %{version}
@@ -98,7 +98,7 @@
 Family.
 
 %prep
-%setup -n yast2-theme-2.20.3
+%setup -n yast2-theme-2.21.3
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -147,7 +147,7 @@
 filelist=$(mktemp /tmp/fileListXX)
 cd $RPM_BUILD_ROOT//usr/share/YaST2/theme/openSUSE
 files=$(find . -type f)
-for subtheme in Crystal Oxygen; do
+for subtheme in Crystal Oxygen ; do
   cd $RPM_BUILD_ROOT//usr/share/YaST2/theme/openSUSE-$subtheme
   for file in $files; do
 mkdir -p $(dirname "$file") || true
@@ -164,7 +164,7 @@
 
 %post openSUSE
 cd /usr/share/YaST2/theme
-if ! test -d openSUSE-Crystal && ! test -d openSUSE-Oxygen; then
+if ! test -d openSUSE-Crystal && ! test -d openSUSE-Oxygen ; then
   ln -snf openSUSE openSUSE-current
 fi
 

++ yast2-theme-2.20.3.tar.bz2 -> yast2-theme-2.21.3.tar.bz2 ++
yast2-theme/yast2-theme-2.20.3.tar.bz2 
/mounts/work_src_done/STABLE/yast2-theme/yast2-theme-2.21.3.tar.bz2 differ: 
char 11, line 1






Remember to have fun...

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



commit thunar for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package thunar for openSUSE:Factory
checked in at Wed May 18 09:10:50 CEST 2011.




--- thunar/thunar.changes   2011-02-18 14:30:43.0 +0100
+++ /mounts/work_src_done/STABLE/thunar/thunar.changes  2011-05-17 
17:14:52.0 +0200
@@ -1,0 +2,5 @@
+Tue May 17 15:14:26 UTC 2011 - prus...@opensuse.org
+
+- fixed CVE-2011-1588 [bnc#687874]
+
+---

calling whatdependson for head-i586


New:

  thunar-CVE-2011-1588.patch



Other differences:
--
++ thunar.spec ++
--- /var/tmp/diff_new_pack.5VmViQ/_old  2011-05-18 09:10:16.0 +0200
+++ /var/tmp/diff_new_pack.5VmViQ/_new  2011-05-18 09:10:16.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   thunar
 Version:1.3.0
-Release:1
+Release:2
 License:GPLv2+
 Summary:Fast and Easy to Use File Manager for the Xfce Desktop 
Environment
 Url:http://thunar.xfce.org/
@@ -27,6 +27,7 @@
 Source: Thunar-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
 Patch0: %{name}-fix-desktop-files.patch
+Patch1: %{name}-CVE-2011-1588.patch
 BuildRequires:  fdupes
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
@@ -134,10 +135,12 @@
 This package provides the developer documentation for Thunar.
 
 
+
 %lang_package
 %prep
 %setup -q  -n Thunar-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure \

++ thunar-CVE-2011-1588.patch ++
Index: Thunar-1.3.0/thunar/thunar-transfer-job.c
===
--- Thunar-1.3.0.orig/thunar/thunar-transfer-job.c
+++ Thunar-1.3.0/thunar/thunar-transfer-job.c
@@ -534,7 +534,7 @@ thunar_transfer_job_copy_node (ThunarTra
 }
 
   /* update progress information */
-  exo_job_info_message (EXO_JOB (job), g_file_info_get_display_name 
(info));
+  exo_job_info_message (EXO_JOB (job), "%s", g_file_info_get_display_name 
(info));
 
 retry_copy:
   /* copy the item specified by this node (not recursively) */
++ thunar-fix-desktop-files.patch ++
--- /var/tmp/diff_new_pack.5VmViQ/_old  2011-05-18 09:10:17.0 +0200
+++ /var/tmp/diff_new_pack.5VmViQ/_new  2011-05-18 09:10:17.0 +0200
@@ -1,7 +1,8 @@
-diff -ur Thunar-1.1.5.orig/thunar/thunar-settings.desktop.in 
Thunar-1.1.5/thunar/thunar-settings.desktop.in
 Thunar-1.1.5.orig/thunar/thunar-settings.desktop.in2010-12-05 
16:07:58.0 +0100
-+++ Thunar-1.1.5/thunar/thunar-settings.desktop.in 2010-12-29 
16:37:44.0 +0100
-@@ -3,7 +3,7 @@
+Index: Thunar-1.3.0/thunar/thunar-settings.desktop.in
+===
+--- Thunar-1.3.0.orig/thunar/thunar-settings.desktop.in
 Thunar-1.3.0/thunar/thunar-settings.desktop.in
+@@ -3,7 +3,7 @@ Version=1.0
  _Name=File Manager
  _Comment=Configure the Thunar file manager
  Exec=thunar-settings






Remember to have fun...

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



commit libao for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package libao for openSUSE:Factory
checked in at Wed May 18 09:10:04 CEST 2011.




--- libao/libao.changes 2011-05-05 23:00:49.0 +0200
+++ /mounts/work_src_done/STABLE/libao/libao.changes2011-05-16 
12:42:22.0 +0200
@@ -1,0 +2,5 @@
+Thu May 12 13:12:43 CEST 2011 - dmuel...@suse.de
+
+- fix missing obsoletes for 32bit baselibs package
+
+---

calling whatdependson for head-i586




Other differences:
--
++ _service:set_version:libao.spec ++
--- /var/tmp/diff_new_pack.oYzsvO/_old  2011-05-18 09:09:08.0 +0200
+++ /var/tmp/diff_new_pack.oYzsvO/_new  2011-05-18 09:09:08.0 +0200
@@ -41,6 +41,7 @@
 ESD, OSS, Solaris, and IRIX.
 
 %package -n libao%{_SO_nr}
+
 License:GPLv2+
 Group:  System/Libraries
 Summary:A Cross-Platform Audio Output Library
@@ -54,6 +55,7 @@
 ESD, OSS, Solaris, and IRIX.
 
 %package plugins%{PLUGIN_VERSION}
+
 License:GPLv2+
 Summary:Main output plugins for libao
 Group:  System/Libraries

++ libao.spec ++
--- /var/tmp/diff_new_pack.oYzsvO/_old  2011-05-18 09:09:08.0 +0200
+++ /var/tmp/diff_new_pack.oYzsvO/_new  2011-05-18 09:09:08.0 +0200
@@ -22,7 +22,7 @@
 
 Name:   libao
 Version:to_be_filled_by_service
-Release:7
+Release:8
 License:GPLv2+
 %define my_provides /tmp/my-provides
 Summary:A Cross-Platform Audio Output Library
@@ -42,6 +42,7 @@
 
 %package -n libao%{_SO_nr}
 
+
 License:GPLv2+
 Group:  System/Libraries
 Summary:A Cross-Platform Audio Output Library
@@ -56,6 +57,7 @@
 
 %package plugins%{PLUGIN_VERSION}
 
+
 License:GPLv2+
 Summary:Main output plugins for libao
 Group:  System/Libraries


++ baselibs.conf ++
--- /var/tmp/diff_new_pack.oYzsvO/_old  2011-05-18 09:09:08.0 +0200
+++ /var/tmp/diff_new_pack.oYzsvO/_new  2011-05-18 09:09:08.0 +0200
@@ -1,6 +1,6 @@
 libao4
   targettype 32bit provides "libao- = 1.1.0"
-  targettype 64bit obsoletes "libao- < 1.1.0"
+  targettype 32bit obsoletes "libao- < 1.1.0"
 libao-plugins4
 libao-plugin4-arts
 libao-plugin4-esd






Remember to have fun...

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



commit phonon for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package phonon for openSUSE:Factory
checked in at Wed May 18 09:08:54 CEST 2011.




--- KDE/phonon/phonon.changes   2011-01-24 21:42:01.0 +0100
+++ /mounts/work_src_done/STABLE/phonon/phonon.changes  2011-05-17 
10:52:12.0 +0200
@@ -1,0 +2,12 @@
+Tue Mar 29 10:34:08 UTC 2011 - tittiatc...@gmail.com
+
+- update to 4.5.0
+  * comes with all new Zeitgeist support, which enables multimedia 
+   applications to let Zeitgeist log playback activity to further 
+   improve the semantic desktop capabilities of both the KDE Software 
+   Collection as well as GNOME. 
+  * Also new is integration with Qt Designer
+  * many smaller improvements to increase reliability of both 
+Phonon itself as well as its backends
+
+---

calling whatdependson for head-i586


Old:

  phonon-4.4.4.tar.bz2

New:

  phonon-4.5.0.tar.bz2



Other differences:
--
++ phonon.spec ++
--- /var/tmp/diff_new_pack.eWdL3h/_old  2011-05-18 09:06:23.0 +0200
+++ /var/tmp/diff_new_pack.eWdL3h/_new  2011-05-18 09:06:23.0 +0200
@@ -20,7 +20,7 @@
 Name:   phonon
 BuildRequires:  automoc4 cmake kde4-filesystem libpulse-devel libqt4-devel
 BuildRequires:  fdupes
-Version:4.4.4
+Version:4.5.0
 Release:1
 License:LGPLv2.0+
 Url:http://phonon.kde.org/
@@ -30,7 +30,7 @@
 Source0:%name-%{version}.tar.bz2
 Source1:baselibs.conf
 %requires_gelibqt4
-Requires:   phonon-backend >= %version
+Requires:   phonon-backend
 Requires:   libphonon4 = %version
 
 %description
@@ -108,10 +108,8 @@
 
 %files -n libphonon4
 %defattr(-,root,root)
-%_libdir/libphonon.so.4
-%_libdir/libphonon.so.4.4.0
-%_libdir/libphononexperimental.so.4
-%_libdir/libphononexperimental.so.4.4.0
+%_libdir/libphonon.so.*
+%_libdir/libphononexperimental.so.*
 
 %files devel
 %defattr(-,root,root)
@@ -122,18 +120,8 @@
 %_libdir/libphonon.so
 %_libdir/libphononexperimental.so
 %_libdir/pkgconfig/phonon.pc
-%dir %{_datadir}/phonon-buildsystem
+%{_datadir}/phonon-buildsystem/
 %{_datadir}/qt4/mkspecs/modules/qt_phonon.pri
-%{_datadir}/phonon-buildsystem/FindAutomoc4.cmake
-%{_datadir}/phonon-buildsystem/FindPackageHandleStandardArgs.cmake
-%{_datadir}/phonon-buildsystem/FindPhonon.cmake
-%{_datadir}/phonon-buildsystem/FindPhononInternal.cmake
-%{_datadir}/phonon-buildsystem/FindQt4.cmake
-%{_datadir}/phonon-buildsystem/MacroEnsureVersion.cmake
-%{_datadir}/phonon-buildsystem/MacroLogFeature.cmake
-%{_datadir}/phonon-buildsystem/MacroOptionalFindPackage.cmake
-%{_datadir}/phonon-buildsystem/MacroPushRequiredVars.cmake
-%{_datadir}/phonon-buildsystem/PhononMacros.cmake
-%{_datadir}/phonon-buildsystem/cmake_uninstall.cmake.in
+%_libdir/qt4/plugins/designer/libphononwidgets.so
 
 %changelog

++ phonon-4.4.4.tar.bz2 -> phonon-4.5.0.tar.bz2 ++
 15166 lines of diff (skipped)






Remember to have fun...

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



commit libplist for openSUSE:Factory

2011-05-18 Thread h_root

Hello community,

here is the log from the commit of package libplist for openSUSE:Factory
checked in at Wed May 18 09:06:14 CEST 2011.




--- libplist/libplist.changes   2011-03-20 18:46:04.0 +0100
+++ /mounts/work_src_done/STABLE/libplist/libplist.changes  2011-05-17 
00:18:52.0 +0200
@@ -1,0 +2,5 @@
+Mon May 16 22:18:07 UTC 2011 - cgiboude...@gmx.com
+
+- Add gcc46_build_fix.patch. Fixes build with GCC4.6
+
+---

calling whatdependson for head-i586


New:

  gcc46_build_fix.patch



Other differences:
--
++ libplist.spec ++
--- /var/tmp/diff_new_pack.sRnZRJ/_old  2011-05-18 09:05:55.0 +0200
+++ /var/tmp/diff_new_pack.sRnZRJ/_new  2011-05-18 09:05:55.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   libplist
 Version:1.4
-Release:1
+Release:3
 License:LGPL v2.1 or GPL v2
 Summary:Library for handling Apple Binary and XML Property Lists
 Url:http://cgit.sukimashita.com/libplist.git
@@ -34,6 +34,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #remove when pkgconfig is fixed to handle Requires.private correctly
 Patch0: libplist-1.4-pkgconfig.patch
+Patch1: gcc46_build_fix.patch
 
 %description
 libplist is a library for handling Apple Binary and XML Property Lists.
@@ -110,6 +111,7 @@
 %prep
 %setup -q
 %patch0
+%patch1
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"

++ gcc46_build_fix.patch ++
--- swig/plist.i.orig   2011-05-17 00:10:03.034330863 +0200
+++ swig/plist.i2011-05-17 00:12:14.190736151 +0200
@@ -4,6 +4,7 @@
  %{
  /* Includes the header in the wrapper code */
  #include 
+ #include 
  %}
 
 %include "std_string.i"





Remember to have fun...

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