commit apparmor-utils for openSUSE:11.2

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package apparmor-utils for openSUSE:11.2
checked in at Tue Apr 12 02:39:21 CEST 2011.




--- old-versions/11.2/UPDATES/all/apparmor-utils/apparmor-utils.changes 
2010-01-22 00:00:27.0 +0100
+++ 11.2/apparmor-utils/apparmor-utils.changes  2011-04-07 18:17:36.0 
+0200
@@ -1,0 +2,6 @@
+Thu Apr  7 18:16:44 CEST 2011 - je...@suse.de
+
+- Fix parsing of learning (null-XX) profiles with genprof and logprof
+  (bnc#546618 bnc#668311 bnc#685833).
+
+---

calling whatdependson for 11.2-i586


New:

  handle-null-profile-logs-correctly



Other differences:
--
++ apparmor-utils.spec ++
--- /var/tmp/diff_new_pack.ya54Wv/_old  2011-04-12 02:38:39.0 +0200
+++ /var/tmp/diff_new_pack.ya54Wv/_new  2011-04-12 02:38:39.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package apparmor-utils (Version 2.3.1)
+# spec file for package apparmor-utils
 #
-# 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 @@
 %endif
 Summary:AppArmor User-Level Utilities Useful for Creating AppArmor 
Profiles
 Version:2.3.1
-Release:12.
+Release:12.
 Group:  Productivity/Security
 Source0:%{name}-%{version}-1377.tar.gz
 Patch1: apparmor-utils-string-split
@@ -33,6 +33,7 @@
 Patch4: apparmor-utils-cleanup-on-abort
 Patch5: apparmor-utils-add-log-types
 Patch6: apparmor-utils-filenames-in-slash
+Patch7: handle-null-profile-logs-correctly
 License:GPLv2+ ; LGPLv2.1+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -73,6 +74,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 
 %build
 

++ handle-null-profile-logs-correctly ++
From: Kees Cook 
Subject: handle null profile logs correctly

handle new null profile logs, handle new include directories.  from ubuntu 
branch

Acked-by: Jeff Mahoney 
---

 SubDomain.pm |   92 ++-
 1 file changed, 72 insertions(+), 20 deletions(-)

--- a/SubDomain.pm
+++ b/SubDomain.pm
@@ -105,6 +105,7 @@ our @EXPORT = qw(
 check_qualifiers
 
 isSkippableFile
+isSkippableDir
 );
 
 our $confdir = "/etc/apparmor";
@@ -2726,8 +2727,17 @@ sub add_event_to_tree ($) {
 return if ($e->{operation} =~ /profile_set/);
 
 my ($profile, $hat);
+# just convert new null profile style names to old before we begin 
processing
+# profile and name can contain multiple layers of null- but all we care 
about
+# currently is single level.
+if ($e->{profile} =~ m/\/\/null-/) {
+$e->{profile} = "null-complain-profile";
+}
 ($profile, $hat) = split /\/\//, $e->{profile};
 if ( $e->{operation} eq "change_hat" ) {
+   #screen out change_hat events that aren't part of learning, as before
+   #AppArmor 2.4 these events only happend as hints during learning
+   return if ($sdmode ne "HINT" &&  $sdmode ne "PERMITTING");
 ($profile, $hat) = split /\/\//, $e->{name};
 }
 $hat = $profile if ( !$hat );
@@ -2751,6 +2761,18 @@ sub add_event_to_tree ($) {
  $e->{name},
  $e->{name2}
);
+} elsif ( defined $e->{name2} && $e->{name2} =~ m/\/\/null-/) {
+add_to_tree( $e->{pid},
+$e->{parent},
+  "exec",
+  $profile,
+  $hat,
+  $prog,
+  $sdmode,
+  $e->{denied_mask},
+  $e->{name},
+ ""
+);
 }
 } elsif ($e->{operation} =~ m/file_/ or
# These are the path operations introduced in 2.6.29
@@ -2766,6 +2788,18 @@ sub add_event_to_tree ($) {
  $e->{name},
 "",
);
+} elsif ($e->{operation} eq "open") {
+add_to_tree( $e->{pid},
+$e->{parent},
+ "path",
+ $profile,
+ $hat,
+ $prog,
+ $sdmode,
+ $e->{denied_mask},
+ $e->{name},
+"",
+   );
 } elsif ($e->{operation} eq "capable") {
 add_to_tree( $e->{pid},
 $e->{parent},
@@ -4507,9 +4541,9 @@ sub uniq (@) {
 }
 
 our $MODE_MAP_RE = "r|w|l|m|k|a|x|i|u|p|c|n|I|U|P|C|N";
-our $LOG_MODE_RE = 
"r|w|l|m|k|a|x|ix|ux

commit dhcpcd for openSUSE:11.4

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package dhcpcd for openSUSE:11.4
checked in at Mon Apr 11 16:01:51 CEST 2011.




--- old-versions/11.4/all/dhcpcd/dhcpcd.changes 2010-11-30 15:12:50.0 
+0100
+++ 11.4/dhcpcd/dhcpcd.changes  2011-04-06 21:19:43.0 +0200
@@ -1,0 +2,18 @@
+Wed Apr  6 15:05:57 UTC 2011 - m...@suse.de
+
+- Relaxed the check of the domain-name option causing a regression,
+  when the server is misusing it to provide a domain list and does
+  not provide it using the domain-search option (bnc#675052).
+
+---
+Wed Mar 30 10:16:31 UTC 2011 - m...@suse.de
+
+- bnc#675052 - discard string options such as host and domain names
+  containing disallowed characters or beeing too long. This proctive
+  patch limits root-path to a-zA-Z0-9, #%+-_:.,@~/\[]= and a space
+  (CVE-2011-0996).
+- fixed to read netbios scope from info file as string
+- bnc#668194 - handle packets with xen partial UDP checksums
+- bnc#657402 - send renew messages as unicast directly to the server
+
+---

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


New:

  dhcpcd-3.2.3-option-checks.diff
  dhcpcd-3.2.3-renew-unicast.diff
  dhcpcd-3.2.3-xen-checksum.diff



Other differences:
--
++ dhcpcd.spec ++
--- /var/tmp/diff_new_pack.LLkpyC/_old  2011-04-11 16:01:34.0 +0200
+++ /var/tmp/diff_new_pack.LLkpyC/_new  2011-04-11 16:01:34.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package dhcpcd (Version 3.2.3)
+# spec file for package dhcpcd
 #
-# 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,7 +19,7 @@
 
 Name:   dhcpcd
 Version:3.2.3
-Release:63
+Release:66.
 Summary:A DHCP Client Daemon
 Url:http://developer.berlios.de/projects/dhcpcd/
 #Source:   http://prdownload.berlios.de/dhcpcd/dhcpcd-3.2.3.tar.bz2
@@ -46,6 +46,9 @@
 Patch17:bnc#564441.diff
 Patch18:bnc#577402.diff
 Patch19:bnc#579438.diff
+Patch20:dhcpcd-3.2.3-renew-unicast.diff
+Patch21:dhcpcd-3.2.3-xen-checksum.diff
+Patch22:dhcpcd-3.2.3-option-checks.diff
 License:GPLv2+
 Group:  Productivity/Networking/Boot/Clients
 Provides:   dhcp_client
@@ -87,6 +90,9 @@
 %patch17 -p0
 %patch18 -p0
 %patch19 -p0
+%patch20 -p0
+%patch21 -p0
+%patch22 -p0
 cp %{S:1} .
 cp %{S:3} .
 

++ dhcpcd-3.2.3-more-params.diff ++
--- /var/tmp/diff_new_pack.LLkpyC/_old  2011-04-11 16:01:35.0 +0200
+++ /var/tmp/diff_new_pack.LLkpyC/_new  2011-04-11 16:01:35.0 +0200
@@ -186,7 +186,7 @@
 +  else if (strcmp (var, "LOGSERVER") == 0)
 +  dhcp->logservers = parse_addresses (value, "LOGSERVER");
 +  else if (strcmp (var, "NETBIOSSCOPE") == 0)
-+  parse_uint (&dhcp->netbiosscope, value, "NETBIOSSCOPE");
++  dhcp->netbiosscope = xstrdup (value);
 +  else if (strcmp (var, "NETBIOSNAMESERVER") == 0)
 +  dhcp->netbiosnameservers = parse_addresses (value, 
"NETBIOSNAMESERVER");
 +  else if (strcmp (var, "NETBIOSDDSERVER") == 0)

++ dhcpcd-3.2.3-option-checks.diff ++
--- configure.c
+++ configure.c
@@ -540,7 +540,7 @@ static char *lookuphostname (char *hostname, const dhcp_t 
*dhcp,
char *addr;
struct addrinfo hints;
struct addrinfo *res = NULL;
-   int result;
+   int result, check;
 
logger (LOG_DEBUG, "Looking up hostname via DNS");
addr = xmalloc (sizeof (char) * NI_MAXHOST);
@@ -565,9 +565,10 @@ static char *lookuphostname (char *hostname, const dhcp_t 
*dhcp,
result = getaddrinfo (addr, "0", &hints, &res);
if (res)
freeaddrinfo (res);
-   if (result == 0)
+   check = check_domain_name(addr, strlen(addr), 0);
+   if (result == 0 || check != 0)
logger (LOG_ERR, "malicious PTR record detected");
-   if (result == 0 || ! *addr) {
+   if (result == 0 || ! *addr || check != 0) {
free (addr);
return (NULL);
}
@@ -842,12 +843,12 @@ int configure (const options_t *options, interface_t 
*iface,
exec_script (options->script, iface->infofile, "up");
 
curhostname = xmalloc (sizeof (char) * MAXHOSTNAMELEN);
-   *curhostname = '\0';
+   memset(curhostname, 0, MAXHOSTNAMELEN);
 
-   gethostname (curhostname, MAXHO

commit dhcpcd for openSUSE:11.3

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package dhcpcd for openSUSE:11.3
checked in at Mon Apr 11 16:01:28 CEST 2011.




--- old-versions/11.3/UPDATES/all/dhcpcd/dhcpcd.changes 2011-03-31 
15:49:46.0 +0200
+++ 11.3/dhcpcd/dhcpcd.changes  2011-04-11 11:47:37.0 +0200
@@ -1,0 +2,7 @@
+Mon Apr 11 09:47:03 UTC 2011 - vark...@novell.com
+
+- Relaxed the check of the domain-name option causing a regression,
+  when the server is misusing it to provide a domain list and does
+  not provide it using the domain-search option (bnc#675052).
+
+---

calling whatdependson for 11.3-i586




Other differences:
--
++ dhcpcd.spec ++
--- /var/tmp/diff_new_pack.19Dybt/_old  2011-04-11 16:00:11.0 +0200
+++ /var/tmp/diff_new_pack.19Dybt/_new  2011-04-11 16:00:12.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   dhcpcd
 Version:3.2.3
-Release:61.
+Release:61.
 Summary:A DHCP Client Daemon
 Url:http://developer.berlios.de/projects/dhcpcd/
 #Source:   http://prdownload.berlios.de/dhcpcd/dhcpcd-3.2.3.tar.bz2

++ dhcpcd-3.2.3-option-checks.diff ++
--- /var/tmp/diff_new_pack.19Dybt/_old  2011-04-11 16:00:12.0 +0200
+++ /var/tmp/diff_new_pack.19Dybt/_new  2011-04-11 16:00:12.0 +0200
@@ -132,12 +132,12 @@
 +  return 0;
 +  break;
 +  case DHCP_HOSTNAME:
-+  case DHCP_DNSDOMAIN:
 +  case DHCP_NISDOMAIN:
 +  case DHCP_NETBIOSSCOPE:
 +  return check_domain_name(ptr, len, 0);
 +  break;
 +  case DHCP_SIPSERVER:
++  case DHCP_DNSDOMAIN: /* accept a list for compatibiliy */
 +  case DHCP_DNSSEARCH:
 +  return check_domain_name_list(ptr, len, 0);
 +  break;






Remember to have fun...

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



commit dhcpcd for openSUSE:11.2

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package dhcpcd for openSUSE:11.2
checked in at Mon Apr 11 16:00:04 CEST 2011.




--- old-versions/11.2/UPDATES/all/dhcpcd/dhcpcd.changes 2010-01-22 
11:27:08.0 +0100
+++ 11.2/dhcpcd/dhcpcd.changes  2011-04-07 10:10:58.0 +0200
@@ -1,0 +2,21 @@
+Thu Mar 31 13:47:05 UTC 2011 - vark...@novell.com
+
+- bnc#675052 - discard string options such as host and domain names
+  containing disallowed characters or beeing too long. This proctive
+  patch limits root-path to a-zA-Z0-9, #%+-_:.,@~/\[]= and a space
+  (CVE-2011-0997).
+- fixed to read netbios scope from info file as string
+- bnc#668194 - handle packets with xen partial UDP checksums
+- bnc#657402 - send renew messages as unicast directly to the server
+- bnc#654649 - dhcpcd ignores -G (--nogateway) option and sets default route
+
+---
+Thu Aug 12 15:51:58 UTC 2010 - vark...@novell.com
+
+- bnc#601704 - dhcpcd: ignores link carrier and does not retransmit
+- bnc#574938 dhcpcd sometime loops endless after adding wlan usb stick
+  with dhcp ip lease time infinity
+- bnc#564441 - e1000 and dhcpd hickup
+- bnc#577402 - dhcpcp with Patch bnc#565030 has netlink error with /32 netmask
+
+---

calling whatdependson for 11.2-i586


New:

  bnc#564441.diff
  bnc#577402.diff
  bnc#579438.diff
  dhcpcd-3.2.3-option-checks.diff
  dhcpcd-3.2.3-renew-unicast.diff
  dhcpcd-3.2.3-xen-checksum.diff



Other differences:
--
++ dhcpcd.spec ++
--- /var/tmp/diff_new_pack.rUITFY/_old  2011-04-11 15:59:46.0 +0200
+++ /var/tmp/diff_new_pack.rUITFY/_new  2011-04-11 15:59:46.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package dhcpcd (Version 3.2.3)
+# spec file for package dhcpcd
 #
-# 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,7 +19,7 @@
 
 Name:   dhcpcd
 Version:3.2.3
-Release:47.
+Release:47.
 Summary:A DHCP Client Daemon
 Url:http://developer.berlios.de/projects/dhcpcd/
 #Source:   http://prdownload.berlios.de/dhcpcd/dhcpcd-3.2.3.tar.bz2
@@ -43,6 +43,12 @@
 Patch14:bnc#518219.diff
 Patch15:bnc#556613.diff
 Patch16:bnc#565030.diff
+Patch17:bnc#564441.diff
+Patch18:bnc#577402.diff
+Patch19:bnc#579438.diff
+Patch20:dhcpcd-3.2.3-renew-unicast.diff
+Patch21:dhcpcd-3.2.3-xen-checksum.diff
+Patch22:dhcpcd-3.2.3-option-checks.diff
 License:GPLv2+
 Group:  Productivity/Networking/Boot/Clients
 Provides:   dhcp_client
@@ -76,16 +82,22 @@
 %patch9 -p1
 %patch10 -p1
 %patch11 -p1
-%patch12 -p1
+%patch12
 %patch13
 %patch14 -p1
 %patch15 -p1
 %patch16 -p0
+%patch17 -p0
+%patch18 -p0
+%patch19 -p0
+%patch20 -p0
+%patch21 -p0
+%patch22 -p0
 cp %{S:1} .
 cp %{S:3} .
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS -O2 -pipe -fpie -DENABLE_SYSV=1 -UENABLE_DUID" 
LDFLAGS="-pie"
+make %{?jobs:-j%jobs} CFLAGS="$RPM_OPT_FLAGS -O2 -pipe -fpie -DENABLE_SYSV=1 
-UENABLE_DUID" LDFLAGS="-pie"
 
 %install
 make install DESTDIR="$RPM_BUILD_ROOT"

++ bnc#551376.diff ++
--- /var/tmp/diff_new_pack.rUITFY/_old  2011-04-11 15:59:46.0 +0200
+++ /var/tmp/diff_new_pack.rUITFY/_new  2011-04-11 15:59:46.0 +0200
@@ -1,7 +1,6 @@
-diff -u dhcpcd-3.2.3-patched//client.c dhcpcd-3.2.3//client.c
 dhcpcd-3.2.3-patched//client.c 2009-11-27 23:36:06.798669849 +0100
-+++ dhcpcd-3.2.3//client.c 2009-11-27 23:38:49.877827824 +0100
-@@ -356,7 +356,7 @@
+--- client.c
 client.c   2009/11/18 10:33:01
+@@ -356,7 +356,7 @@ static bool client_setup (state_t *state
 * After all, we ARE a DHCP client whose job it is to configure the
 * interface. We only do this on start, so persistent addresses
 * can be added afterwards by the user if needed. */
@@ -10,4 +9,3 @@
if (! options->doinform) {
flush_addresses (iface->name);
} else {
-Common subdirectories: dhcpcd-3.2.3-patched//mk and dhcpcd-3.2.3//mk

++ bnc#564441.diff ++
--- client.c-orig   2010-02-22 10:19:23.0 +0100
+++ client.c2010-02-22 10:18:27.0 +0100
@@ -541,6 +541,7 @@
timeout *= 1000;
state->start = uptime ();
retval = poll (fds, iface->fd == -1 ? 1 : 2, timeout);
+   timeout /= 1000;
state->timeout -= uptime () - state->start;
if (retval == -1 && errno == EINTR) {
/* If interupted, continue as normal as the signal
+++

commit svrcore for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package svrcore for openSUSE:Factory
checked in at Mon Apr 11 15:51:32 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/svrcore/svrcore.changes2011-04-11 
08:32:37.0 +0200
@@ -0,0 +1,10 @@
+---
+Mon Apr 11 06:31:26 UTC 2011 - w...@rosenauer.org
+
+- fixed License tags
+
+---
+Fri Dec 25 11:40:16 CET 2009 - w...@rosenauer.org
+
+- initial package
+

calling whatdependson for head-i586


New:

  baselibs.conf
  svrcore-4.0.4.tar.bz2
  svrcore.changes
  svrcore.spec



Other differences:
--
++ svrcore.spec ++
#
# spec file for package svrcore
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2009-2011 Wolfgang Rosenauer
#
# 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:   svrcore
BuildRequires:  mozilla-nss-devel pkgconfig
Summary:Secure PIN handling using NSS crypto
Version:4.0.4
Release:1
License:MPLv1.1 or GPLv2+ or LGPLv2+
Url:http://www.mozilla.org/projects/security/pki/
Group:  System/Libraries
Source0:
ftp://ftp.mozilla.org/pub/mozilla.org/directory/svrcore/releases/%{version}/src/svrcore-%{version}.tar.bz2
Source1:baselibs.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%define libpackage libsvrcore0

%description
svrcore provides applications with several ways to handle secure PIN storage
e.g. in an application that must be restarted, but needs the PIN to unlock
the private key and other crypto material, without user intervention.  svrcore
uses the facilities provided by NSS.


%package -n %{libpackage}

Summary:Secure PIN handling using NSS crypto
License:MPLv1.1 or GPLv2+ or LGPLv2+
Group:  System/Libraries

%description -n libsvrcore0
svrcore provides applications with several ways to handle secure PIN storage
e.g. in an application that must be restarted, but needs the PIN to unlock
the private key and other crypto material, without user intervention.  svrcore
uses the facilities provided by NSS.


%package devel
Summary:Development files for secure PIN handling using NSS crypto
License:MPLv1.1 or GPLv2+ or LGPLv2+
Group:  Development/Libraries/Other
Requires:   %{libpackage} = %{version}-%{release}
Requires:   pkgconfig mozilla-nspr-devel mozilla-nss-devel

%description devel
svrcore provides applications with several ways to handle secure PIN storage
e.g. in an application that must be restarted, but needs the PIN to unlock
the private key and other crypto material, without user intervention.  svrcore
uses the facilities provided by NSS.

This package contains header files and symlinks to develop programs which will
use the libsvrcore library.  You should install this package if you need to
develop programs which will use the svrcore library.

%prep
%setup -q

%build
%configure
%__make

%install
%makeinstall
rm -f $RPM_BUILD_ROOT%{_libdir}/libsvrcore.a
rm -f $RPM_BUILD_ROOT%{_libdir}/libsvrcore.la

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%post -n %{libpackage} -p /sbin/ldconfig

%postun -n %{libpackage} -p /sbin/ldconfig

%files -n %{libpackage}
%defattr(-,root,root,-)
%{_libdir}/libsvrcore.so.*

%files devel
%defattr(-,root,root,-)
%doc LICENSE README NEWS
%{_libdir}/pkgconfig/svrcore.pc
%{_libdir}/libsvrcore.so
%{_includedir}/svrcore.h

%changelog
++ baselibs.conf ++
libsvrcore0





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-backend-gstreamer-0_10 for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package phonon-backend-gstreamer-0_10 for 
openSUSE:Factory
checked in at Mon Apr 11 15:50:10 CEST 2011.




--- KDE/phonon-backend-gstreamer-0_10/phonon-backend-gstreamer-0_10.changes 
2011-01-28 17:51:17.0 +0100
+++ 
/mounts/work_src_done/STABLE/phonon-backend-gstreamer-0_10/phonon-backend-gstreamer-0_10.changes
2011-04-10 23:05:26.0 +0200
@@ -1,0 +2,10 @@
+Sun Apr 10 16:39:56 UTC 2011 - toddrme2...@gmail.com
+
+- update to 4.5.0:
+  * Fixed DVD playback
+  * DVD menu navigation
+  * Keyboard navigation of DVD menus
+  * Subtitles
+  * Various behind-the-scenes improvements
+
+---

calling whatdependson for head-i586


Old:

  phonon-backend-gstreamer-4.4.4.tar.bz2

New:

  phonon-backend-gstreamer-4.5.0.tar.bz2



Other differences:
--
++ phonon-backend-gstreamer-0_10.spec ++
--- /var/tmp/diff_new_pack.vjgHiK/_old  2011-04-11 15:47:35.0 +0200
+++ /var/tmp/diff_new_pack.vjgHiK/_new  2011-04-11 15:47:35.0 +0200
@@ -22,7 +22,7 @@
 BuildRequires:  alsa-devel automoc4 cmake kde4-filesystem phonon-devel
 BuildRequires:  gstreamer-0_10-plugins-base-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 @@
 Group:  System/GUI/KDE
 Summary:Phonon Multimedia Platform Abstraction
 Source0:%{filename}-%{version}.tar.bz2
-Requires:   libphonon4 = %version
+Requires:   libphonon4 => %version
 Supplements:packageand(gstreamer-0_10-plugins-base:phonon)
 Provides:   phonon-backend = %version
 

++ phonon-backend-gstreamer-4.4.4.tar.bz2 -> 
phonon-backend-gstreamer-4.5.0.tar.bz2 ++
 3829 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 pure-ftpd for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package pure-ftpd for openSUSE:Factory
checked in at Mon Apr 11 15:47:21 CEST 2011.




--- pure-ftpd/pure-ftpd.changes 2010-10-07 15:30:45.0 +0200
+++ /mounts/work_src_done/STABLE/pure-ftpd/pure-ftpd.changes2011-04-11 
14:04:58.0 +0200
@@ -1,0 +2,11 @@
+Mon Apr 11 11:56:20 UTC 2011 - mvysko...@suse.cz
+
+- update to 1.0.30
+  * pure-quotacheck can now work with a large number of files.
+  * OPTS UTF-8 is now an alias to OPTS UTF8.
+  * Fix a STARTTLS flaw similar to Postfix’s CVE-2011-0411. If you’re using
+TLS, upgrading is recommended.
+  * Provide ANSI-compliant MySQL configuration example.
+  * Fix some issues with man pages.
+
+---

calling whatdependson for head-i586


Old:

  pure-ftpd-1.0.29.tar.bz2

New:

  pure-ftpd-1.0.30.tar.gz



Other differences:
--
++ pure-ftpd.spec ++
--- /var/tmp/diff_new_pack.D2zpH7/_old  2011-04-11 15:44:26.0 +0200
+++ /var/tmp/diff_new_pack.D2zpH7/_new  2011-04-11 15:44:26.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package pure-ftpd (Version 1.0.29)
+# spec file for package pure-ftpd
 #
-# 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,13 +20,13 @@
 %define with_oes 0
 
 Name:   pure-ftpd
-Version:1.0.29
-Release:6
+Version:1.0.30
+Release:1
 License:BSD3c
 Summary:A Lightweight, Fast, and Secure FTP Server
 Url:http://www.pureftpd.org
 Group:  Productivity/Networking/Ftp/Servers
-Source: 
ftp://ftp.pureftpd.org/pub/%{name}/releases/%{name}-%version.tar.bz2
+Source: 
ftp://ftp.pureftpd.org/pub/%{name}/releases/%{name}-%version.tar.gz
 Source1:%{name}.init
 Source2:%{name}.pamd
 Source3:%{name}.xinetd
@@ -113,6 +113,7 @@
 
 %install
 %makeinstall
+
 %{__install} -dD -m 0755 \
 
%{buildroot}%{_sysconfdir}/{init.d,%{name},%{name}/vhosts,pam.d,xinetd.d,openldap/schema}
 %{__install} -m 0755 \
@@ -121,13 +122,16 @@
 %{buildroot}%{_sbindir}
 %{__install} -m 0644 configuration-file/pure-ftpd.conf \
%{buildroot}%{_sysconfdir}/%{name}
+
 %{__install} -m 0755 %{S:1} %{buildroot}%{_sysconfdir}/init.d/%{name}
 ln -sf /etc/init.d/%{name}  %{buildroot}%{_sbindir}/rc%{name}
+
 %{__install} -m 0644 %{S:2}  %{buildroot}%{_sysconfdir}/pam.d/pure-ftpd
 %{__install} -m 0644 %{S:3}  
%{buildroot}%{_sysconfdir}/xinetd.d/pure-ftpd
 %{__install} -m 0644 pureftpd.schema 
%{buildroot}%{_sysconfdir}/openldap/schema/
 %{__install} -d 
%{buildroot}%{_datadir}/omc/svcinfo.d/
 %{__install} -m 0644 %{S:4} 
%{buildroot}%{_datadir}/omc/svcinfo.d/
+
 %{__install} -d 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/
 %{__install} -m 644 %{S:5}  
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%name
 

++ pure-ftpd-1.0.22-default_tcp_sedrcv_buffer_size.patch ++
--- /var/tmp/diff_new_pack.D2zpH7/_old  2011-04-11 15:44:26.0 +0200
+++ /var/tmp/diff_new_pack.D2zpH7/_new  2011-04-11 15:44:26.0 +0200
@@ -1,17 +1,21 @@
 Index: configure
 ===
 configure.orig
-+++ configure
-@@ -11228,107 +11228,13 @@ else
- $as_echo "no" >&6; }
+--- configure.orig 2010-12-30 11:42:52.0 +0100
 configure  2011-04-11 13:55:41.566322096 +0200
+@@ -23271,163 +23271,12 @@
+ echo "${ECHO_T}no" >&6; }
  fi
  
--{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default TCP send buffer 
size" >&5
--$as_echo_n "checking default TCP send buffer size... " >&6; }
--if test "$cross_compiling" = yes; then :
+-{ echo "$as_me:$LINENO: checking default TCP send buffer size" >&5
+-echo $ECHO_N "checking default TCP send buffer size... $ECHO_C" >&6; }
+-if test "$cross_compiling" = yes; then
 -  CONF_TCP_SO_SNDBUF=65536
 -else
--  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
 -/* end confdefs.h.  */
 -
 -#include 
@@ -40,17 +44,41 @@
 -}
 -
 -_ACEOF
--if ac_fn_c_try_run "$LINENO"; then :
+-rm -f conftest$ac_exeext
+-if { (ac_try="$ac_link"
+-case "(($ac_try" in
+-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+-  *) ac_try_echo=$ac_try;;
+-esac
+-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
+-  (eval "$ac_link") 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (e

commit bluez for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package bluez for openSUSE:Factory
checked in at Mon Apr 11 15:44:17 CEST 2011.




--- bluez/bluez-gstreamer.changes   2011-03-18 11:46:09.0 +0100
+++ /mounts/work_src_done/STABLE/bluez/bluez-gstreamer.changes  2011-03-30 
09:35:44.0 +0200
@@ -1,0 +2,19 @@
+Wed Mar 30 07:12:13 UTC 2011 - seife+...@b1-systems.com
+
+- update to bluez-4.91:
+  - Fix issue with LMP version string and hciconfig.
+  - Fix issue with missing discovery signal when scanning.
+  - Fix issue with wrong state and canceling name resolving.
+  - Fix issue with missing check during adapter initialization.
+  - Fix issue with missing protocol not supported error and A2DP.
+  - Fix issue with crash during driver unregistering and A2DP.
+  - Fix issue with crash when receiving AVDTP close command.
+  - Fix issue with remote SEP handling when A2DP codec changes.
+  - Fix issue with SCO hangup handling and state changes.
+  - Fix issue with security level and MCAP instances.
+  - Fix issue with memory leak and HDP data channels.
+  - Add support for discover characteristics by UUID to gatttool.
+  - Add initial support for Out-of-Band association model.
+  - Add initial support for SIM Access Profile.
+
+---
bluez.changes: same change

calling whatdependson for head-i586


Old:

  bluez-4.90.tar.bz2

New:

  bluez-4.91.tar.bz2



Other differences:
--
++ bluez-gstreamer.spec ++
--- /var/tmp/diff_new_pack.stGWxQ/_old  2011-04-11 15:43:49.0 +0200
+++ /var/tmp/diff_new_pack.stGWxQ/_new  2011-04-11 15:43:49.0 +0200
@@ -30,7 +30,7 @@
 BuildRequires:  gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel
 BuildRequires:  readline-devel
 Url:http://www.bluez.org
-Version:4.90
+Version:4.91
 Release:1
 Summary:Bluetooth Sound Support
 Group:  Productivity/Multimedia/Sound/Utilities

++ bluez.spec ++
--- /var/tmp/diff_new_pack.stGWxQ/_old  2011-04-11 15:43:49.0 +0200
+++ /var/tmp/diff_new_pack.stGWxQ/_new  2011-04-11 15:43:49.0 +0200
@@ -29,7 +29,7 @@
 BuildRequires:  alsa-devel libsndfile-devel pkg-config udev
 BuildRequires:  readline-devel
 Url:http://www.bluez.org
-Version:4.90
+Version:4.91
 Release:1
 Summary:Bluetooth Stack for Linux
 Group:  Hardware/Mobile

++ bluez-4.90.tar.bz2 -> bluez-4.91.tar.bz2 ++
 6669 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-CGI-Ajax for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-CGI-Ajax for openSUSE:Factory
checked in at Mon Apr 11 14:25:04 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-CGI-Ajax/perl-CGI-Ajax.changes
2011-02-07 16:22:33.0 +0100
@@ -0,0 +1,16 @@
+---
+Mon Feb  7 15:20:08 UTC 2011 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78.03
+  * fix deps
+
+---
+Mon Jan  3 15:34:12 UTC 2011 - mma...@novell.com
+
+- Mark package as noarch.
+
+---
+Mon Jan  3 14:01:18 UTC 2011 - mma...@novell.com
+
+- Packaged CGI-Ajax-0.707.
+

calling whatdependson for head-i586


New:

  CGI-Ajax-0.707.tar.bz2
  perl-CGI-Ajax.changes
  perl-CGI-Ajax.spec



Other differences:
--
++ perl-CGI-Ajax.spec ++
#
# spec file for package perl-CGI-Ajax
#
# 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-CGI-Ajax
%define cpan_name CGI-Ajax
Summary:A perl-specific System for writing Asynchronous web Apps
Version:0.707
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/CGI-Ajax/
#Source: 
http://www.cpan.org/authors/id/B/BP/BPEDERSE/CGI-Ajax-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(CGI)
BuildRequires:  perl(Class::Accessor)
Requires:   perl(CGI)
Requires:   perl(Class::Accessor)
%{perl_requires}

%description
CGI::Ajax is an object-oriented module that provides a unique mechanism for
using perl code asynchronously from javascript- enhanced HTML pages.
CGI::Ajax unburdens the user from having to write extensive javascript,
except for associating an exported method with a document-defined event
(such as onClick, onKeyUp, etc). CGI::Ajax also mixes well with HTML
containing more complex javascript.

CGI::Ajax supports methods that return single results or multiple results
to the web page, and supports returning values to multiple DIV elements on
the HTML page.

Using CGI::Ajax, the URL for the HTTP GET/POST request is automatically
generated based on HTML layout and events, and the page is then dynamically
updated with the output from the perl function. Additionally, CGI::Ajax
supports mapping URL's to a CGI::Ajax function name, so you can separate
your code processing over multiple scripts.

Other than using the Class::Accessor module to generate CGI::Ajax' accessor
methods, CGI::Ajax is completely self-contained - it does not require you
to install a larger package or a full Content Management System, etc.

We have added _support_ for other CGI handler/decoder modules, like the
CGI::Simple manpage or the CGI::Minimal manpage, but we can't test these
since we run mod_perl2 only here. CGI::Ajax checks to see if a header()
method is available to the CGI object, and then uses it. If method() isn't
available, it creates it's own minimal header.

A primary goal of CGI::Ajax is to keep the module streamlined and maximally
flexible. We are trying to keep the generated javascript code to a minimum,
but still provide users with a variety of methods for deploying CGI::Ajax.
And VERY little user javascript.

%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(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 picocom for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package picocom for openSUSE:Factory
checked in at Mon Apr 11 14:22:29 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/picocom/picocom.changes2011-04-11 
08:26:57.0 +0200
@@ -0,0 +1,24 @@
+---
+Mon Apr 11 05:20:00 UTC 2011 - mse...@gmail.com
+
+- updated to picocom 1.6 
+  * Added features:
+- Local echo
+- Configurable input mapping (CR --> LF, DEL --> BS, etc)
+- Configurable output mapping
+- Configurable local-echo mapping
+  * Fixed URL in man page
+  * Fixed misconception that prevented the correct setting 
+of the odd-parity mode
+  * Allow non-alpha escape keys (e.g. C-])
+  * Enabled support for higher baudrates up to 921600. Support is
+compiled-in conditionally on the HIGH_BAUD macro.
+  * Silenced compiler warning
+  * Changed default send_cmd to "sz -vv"
+
+---
+Sat Mar  28 14:54:45 CEST 2008 - mse...@suse.cz
+
+- Initial package
+
+---

calling whatdependson for head-i586


New:

  picocom-1.6.tar.bz2
  picocom.changes
  picocom.spec



Other differences:
--
++ picocom.spec ++
#
# spec file for package picocom
#
# 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:   picocom
#BuildRequires:
License:GPLv2
Group:  Hardware/Modem
#Requires:
AutoReqProv:on
Version:1.6
Release:1
Summary:Minimal dumb-terminal emulation program
Url:http://efault.net/npat/hacks/picocom/
Source: %{name}-%{version}.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
As its name suggests, [picocom] is a minimal dumb-terminal emulation
program. It is, in principle, very much like minicom, only it's "pico"
instead of "mini"! It was designed to serve as a simple, manual, modem
configuration, testing, and debugging tool. It has also served (quite
well) as a low-tech "terminal-window" to allow operator intervention
in PPP connection scripts (something like the ms-windows "open
terminal window before / after dialing" feature). It could also prove
useful in many other similar tasks.

Authors:

Nick Patavalis 

%prep
%setup

%build
make CFLAGS="$RPM_OPT_FLAGS"

%install
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8
install -m 755 picocom $RPM_BUILD_ROOT%{_bindir}/
install -m 644 picocom.8 $RPM_BUILD_ROOT%{_mandir}/man8/

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root)
%doc CHANGES CONTRIBUTORS LICENSE.txt NEWS README
%{_bindir}/picocom
%{_mandir}/man8/*

%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 abook for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package abook for openSUSE:Factory
checked in at Mon Apr 11 13:50:23 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/abook/abook.changes2009-12-22 
23:05:32.0 +0100
@@ -0,0 +1,15 @@
+---
+Tue Dec 22 23:04:41 CET 2009 - w...@rosenauer.org
+
+- use a hopefully better RPM group
+
+---
+Thu Dec 18 15:17:09 PST 2008 - bran...@ifup.org
+
+- Use %{version} and make package version reflect upstream version
+ 
+---
+Mon May  5 14:19:09 CEST 2008 - w...@rosenauer.org
+
+- revive abook with version 0.6.0pre2
+

calling whatdependson for head-i586


New:

  abook-0.6.0pre2.tar.gz
  abook.changes
  abook.spec



Other differences:
--
++ abook.spec ++
#
# spec file for package abook
#
# 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:   abook
BuildRequires:  gettext ncurses-devel readline-devel
Summary:Text-based addressbook program
Version:0.6.0pre2
Release:1
License:GPL
Group:  Productivity/Other
Source: http://abook.sourceforge.net/devel/%{name}-%{version}.tar.gz
Url:http://abook.sourceforge.net/
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Abook is a text-based addressbook program designed to
use with mutt mail client.


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

%build
%configure
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fstack-protector-all" %{?jobs:-j %jobs}

%install
%makeinstall
%find_lang %{name}

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

%files -f %{name}.lang
%defattr(-,root,root)
%doc AUTHORS BUGS COPYING ChangeLog FAQ NEWS README THANKS TODO sample.abookrc
%{_bindir}/abook
%{_mandir}/man1/abook.*
%{_mandir}/man5/abookrc.*

%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 blitz for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package blitz for openSUSE:Factory
checked in at Mon Apr 11 13:48:38 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/blitz/blitz.changes2011-03-23 
21:23:16.0 +0100
@@ -0,0 +1,11 @@
+---
+Wed Mar 23 20:24:40 UTC 2011 - badshah...@gmail.com
+
+- Require the correct version of libblitz0 library for blitz-devel
+  package 
+
+---
+Wed Mar 23 01:08:20 UTC 2011 - badshah...@gmail.com
+
+- Initial package (following spec file from fedora) 
+

calling whatdependson for head-i586


New:

  blitz-0.9.tar.bz2
  blitz-gcc-4.3.patch
  blitz.changes
  blitz.spec



Other differences:
--
++ blitz.spec ++
#
# spec file for package blitz
#
# 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:   blitz
Version:0.9
Release:1
License:GPLv2
Summary:C++ template class library providing array objects for 
scientific computing
Url:http://www.oonumerics.org/blitz/
Group:  Development/Libraries/C and C++
Source: %{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM blitz-gcc-4.3.patch badshah...@gmail.com --Fix compilation 
with gcc>=4.3
# (patch taken from fedora)
Patch0: blitz-gcc-4.3.patch
BuildRequires:  gcc-c++
BuildRequires:  pkgconfig
BuildRequires:  texlive-latex
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
Requires(post): /sbin/install-info
Requires(preun):/sbin/install-info

%description
Blitz++ is a C++ class library for scientific computing which provides
performance on par with Fortran 77/90. It uses template techniques to achieve
high performance. Blitz++ provides dense arrays and vectors, random number
generators, and small vectors.

%package -n libblitz0
License:GPLv2
Summary:Shared libraries for blitz
Group:  Development/Libraries/C and C++

%description -n libblitz0
Blitz++ is a C++ class library for scientific computing which provides
performance on par with Fortran 77/90. It uses template techniques to achieve
high performance. Blitz++ provides dense arrays and vectors, random number
generators, and small vectors.

This package provides shared libraries with blitz.


%package devel
License:GPLv2
Summary:Libraries, includes, etc. used to develop an application with 
%{name}
Group:  Development/Libraries/C and C++
Requires:   libblitz0 = %{version}
Requires:   pkgconfig

%description devel
Blitz++ is a C++ class library for scientific computing which provides
performance on par with Fortran 77/90. It uses template techniques to achieve
high performance. Blitz++ provides dense arrays and vectors, random number
generators, and small vectors.

This package provides the header files and libraries needed to develop a blitz
application.

%package doc
License:GPLv2
Summary:The Blitz html docs
Group:  Documentation/HTML
BuildArch:  noarch

%description doc
Blitz++ is a C++ class library for scientific computing which provides
performance on par with Fortran 77/90. It uses template techniques to achieve
high performance. Blitz++ provides dense arrays and vectors, random number
generators, and small vectors.

This package provides HTML documentation files for the Blitz Library.

%prep
%setup -q
%patch0 -p1

%build
%configure --enable-shared --disable-static --disable-fortran \
--disable-dependency-tracking --disable-cxx-flags-preset
make 

%install
make DESTDIR=%{buildroot} install
#Remove empty dirs and example files from the documnetation
rm -rf doc/doxygen/html/installdox
rm -rf examples/.deps
rm -rf examples/Makefile*

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

%post -n libblitz0 -p /sbin/ldconfig

%postun -n libblitz0 -p /sbin/ldconfig

%post devel
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :

%preun devel
if [ $1 = 0 ]; then
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
fi

%files -n libblitz0
%defattr(-,root,root)
%doc AUTHORS LEGAL COPYING README LICENSE
%{_libdir}/*so.*

%files devel
%defattr(-,root

commit choqok for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package choqok for openSUSE:Factory
checked in at Mon Apr 11 13:34:48 CEST 2011.




--- KDE/choqok/choqok.changes   2011-03-22 06:12:11.0 +0100
+++ /mounts/work_src_done/STABLE/choqok/choqok.changes  2011-04-04 
09:39:29.0 +0200
@@ -1,0 +2,12 @@
+Mon Apr  4 07:32:09 UTC 2011 - wstephen...@novell.com
+
+- Update to version 1.1
+  * Translator plugin
+  * Quick Filter plugin
+  * System tray icon problem in GNOME fixed
+  * Hide Menu-bar option
+  * Choqok caches posts automatically and not just at exit
+  * Fixed video preview plugin problem that causes Choqok to crash
+  * Bug fixes
+
+---

calling whatdependson for head-i586


Old:

  choqok-1.0.tar.bz2

New:

  choqok-1.1.tar.bz2



Other differences:
--
++ choqok.spec ++
--- /var/tmp/diff_new_pack.ojap40/_old  2011-04-11 13:30:52.0 +0200
+++ /var/tmp/diff_new_pack.ojap40/_new  2011-04-11 13:30:52.0 +0200
@@ -23,8 +23,8 @@
 License:GPLv3
 Group:  Productivity/Networking/Other
 Summary:Micro-Blogging Client for KDE
-Version:1.0
-Release:6
+Version:1.1
+Release:1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: %{name}-%{version}.tar.bz2
 Url:http://choqok.gnufolks.org
@@ -102,6 +102,7 @@
 %_kde4_appsdir/choqok_filter/
 %_kde4_appsdir/choqok_nowlistening/
 %_kde4_appsdir/choqok_searchaction/
+%_kde4_appsdir/choqok_quickfilter/
 %_kde4_appsdir/khtml/kpartplugins/konqchoqok*
 %_kde4_htmldir/*
 %_kde4_modulesdir/choqok*
@@ -121,6 +122,7 @@
 %_kde4_sharedir/config.kcfg/mobypicturesettings.kcfg
 %_kde4_sharedir/config.kcfg/posteroussettings.kcfg
 %_kde4_sharedir/config.kcfg/twitgoosettings.kcfg
+%_kde4_sharedir/config.kcfg/translatorsettings.kcfg
 
 /usr/share/icons/hicolor/*/apps/*
 /usr/share/icons/hicolor/*/actions/retweet.*

++ choqok-1.0.tar.bz2 -> choqok-1.1.tar.bz2 ++
 103247 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 xorg-x11-libX11-ccache for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package xorg-x11-libX11-ccache for 
openSUSE:Factory
checked in at Mon Apr 11 13:29:32 CEST 2011.




--- xorg-x11-libX11-ccache/xorg-x11-libX11-ccache.changes   2010-12-21 
04:19:37.0 +0100
+++ 
/mounts/work_src_done/STABLE/xorg-x11-libX11-ccache/xorg-x11-libX11-ccache.changes
  2011-04-11 11:42:16.0 +0200
@@ -1,0 +2,12 @@
+Mon Apr 11 09:40:38 UTC 2011 - sndir...@novell.com
+
+- LICENSE needs to be marked and handled as SOURCE (not PATCH!)
+- package is now noarch
+
+---
+Fri Apr  8 14:27:34 UTC 2011 - sndir...@novell.com
+
+- changes by Christopher Yeleighton  
+  * run mkallcomposecaches from the tarball
+
+---

calling whatdependson for head-i586


New:

  mkcomposecache-1.2.1.tar.bz2



Other differences:
--
++ xorg-x11-libX11-ccache.spec ++
--- /var/tmp/diff_new_pack.5gEGMR/_old  2011-04-11 13:23:10.0 +0200
+++ /var/tmp/diff_new_pack.5gEGMR/_new  2011-04-11 13:23:10.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package xorg-x11-libX11-ccache (Version 7.6)
+# spec file for package xorg-x11-libX11-ccache
 #
-# 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
@@ -17,19 +17,22 @@
 
 # norootforbuild
 
+%define mkcomposecache mkcomposecache-1.2.1
 
 Name:   xorg-x11-libX11-ccache
+BuildArch:  noarch
 BuildRequires:  xorg-x11 xorg-x11-Xvfb xorg-x11-devel xorg-x11-fonts
 BuildRequires:  xkeyboard-config
 Url:http://xorg.freedesktop.org/
 Version:7.6
-Release:1
+Release:5
 License:MIT
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  System/Libraries
 Provides:   xorg-x11:/var/X11R6/compose-cache/
 Summary:X.Org compose cache
-Source: LICENSE
+Source: %{mkcomposecache}.tar.bz2 
+Source1:LICENSE
 
 %description
 Cache for X.Org compose files.
@@ -42,13 +45,16 @@
 Matthias Hopf
 
 %prep
+%setup -q -n '%{mkcomposecache}'
 
 %build
 
 %install
+cp -t. '%{S:1}'
 rm -rf $RPM_BUILD_ROOT
-/usr/sbin/mkallcomposecaches prefix=/usr 
cachedir=$RPM_BUILD_ROOT/var/cache/libx11/compose xvfbopts="'-fp 
/usr/share/fonts/misc'" /
-cp %{SOURCE0} .
+'./mkallcomposecaches.sh' \
+ 'prefix=%{_prefix}' \
+ cachedir="$RPM_BUILD_ROOT/%{_localstatedir}/cache/libx11/compose" 
xvfbopts="'-fp '\''%{_datadir}/fonts/misc'\'" /
 
 %clean
 rm -rf "$RPM_BUILD_ROOT"






Remember to have fun...

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



commit ktorrent for openSUSE:11.4

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package ktorrent for openSUSE:11.4
checked in at Mon Apr 11 13:26:16 CEST 2011.




--- old-versions/11.4/all/ktorrent/ktorrent.changes 2011-02-07 
13:49:46.0 +0100
+++ 11.4/ktorrent/ktorrent.changes  2011-03-17 07:55:24.0 +0100
@@ -1,0 +2,62 @@
+Wed Mar 16 18:30:18 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to 4.1.0:
+  * Check if source files are missing before moving them (bko#265607)
+  * Fix scanextender showing when they are not supposed to (bko#259483)
+  * Fix mediaplayer unable to stop in buffering mode when streaming
+(bko#266100)
+  * KDE 4.4 compatibility fix in search plugin
+  * Make sure overwrite is possible for the torrent copy file feature
+  * Fix critical Qt warning when opening context menu in view
+- Spec file updates:
+  * Removed Authors: from %description (requirement for Factory submissions).
+  * Removed ktorrent-devel and libktcore12 subpackages and merged it in the
+main package since the package doesn't actually provides any shared
+libraries. Because of this also removed libktcore.so to fix rpmlint warning
+"devel-file-in-non-devel-package".
+  * Minor update in %files section.
+- Rebased "initial-preference.diff" patch to apply cleanly.
+
+---
+Thu Mar 10 10:35:59 UTC 2011 - co...@novell.com
+
+- buildrequire a specific libktorrent
+
+---
+Sat Feb 26 10:27:27 UTC 2011 - co...@novell.com
+
+- switch back to recommending -lang package
+
+---
+Fri Feb 25 22:32:07 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to 4.0.99rc1 (4.1rc1):
+  * Make sure that apply button of config dialog is enabled properly when the
+group changes in the scanfolder settings
+  * Add kio-magnet
+  * Improve performance of ktorrent in situations where there are many torrent
+(262571)
+  * Fix memory leak on exit (263802)
+  * Fix tab bar not matching TabBarWidget state in some circumstances (263068)
+  * Fix libktorrent not gettting updated when the download of a magnet link
+finishes and the FileSelectDlg is shown
+  * Update view tab when switching to it, fixes data scan widget showing in the
+wrong place (259483)
+  * Update view captions every GUI update (264215)
+  * Use user modified path for file column in chunks view (264814)
+  * Fix QM bug causing torrents to get started when it is not needed (262570)
+- Spec file updates:
+  * Changes based on rpmdevtools templates and spec-cleaner run.
+  * Changed License: to GPLv2+ and GPLv3 and LGPLv2 and LGPLv2+ and LGPLv2.1+
+and BSD.
+  * Updates in Url: and %description.
+  * Added description for the patches based on openSUSE Patches Guidelines.
+  * Updates in Buildrequires:, Requires:, %build, %install and %files sections.
+  * Use Suggests: and not Recommends: for lang package.
+  * Removed %pre and %post /sbin/ldconfig section for main package (not
+needed).
+  * Moved the english help files in the main package.
+- Removed ktorrent icons from icons.tar.bz2 (they are provided by the package).
+- Fixed rpmlint warning ("wrong-icon-size").
+
+---

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


Old:

  ktorrent-4.1beta1.tar.bz2

New:

  ktorrent-4.1.0.tar.bz2



Other differences:
--
++ ktorrent.spec ++
--- /var/tmp/diff_new_pack.haKDQb/_old  2011-04-11 13:25:49.0 +0200
+++ /var/tmp/diff_new_pack.haKDQb/_new  2011-04-11 13:25:49.0 +0200
@@ -16,101 +16,78 @@
 #
 
 
-#
-%define srcversion 4.1beta1
 
 Name:   ktorrent
-BuildRequires:  gmp-devel kdebase4-workspace-devel libkdepimlibs4-devel 
libqca2-devel taglib-devel
-BuildRequires:  fdupes libktorrent-devel
-BuildRequires:  hicolor-icon-theme jpackage-utils
-Url:http://ktorrent.pwsp.net/
-License:GPLv2+
-Group:  Productivity/Networking/File-Sharing
+Version:4.1.0
+Release:1.
 Summary:KDE BitTorrent Client
-Version:4.0.99beta1
-Release:2
+
+License:GPLv2+ and GPLv3 and LGPLv2 and LGPLv2+ and LGPLv2.1+ and BSD
+Url:http://ktorrent.org/
+Group:  Productivity/Networking/File-Sharing
+Source0:http://ktorrent.org/downloads/4.1.0/%{name}-%{version}.tar.bz2
+# Mimetype icons
+Source1:icons.tar.bz2
+Source2:ktorrent.1
+Source3:ktupnptest.1
+# PATCH-FIX-OPENSUSE remove-links.diff adr...@suse.de -- Remove links to some 
search engine with maybe legal problems
+Patch0: remove-links.diff
+# PATCH-FIX-OPENSUSE suse-dht-warning.diff wstephen..

commit libktorrent for openSUSE:11.4

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package libktorrent for openSUSE:11.4
checked in at Mon Apr 11 13:25:41 CEST 2011.




--- old-versions/11.4/all/libktorrent/libktorrent.changes   2011-01-15 
15:17:16.0 +0100
+++ 11.4/libktorrent/libktorrent.changes2011-03-17 07:53:07.0 
+0100
@@ -1,0 +2,42 @@
+Wed Mar 16 18:01:19 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to 1.1.0:
+  * Improve performance of chunk selection code when there are many chunks
+  * Fix crash in peer authentication cleanup (bko#266622)
+  * Fix crash due to SIGBUS handler being overwritten by KDE's crash dialog
+system (bko#266842)
+  * Be more lenient towards torrents with wrong announce-list field
+(bko#268145)
+  * Fix root cause of SHA1HashGen crashes in 1.0 series (bko#268162)
+- Spec file updates:
+  * Removed Authors: from %description (requirement for Factory submissions).
+  * Minor update in %files section.
+
+---
+Sat Feb 26 10:30:55 UTC 2011 - co...@novell.com
+
+- recommend -lang package again
+
+---
+Fri Feb 25 20:12:14 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to libktorrent-1.0.99rc1 (1.1rc1):
+  * Fix bug in UPnP so that it works properly with D-Link DIR 635 routers
+  * Fix crash due to manipulating timers in the wrong thread (261903)
+  * Fix compiler warning in TimeEstimator (262618)
+  * Fix crash due to cleaning up timer in the wrong thread (260712)
+  * Fix crash due to not properly cleaning up Peers and everything related when
+switching to superseeding mode (261529)
+  * Fix invalid read in utp timer cleanup code (263800)
+  * Fix crashes at exit (264378, 256639)
+- Spec file updates:
+  * Changes based on rpmdevtools templates and spec-cleaner run.
+  * Updates in Summary:, Url: and %description.
+  * Changed License: to GPLv2+ and LGPLv2+ and MIT and BSD.
+  * Updates in Buildrequires:, %build, %install and %files sections.
+  * Use Suggests: and not Recommends: for lang package.
+  * Removed %pre /sbin/ldconfig section (not needed).
+- Removed libktorrent-1.1beta1-sprseedcrash.patch (fixed upstream).
+- Removed libktorrent-po.tar.bz2 (not needed, its included in the package).
+
+---

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


Old:

  libktorrent-1.1beta1-sprseedcrash.patch
  libktorrent-1.1beta1.tar.bz2
  libktorrent-po.tar.bz2

New:

  libktorrent-1.1.0.tar.bz2



Other differences:
--
++ libktorrent.spec ++
--- /var/tmp/diff_new_pack.qpHBDy/_old  2011-04-11 13:25:13.0 +0200
+++ /var/tmp/diff_new_pack.qpHBDy/_new  2011-04-11 13:25:13.0 +0200
@@ -16,114 +16,90 @@
 #
 
 
-%define gitver git20101211
-%define srcversion 1.1beta1
-%define debug_package_requires libktorrent3 = %{version}-%{release}
 
 Name:   libktorrent
-BuildRequires:  fdupes gmp-devel kdebase4-workspace-devel libkdepimlibs4-devel 
libqca2-devel taglib-devel
-Url:http://ktorrent.pwsp.net/
-License:GPLv2+
+Version:1.1.0
+Release:1.
+Summary:Torrent Downloading Library
+
+License:GPLv2+ and LGPLv2+ and MIT and BSD
+Url:http://ktorrent.org/
 Group:  Productivity/Networking/File-Sharing
-Summary:KTorrent Downloading Library
-Version:1.0.80
-Release:2
+Source0:http://ktorrent.org/downloads/4.1.0/%{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: %{name}-%{srcversion}.tar.bz2
-Source1:%{name}-po.tar.bz2
-# Patch0 fixes superseeding crash, see : kde #(261529), first reported in kde 
#(262560).
-Patch0: libktorrent-1.1beta1-sprseedcrash.patch
+
+BuildRequires:  boost-devel
+BuildRequires:  doxygen
+BuildRequires:  gmp-devel
+BuildRequires:  libgcrypt-devel
+BuildRequires:  libkde4-devel
+BuildRequires:  libqca2-devel
 
 %description
-Torrent is a BitTorrent program for KDE. Its main features are:
-* Download of torrent files
-* Upload speed capping, seeing that most people cannot upload
-  infinite amounts of data
-* Internet searching using the BitTorrent Web site's search engine
-* UDP trackers
-
-Authors:
-
-Jois Guisson 
+libktorrent is a torrent downloading library.
 
 %package devel
-License:GPLv2+
+Summary:Development files for libktorrent
+License:GPLv2+ and LGPLv2+ and MIT and BSD
 Group:  Development/Libraries/C and C++
-Summary:KDE BitTorrent Client Build Environment
 Requires:   libktorrent3 = %{version}
 
 %description devel
-This package includes the necessary files to build KTorrent plugins

commit yast2-kerberos-server for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package yast2-kerberos-server for 
openSUSE:Factory
checked in at Mon Apr 11 13:23:01 CEST 2011.




--- yast2-kerberos-server/yast2-kerberos-server.changes 2009-01-20 
13:48:49.0 +0100
+++ 
/mounts/work_src_done/STABLE/yast2-kerberos-server/yast2-kerberos-server.changes
2011-04-11 11:13:41.0 +0200
@@ -1,0 +2,18 @@
+Mon Apr 11 11:11:08 CEST 2011 - m...@suse.de
+
+- version 2.21.0
+- submit previos patches
+
+---
+Fri Jul 23 11:17:31 CEST 2010 - m...@suse.de
+
+- fix LDAP based Kerberos Server configuration fails with TLS error
+  (bnc#619549)
+
+---
+Mon Nov 16 11:54:21 CET 2009 - m...@suse.de
+
+- Use InputField, where `Time and `Date do not exist
+  (bnc#551146) 
+
+---

calling whatdependson for head-i586


Old:

  yast2-kerberos-server-2.18.0.tar.bz2

New:

  yast2-kerberos-server-2.21.0.tar.bz2



Other differences:
--
++ yast2-kerberos-server.spec ++
--- /var/tmp/diff_new_pack.CE20kH/_old  2011-04-11 13:21:23.0 +0200
+++ /var/tmp/diff_new_pack.CE20kH/_new  2011-04-11 13:21:23.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package yast2-kerberos-server (Version 2.18.0)
+# spec file for package yast2-kerberos-server
 #
-# 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
@@ -19,40 +19,43 @@
 
 
 Name:   yast2-kerberos-server
-Version:2.18.0
+Version:2.21.0
 Release:1
-License:GPL v2 or later
-Group:  System/YaST
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-kerberos-server-2.18.0.tar.bz2
+Source0:yast2-kerberos-server-2.21.0.tar.bz2
+
 Prefix: /usr
+
+Group:  System/YaST
+License:GPLv2+
 Requires:   yast2 yast2-ldap-client yast2-kerberos-client
 BuildRequires:  perl-XML-Writer update-desktop-files yast2 yast2-devtools 
yast2-ldap-client yast2-testsuite
+
 BuildArch:  noarch
+
 Summary:YaST2 - Kerberos Server Configuration
 
 %description
 Provides basic configuration of a Kerberos server over the YaST2
 Control Center.
 
-
-
-Authors:
-
-Michael Calmer 
-
 %prep
-%setup -n yast2-kerberos-server-2.18.0
+%setup -n yast2-kerberos-server-2.21.0
 
 %build
 %{prefix}/bin/y2tool y2autoconf
 %{prefix}/bin/y2tool y2automake
 autoreconf --force --install
+
 export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
 export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
+
 %{?suse_update_config:%{suse_update_config -f}}
 ./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
-make %{?jobs:-j%jobs}
+# V=1: verbose build in case we used AM_SILENT_RULES(yes)
+# so that RPM_OPT_FLAGS check works
+make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR="$RPM_BUILD_ROOT"

++ yast2-kerberos-server-2.18.0.tar.bz2 -> 
yast2-kerberos-server-2.21.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-kerberos-server-2.18.0/VERSION 
new/yast2-kerberos-server-2.21.0/VERSION
--- old/yast2-kerberos-server-2.18.0/VERSION2009-01-20 13:44:20.0 
+0100
+++ new/yast2-kerberos-server-2.21.0/VERSION2011-04-11 11:10:58.0 
+0200
@@ -1 +1 @@
-2.18.0
+2.21.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-kerberos-server-2.18.0/src/KerberosServer.pm 
new/yast2-kerberos-server-2.21.0/src/KerberosServer.pm
--- old/yast2-kerberos-server-2.18.0/src/KerberosServer.pm  2008-09-23 
15:43:25.0 +0200
+++ new/yast2-kerberos-server-2.21.0/src/KerberosServer.pm  2010-07-23 
11:16:52.0 +0200
@@ -947,12 +947,12 @@
 if($uriParts->{scheme} eq "ldapi")
 {
 # local ldap server; use hostname and domain 
-$data->{ldap_servers} = "$hostname.$domain"; # == ldap server IP 
address or name
+$data->{ldap_server} = "$hostname.$domain"; # == ldap server IP 
address or name
 }
 elsif(($uriParts->{scheme} eq "ldaps" || $uriParts->{scheme} eq 
"ldap") && $uriParts->{host} ne "")
 {
 # local ldap server; use hostname and domain 
-$data->{ldap_servers} = $uriParts->{host}; # == ldap server IP 
address or name
+$data->{ldap_server} = $uriParts->{host}; # == ldap server IP 
address or name
 }
 else
 {
@@ -2369,7 +2369,7 @@
 }
 
 $hostname = `/bin/hostname`;
-if($?)
+if($? || ! defined $hostname || $hostname eq "")

commit GraphicsMagick for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package GraphicsMagick for openSUSE:Factory
checked in at Mon Apr 11 13:21:14 CEST 2011.




--- GraphicsMagick/GraphicsMagick.changes   2010-12-22 11:13:49.0 
+0100
+++ /mounts/work_src_done/STABLE/GraphicsMagick/GraphicsMagick.changes  
2011-04-11 11:21:52.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 11 11:26:09 CEST 2011 - pgaj...@suse.cz
+
+- removed dependency of devel packages on the main package
+  [bnc#685755]
+
+---

calling whatdependson for head-i586




Other differences:
--
++ GraphicsMagick.spec ++
--- /var/tmp/diff_new_pack.KuRQWl/_old  2011-04-11 13:17:24.0 +0200
+++ /var/tmp/diff_new_pack.KuRQWl/_new  2011-04-11 13:17:24.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package GraphicsMagick (Version 1.3.12)
+# spec file for package GraphicsMagick
 #
-# 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 @@
 %define base_version 1.3.12
 Summary:Viewer and Converter for Images
 Version:1.3.12
-Release:6
+Release:12
 License:MIT License (or similar)
 Group:  Productivity/Graphics/Convertors
 Source: 
ftp://ftp.GraphicsMagick.org/pub/%{name}/%{name}-%{version}.tar.bz2
@@ -127,7 +127,6 @@
 License:MIT License (or similar)
 Summary:Viewer and Converter for Images - files mandatory for 
development
 Group:  Development/Libraries/C and C++
-Requires:   %{name} = %{version}
 # These comes from check in AB for 11.4
 Requires:   glibc-devel
 
@@ -206,7 +205,7 @@
 Group:  Development/Libraries/C and C++
 Provides:   GraphicsMagick-C++-devel 
 Obsoletes:  GraphicsMagick-C++-devel <= 1.1.7 
-Requires:   %{name} = %{version}, libGraphicsMagick++3 = %{version}
+Requires:   libGraphicsMagick++3 = %{version}
 Requires:   %{name}-devel = %{version}
 Requires:   c++_compiler
 






Remember to have fun...

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



commit gwibber for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package gwibber for openSUSE:Factory
checked in at Mon Apr 11 13:17:04 CEST 2011.




--- GNOME/gwibber/gwibber.changes   2011-02-12 20:26:02.0 +0100
+++ /mounts/work_src_done/STABLE/gwibber/gwibber.changes2011-04-07 
17:50:26.0 +0200
@@ -1,0 +2,115 @@
+Thu Apr 07 11:44:00 BST 2011 - riggwel...@opensuse.org
+
+- Update to version 3.0.0:
+  + facebook: If there is no name associated with a link, use the
+text "link" instead of displaying None
+  + Added new wrapper script for performing some operations
+  + Install the gwibber-client script
+  + Added Ayatana shortcut groups for unity integration, other
+desktop environments will ignore them
+  + added gwibber entry to the unity menus
+  + Updated launcher categories, adding X-GNOME-PersonalSettings
+  + Added icons needed for links and videos (from gnome-icon-theme)
+  + Added definitions for links and videos, we need that
+  + enable receive as a feature to get the account to apprear in
+the account tree (LP: #645584)
+  + Put the messages in the correct streams, specifically links,
+images and videos
+  + Set the stream correctly
+  + Make Links and Videos translatable
+  + Don't try to display the name of a photo if it is None
+  + Don't display an empty notification for media posted without
+text (LP: #697729)
+  + refreshed templates to get new strings from dispatcher.py
+  + vacuum database on startup to clean up fragmentation
+  + Remove the rounding in the last elif condition, to avoid an
+error when the seconds part is between 59.5 and 60.0. (Per
+Ångström) (LP: #705424)
+  + Fixed storage of the in_reply_to data for twitter, and made
+minor change to make sure identi.ca and status.net behaves the
+same way (LP: #677233)
+  + Don't try to send a message if it is empty (LP: #737798)
+  + Only add the reply to url link if we have enough information
+to create the url
+  + Updated Unity quicklists to match the latest spec
+  + Make shortcut groups translatable
+  + Merged in database purging branch
+  + facebook: applied a slightly modified version of a patch from
+Michael Jaros to handle a change in the data returned from the
+facebook API for "likes" (LP: #740778)
+  + put twitter images in the proper stream
+  + remove redundant title
+  + put identica images in the proper stream
+  + put statusnet images in the proper stream
+  + Allow posting comments/replies to your own posts
+  + store retweeted_status in the message for future display of
+native retweets
+  + Assume online if NetworkManager isn't available on dbus
+(LP: #567037)
+  + Be less agressive starting a refresh when connection state
+changes to online
+  + Less agressive purging of posts
+  + Don't set editable until the input is exposed (LP: #647406)
+  + use load_uri instead of the deprecated webkit.WebView.open API.
+  + Fixes for facebook links to posts and send_thread.
+  + Foursquare plugin fails if response contains a venue that has
+been deleted (LP#687498).
+  + dispatcher: catch exception per every failing-message
+(LP#645512).
+  + twitter plugin: upgrade the "unescape" function.
+  + Dump test data (~/.cache/gwibber/dump/) if GWIBBER_TEST_DUMP=1
+  + Don't fail to check for data in desktopcouch, dynamically
+import available services. (Fixes crash on first run)
+  + Merged auto account saving for twitter, identica, status.net
+and facebook
+  + Fix for failing to find NSID for flickr.
+  + Save the window position and size when it changes.
+  + Treat strings starting "www." as a href.
+  + Autosave after auth.
+  + Removed unused code.
+  + Fixed dupe notifications as well as displaying dupes in the
+stream.
+  + Added Unity Quick lists support.
+  + service: re-factoring splitting the plugins up and making
+them more dynamic.  Gwibber will now look for plugins in
+$GWIBBER_PLUGIN_DIR, ~/.local/share/gwibber/plugins,
+/usr/local/share/gwibber/plugins, /usr/share/gwibber/plugins
+and /usr/lib/python2.6/dist-packages/gwibber/microblog/plugins
+  + service: return errors the same way we return messages, and
+send a "Error" signal which the client can connect to
+  + client: connect to "Error" signal and display an infobar for
+each message
+  + gwibber-accounts: display infobar reporting errors passed in
+from the client
+  + Disable libproxy - crashes on amd64.
+  + OAuth support for Status.Net.
+  + Bring statusnet closer to indentica.
+  + Don't blow up if there is an account for an unknown service.
+  + Don't delete accounts that aren't selected.
+  + Remove all sqlite3 access from the client, move all the logic
+to the service. The new Messages API isn't final, so expect
+change. Right now you can pull messages from it and connect to
+a signal to get each new message as they come in.
+  + Don't try to store the locale and reset it after parsing the
+timestamp.

commit yast2-ncurses for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package yast2-ncurses for openSUSE:Factory
checked in at Mon Apr 11 13:08:07 CEST 2011.




--- yast2-ncurses/yast2-ncurses.changes 2011-02-24 13:17:52.0 +0100
+++ /mounts/work_src_done/STABLE/yast2-ncurses/yast2-ncurses.changes
2011-04-11 12:13:46.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar  9 13:31:41 CET 2011 - g...@suse.de
+
+- Show block devices in file selection dialog (bnc #661685) 
+- V 2.21.0
+
+---

calling whatdependson for head-i586


Old:

  yast2-ncurses-2.20.7.tar.bz2

New:

  yast2-ncurses-2.21.0.tar.bz2



Other differences:
--
++ yast2-ncurses.spec ++
--- /var/tmp/diff_new_pack.d5h7CK/_old  2011-04-11 13:07:39.0 +0200
+++ /var/tmp/diff_new_pack.d5h7CK/_new  2011-04-11 13:07:39.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   yast2-ncurses
-Version:2.20.7
+Version:2.21.0
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ncurses-2.20.7.tar.bz2
+Source0:yast2-ncurses-2.21.0.tar.bz2
 
 Prefix: /usr
 
@@ -56,7 +56,7 @@
 component for YaST2.
 
 %prep
-%setup -n yast2-ncurses-2.20.7
+%setup -n yast2-ncurses-2.21.0
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-ncurses-2.20.7.tar.bz2 -> yast2-ncurses-2.21.0.tar.bz2 ++
 3132 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-ncurses-2.20.7/VERSION new/yast2-ncurses-2.21.0/VERSION
--- old/yast2-ncurses-2.20.7/VERSION2011-02-24 13:14:07.0 +0100
+++ new/yast2-ncurses-2.21.0/VERSION2011-04-07 14:27:58.0 +0200
@@ -1 +1 @@
-2.20.7
+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-ncurses-2.20.7/config.h.in new/yast2-ncurses-2.21.0/config.h.in
--- old/yast2-ncurses-2.20.7/config.h.in2011-02-24 13:16:20.0 
+0100
+++ new/yast2-ncurses-2.21.0/config.h.in2011-04-07 14:28:30.0 
+0200
@@ -86,3 +86,6 @@
 
 /* Version number of package */
 #undef VERSION
+
+/* Define to `unsigned int' if  does not define. */
+#undef size_t
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-ncurses-2.20.7/configure.in new/yast2-ncurses-2.21.0/configure.in
--- old/yast2-ncurses-2.20.7/configure.in   2011-02-24 13:16:10.0 
+0100
+++ new/yast2-ncurses-2.21.0/configure.in   2011-04-07 14:28:22.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-ncurses, 2.20.7, http://bugs.opensuse.org/, yast2-ncurses)
+AC_INIT(yast2-ncurses, 2.21.0, http://bugs.opensuse.org/, yast2-ncurses)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="2.20.7"
+VERSION="2.21.0"
 RPMNAME="yast2-ncurses"
 MAINTAINER="Gabriele Mohr "
 
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-ncurses-2.20.7/libtool.m4 new/yast2-ncurses-2.21.0/libtool.m4
--- old/yast2-ncurses-2.20.7/libtool.m4 2011-02-24 13:16:17.0 +0100
+++ new/yast2-ncurses-2.21.0/libtool.m4 2011-04-07 14:28:27.0 +0200
@@ -1020,7 +1020,7 @@
 # to the aix ld manual.
 m4_defun([_LT_SYS_MODULE_PATH_AIX],
 [m4_require([_LT_DECL_SED])dnl
-AC_LINK_IFELSE(AC_LANG_PROGRAM,[
+AC_LINK_IFELSE([AC_LANG_PROGRAM],[
 lt_aix_libpath_sed='
 /Import File Strings/,/^$/ {
/^0/ {
@@ -4825,9 +4825,18 @@
# implicitly export all symbols.
 save_LDFLAGS="$LDFLAGS"
 LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo 
${wl}-update_registry ${wl}/dev/null"
-AC_LINK_IFELSE(int foo(void) {},
+AC_LINK_IFELSE(
+  [AC_LANG_SOURCE(
+[AC_LANG_CASE([C],

commit perl-Getopt-Long-Descriptive for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-Getopt-Long-Descriptive for 
openSUSE:Factory
checked in at Mon Apr 11 11:40:24 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Getopt-Long-Descriptive/perl-Getopt-Long-Descriptive.changes
  2011-04-06 14:21:58.0 +0200
@@ -0,0 +1,29 @@
+---
+Wed Apr  6 12:17:22 UTC 2011 - co...@novell.com
+
+- updated to 0.089
+bump version to deal with busted PAUSE indexing
+fix infinite loop when long option documentation strings couldn't wrap
+(HDP)
+
+---
+Wed Dec 29 23:46:35 UTC 2010 - pascal.ble...@opensuse.org
+
+- update to 0.087
+- regenerated spec file as it was based on the very old cpanspec
+
+---
+Wed Dec  1 13:25:28 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Mon Nov 29 18:00:23 UTC 2010 - co...@novell.com
+
+- called spec2changelog
+
+---
+Tue Jan 12 00:00:00 UTC 2010 - n...@detonation.org
+
+- Specfile autogenerated by cpanspec 1.78.
+

calling whatdependson for head-i586


New:

  Getopt-Long-Descriptive-0.089.tar.gz
  perl-Getopt-Long-Descriptive.changes
  perl-Getopt-Long-Descriptive.spec



Other differences:
--
++ perl-Getopt-Long-Descriptive.spec ++
#
# spec file for package perl-Getopt-Long-Descriptive
#
# 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-Getopt-Long-Descriptive
Version:0.089
Release:1
License:GPL+ or Artistic
%define cpan_name Getopt-Long-Descriptive
Summary:Getopt::Long, but simpler and more powerful
Url:http://search.cpan.org/dist/Getopt-Long-Descriptive/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/Getopt-Long-Descriptive-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Getopt::Long) >= 2.33
BuildRequires:  perl(List::Util)
BuildRequires:  perl(Params::Validate) >= 0.74
BuildRequires:  perl(Sub::Exporter) >= 0.972
Requires:   perl(Getopt::Long) >= 2.33
Requires:   perl(List::Util)
Requires:   perl(Params::Validate) >= 0.74
Requires:   perl(Sub::Exporter) >= 0.972
%{perl_requires}

%description
Getopt::Long::Descriptive is yet another Getopt library. It's built atop
Getopt::Long, and gets a lot of its features, but tries to avoid making you
think about its huge array of options.

It also provides usage (help) messages, data validation, and a few other
useful features.

%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 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-Module-Starter for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-Module-Starter for 
openSUSE:Factory
checked in at Mon Apr 11 11:32:17 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Module-Starter/perl-Module-Starter.changes
2011-04-07 19:30:56.0 +0200
@@ -0,0 +1,35 @@
+---
+Thu Apr  7 17:26:00 UTC 2011 - co...@novell.com
+
+- updated to 1.56
+   Special thanks goes to Andy Lester, who has been, still is and
+   will remain an inspiration to many programmers, myself included.
+  
+   [ENHANCEMENTS]
+   Added hooks for distribution building in App. Thanks to Brian D. Foy.
+   MANIFEST is now created via the proper builder.
+   Kept create_MANIFEST to act as hook.
+   Added Apache license by pfig.
+  
+   * [RT #53539] Refactoring, adding hooks, described above.
+   (Patch provided by brian d. foy)
+  
+   * [RT #27304] Minimal version of perl (5.006)
+   (Patch provided by Alexandr Ciornii)
+  
+   * [RT #53339] ::Simple uses the builder to create the MANIFEST
+  
+   * Moved repository to Github
+  
+   * Some more refactoring in Simple::create_builder()
+
+---
+Wed Dec  1 13:33:44 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Tue Oct 19 08:38:49 UTC 2010 - co...@novell.com
+
+- add perl as explicit buildrequire
+

calling whatdependson for head-i586


New:

  Module-Starter-1.56.tar.gz
  perl-Module-Starter.changes
  perl-Module-Starter.spec



Other differences:
--
++ perl-Module-Starter.spec ++
#
# spec file for package perl-Module-Starter
#
# 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-Module-Starter
Version:1.56
Release:1
License:GPL+ or Artistic
%define cpan_name Module-Starter
Summary:a simple starter kit for any module
Url:http://search.cpan.org/dist/Module-Starter/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/X/XS/XSAWYERX/Module-Starter-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(File::Spec)
BuildRequires:  perl(Getopt::Long)
Requires:   perl(File::Spec)
Requires:   perl(Getopt::Long)
%{perl_requires}

%description
This is the core module for Module::Starter. If you're not looking to
extend or alter the behavior of this module, you probably want to look at
the module-starter manpage instead.

Module::Starter is used to create a skeletal CPAN distribution, including
basic builder scripts, tests, documentation, and module code. This is done
through just one method, 'create_distro'.

%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 getting-started.html 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 at for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package at for openSUSE:Factory
checked in at Mon Apr 11 11:27:57 CEST 2011.




--- at/at.changes   2011-03-01 16:49:57.0 +0100
+++ /mounts/work_src_done/STABLE/at/at.changes  2011-04-07 16:40:54.0 
+0200
@@ -1,0 +2,5 @@
+Tue Apr  5 15:36:24 UTC 2011 - vci...@novell.com
+
+- fixed atd-atrm race condition (bnc#679857)
+
+---

calling whatdependson for head-i586


New:

  at-3.1.8-atrm-race.patch



Other differences:
--
++ at.spec ++
--- /var/tmp/diff_new_pack.P5C9zU/_old  2011-04-11 11:12:46.0 +0200
+++ /var/tmp/diff_new_pack.P5C9zU/_new  2011-04-11 11:12:46.0 +0200
@@ -26,7 +26,7 @@
 Group:  System/Daemons
 AutoReqProv:on
 Version:3.1.8
-Release:1096
+Release:1097
 Summary:A Job Manager
 Source: at_3.1.8-11.tar.gz
 Source1:atd.init
@@ -56,6 +56,8 @@
 Patch16:at-3.1.8-denylist.patch
 #PATCH_FIX-OPENSUSE plan jobs with past time to tomorrow (bnc#672586)
 Patch17:%{name}-%{version}-tomorrow.patch
+#PATCH_FIX-OPENSUSE race condition of atrm against job execution (bnc#679857)
+Patch18:%{name}-%{version}-atrm-race.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %{_sbindir}/useradd %{_sbindir}/groupadd %fillup_prereq 
%insserv_prereq
 Recommends: smtp_daemon
@@ -92,6 +94,7 @@
 %patch15
 %patch16
 %patch17 -p1
+%patch18
 
 %build
 %{?suse_update_config:%{suse_update_config -f}}

++ at-3.1.8-atrm-race.patch ++
Copyright (c) 2011 Ingo Schwarze 

This patch is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

--- atd.c   2011-02-25 12:40:46.0 +0100
+++ atd.c.new   2011-02-25 14:59:44.0 +0100
@@ -291,16 +291,16 @@ run_file(const char *filename, uid_t uid
 newname[0] = '=';
 
 /* We try to make a hard link to lock the file.  If we fail, then
- * somebody else has already locked it (a second atd?); log the
+ * somebody else has already locked or deleted it; log the
  * fact and return.
  */
 if (link(filename, newname) == -1) {
-   if (errno == EEXIST) {
-   syslog(LOG_WARNING, "trying to execute job %.100s twice",filename);
-   return;
-   } else {
-   perr("Can't link execution file");
-   }
+   syslog(LOG_WARNING,
+   (errno == EEXIST ? "trying to execute job %.100s twice"
+: "Can't link execution file %.100s: %m"),
+   filename);
+   free(newname);
+   return;
 }
 /* If something goes wrong between here and the unlink() call,
  * the job gets restarted as soon as the "=" entry is cleared





Remember to have fun...

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



commit calibre for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package calibre for openSUSE:Factory
checked in at Mon Apr 11 11:12:35 CEST 2011.




--- calibre/calibre.changes 2011-04-02 16:33:29.0 +0200
+++ /mounts/work_src_done/STABLE/calibre/calibre.changes2011-04-10 
14:26:53.0 +0200
@@ -1,0 +2,22 @@
+Sun Apr 10 12:17:45 UTC 2011 - saigk...@opensuse.org
+
+- updated to version 0.7.54
+- New Features
+o New output format, HTMLZ which is a single HTML file with its
+  associated images/stylesheets in a zipped up file
+o When dealing with ZIP/RAR archives, use the file header rather than
+  the file extension to detrmine the file type, when possible. This
+  fixes the common case of CBZ files being actually cbr files and vice
+  versa
+o Support for the Motorola Atrix
+o Allow the icons in the toolbar to be turned off completely via
+  Preferences->Look & Feel
+o When downloading metadata use the gzip transfer encoding when possible
+  for a speedup. 
+- Bug Fixes
+   o Conversion pipeline: Workaround for bug in lxml that causes a massive
+ mem leak on windows and OS X when the input document contains non
+ ASCII CSS selectors.
+   o Conversion pipeline: Handle inline
+
+---

calling whatdependson for head-i586


Old:

  calibre-0.7.53-nofonts.tar.bz2

New:

  calibre-0.7.54-nofonts.tar.bz2



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.9VPm6Y/_old  2011-04-11 11:10:20.0 +0200
+++ /var/tmp/diff_new_pack.9VPm6Y/_new  2011-04-11 11:10:20.0 +0200
@@ -19,7 +19,7 @@
 Summary:EBook Management Application
 
 Name:   calibre
-Version:0.7.53
+Version:0.7.54
 Release:1
 Url:http://calibre-ebook.com
 Group:  Productivity/Other

++ calibre-0.7.53-nofonts.tar.bz2 -> calibre-0.7.54-nofonts.tar.bz2 ++
calibre/calibre-0.7.53-nofonts.tar.bz2 
/mounts/work_src_done/STABLE/calibre/calibre-0.7.54-nofonts.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 cpanspec for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package cpanspec for openSUSE:Factory
checked in at Mon Apr 11 11:06:57 CEST 2011.




--- cpanspec/cpanspec.changes   2011-04-08 10:11:10.0 +0200
+++ /mounts/work_src_done/STABLE/cpanspec/cpanspec.changes  2011-04-10 
21:12:01.0 +0200
@@ -1,0 +2,16 @@
+Sun Apr 10 19:11:08 UTC 2011 - co...@opensuse.org
+
+- use one Source line if not recompressed and
+  fix multi *.gz support
+
+---
+Sat Apr  9 11:43:36 UTC 2011 - co...@novell.com
+
+- don't fetch details if not already done
+
+---
+Fri Apr  8 16:32:40 UTC 2011 - co...@novell.com
+
+- more cases of license "under same terms"
+
+---

calling whatdependson for head-i586




Other differences:
--
++ cpanspec.spec ++
--- /var/tmp/diff_new_pack.ANPOBa/_old  2011-04-11 11:05:00.0 +0200
+++ /var/tmp/diff_new_pack.ANPOBa/_new  2011-04-11 11:05:00.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   cpanspec
 Version:1.78
-Release:25
+Release:27
 %define tar_version 1.78
 Summary:Generate a SUSE spec file for a CPAN module
 License:GPL+ or Artistic

++ cpanspec.patch ++
--- /var/tmp/diff_new_pack.ANPOBa/_old  2011-04-11 11:05:00.0 +0200
+++ /var/tmp/diff_new_pack.ANPOBa/_new  2011-04-11 11:05:00.0 +0200
@@ -1,7 +1,7 @@
 Index: cpanspec-1.78/cpanspec
 ===
 --- cpanspec-1.78.orig/cpanspec2009-01-16 21:35:55.0 +0100
-+++ cpanspec-1.78/cpanspec 2011-04-08 10:10:43.221274504 +0200
 cpanspec-1.78/cpanspec 2011-04-10 20:53:46.152551293 +0200
 @@ -12,9 +12,6 @@
  #
  # $Id: cpanspec,v 1.67 2009/01/16 20:35:17 stevenpritchard Exp $
@@ -46,16 +46,17 @@
  our $cpan=$ENV{'CPAN'} || "http://www.cpan.org";;
  
  our $home=$ENV{'HOME'} || (getpwuid($<))[7];
-@@ -241,6 +241,8 @@ our @add_requires;
+@@ -241,6 +241,9 @@ our @add_requires;
  our @add_provides;
  our @add_buildrequires;
  
 +our ($file,$name,$source,$version,$type);
 +our ($content,$summary,$description,$author,$license);
++
  # env. vars and their macro analogues
  my @MACROS = (
  
-@@ -252,7 +254,7 @@ my @MACROS = (
+@@ -252,7 +255,7 @@ my @MACROS = (
  
  # 1 is for the macros.
  {
@@ -64,13 +65,22 @@
  'buildroot' => '%{buildroot}',
  },
  );
-@@ -338,6 +340,62 @@ sub update_packages() {
+@@ -304,6 +307,7 @@ sub fetch($$) {
+ $fh->close();
+ 
+ my $last_modified=$response->last_modified;
++verbose("Set last modified to $last_modified");
+ utime(time, $last_modified, $file) if ($last_modified);
+ } elsif ($response->code eq "304") {
+ verbose("$file is up to date.");
+@@ -338,6 +342,65 @@ sub update_packages() {
  $updated=1;
  }
  
 +sub get_file($) {
 +$file=shift;
 +# Look up $file in 02packages.details.txt.
++verbose("Get file $file");
 +update_packages();
 +$packages=Parse::CPAN::Packages->new($pkgdetails)
 +if (!defined($packages));
@@ -107,6 +117,7 @@
 +# keep things happy if we get "Foo-Bar" instead of "Foo::Bar"
 +$file =~ s/-/::/g;
 +
++verbose("Get source $file");
 +# Look up $file in 02packages.details.txt.
 +update_packages();
 +$packages=Parse::CPAN::Packages->new($pkgdetails)
@@ -117,6 +128,7 @@
 +if ($m=$packages->package($file) and $d=$m->distribution()) {
 +$source=$cpan . "/authors/id/" . $d->prefix();
 +$source=~s/$version/\%{version}/;
++$source=~s/$name/\%{cpan_name}/;
 +} else {
 +warn "Failed to parse '$file' or find a module by that name in 
$pkgdetails, skipping...\n";
 +$source='';
@@ -127,7 +139,7 @@
  sub build_rpm($) {
  my $spec=shift;
  my $dir=getcwd();
-@@ -387,10 +445,10 @@ sub extract($$$) {
+@@ -387,10 +450,10 @@ sub extract($$$) {
  }
  }
  
@@ -140,7 +152,7 @@
  
  my $path=$args{module};
  $path=~s,::,/,g;
-@@ -415,60 +473,130 @@ sub get_description(%) {
+@@ -415,60 +478,131 @@ sub get_description(%) {
  last if $pm;
  }
  
@@ -198,7 +210,7 @@
 +foreach my $item ($head1->content()) {
 +   last if ($item->type() eq 'head2');
 +   $description .= $item->present('Pod::POM::View::Text');
- }
++}
 +
 +# no limit
 +my @paragraphs = (split /\n\n/, $description);
@@ -207,29 +219,10 @@
 +
 +# autoformat and return...
 +return autoformat $description, { all => 1 };
- }
++}
 +return $description=undef;
 +}
- 
--if (my $readme=(sort {
--length($a) <=> length($b) or $a cmp $b
-- } (grep /README/i, @{$args{files}}))[0]) {
--verbose

commit perl-DBD-Pg for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-DBD-Pg for openSUSE:Factory
checked in at Mon Apr 11 11:04:52 CEST 2011.




--- perl-DBD-Pg/perl-DBD-Pg.changes 2010-12-02 09:38:41.0 +0100
+++ /mounts/work_src_done/STABLE/perl-DBD-Pg/perl-DBD-Pg.changes
2011-04-08 21:25:52.0 +0200
@@ -1,0 +2,33 @@
+Fri Apr  8 19:24:01 UTC 2011 - ch...@computersalat.de
+
+- fix deps
+  o add openssl-devel
+- fix build
+  o build with -lssl
+- bzip source
+- add testme.tmp.pl to doc
+
+---
+Thu Mar 31 09:11:48 UTC 2011 - co...@novell.com
+
+- update to 2.18.0
+ - Thanks to 123people.com for sponsoring work on this release [GSM]
+ - Fix memory leak when binding arrays [GSM] (CPAN bug #65734)
+ - Fix memory leak with ParamValues. [Martin J. Evans] (CPAN bug #60863)
+ - New cancel() method per DBI spec. [Eric Simon] (CPAN bug #63516)
+ - Fix memory leak in handle_old_async (missing PQclear)
+   [Rainer Weikusat] (CPAN bug #63408)
+ - Fix memory leak in pg_db_cancel (missing PQclear)
+   [Rainer Weikusat] (CPAN bug #63441)
+ - Mark pg_getcopydata strings as UTF8 as needed (CPAN bug #66006)
+ - Function dequote_bytea returning void should not try to return something
+   [Dagobert Michelsen] (CPAN bug #63497)
+ - Fix the number of tests to skip in t/01connect.t when the $DBI_DSN
+   environment variable lacks a database specification. [David E. Wheeler]
+ - Fix algorithm for skipping tests in t/06bytea.t when running on a version
+   of PostgreSQL lower than 9.0. [David E. Wheeler]
+ - Small tweaks to get tests working when compiled against Postgres 7.4
+   (CPAN bug #61713) [GSM]
+ - Fix failing test when run as non-superuser [GSM] (CPAN bug #61534)
+
+---

calling whatdependson for head-i586


Old:

  DBD-Pg-2.17.2.tar.bz2

New:

  DBD-Pg-2.18.0.tar.bz2



Other differences:
--
++ perl-DBD-Pg.spec ++
--- /var/tmp/diff_new_pack.gNrjDq/_old  2011-04-11 11:02:21.0 +0200
+++ /var/tmp/diff_new_pack.gNrjDq/_new  2011-04-11 11:02:21.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-DBD-Pg (Version 2.17.2)
+# spec file for package perl-DBD-Pg
 #
-# 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,35 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-DBD-Pg
 %define cpan_name DBD-Pg
 Summary:PostgreSQL database driver for the DBI module
-Version:2.17.2
-Release:2
+Version:2.18.0
+Release:1
 License:GPL+ or Artistic
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/DBD-Pg/
-#Source: 
http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-2.17.2.tar.gz
+#Source: 
http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-%{version}.tar.gz
 Source: %{cpan_name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  openssl-devel
-## TestSuite broken for postgresql < 8.4
-## undefined symbol: lo_import_with_oid
-# https://rt.cpan.org/Public/Bug/Display.html?id=56363
-#BuildRequires:  postgresql-devel >= 8.4
-# fixed since 2.17.1
 BuildRequires:  postgresql-devel >= 7.4
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::More) >= 0.61
-BuildRequires:  perl(DBI) >= 1.52
-BuildRequires:  perl(version)
-#
 #BuildRequires:  perl(Cwd)
+BuildRequires:  perl(DBI) >= 1.52
 #BuildRequires:  perl(File::Comments)
 #BuildRequires:  perl(File::Comments::Plugin::C)
 #BuildRequires:  perl(File::Temp)
@@ -55,11 +46,10 @@
 #BuildRequires:  perl(Test::Warn) >= 0.08
 #BuildRequires:  perl(Test::YAML::Meta) >= 0.03
 #BuildRequires:  perl(Text::SpellChecker)
-#
-Requires:   perl(DBI) >= 1.52
-Requires:   perl(version)
+BuildRequires:  perl(version)
 #
 #Recommends: perl(Cwd)
+Requires:   perl(DBI) >= 1.52
 #Recommends: perl(File::Comments)
 #Recommends: perl(File::Comments::Plugin::C)
 #Recommends: perl(File::Temp)
@@ -71,6 +61,8 @@
 #Suggests:   perl(Test::Warn) >= 0.08
 #Suggests:   perl(Test::YAML::Meta) >= 0.03
 #Recommends: perl(Text::SpellChecker)
+Requires:   perl(version)
+%{perl_requires}
 
 %description
 DBD::Pg is a Perl module that works with the DBI module to provide access
@@ -82,7 +74,7 @@
 %build
 export POSTGRES_INCLUDE=/usr/include/pgsql
 export POSTGRES_LIB="%{_libdir} -lssl"
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"

commit perl-PathTools for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-PathTools for openSUSE:Factory
checked in at Mon Apr 11 11:02:11 CEST 2011.




--- perl-PathTools/perl-PathTools.changes   2011-03-24 20:30:12.0 
+0100
+++ /mounts/work_src_done/STABLE/perl-PathTools/perl-PathTools.changes  
2011-04-08 21:08:38.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr  8 19:08:17 UTC 2011 - co...@novell.com
+
+- try to provide a fancy new version > 3.2700
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-PathTools.spec ++
--- /var/tmp/diff_new_pack.ijbioV/_old  2011-04-11 11:01:28.0 +0200
+++ /var/tmp/diff_new_pack.ijbioV/_new  2011-04-11 11:01:28.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   perl-PathTools
 Version:3.33
-Release:1
+Release:3
 License:Artistic License .. ; GPLv2+
 %define cpan_name PathTools
 Summary:PathTools Perl module
@@ -32,6 +32,10 @@
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl
 BuildRequires:  perl-macros
+Provides:   perl(Cwd) = 3.3300
+Provides:   perl(File::Spec) = 3.3300
+Provides:   perl(File::Spec::Epoc) = 3.3300
+Provides:   perl(File::Spec::Functions) = 3.3300
 Requires:   perl(Carp)
 Requires:   perl(File::Basename)
 Requires:   perl(File::Path)






Remember to have fun...

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



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

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package perl-Test-Memory-Cycle for 
openSUSE:Factory
checked in at Mon Apr 11 11:01:19 CEST 2011.




--- perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.changes   2010-12-01 
07:57:19.0 +0100
+++ 
/mounts/work_src_done/STABLE/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.changes
  2011-04-09 09:09:03.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  9 06:58:48 UTC 2011 - co...@novell.com
+
+- recreated by cpanspec 1.78.04
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-Test-Memory-Cycle.spec ++
--- /var/tmp/diff_new_pack.1agESZ/_old  2011-04-11 11:00:09.0 +0200
+++ /var/tmp/diff_new_pack.1agESZ/_new  2011-04-11 11:00:09.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Test-Memory-Cycle (Version 1.04)
+# spec file for package perl-Test-Memory-Cycle
 #
-# 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,36 +15,38 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
-%bcond_with pod
 
 Name:   perl-Test-Memory-Cycle
-%define cpan_name Test-Memory-Cycle
-Summary:Check for memory leaks and circular memory references
 Version:1.04
-Release:1
+Release:5
 License:GPL+ or Artistic
-Group:  Development/Libraries/Perl
+%define cpan_name Test-Memory-Cycle
+Summary:Check for memory leaks and circular memory references
 Url:http://search.cpan.org/dist/Test-Memory-Cycle/
-Source: 
http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-1.04.tar.gz
+Group:  Development/Libraries/Perl
+#Source: 
http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-%{version}.tar.gz
+Source: %{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-%if %{with pod}
-BuildRequires:  perl(Test::Pod) >= 1.14
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.04
-%endif
 BuildRequires:  perl(Devel::Cycle) >= 1.07
+BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Getopt::Long)
 BuildRequires:  perl(PadWalker)
+BuildRequires:  perl(Test::Builder)
+BuildRequires:  perl(Test::Builder::Tester)
+BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Simple) >= 0.62
 Requires:   perl(Devel::Cycle) >= 1.07
 Requires:   perl(Getopt::Long)
 Requires:   perl(PadWalker)
+Requires:   perl(Test::Builder)
+Requires:   perl(Test::Builder::Tester)
+Requires:   perl(Test::More)
 Requires:   perl(Test::Simple) >= 0.62
+%{perl_requires}
 
 %description
 Perl's garbage collection has one big problem: Circular references can't 
@@ -54,10 +56,6 @@
 Test::Memory::Cycle is built on top of Devel::Cycle to give you an easy 
 way to check for these circular references.
 
-Authors:
-
- Written by Andy Lester, ''.
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
@@ -70,24 +68,14 @@
 
 %install
 %perl_make_install
-### since 11.4 perl_process_packlist
-### removes .packlist, perllocal.pod files
-%if 0%{?suse_version} > 1130
 %perl_process_packlist
-%else
-# do not perl_process_packlist
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
-%endif
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf $RPM_BUILD_ROOT
+%{__rm} -rf %{buildroot}
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
-%doc Changes README
+%defattr(-,root,root,755)
+%doc %attr(644,-,-) 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 puppet for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package puppet for openSUSE:Factory
checked in at Mon Apr 11 10:59:57 CEST 2011.




--- puppet/puppet.changes   2011-03-14 10:52:47.0 +0100
+++ /mounts/work_src_done/STABLE/puppet/puppet.changes  2011-04-11 
10:17:00.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr  5 13:38:04 UTC 2011 - vci...@novell.com
+
+- fix logging setting (bnc#683441) 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ puppet.spec ++
--- /var/tmp/diff_new_pack.6Hmfi6/_old  2011-04-11 10:57:02.0 +0200
+++ /var/tmp/diff_new_pack.6Hmfi6/_new  2011-04-11 10:57:02.0 +0200
@@ -21,7 +21,7 @@
 
 Name:   puppet
 Version:2.6.6
-Release:1
+Release:2
 License:GPLv2
 Group:  Productivity/Networking/System
 Url:http://reductivelabs.com/projects/puppet/

++ puppet-2.6.6-init.diff ++
--- /var/tmp/diff_new_pack.6Hmfi6/_old  2011-04-11 10:57:02.0 +0200
+++ /var/tmp/diff_new_pack.6Hmfi6/_new  2011-04-11 10:57:02.0 +0200
@@ -22,7 +22,7 @@
 +[ -z "$PUPPET_PORT" ] && PUPPET_PORT="8140"
 +
 +PUPPET_OPTS="
-+--logdir=$PUPPET_LOG \
++--logdest=$PUPPET_LOG \
 +--masterport=$PUPPET_PORT \
 +--server=$PUPPET_SERVER \
 +$PUPPET_EXTRA_OPTS"






Remember to have fun...

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



commit scribus for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package scribus for openSUSE:Factory
checked in at Mon Apr 11 10:56:48 CEST 2011.




--- KDE/scribus/scribus.changes 2011-02-18 16:17:46.0 +0100
+++ /mounts/work_src_done/STABLE/scribus/scribus.changes2011-04-10 
18:17:09.0 +0200
@@ -1,0 +2,16 @@
+Sun Apr 10 16:16:16 UTC 2011 - mrd...@opensuse.org
+
+-update to 1.4.0.rc3
+ + more bug fixes and translation updates
+  see http://bugs.scribus.net/changelog_page.php?version_id=68
+  for versioned changelog 
+
+---
+Tue Mar  8 01:49:59 UTC 2011 - mrd...@opensuse.org
+
+-update to 1.4.0.rc2
+ + more bug fixes and translation updates 
+  see http://bugs.scribus.net/changelog_page.php?version_id=68
+  for versioned changelog
+
+---

calling whatdependson for head-i586


Old:

  scribus-1.4.0.rc1.tar.bz2

New:

  scribus-1.4.0.rc3.tar.bz2



Other differences:
--
++ scribus.spec ++
--- /var/tmp/diff_new_pack.ACzMR0/_old  2011-04-11 10:55:18.0 +0200
+++ /var/tmp/diff_new_pack.ACzMR0/_new  2011-04-11 10:55:18.0 +0200
@@ -19,7 +19,7 @@
 
 
 Name:   scribus
-Version:1.4.0.rc1
+Version:1.4.0.rc3
 Release:1
 License:GPL
 Summary:Open Source Page Layout and Desktop Publishing (DTP)

++ scribus-1.4.0.rc1.tar.bz2 -> scribus-1.4.0.rc3.tar.bz2 ++
KDE/scribus/scribus-1.4.0.rc1.tar.bz2 
/mounts/work_src_done/STABLE/scribus/scribus-1.4.0.rc3.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 spamassassin for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package spamassassin for openSUSE:Factory
checked in at Mon Apr 11 10:55:03 CEST 2011.




--- spamassassin/spamassassin.changes   2010-12-01 14:58:50.0 +0100
+++ /mounts/work_src_done/STABLE/spamassassin/spamassassin.changes  
2011-04-10 11:41:09.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 10 09:40:55 UTC 2011 - vark...@novell.com
+
+- bnc#676667 - sa-update cronjob should allow amavisd restart 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ spamassassin.spec ++
--- /var/tmp/diff_new_pack.rwJEb2/_old  2011-04-11 10:53:11.0 +0200
+++ /var/tmp/diff_new_pack.rwJEb2/_new  2011-04-11 10:53:11.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package spamassassin (Version 3.3.1)
+# spec file for package spamassassin
 #
-# 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
@@ -27,7 +27,7 @@
 Name:   spamassassin
 Summary:Extensible email filter which is used to identify spam
 Version:%{sa_version}
-Release:8
+Release:9
 License:Apache Software License ..
 Group:  Productivity/Networking/Email/Utilities
 AutoReqProv:on
@@ -147,7 +147,7 @@
 License:Apache License 2.0
 Group:  Development/Libraries/Perl
 Version:%{ix_version}
-Release:8
+Release:9
 %{perl_requires}
 Requires:   perl-Mail-SpamAssassin = %{sa_version}
 

++ suse.cron-sa-update ++
--- /var/tmp/diff_new_pack.rwJEb2/_old  2011-04-11 10:53:12.0 +0200
+++ /var/tmp/diff_new_pack.rwJEb2/_new  2011-04-11 10:53:12.0 +0200
@@ -8,9 +8,23 @@
 if [ "$SPAM_SA_UPDATE" = "yes" ]
 then
/usr/bin/sa-update &> /dev/null
-   if [ "$SPAM_SA_COMPILE" = "yes" ]
-   then
-   /usr/bin/sa-compile &> /dev/null
-   fi
+
+if [ "$SPAM_SA_COMPILE" = "yes" -a $result = 0 ] ; then
+/usr/bin/sa-compile &> /dev/null
+fi
+
+if [ "$SPAM_AMAVISD_RESTART" = "yes" -a $result = 0 ] ; then
+/etc/init.d/amavis restart &> /dev/null
+fi
+
+if [ $result = 2 ] ; then
+   echo "sa-update lint check failed" | \
+ logger -t suse.cron-sa-update
+fi
+
+if [ $result -ge 3 ] ; then
+echo "sa-update failed, exitcode $result" | \
+ logger -t suse.cron-sa-update
+fi
 fi
 exit 0

++ sysconfig.spamd ++
--- /var/tmp/diff_new_pack.rwJEb2/_old  2011-04-11 10:53:12.0 +0200
+++ /var/tmp/diff_new_pack.rwJEb2/_new  2011-04-11 10:53:12.0 +0200
@@ -28,3 +28,12 @@
 # calling sa-update.
 SPAM_SA_COMPILE="no"
 
+## Path:   Network/Mail/Spamassassin
+## Description:Compile SpamAssassin ruleset into native code
+## Type:   yesno
+## Default:"no"
+#
+# Set this varible to yes if you want the daily cron job
+# restart SpamAssassin after calling sa-update.
+SPAM_AMAVISD_RESTART="no"
+






Remember to have fun...

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



commit xtables-geoip for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package xtables-geoip for openSUSE:Factory
checked in at Mon Apr 11 10:50:23 CEST 2011.




--- xtables-geoip/xtables-geoip.changes 2011-02-15 00:42:25.0 +0100
+++ /mounts/work_src_done/STABLE/xtables-geoip/xtables-geoip.changes
2011-04-09 02:56:58.0 +0200
@@ -1,0 +2,11 @@
+Sat Apr  9 00:54:00 UTC 2011 - jeng...@medozas.de
+
+- update database files to 2011.04; ~4500 new subnets
+
+---
+Sun Feb 27 14:57:42 UTC 2011 - jeng...@medozas.de
+
+- Add Conflicts marker for older Xtables-addons that cannot
+  interact with this version's files
+
+---

calling whatdependson for head-i586




Other differences:
--
++ xtables-geoip.spec ++
--- /var/tmp/diff_new_pack.YAlODc/_old  2011-04-11 10:50:01.0 +0200
+++ /var/tmp/diff_new_pack.YAlODc/_new  2011-04-11 10:50:01.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   xtables-geoip
-Version:2011.02
+Version:2011.04
 Release:1
 Group:  Productivity/Networking/Security
 Summary:GeoIP database files for xt_geoip
@@ -31,6 +31,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  xtables-addons >= 1.33
 BuildRequires:  perl perl-Text-CSV_XS xz
+Conflicts:  xtables-addons < 1.33
 
 %description
 The package contains the GeoIP definition files (which IP addresses

++ GeoIPCountryWhois.csv.xz ++
Files /var/tmp/diff_new_pack.YAlODc/_old and /var/tmp/diff_new_pack.YAlODc/_new 
differ

++ GeoIPv6.csv.xz ++
Files /var/tmp/diff_new_pack.YAlODc/_old and /var/tmp/diff_new_pack.YAlODc/_new 
differ






Remember to have fun...

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



commit dvd+rw-tools for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package dvd+rw-tools for openSUSE:Factory
checked in at Mon Apr 11 10:49:50 CEST 2011.




--- dvd+rw-tools/dvd+rw-tools.changes   2008-08-19 17:14:07.0 +0200
+++ /mounts/work_src_done/STABLE/dvd+rw-tools/dvd+rw-tools.changes  
2011-04-10 19:16:13.0 +0200
@@ -1,0 +2,16 @@
+Sun Apr 10 17:06:21 UTC 2011 - asterios.dra...@gmail.com
+
+- Spec file updates:
+  * Changes based on rpmdevtools templates and spec-cleaner run.
+  * Added description for the patches based on openSUSE Patches Guidelines.
+  * Added genisoimage in Requires:.
+  * Updates in Summary: and %description.
+  * Compile the package with -fno-strict-aliasing.
+  * Rename btcflash binary to "dvd+rw-tools-btcflash" in order to avoid
+conflict with btcflash from cdrtools.
+  * Small updates in %files section.
+  * Remove the entries from %changelog.
+- Removed rpm_opt_flags.diff patch (not required since the flags can be set in
+  the spec file).
+
+---

calling whatdependson for head-i586


Old:

  rpm_opt_flags.diff



Other differences:
--
++ dvd+rw-tools.spec ++
--- /var/tmp/diff_new_pack.mQvkCG/_old  2011-04-11 10:47:50.0 +0200
+++ /var/tmp/diff_new_pack.mQvkCG/_new  2011-04-11 10:47:50.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package dvd+rw-tools (Version 7.1)
+# spec file for package dvd+rw-tools
 #
-# Copyright (c) 2008 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,59 +19,68 @@
 
 
 Name:   dvd+rw-tools
-BuildRequires:  gcc-c++
-License:GPL v2 or later; Public Domain, Freeware
-Group:  Productivity/Multimedia/CD/Record
-AutoReqProv:on
 Version:7.1
-Release:35
-Source: dvd+rw-tools-%{version}.tar.bz2
+Release:45
+Summary:Collection of Tools for Mastering Blu-ray and DVD+-RW/+-R Media
+
+License:GPLv2+, Public Domain, Freeware
 Url:http://fy.chalmers.se/~appro/linux/DVD+RW/
-Summary:Collection of Tools for Mastering DVD+RW/+R Media
+Group:  Productivity/Multimedia/CD/Record
+# http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-7.1.tar.gz
+Source0:%{name}-%{version}.tar.bz2
+# PATCH-FIX-OPENSUSE utf8ize.patch sbra...@suse.cz -- Convert some strings to 
UTF-8
+Patch0: utf8ize.patch
+# PATCH-FIX-OPENSUSE growisofs-dvd-dl-undersized.patch bnc#164032 
joes...@suse.de -- Allow users to burn images that would fit on a single-layer 
DVD to a dual-layer disc
+Patch1: growisofs-dvd-dl-undersized.patch
+# PATCH-FIX-OPENSUSE growisofs-genisoimage.patch nadvor...@suse.cz -- Make the 
package call genisoimage directly, not via compatibility symlink
+Patch2: growisofs-genisoimage.patch
+# PATCH-FIX-OPENSUSE dvd+rw-tools-gcc43.patch r...@suse.de -- Fix build with 
gcc-4.3
+Patch3: dvd+rw-tools-gcc43.patch
+# PATCH-FIX-OPENSUSE dvd+rw-tools-buffer.patch bnc#354838 nadvor...@suse.cz -- 
Fix buffer size
+Patch4: dvd+rw-tools-buffer.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Patch1: rpm_opt_flags.diff
-Patch4: utf8ize.patch
-Patch7: growisofs-dvd-dl-undersized.patch
-Patch8: growisofs-genisoimage.patch
-Patch9: dvd+rw-tools-gcc43.patch
-Patch10:dvd+rw-tools-buffer.patch
 
-%description
-Collection of Tools for Mastering DVD+RW/+R Media
+BuildRequires:  gcc-c++
+Requires:   genisoimage
 
-Authors:
-
-ap...@fy.chalmers.se
+%description
+The dvd+rw-tools collection of tools makes it possible to burn images to
+Blu-ray and DVD+-RW/+-R media.
 
 %prep
 %setup -q
+%patch0
 %patch1
+%patch2
+%patch3
 %patch4
-%patch7
-%patch8
-%patch9
-%patch10
 
 %build
-make
-make rpl8 btcflash
+export CFLAGS="%{optflags} -fno-strict-aliasing"
+export CXXFLAGS="%{optflags} -fno-strict-aliasing"
+
+make %{?_smp_mflags}
+make rpl8 btcflash %{?_smp_mflags}
 
 %install
-make prefix=$RPM_BUILD_ROOT/usr manprefix=$RPM_BUILD_ROOT%{_mandir} install
+make prefix=%{buildroot}%{_prefix} manprefix=%{buildroot}%{_mandir} install
+
+# Rename btcflash binary in order to avoid conflict with btcflash from cdrtools
+mv %{buildroot}%{_bindir}/btcflash %{buildroot}%{_bindir}/dvd+rw-tools-btcflash
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
-%defattr(-, root, root)
-%doc index.html
-%doc %{_mandir}/man1/growisofs.1.gz
-/usr/bin/dvd+rw-booktype
-/usr/bin/dvd+rw-format
-/usr/bin/dvd+rw-mediainfo
-/usr/bin/dvd-ram-control
-/usr/bin/growisofs
-/usr/bin/btcflash
-/usr/bin/rpl8
+%defattr(-,root,root,-)
+%doc LICENSE index.html
+%{_bindir}/dvd+rw-booktype
+%{_bi

commit virtualbox for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory
checked in at Mon Apr 11 10:47:42 CEST 2011.




--- virtualbox/virtualbox.changes   2011-03-17 14:20:12.0 +0100
+++ /mounts/work_src_done/STABLE/virtualbox/virtualbox.changes  2011-03-25 
08:47:58.0 +0100
@@ -1,0 +2,8 @@
+Fri Mar 25 07:42:21 UTC 2011 - mse...@gmail.com
+
+- added Conflicts: virtualbox-ose-*-kmp for kmp packages, because
+  host (vboxdrv) and  guest (vboxguest) kmp exports the same 
+  symbol (RTMemFreeEx) which breaks loading modules using 
+  modprobe (bnc#661740)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.s1BmTV/_old  2011-04-11 10:46:08.0 +0200
+++ /var/tmp/diff_new_pack.s1BmTV/_new  2011-04-11 10:46:08.0 +0200
@@ -43,7 +43,7 @@
 #
 ExclusiveArch:  %ix86 x86_64
 Version:4.0.4
-Release:3
+Release:4
 Summary:VirtualBox is an Emulator
 License:GPLv2+
 Group:  System/Emulators/PC

++ virtualbox-guest-preamble ++
--- /var/tmp/diff_new_pack.s1BmTV/_old  2011-04-11 10:46:08.0 +0200
+++ /var/tmp/diff_new_pack.s1BmTV/_new  2011-04-11 10:46:08.0 +0200
@@ -1,5 +1,8 @@
 Requires: kernel-%1
 Provides: virtualbox-guest-kmp = %version
 #rename from ose version:
-Provides:  virtualbox-ose-guest-kmp-%1 = %version
+Provides: virtualbox-ose-guest-kmp-%1 = %version
 Obsoletes: virtualbox-ose-guest-kmp-%1 < %version
+#host (vboxdrv) and guest (vboxguest) kmp exports the same symbol (RTMemFreeEx)
+#which break loading modules using modprobe (bnc#661740)
+Conflicts: virtualbox-ose-host-kmp

++ virtualbox-host-preamble ++
--- /var/tmp/diff_new_pack.s1BmTV/_old  2011-04-11 10:46:08.0 +0200
+++ /var/tmp/diff_new_pack.s1BmTV/_new  2011-04-11 10:46:08.0 +0200
@@ -3,3 +3,6 @@
 #rename from ose version:
 Provides: virtualbox-ose-host-kmp-%1 = %version
 Obsoletes: virtualbox-ose-host-kmp-%1 < %version
+#host (vboxdrv) and guest (vboxguest) kmp exports the same symbol (RTMemFreeEx)
+#which break loading modules using modprobe (bnc#661740)
+Conflicts: virtualbox-ose-guest-kmp






Remember to have fun...

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



commit libpng14 for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package libpng14 for openSUSE:Factory
checked in at Mon Apr 11 10:45:52 CEST 2011.




--- libpng14/libpng14.changes   2011-03-01 17:24:06.0 +0100
+++ /mounts/work_src_done/STABLE/libpng14/libpng14.changes  2011-04-11 
09:50:45.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr 11 09:47:55 CEST 2011 - pgaj...@suse.cz
+
+- updated to 1.4.7:
+  * Fixed bug in background transformation handling in pngrtran.c
+  * Fixed misspelled macros in contrib/pngminim
+  * Fixed some typecasts in png_debug statements
+  * see more in CHANGES file
+
+---

calling whatdependson for head-i586


Old:

  libpng-1.4.5.tar.bz2

New:

  libpng-1.4.7.tar.bz2



Other differences:
--
++ libpng14.spec ++
--- /var/tmp/diff_new_pack.4VA6JI/_old  2011-04-11 10:44:13.0 +0200
+++ /var/tmp/diff_new_pack.4VA6JI/_new  2011-04-11 10:44:13.0 +0200
@@ -19,7 +19,7 @@
 
 %define major   1
 %define minor   4
-%define micro   5
+%define micro   7
 %define branch  %{major}%{minor}
 %define libname libpng%{branch}-%{branch}
 

++ libpng-1.4.5.tar.bz2 -> libpng-1.4.7.tar.bz2 ++
 10226 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 getdata for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package getdata for openSUSE:Factory
checked in at Mon Apr 11 10:34:25 CEST 2011.




--- KDE/getdata/getdata.changes 2011-01-25 21:22:33.0 +0100
+++ /mounts/work_src_done/STABLE/getdata/getdata.changes2011-04-09 
21:04:40.0 +0200
@@ -1,0 +2,33 @@
+Sat Apr  9 19:01:28 UTC 2011 - ctri...@opensuse.org
+
+- update to 0.7.3
+  see http://sourceforge.net/projects/getdata/files/getdata/0.7.3/
+  * BUG FIX: Passing a zero dividend to alter_crecip() and alter_recip() now
+results in the dividend not changing, per documentation.
+  * BUG FIX: GetData wasn't properly computing the module directory, causing
+encodings using external modules to fail with GD_E_UNSUPPORTED.
+  * BUG FIX: Metafield records are now properly stored in the format file for
+Standards Version 8.
+  * BUG FIX: gd_raw_filename() wasn't clearing the Dirfile error before
+operation, resulting in it failing erroneously in certain situations.
+  * BUG FIX: A potential segmentation fault has been patched in dirfile2ascii.
+
+---
+Sat Apr  9 18:55:16 UTC 2011 - ctri...@opensuse.org
+
+- update to 0.7.2
+  see http://sourceforge.net/projects/getdata/files/getdata/0.7.2/
+  for all details. This includes:
+  * If built with modules, the plugin shared objects will now be 
+installed in a separate directory.
+  * BUG FIX: When using modules, a missing plugin no longer results 
+in a lock up the second time an attempt is made to find it.
+  * BUG FIX: GetData now properly processes /INCLUDE directives with
+absolute paths, as the documentation insists it should.
+  * BUG FIX: gd_add()ing the first raw field in a dirfile to a sub-
+fragment no longer results in memory corruption when calling 
+gd_close().
+  * If called with GD_CREAT but no encoding specified, gd_include()
+now will duplicate the encoding of the parent fragment (if any).
+
+---

calling whatdependson for head-i586


Old:

  getdata-0.7.1.tar.bz2

New:

  getdata-0.7.3.tar.bz2



Other differences:
--
++ getdata.spec ++
--- /var/tmp/diff_new_pack.a0WCaQ/_old  2011-04-11 10:28:33.0 +0200
+++ /var/tmp/diff_new_pack.a0WCaQ/_new  2011-04-11 10:28:33.0 +0200
@@ -26,7 +26,7 @@
 License:GPLv2+
 Group:  Development/Libraries/C and C++
 Summary:Library for reading and writing dirfile data
-Version:0.7.1
+Version:0.7.3
 Release:1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: %{name}-%{version}.tar.bz2
@@ -76,42 +76,6 @@
 
 %postun -n libgetdata++2 -p /sbin/ldconfig  
 
-%package -n libgetdatabzip2-0_7_1
-License:GPLv2+
-Group:  Development/Libraries/Other
-Summary:Library for GetData
-
-%description -n libgetdatabzip2-0_7_1
-Library for bzip2 support for GetData. 
-
-%post -n libgetdatabzip2-0_7_1 -p /sbin/ldconfig
-
-%postun -n libgetdatabzip2-0_7_1 -p /sbin/ldconfig
-
-%package -n libgetdatagzip-0_7_1
-License:GPLv2+
-Group:  Development/Libraries/Other
-Summary:Library for GetData
-
-%description -n libgetdatagzip-0_7_1
-Library for gzip support for GetData. 
-
-%post -n libgetdatagzip-0_7_1 -p /sbin/ldconfig
-
-%postun -n libgetdatagzip-0_7_1 -p /sbin/ldconfig
-
-%package -n libgetdatalzma-0_7_1
-License:GPLv2+
-Group:  Development/Libraries/Other
-Summary:Library for GetData
-
-%description -n libgetdatalzma-0_7_1
-Library for bzip2 support for GetData. 
-
-%post -n libgetdatalzma-0_7_1 -p /sbin/ldconfig
-
-%postun -n libgetdatalzma-0_7_1 -p /sbin/ldconfig
-
 %package -n libf95getdata2
 License:GPLv2+
 Group:  Development/Libraries/Other
@@ -178,6 +142,8 @@
 %{_mandir}/man5/*
 %{_mandir}/man1/checkdirfile.1.gz
 %{_mandir}/man1/dirfile2ascii.1.gz
+%dir %{_libdir}/getdata
+%{_libdir}/getdata/*
 
 %files -n libgetdata4
 %defattr(-,root,root,-)
@@ -187,18 +153,6 @@
 %defattr(-,root,root,-)
 %{_libdir}/libgetdata++.so.*
 
-%files -n libgetdatabzip2-0_7_1
-%defattr(-,root,root,-)
-%{_libdir}/libgetdatabzip2-0.7.1.so
-
-%files -n libgetdatagzip-0_7_1
-%defattr(-,root,root,-)
-%{_libdir}/libgetdatagzip-0.7.1.so
-
-%files -n libgetdatalzma-0_7_1
-%defattr(-,root,root,-)
-%{_libdir}/libgetdatalzma-0.7.1.so
-
 %files -n python-getdata
 %defattr(-,root,root,-)
 %{python_sitearch}/*.so
@@ -217,9 +171,6 @@
 %{_libdir}/libgetdata.so
 %{_libdir}/libf*getdata.so
 %{_libdir}/libgetdata++.so
-%{_libdir}/libgetdatabzip2.so
-%{_libdir}/libgetdatagzip.so
-%{_libdir}/libgetdatalzma.so
 %{_includedir}/*
 %{_mandir}/man3/*
 %{_libdir}/pkgconfig/getdata.pc

++ getdata-0.7.1.tar.bz2 -> getdata-0.7.3.tar.bz2 ++
 19377 lines of diff (skipped)


+++

commit wireshark for openSUSE:11.4

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package wireshark for openSUSE:11.4
checked in at Mon Apr 11 10:30:34 CEST 2011.




--- old-versions/11.4/all/wireshark/wireshark.changes   2011-02-15 
14:39:47.0 +0100
+++ 11.4/wireshark/wireshark.changes2011-04-11 02:54:56.0 +0200
@@ -1,0 +2,28 @@
+Tue Mar 8 10:59:35 CST 2011 - cy...@novell.com
+
+- updated to 1.4.4
+  * security fixes
+o The DOCSIS dissector could crash (CVE-2010-1455, bnc#603251)
+o Crash when receiving a malformed SNMP packet 
+  (CVE-2010-3445, bnc#643078)
+o Multiple buffer overflow and dereference vulnerabilities 
+  (bnc#655121)
+o LDSS dissector overflow (CVE-2010-4300, bnc#655448)
+o ZCL dissector infinite loop (CVE-2010-4301, bnc#655448)
+o Buffer overflows in ENTTEC DMX Data RLE and others 
+  (CVE-2010-4538, bnc#662029)
+o Freeing uninitialized pointer (CVE-2011-0538, bnc#669908)
+o dct3trace buffer overflow (CVE-2011-0713, bnc#672916)
+o Off-by-one in dissect_6lowpan_iphc (CVE-2011-1138, bnc#678567)
+o Crash via corrupted pcap file (CVE-2011-1139, bnc#678568)
+o Crash via SMB or CLDAP packet (CVE-2011-1140, bnc#678569)
+o Crash in NTLMSSP via crafted pcap file (CVE-2011-1143, bnc#678571)
+o Wireshark pcap buffer overflow (CVE-2011-0024, bnc#683335)
+  * Updated Protocol Support
+ANSI MAP, BitTorrent, DCM, DHCPv6, DTAP, DTPT, E.212, GSM 
+Management, GTP, HIP, IEEE 802.15.4, IPP, LDAP, LLDP, Netflow, 
+NTLMSSP, P_Mul, Quake, Skinny, SMB, SNMP, ULP
+  * New and Updated Capture File Support
+LANalyzer, Nokia DCT3, Pcap-ng
+ 
+---

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


Old:

  wireshark-1.4.3.tar.bz2

New:

  wireshark-1.4.4.tar.bz2



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.kEBn0n/_old  2011-04-11 10:30:22.0 +0200
+++ /var/tmp/diff_new_pack.kEBn0n/_new  2011-04-11 10:30:22.0 +0200
@@ -20,8 +20,8 @@
 %define use_caps 0
 
 Name:   wireshark
-Version:1.4.3
-Release:1.
+Version:1.4.4
+Release:0.
 License:GPLv2+
 Summary:A Network Traffic Analyser
 Url:http://www.wireshark.org/

++ wireshark-1.4.3.tar.bz2 -> wireshark-1.4.4.tar.bz2 ++
old-versions/11.4/all/wireshark/wireshark-1.4.3.tar.bz2 
11.4/wireshark/wireshark-1.4.4.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 wireshark for openSUSE:11.3

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package wireshark for openSUSE:11.3
checked in at Mon Apr 11 10:30:14 CEST 2011.




--- old-versions/11.3/UPDATES/all/wireshark/wireshark.changes   2010-12-08 
18:31:24.0 +0100
+++ 11.3/wireshark/wireshark.changes2011-04-11 02:55:24.0 +0200
@@ -1,0 +2,28 @@
+Tue Mar 8 10:59:35 CST 2011 - cy...@novell.com
+
+- updated to 1.4.4
+  * security fixes
+o The DOCSIS dissector could crash (CVE-2010-1455, bnc#603251)
+o Crash when receiving a malformed SNMP packet 
+  (CVE-2010-3445, bnc#643078)
+o Multiple buffer overflow and dereference vulnerabilities 
+  (bnc#655121)
+o LDSS dissector overflow (CVE-2010-4300, bnc#655448)
+o ZCL dissector infinite loop (CVE-2010-4301, bnc#655448)
+o Buffer overflows in ENTTEC DMX Data RLE and others 
+  (CVE-2010-4538, bnc#662029)
+o Freeing uninitialized pointer (CVE-2011-0538, bnc#669908)
+o dct3trace buffer overflow (CVE-2011-0713, bnc#672916)
+o Off-by-one in dissect_6lowpan_iphc (CVE-2011-1138, bnc#678567)
+o Crash via corrupted pcap file (CVE-2011-1139, bnc#678568)
+o Crash via SMB or CLDAP packet (CVE-2011-1140, bnc#678569)
+o Crash in NTLMSSP via crafted pcap file (CVE-2011-1143, bnc#678571)
+o Wireshark pcap buffer overflow (CVE-2011-0024, bnc#683335)
+  * Updated Protocol Support
+ANSI MAP, BitTorrent, DCM, DHCPv6, DTAP, DTPT, E.212, GSM 
+Management, GTP, HIP, IEEE 802.15.4, IPP, LDAP, LLDP, Netflow, 
+NTLMSSP, P_Mul, Quake, Skinny, SMB, SNMP, ULP
+  * New and Updated Capture File Support
+LANalyzer, Nokia DCT3, Pcap-ng
+ 
+---

calling whatdependson for 11.3-i586


Old:

  wireshark-1.4.2.tar.bz2

New:

  wireshark-1.4.4.tar.bz2



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.62SOoW/_old  2011-04-11 10:29:54.0 +0200
+++ /var/tmp/diff_new_pack.62SOoW/_new  2011-04-11 10:29:54.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package wireshark (Version 1.4.2)
+# spec file for package wireshark
 #
-# 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,8 +20,8 @@
 %define use_caps 0
 
 Name:   wireshark
-Version:1.4.2
-Release:1.
+Version:1.4.4
+Release:0.
 License:GPLv2+
 Summary:A Network Traffic Analyser
 Url:http://www.wireshark.org/

++ wireshark-1.4.2.tar.bz2 -> wireshark-1.4.4.tar.bz2 ++
old-versions/11.3/UPDATES/all/wireshark/wireshark-1.4.2.tar.bz2 
11.3/wireshark/wireshark-1.4.4.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 wireshark for openSUSE:11.2

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package wireshark for openSUSE:11.2
checked in at Mon Apr 11 10:29:46 CEST 2011.




--- old-versions/11.2/UPDATES/all/wireshark/wireshark.changes   2010-12-08 
18:31:24.0 +0100
+++ 11.2/wireshark/wireshark.changes2011-04-11 02:55:56.0 +0200
@@ -1,0 +2,28 @@
+Tue Mar 8 10:59:35 CST 2011 - cy...@novell.com
+
+- updated to 1.4.4
+  * security fixes
+o The DOCSIS dissector could crash (CVE-2010-1455, bnc#603251)
+o Crash when receiving a malformed SNMP packet 
+  (CVE-2010-3445, bnc#643078)
+o Multiple buffer overflow and dereference vulnerabilities 
+  (bnc#655121)
+o LDSS dissector overflow (CVE-2010-4300, bnc#655448)
+o ZCL dissector infinite loop (CVE-2010-4301, bnc#655448)
+o Buffer overflows in ENTTEC DMX Data RLE and others 
+  (CVE-2010-4538, bnc#662029)
+o Freeing uninitialized pointer (CVE-2011-0538, bnc#669908)
+o dct3trace buffer overflow (CVE-2011-0713, bnc#672916)
+o Off-by-one in dissect_6lowpan_iphc (CVE-2011-1138, bnc#678567)
+o Crash via corrupted pcap file (CVE-2011-1139, bnc#678568)
+o Crash via SMB or CLDAP packet (CVE-2011-1140, bnc#678569)
+o Crash in NTLMSSP via crafted pcap file (CVE-2011-1143, bnc#678571)
+o Wireshark pcap buffer overflow (CVE-2011-0024, bnc#683335)
+  * Updated Protocol Support
+ANSI MAP, BitTorrent, DCM, DHCPv6, DTAP, DTPT, E.212, GSM 
+Management, GTP, HIP, IEEE 802.15.4, IPP, LDAP, LLDP, Netflow, 
+NTLMSSP, P_Mul, Quake, Skinny, SMB, SNMP, ULP
+  * New and Updated Capture File Support
+LANalyzer, Nokia DCT3, Pcap-ng
+ 
+---

calling whatdependson for 11.2-i586


Old:

  wireshark-1.4.2.tar.bz2

New:

  wireshark-1.4.4.tar.bz2



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.k1xZo6/_old  2011-04-11 10:29:23.0 +0200
+++ /var/tmp/diff_new_pack.k1xZo6/_new  2011-04-11 10:29:23.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package wireshark (Version 1.4.2)
+# spec file for package wireshark
 #
-# 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,8 +20,8 @@
 %define use_caps 0
 
 Name:   wireshark
-Version:1.4.2
-Release:1.
+Version:1.4.4
+Release:0.
 License:GPLv2+
 Summary:A Network Traffic Analyser
 Url:http://www.wireshark.org/

++ wireshark-1.4.2.tar.bz2 -> wireshark-1.4.4.tar.bz2 ++
old-versions/11.2/UPDATES/all/wireshark/wireshark-1.4.2.tar.bz2 
11.2/wireshark/wireshark-1.4.4.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 razor-agents for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package razor-agents for openSUSE:Factory
checked in at Mon Apr 11 10:28:12 CEST 2011.




--- razor-agents/razor-agents.changes   2010-12-01 14:58:48.0 +0100
+++ /mounts/work_src_done/STABLE/razor-agents/razor-agents.changes  
2011-04-10 11:32:23.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 10 09:31:55 UTC 2011 - vark...@novell.com
+
+- bnc#675925 - Fix license declaration of razor-agents 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ razor-agents.spec ++
--- /var/tmp/diff_new_pack.ZSy71a/_old  2011-04-11 10:25:47.0 +0200
+++ /var/tmp/diff_new_pack.ZSy71a/_new  2011-04-11 10:25:47.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package razor-agents (Version 2.84)
+# spec file for package razor-agents
 #
-# 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,10 +24,10 @@
 Requires:   perl-razor-agents
 AutoReqProv:on
 Version:2.84
-Release:58
+Release:64
 Url:http://razor.sourceforge.net/
 Source: %{name}-%{version}.tar.bz2
-License:Artistic
+License:GPL+ or Artistic
 Group:  Productivity/Networking/Email/Utilities
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}






Remember to have fun...

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



commit xtables-addons for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package xtables-addons for openSUSE:Factory
checked in at Mon Apr 11 10:25:35 CEST 2011.




--- xtables-addons/xtables-addons.changes   2011-02-02 05:49:18.0 
+0100
+++ /mounts/work_src_done/STABLE/xtables-addons/xtables-addons.changes  
2011-04-07 17:13:25.0 +0200
@@ -1,0 +2,10 @@
+Thu Apr  7 15:11:31 UTC 2011 - jeng...@medozas.de
+
+- Update to new upstream release 1.34
+* xt_pknock: avoid crash when hash TFM could not be allocated
+* xt_pknock: avoid inversion of rule lookup that led to warnings
+* xt_DNETMAP: add missing module alias
+* xt_DNETMAP: support for kernels below 2.6.34
+- Add kmp preamble file
+
+---

calling whatdependson for head-i586


Old:

  xtables-addons-1.33.tar.xz
  xtables-addons-1.33.tar.xz.asc

New:

  xtables-addons-1.34.tar.xz
  xtables-addons-1.34.tar.xz.asc
  xtables-addons-preamble



Other differences:
--
++ xtables-addons.spec ++
--- /var/tmp/diff_new_pack.UXgGIj/_old  2011-04-11 10:24:26.0 +0200
+++ /var/tmp/diff_new_pack.UXgGIj/_new  2011-04-11 10:24:26.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   xtables-addons
-Version:1.33
+Version:1.34
 Release:1
 Group:  Productivity/Networking/Security
 Summary:IP Packet Filter Administration Extensions
@@ -26,6 +26,7 @@
 Url:http://xtables-addons.sf.net/
 Source: %name-%version.tar.xz
 Source2:%name-%version.tar.xz.asc
+Source3:%name-preamble
 #Git-Clone:
git://xtables-addons.git.sf.net/gitroot/xtables-addons/xtables-addons
 #Git-Web:  http://xtables-addons.git.sf.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +44,7 @@
 
 %define xtlibdir %(pkg-config xtables --variable=xtlibdir)
 
-%kernel_module_package
+%kernel_module_package -p %name-preamble
 
 %description
 Xtables is used to set up, maintain, and inspect the tables of IP
@@ -75,7 +76,6 @@
 fi;
 %if 0%{?suse_version} >= 1140
 # Has 2.6.37
-perl -i -pe 's{^build_DNETMAP=.*}{build_DNETMAP=m}' mconfig;
 perl -i -pe 's{^build_ipset4=.*}{build_ipset4=}' mconfig;
 perl -i -pe 's{^build_ipset5=.*}{build_ipset5=m}' mconfig;
 %endif

++ xtables-addons-preamble ++
Requires: kernel-%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 lensfun for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package lensfun for openSUSE:Factory
checked in at Mon Apr 11 10:24:16 CEST 2011.




--- lensfun/lensfun.changes 2011-01-08 11:31:25.0 +0100
+++ /mounts/work_src_done/STABLE/lensfun/lensfun.changes2011-04-09 
09:52:15.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  9 09:52:00 CEST 2011 - meiss...@suse.de
+
+- disable vectorization on ppc (not supported by lensfun yet)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ lensfun.spec ++
--- /var/tmp/diff_new_pack.aIrT2J/_old  2011-04-11 10:20:08.0 +0200
+++ /var/tmp/diff_new_pack.aIrT2J/_new  2011-04-11 10:20:08.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package lensfun (Version 0.2.5)
+# spec file for package lensfun
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -21,7 +21,7 @@
 Name:   lensfun
 Summary:A photographic lens database and a library for accessing it
 Version:0.2.5
-Release:2
+Release:10
 Url:http://lensfun.berlios.de/
 Source0:lensfun-%{version}.tar.bz2
 # This patch got created via
@@ -86,7 +86,11 @@
 %patch1 -p0
 
 %build
+# not vectorizing on ppc yet
 ./configure -v \
+%ifarch ppc ppc64
+   --vectorization="" \
+%endif
--cflags="${CFLAGS:-$RPM_OPT_FLAGS}" \
--cxxflags="${CXXFLAGS:-$RPM_OPT_FLAGS}" \
--prefix=%{_prefix} \







Remember to have fun...

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



commit wodim for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package wodim for openSUSE:Factory
checked in at Mon Apr 11 10:19:58 CEST 2011.




--- wodim/wodim.changes 2011-02-19 22:56:35.0 +0100
+++ /mounts/work_src_done/STABLE/wodim/wodim.changes2011-04-07 
16:59:15.0 +0200
@@ -1,0 +2,27 @@
+Thu Apr  7 14:57:21 UTC 2011 - davejpla...@gmail.com
+
+- Fixed provides/requires to enable clean installation of cdrtools
+  and vice versa.
+
+---
+Mon Apr  4 19:32:55 UTC 2011 - asterios.dra...@gmail.com
+
+- Spec file updates:
+  * Added "libbz2-devel" in BuildRequires:.
+  * Added "permissions" package in Requires:.
+  * Moved mkhybrid to cdrkit-cdrtools-compat.
+  * Install also libedc.a library.
+  * Changed the installation path of header files (to be more compatible with
+Fedora, at least for libusal).
+  * Changed wodim-devel package name to cdrkit-devel-static.
+  * Added "-DPIC -fPIC" in CFLAGS to built the static libraries.
+  * Added smp_mflags to make.
+  * Install config files in /etc.
+  * Updates in %post installation script of wodim according to openSUSE spec
+file guidelines.
+  * Updates in %files sections.
+  * Minor other updates.
+- Added a patch from upstream for icedax.1 to fix rpmlint warning "macro `wav,'
+  not defined".
+
+---

calling whatdependson for head-i586


New:

  icedax.1_macro_warning_fix.patch



Other differences:
--
++ wodim.spec ++
--- /var/tmp/diff_new_pack.vX05wc/_old  2011-04-11 10:02:28.0 +0200
+++ /var/tmp/diff_new_pack.vX05wc/_new  2011-04-11 10:02:28.0 +0200
@@ -15,38 +15,43 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   wodim
 Version:1.1.11
-Release:1
+Release:2
 Summary:Tool for Writing CDRs
 
 License:GPLv2
 Url:http://cdrkit.org/
 Group:  Productivity/Multimedia/CD/Record
-Source0:cdrkit-%{version}.tar.gz
+Source0:http://cdrkit.org/releases/cdrkit-%{version}.tar.gz
 Source1:scan_scsi.linux
 Source2:cdinfo.c
 Source5:README.SUSE
 # PATCH-FIX-OPENSUSE cdrkit-1.1.9-cmake.patch -- 
-Patch1: cdrkit-1.1.9-cmake.patch
+Patch0: cdrkit-1.1.9-cmake.patch
 # PATCH-FIX-OPENSUSE genisoimage-multi-extent.patch -- 
-Patch2: genisoimage-multi-extent.patch
+Patch1: genisoimage-multi-extent.patch
 # PATCH-FIX-OPENSUSE cdrkit-1.1.9-zlib-check.patch -- Fix cmake scripts to 
detect zlib-devel
-Patch4: cdrkit-1.1.9-zlib-check.patch
+Patch2: cdrkit-1.1.9-zlib-check.patch
 # PATCH-FIX-OPENSUSE cdrkit-1.1.9-fix-buffer-overflows.patch -- Fix buffer 
overflow warnings
-Patch5: cdrkit-1.1.9-fix-buffer-overflows.patch
+Patch3: cdrkit-1.1.9-fix-buffer-overflows.patch
+# PATCH-FIX-UPSTREAM icedax.1_macro_warning_fix.patch 
asterios.dra...@gmail.com -- Fix rpmlint warning "manual-page-warning: macro 
`wav,' not defined" (already fixed upstream)
+Patch4: icedax.1_macro_warning_fix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  file-devel
 BuildRequires:  gcc-c++
+BuildRequires:  libbz2-devel
 BuildRequires:  libcap-devel
 BuildRequires:  perl
 BuildRequires:  zlib-devel
+Requires:   permissions
+Provides:   cdrecord = %{version}
+Obsoletes:  cdrecord < %{version}
 Requires(post): permissions
 Requires(post): /bin/cp
 
@@ -54,69 +59,27 @@
 wodim is used to record data or audio CDs on a CD-Recorder or to write
 DVD media on a DVD-Recorder.
 
-
-
-Authors:
-
-Joerg Jaspert (leader, release management)
-Eduard Bloch (developer, patch integration)
-Steve McIntyre (developer)
-Peter Samuelson (developer, QA)
-Christian Fromme (QA)
-Joerg Schilling (original cdrecord)
-
-%package devel
+%package -n cdrkit-devel-static
 License:GPLv2
 Summary:Tool for Writing CDRs - Files Mandatory for Development
 Group:  Development/Libraries/Other
-Provides:   cdrecord-devel
-Obsoletes:  cdrecord-devel
+Provides:   cdrecord-devel = %{version}
+Provides:   cdrtools-devel = %{version}
+Provides:   wodim-devel = %{version}
+Obsoletes:  cdrecord-devel < %{version}
+Obsoletes:  cdrtools-devel < %{version}
+Obsoletes:  wodim-devel < %{version}
 
-%description devel
+%description -n cdrkit-devel-static
 This package contains cdrkit libraries mandatory for development.
 
-
-
-Authors:
-
-Joerg Schilling 
-
-%package -n cdrkit-cdrtools-compat
-License:GPLv2
-Summary:Tool for Writing CDRs - cdrtools Compatibility Package
-Group:  Productivity/Multimedia/CD/Record
-Requires:   genisoimage
-Requires:   i

commit libyajl for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package libyajl for openSUSE:Factory
checked in at Mon Apr 11 10:02:17 CEST 2011.




--- libyajl/libyajl.changes 2010-12-22 00:04:20.0 +0100
+++ /mounts/work_src_done/STABLE/libyajl/libyajl.changes2011-04-08 
22:43:58.0 +0200
@@ -1,0 +2,17 @@
+Fri Apr  8 20:43:36 UTC 2011 - co...@novell.com
+
+- add baselibs.conf for 32bit library support
+
+---
+Wed Feb  9 19:03:53 UTC 2011 - pascal.ble...@opensuse.org
+
+- revert last change, it is BSD3c indeed, and totally unrelated to
+  bnc#670525
+
+---
+Wed Feb  9 18:57:38 UTC 2011 - pascal.ble...@opensuse.org
+
+- fix license, changed from erroneous BSD3c to MIT, as stated on
+  http://pyyaml.org/wiki/LibYAML, sort of fixes bnc#670525
+
+---

calling whatdependson for head-i586


New:

  baselibs.conf



Other differences:
--
++ libyajl.spec ++
--- /var/tmp/diff_new_pack.BUFeIB/_old  2011-04-11 09:53:47.0 +0200
+++ /var/tmp/diff_new_pack.BUFeIB/_new  2011-04-11 09:53:47.0 +0200
@@ -19,12 +19,13 @@
 
 Name:   libyajl
 Version:1.0.11
-Release:1
+Release:5
 %define soname 1
 %define tag f4baae0
 Summary:Yet Another JSON Library 
 # http://download.github.com/lloyd-yajl-%{version}-0-g%{tag}.tar.gz
 Source: lloyd-yajl-%{version}-0-g%{tag}.tar.bz2
+Source1:baselibs.conf
 Patch1: libyajl-optflags.patch
 Patch2: libyajl-lib_suffix.patch
 Source99:   %{name}-rpmlintrc

++ baselibs.conf ++
libyajl1





Remember to have fun...

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



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

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package gstreamer-0_10-plugins-good for 
openSUSE:Factory
checked in at Mon Apr 11 09:45:21 CEST 2011.




--- GNOME/gstreamer-0_10-plugins-good/gstreamer-0_10-plugins-good.changes   
2011-02-01 11:41:14.0 +0100
+++ 
/mounts/work_src_done/STABLE/gstreamer-0_10-plugins-good/gstreamer-0_10-plugins-good.changes
2011-04-08 23:35:09.0 +0200
@@ -1,0 +2,24 @@
+Fri Apr  8 16:33:27 CDT 2011 - gb...@suse.de
+
+- Build against libv4l, so libv4lconvert.so gets loaded, which 
+  gives Cheese et al using camerabin support for old,
+  JPEG-producing webcams (bnc#674287)
+
+---
+Wed Apr  6 15:13:33 UTC 2011 - ti...@suse.de
+
+- Updated to version 0.10.28:
+  * Fix build issue with new kernels
+
+---
+Wed Apr  6 15:07:58 UTC 2011 - ti...@suse.de
+
+- Increase the pulsesink chunk size to the buffer size for more
+  smooth playback (bnc#684781)
+
+---
+Sat Mar  5 09:28:38 UTC 2011 - tims...@rocketmail.com
+
+- added possible fix for gstreamer crashes (bnc#673914, bgo#641330)
+
+---

calling whatdependson for head-i586


Old:

  gst-plugins-good-0.10.27.tar.bz2

New:

  gst-plugins-good-0.10.28.tar.bz2
  gst-pulsesink-bufsize.diff
  gstreamer-0_10-plugins-good-fix-tag-list-handling-issue.patch



Other differences:
--
++ gstreamer-0_10-plugins-good.spec ++
--- /var/tmp/diff_new_pack.8gfX5O/_old  2011-04-11 09:43:44.0 +0200
+++ /var/tmp/diff_new_pack.8gfX5O/_new  2011-04-11 09:43:44.0 +0200
@@ -23,7 +23,7 @@
 # support completely:
 %define ENABLE_AALIB 1
 %define _name gst-plugins-good
-Version:0.10.27
+Version:0.10.28
 Release:1
 %define gst_branch 0.10
 %if 0%{?ENABLE_AALIB}
@@ -50,6 +50,7 @@
 BuildRequires:  libpulse-devel
 BuildRequires:  libshout-devel
 BuildRequires:  libtheora-devel
+BuildRequires:  libv4l-devel
 BuildRequires:  libvorbis-devel
 BuildRequires:  ftgl-devel
 BuildRequires:  orc
@@ -68,6 +69,10 @@
 License:LGPLv2.1+
 Group:  Productivity/Multimedia/Other
 Source0:
http://gstreamer.freedesktop.org/src/gst-plugins-good/%{_name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM 
gstreamer-0_10-plugins-good-fix-tag-list-handling-issue.patch bnc673914, 
bgo641330 tims...@rocketmail.com -- possible fix for gstreamer crashes in Amarok
+Patch0: gstreamer-0_10-plugins-good-fix-tag-list-handling-issue.patch
+# PATCH-FIX-UPSTREAM gst-plusesink-bufsize.diff bnc684781 ti...@suse.de -- 
increase the pulsesink transfer chunk size
+Patch1: gst-pulsesink-bufsize.diff
 Url:http://gstreamer.freedesktop.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:GStreamer Streaming-Media Framework Plug-Ins
@@ -148,6 +153,8 @@
 %prep
 chmod 0644 %{S:0}
 %setup -q -n %{_name}-%{version}
+%patch0 -p1
+%patch1 -p1
 translation-update-upstream po gst-plugins-good-0.10
 
 %build

++ gst-plugins-good-0.10.27.tar.bz2 -> gst-plugins-good-0.10.28.tar.bz2 
++
 7288 lines of diff (skipped)

++ gst-pulsesink-bufsize.diff ++
>From 1e2c1467ae042a3c6bb1a6bc0c07aeff13ec5edb Mon Sep 17 00:00:00 2001
From: David Henningsson 
Date: Mon, 31 Jan 2011 04:58:36 +
Subject: Pulsesink: Allow chunks up to bufsize instead of segsize

By allowing larger chunks to be sent, PulseAudio will have a
lower CPU usage. This is especially important on low-end machines,
where PulseAudio can crash if packets are coming in at a higher
rate than PulseAudio can process them.

Signed-off-by: David Henningsson 
---
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c
index 9bebfec..295d93f 100644
--- a/ext/pulse/pulsesink.c
+++ b/ext/pulse/pulsesink.c
@@ -1339,11 +1339,11 @@ gst_pulseringbuffer_commit (GstRingBuffer * buf, 
guint64 * sample,
 
 towrite = out_samples * bps;
 
-/* Only ever write segsize bytes at once. This will
- * also limit the PA shm buffer to segsize
+/* Only ever write bufsize bytes at once. This will
+ * also limit the PA shm buffer to bufsize
  */
-if (towrite > buf->spec.segsize)
-  towrite = buf->spec.segsize;
+if (towrite > bufsize)
+  towrite = bufsize;
 
 if ((pbuf->m_writable < towrite) || (offset != pbuf->m_lastoffset)) {
   /* if no room left or discontinuity in offset,
@@ -1392,9 +1392,9 @@ gst_pulseringbuffer_commit (GstRingBuffer * buf, guint64 
* sample,
   }
 
   /* make sure we only buffer up latency-time samples */
-  if (pbuf->m_writable > buf->spec.segsize) {
+  if (pbuf->m_writable > bufsize) {
 /* limit buffering to latency-time value */
-pbuf->m_writable = buf->spec.segsize;
+  

commit wget for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package wget for openSUSE:Factory
checked in at Mon Apr 11 09:43:29 CEST 2011.




--- wget/wget.changes   2010-08-15 18:16:46.0 +0200
+++ /mounts/work_src_done/STABLE/wget/wget.changes  2011-04-09 
22:04:40.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr  9 20:03:18 UTC 2011 - crrodrig...@opensuse.org
+
+- SSLv2 is being disabled in openSSL, allow painless obsoletion.
+- Support IDN.
+
+---

calling whatdependson for head-i586


New:

  wget-1.12-nosslv2.patch



Other differences:
--
++ wget.spec ++
--- /var/tmp/diff_new_pack.jlvmdL/_old  2011-04-11 09:15:54.0 +0200
+++ /var/tmp/diff_new_pack.jlvmdL/_new  2011-04-11 09:15:54.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package wget (Version 1.12)
+# spec file for package wget
 #
-# 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,7 +19,7 @@
 
 Name:   wget
 Version:1.12
-Release:1
+Release:5
 License:GPLv3+
 Summary:A Tool for Mirroring FTP and HTTP Servers
 Url:http://www.gnu.org/software/wget/
@@ -29,10 +29,12 @@
 Patch0: wgetrc.patch
 # PATCH-FEATURE-UPSTREAM wget-libproxy.patch dims...@opensuse.org -- Add 
libproxy support to wget
 Patch1: wget-libproxy.patch
+Patch2: wget-1.12-nosslv2.patch
 BuildRequires:  libpng-devel
 BuildRequires:  libproxy-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
+BuildRequires:  libidn-devel
 PreReq: %install_info_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -44,6 +46,7 @@
 %setup -q
 %patch0
 %patch1 -p1
+%patch2
 
 %build
 ./autogen.sh

++ wget-1.12-nosslv2.patch ++
--- src/init.c.orig
+++ src/init.c
@@ -1331,7 +1331,9 @@ cmd_spec_secure_protocol (const char *co
 {
   static const struct decode_item choices[] = {
 { "auto", secure_protocol_auto },
+#ifndef OPENSSL_NO_SSL2
 { "sslv2", secure_protocol_sslv2 },
+#endif
 { "sslv3", secure_protocol_sslv3 },
 { "tlsv1", secure_protocol_tlsv1 },
   };
--- src/openssl.c.orig
+++ src/openssl.c
@@ -42,6 +42,7 @@ as that of the covered work.  */
 #include 
 #include 
 #include 
+#include 
 
 #include "utils.h"
 #include "connect.h"
@@ -178,15 +179,21 @@ ssl_init ()
   SSL_load_error_strings ();
   SSLeay_add_all_algorithms ();
   SSLeay_add_ssl_algorithms ();
+/* Load all bundled ENGINEs into memory and make them visible */
+ ENGINE_load_builtin_engines();
+/* Register all of them for every algorithm they collectively implement */
+ ENGINE_register_all_complete();
 
   switch (opt.secure_protocol)
 {
 case secure_protocol_auto:
   meth = SSLv23_client_method ();
   break;
+#ifndef OPENSSL_NO_SSL2
 case secure_protocol_sslv2:
   meth = SSLv2_client_method ();
   break;
+#endif
 case secure_protocol_sslv3:
   meth = SSLv3_client_method ();
   break;
--- src/options.h.orig
+++ src/options.h
@@ -171,7 +171,9 @@ struct options
 #ifdef HAVE_SSL
   enum {
 secure_protocol_auto,
+#ifndef OPENSSL_NO_SSL2
 secure_protocol_sslv2,
+#endif
 secure_protocol_sslv3,
 secure_protocol_tlsv1
   } secure_protocol;   /* type of secure protocol to use. */
--- src/iri.c.orig
+++ src/iri.c
@@ -114,7 +114,7 @@ check_encoding_name (char *encoding)
 static bool
 open_locale_to_utf8 (void)
 {
-
+return true;
 }
 
 /* Try converting string str from locale to UTF-8. Return a new string





Remember to have fun...

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



commit xorg-x11 for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package xorg-x11 for openSUSE:Factory
checked in at Mon Apr 11 09:15:46 CEST 2011.




--- xorg-x11/xorg-x11.changes   2011-04-05 19:03:40.0 +0200
+++ /mounts/work_src_done/STABLE/xorg-x11/xorg-x11.changes  2011-04-08 
16:18:51.0 +0200
@@ -1,0 +2,13 @@
+Fri Apr  8 14:14:23 UTC 2011 - sndir...@novell.com
+
+- changes by Christopher Yeleighton 
+  * add documentation for xedit (bnc #684116)
+  * fix several RPMLINT warnings and compiler warnings, in
+particular in keygen.
+  * make use of more rpm macros
+  * xdmshell is excluded as obsolete.
+  * xkeystone is excluded as broken.
+  * some other files are excluded because they are irrelevant.
+  * OpenSuSE-specific tools get manual pages redirecting to init.d. 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ xorg-x11.spec ++
--- /var/tmp/diff_new_pack.Cg9LuD/_old  2011-04-11 09:01:42.0 +0200
+++ /var/tmp/diff_new_pack.Cg9LuD/_new  2011-04-11 09:01:42.0 +0200
@@ -19,19 +19,30 @@
 
 
 Name:   xorg-x11
-BuildRequires:  ConsoleKit-devel fontconfig-devel freetype2-devel libXi6-devel 
libpng-devel ncurses-devel pam-devel pkgconfig rsh update-desktop-files 
xorg-x11-devel xorg-x11-libICE-devel xorg-x11-libSM-devel xorg-x11-libX11-devel 
xorg-x11-libXau-devel xorg-x11-libXdmcp-devel xorg-x11-libXext-devel 
xorg-x11-libXfixes-devel xorg-x11-libXmu-devel xorg-x11-libXp-devel 
xorg-x11-libXpm-devel xorg-x11-libXprintUtil-devel xorg-x11-libXrender-devel 
xorg-x11-libXt-devel xorg-x11-libXv-devel xorg-x11-libfontenc-devel 
xorg-x11-libxkbfile-devel xorg-x11-proto-devel xorg-x11-xtrans-devel
+BuildRequires:  ConsoleKit-devel fontconfig-devel freetype2-devel libXi6-devel 
libpng-devel ncurses-devel
+%if 0%{?suse_version} >= 01140
+BuildRequires:  aaa_base-extras
+%endif
+BuildRequires:  pam-devel pkgconfig rsh update-desktop-files xorg-x11-devel 
xorg-x11-libICE-devel
+BuildRequires:  xorg-x11-libSM-devel xorg-x11-libX11-devel 
xorg-x11-libXau-devel xorg-x11-libXdmcp-devel
+BuildRequires:  xorg-x11-libXext-devel
+BuildRequires:  xorg-x11-libXfixes-devel xorg-x11-libXmu-devel 
xorg-x11-libXp-devel xorg-x11-libXpm-devel
+BuildRequires:  xorg-x11-libXprintUtil-devel
+BuildRequires:  xorg-x11-libXrender-devel xorg-x11-libXt-devel 
xorg-x11-libXv-devel xorg-x11-libfontenc-devel
+BuildRequires:  xorg-x11-libxkbfile-devel
+BuildRequires:  fdupes xorg-x11-proto-devel xorg-x11-xtrans-devel
 BuildRequires:  bison
 Url:http://xorg.freedesktop.org/
 Version:7.6
-Release:49
+Release:51
 License:MIT License (or similar)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  System/X11/Utilities
-Requires:   cpp
+Requires:   cpp logrotate
 Requires:   %{name}-xauth ConsoleKit
 Recommends: dbus-1-x11
-Provides:   XFree86 xcompmgr xrestop
-Obsoletes:  xcompmgr xrestop
+Provides:   XFree86 xcompmgr = 1.1.5 xrestop = 0.4
+Obsoletes:  xcompmgr < 1.1.5 xrestop < 0.4
 Summary:X.Org core and sample applications
 Source0:appres-1.0.3.tar.bz2
 Source1:bdftopcf-1.0.3.tar.bz2
@@ -179,7 +190,7 @@
 Dmitry Yu. Bolkhovityanov
 Doug Moran
 Eric Anholt
-Felix K�lhing
+Felix Kühling
 Ivan Griffin
 Jim Fulton
 Jim Gettys
@@ -197,7 +208,7 @@
 License:MIT License (or similar)
 Summary:X authority file utility
 Group:  System/X11/Utilities
-Provides:   xorg-x11:/usr/X11R6/bin/xauth xorg-x11:/usr/bin/xauth
+Provides:   xorg-x11:%{_bindir}/xauth
 AutoReqProv:on
 
 %description xauth
@@ -219,7 +230,7 @@
 Dmitry Yu. Bolkhovityanov
 Doug Moran
 Eric Anholt
-Felix K�lhing
+Felix Kühling
 Ivan Griffin
 Jim Fulton
 Jim Gettys
@@ -234,10 +245,18 @@
 Werner Fink
 
 %prep
-%setup -T -c %{name}
+%setup -T -c '%{name}'
+%if 0%{?suse_version} < 01120
 for i in $RPM_SOURCE_DIR/*-*.tar.bz2; do tar xjf $i; done
-pushd $RPM_BUILD_DIR 
-tar -xjf %{SOURCE205}
+%else
+for i in %{sources} 
+  do case "${i}" in 
+  *-*) %{__tar} xjf "${i}";;
+  esac
+done
+%endif
+pushd "${RPM_BUILD_DIR}" 
+%{__tar} -xjf '%{S:205}'
 popd
 pushd lbxproxy-*
 %patch2
@@ -292,11 +311,18 @@
 %patch69 -p0
 %patch674733 -p1
 popd
+# Bug 684116
+pushd xedit-*
+%{__mkdir_p} .doc/xedit
+ln AUTHORS README ChangeLog .doc/xedit/.
+ln lisp/README .doc/xedit/lisp.README
+ln lisp/re/README  .doc/xedit/re.README
+popd
 
 %build
 
 %install
-export PATH=${PATH}:$RPM_BUILD_ROOT/usr/bin
+export PATH="${PATH}:${RPM_BUILD_ROOT}%{_bindir}"
 for dir in xcursorgen-* $(ls | grep -v xcursorgen); do
   pushd $dir
 case $dir in
@@ -311,41 +337,40 @@
  xinit-*|  \
  xset-*|   \
  xsm)option=''; autoreconf -fi ;;
- luit-*) 
option='--w

commit mailx for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package mailx for openSUSE:Factory
checked in at Mon Apr 11 09:01:31 CEST 2011.




--- mailx/mailx.changes 2011-02-01 12:10:35.0 +0100
+++ /mounts/work_src_done/STABLE/mailx/mailx.changes2011-04-09 
23:31:39.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr  9 21:30:46 UTC 2011 - crrodrig...@opensuse.org
+
+- Allow mailx to compile properly when openSSL is built without
+  SSLv2 support. 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ mailx.spec ++
--- /var/tmp/diff_new_pack.8q2MyO/_old  2011-04-11 09:00:28.0 +0200
+++ /var/tmp/diff_new_pack.8q2MyO/_new  2011-04-11 09:00:28.0 +0200
@@ -27,7 +27,7 @@
 Recommends: smtp_daemon
 AutoReqProv:on
 Version:12.2
-Release:153
+Release:158
 Summary:A MIME-Capable Implementation of the mailx Command
 Source: mailx-%{version}.tar.bz2
 Patch:  mailx-%{version}.dif
@@ -54,7 +54,7 @@
 %patch4 -p0 -b .toaddr
 %patch5 -p0 -b .mime
 %patch  -p0
-%patch6  -p1
+%patch6
 
 %build
 CC=gcc

++ mailx-fix-openssl.patch ++
--- /var/tmp/diff_new_pack.8q2MyO/_old  2011-04-11 09:00:28.0 +0200
+++ /var/tmp/diff_new_pack.8q2MyO/_new  2011-04-11 09:00:28.0 +0200
@@ -1,8 +1,14 @@
-Index: mailx-12.2/openssl.c
-===
 mailx-12.2.orig/openssl.c
-+++ mailx-12.2/openssl.c
-@@ -105,7 +105,7 @@ static SSL_METHOD *ssl_select_method(con
+--- openssl.c.orig
 openssl.c
+@@ -63,6 +63,7 @@ static sigjmp_bufssljmp;
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "rcv.h"
+ #include 
+@@ -105,7 +106,7 @@ static SSL_METHOD *ssl_select_method(con
  static void ssl_load_verifications(struct sock *sp);
  static void ssl_certificate(struct sock *sp, const char *uhp);
  static enum okay ssl_check_host(const char *server, struct sock *sp);
@@ -11,7 +17,32 @@
X509_STORE *store);
  static EVP_CIPHER *smime_cipher(const char *name);
  static int ssl_password_cb(char *buf, int size, int rwflag, void *userdata);
-@@ -308,7 +308,7 @@ ssl_check_host(const char *server, struc
+@@ -166,6 +167,10 @@ ssl_init(void)
+   verbose = value("verbose") != NULL;
+   if (initialized == 0) {
+   SSL_library_init();
++/* Load all bundled ENGINEs into memory and make them visible */
++ ENGINE_load_builtin_engines();
++ /* Register all of them for every algorithm they collectively implement */
++ ENGINE_register_all_complete();
+   initialized = 1;
+   }
+   if (rand_init == 0)
+@@ -211,9 +216,12 @@ ssl_select_method(const char *uhp)
+ 
+   cp = ssl_method_string(uhp);
+   if (cp != NULL) {
++#ifndef OPENSSL_NO_SSL2
+   if (equal(cp, "ssl2"))
+   method = SSLv2_client_method();
+-  else if (equal(cp, "ssl3"))
++  else
++#endif 
++if (equal(cp, "ssl3"))
+   method = SSLv3_client_method();
+   else if (equal(cp, "tls1"))
+   method = TLSv1_client_method();
+@@ -308,7 +316,7 @@ ssl_check_host(const char *server, struc
X509 *cert;
X509_NAME *subj;
char data[256];
@@ -20,7 +51,7 @@
GENERAL_NAME*gen;
int i;
  
-@@ -494,7 +494,7 @@ smime_sign(FILE *ip, struct header *head
+@@ -494,7 +502,7 @@ smime_sign(FILE *ip, struct header *head
  }
  
  static int
@@ -29,7 +60,7 @@
  {
struct message  *x;
char*cp, *sender, *to, *cc, *cnttype;
-@@ -503,7 +503,8 @@ smime_verify(struct message *m, int n, S
+@@ -503,7 +511,8 @@ smime_verify(struct message *m, int n, S
off_t   size;
BIO *fb, *pb;
PKCS7   *pkcs7;
@@ -39,7 +70,7 @@
X509*cert;
X509_NAME   *subj;
chardata[LINESIZE];
-@@ -612,7 +613,7 @@ cverify(void *vp)
+@@ -612,7 +621,7 @@ cverify(void *vp)
  {
int *msgvec = vp, *ip;
int ec = 0;
@@ -48,7 +79,7 @@
X509_STORE  *store;
char*ca_dir, *ca_file;
  
-@@ -685,7 +686,7 @@ smime_encrypt(FILE *ip, const char *cert
+@@ -685,7 +694,7 @@ smime_encrypt(FILE *ip, const char *cert
X509*cert;
PKCS7   *pkcs7;
BIO *bb, *yb;
@@ -57,7 +88,7 @@
EVP_CIPHER  *cipher;
  
certfile = expand((char *)certfile);
-@@ -948,9 +949,9 @@ smime_certsave(struct message *m, int n,
+@@ -948,9 +957,9 @@ smime_certsave(struct message *m, int n,
off_t   size;
BIO *fb, *pb;
PKCS7   *pkcs7;






Remember to have fun...

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

commit postfix for openSUSE:Factory

2011-04-11 Thread h_root

Hello community,

here is the log from the commit of package postfix for openSUSE:Factory
checked in at Mon Apr 11 09:00:20 CEST 2011.




--- postfix/postfix.changes 2011-03-31 00:00:51.0 +0200
+++ /mounts/work_src_done/STABLE/postfix/postfix.changes2011-04-10 
09:01:11.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 10 07:00:18 UTC 2011 - vark...@novell.com
+
+- bnc#641271 - postfix-2.7.1: init script cannot properly stop
+  multi-instance configurations 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ postfix.spec ++
--- /var/tmp/diff_new_pack.iIX9zH/_old  2011-04-11 08:59:22.0 +0200
+++ /var/tmp/diff_new_pack.iIX9zH/_new  2011-04-11 08:59:22.0 +0200
@@ -22,7 +22,7 @@
 Name:   postfix
 Summary:A fast, secure, and flexible mailer
 Version:2.8.2
-Release:1
+Release:5
 License:IBM Public License ..
 Group:  Productivity/Networking/Email/Servers
 Url:http://www.postfix.org/

++ postfix-SuSE.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/postfix-SuSE/rc.postfix new/postfix-SuSE/rc.postfix
--- old/postfix-SuSE/rc.postfix 2010-07-06 17:03:26.0 +0200
+++ new/postfix-SuSE/rc.postfix 2011-04-10 08:59:58.0 +0200
@@ -173,10 +173,8 @@
 ;;
 stop)
 echo -n "Shutting down mail service (Postfix)"
-## Stop daemon with killproc(8) and if this fails
-## set echo the echo return value.
 
-   /sbin/killproc -p $PIDFILE -TERM $MASTER_BIN
+   $POSTFIX_BIN stop > /dev/null 2>&1
 
# Remember status and be verbose
cond_slp "deregister" &
@@ -201,14 +199,10 @@
rc_status
 ;;
 force-reload)
-   ## Signal the daemon to reload its config. Most daemons
-   ## do this on signal 1 (SIGHUP).
-   ## If it does not support it, restart.
 
echo -n "Reload mail service (Postfix)"
-   # if it supports it:
-   /sbin/killproc -p $PIDFILE -HUP $MASTER_BIN
-   #touch /var/run/FOO.pid
+
+   $POSTFIX_BIN reload > /dev/null 2>&1
rc_status -v
POSTFIX_BIN flush > /dev/null 2>&1
 
@@ -219,9 +213,7 @@
 reload)
 echo -n "Reload mail service (Postfix)"
 
-   # If it supports signalling:
-   /sbin/killproc -p $PIDFILE -HUP $MASTER_BIN
-   #touch /var/run/FOO.pid
+   $POSTFIX_BIN reload > /dev/null 2>&1
rc_status -v
$POSTFIX_BIN flush > /dev/null 2>&1







Remember to have fun...

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