commit perl for openSUSE:11.3

2011-11-22 Thread h_root

Hello community,

here is the log from the commit of package perl for openSUSE:11.3
checked in at Tue Nov 22 15:48:30 CET 2011.




--- old-versions/11.3/UPDATES/all/perl/perl.changes 2011-05-03 
18:16:30.0 +0200
+++ 11.3/perl/perl.changes  2011-11-21 18:28:45.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 18:25:02 CET 2011 - m...@suse.de
+
+- fix heap overflow bug in Unicode.xs [bnc#728662] [CVE-2011-2939]
+
+---

calling whatdependson for 11.3-i586


New:

  perl-decode_xs.diff



Other differences:
--
++ perl.spec ++
--- /var/tmp/diff_new_pack.VtXLkj/_old  2011-11-22 15:32:01.0 +0100
+++ /var/tmp/diff_new_pack.VtXLkj/_new  2011-11-22 15:32:01.0 +0100
@@ -21,7 +21,7 @@
 Name:   perl
 Summary:The Perl interpreter
 Version:5.12.1
-Release:2.RELEASE5
+Release:2.RELEASE7
 %define pversion 5.12.1
 License:Artistic License .. ; GPLv2+
 Group:  Development/Languages/Perl
@@ -45,6 +45,7 @@
 Patch10:perl-cgi-injection.diff
 Patch11:perl-lcuctaint.diff
 Patch12:perl-saverecontext.diff
+Patch13:perl-decode_xs.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: perl-base = %version
 #PreReq: %fillup_prereq
@@ -164,6 +165,7 @@
 %patch10
 %patch11
 %patch12
+%patch13
 
 %build
 cp -a lib savelib

++ perl-decode_xs.diff ++
--- ./cpan/Encode/Unicode/Unicode.xs.orig   2011-11-21 17:10:28.0 
+
+++ ./cpan/Encode/Unicode/Unicode.xs2011-11-21 17:11:35.0 +
@@ -246,7 +246,8 @@ CODE:
   This prevents allocating too much in the rogue case of a large
   input consisting initially of long sequence uft8-byte unicode
   chars followed by single utf8-byte chars. */
-   STRLEN remaining = (e - s)/usize;
+   /* +1 fixes Unicode.xs!decode_xs n-byte heap-overflow */
+   STRLEN remaining = (e - s)/usize + 1; /* +1 to avoid the leak */
STRLEN max_alloc = remaining + (8*1024*1024);
STRLEN est_alloc = remaining * UTF8_MAXLEN;
STRLEN newlen = SvLEN(result) + /* min(max_alloc, est_alloc) */
continue with q...



Remember to have fun...

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



commit perl for openSUSE:11.4

2011-11-22 Thread h_root

Hello community,

here is the log from the commit of package perl for openSUSE:11.4
checked in at Tue Nov 22 15:49:55 CET 2011.




--- old-versions/11.4/UPDATES/all/perl/perl.changes 2011-05-03 
18:18:17.0 +0200
+++ 11.4/perl/perl.changes  2011-11-21 18:28:04.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 18:25:02 CET 2011 - m...@suse.de
+
+- fix heap overflow bug in Unicode.xs [bnc#728662] [CVE-2011-2939]
+
+---

calling whatdependson for 11.4-i586


New:

  perl-decode_xs.diff



Other differences:
--
++ perl.spec ++
--- /var/tmp/diff_new_pack.4Cd6yI/_old  2011-11-22 15:48:38.0 +0100
+++ /var/tmp/diff_new_pack.4Cd6yI/_new  2011-11-22 15:48:38.0 +0100
@@ -21,7 +21,7 @@
 Name:   perl
 Summary:The Perl interpreter
 Version:5.12.3
-Release:11.RELEASE16
+Release:11.RELEASE18
 %define pversion 5.12.3
 License:Artistic License .. ; GPLv2+
 Group:  Development/Languages/Perl
@@ -43,6 +43,7 @@
 Patch9: perl-HiRes.t-timeout.diff
 Patch10:perl-lcuctaint.diff
 Patch11:perl-saverecontext.diff
+Patch12:perl-decode_xs.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: perl-base = %version
 #PreReq: %fillup_prereq
@@ -144,6 +145,7 @@
 %patch9 -p1
 %patch10
 %patch11
+%patch12
 
 %build
 cp -a lib savelib

++ perl-decode_xs.diff ++
--- ./cpan/Encode/Unicode/Unicode.xs.orig   2011-11-21 17:10:28.0 
+
+++ ./cpan/Encode/Unicode/Unicode.xs2011-11-21 17:11:35.0 +
@@ -246,7 +246,8 @@ CODE:
   This prevents allocating too much in the rogue case of a large
   input consisting initially of long sequence uft8-byte unicode
   chars followed by single utf8-byte chars. */
-   STRLEN remaining = (e - s)/usize;
+   /* +1 fixes Unicode.xs!decode_xs n-byte heap-overflow */
+   STRLEN remaining = (e - s)/usize + 1; /* +1 to avoid the leak */
STRLEN max_alloc = remaining + (8*1024*1024);
STRLEN est_alloc = remaining * UTF8_MAXLEN;
STRLEN newlen = SvLEN(result) + /* min(max_alloc, est_alloc) */
continue with q...



Remember to have fun...

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



commit aaa_base for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package aaa_base for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 16:04:35

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


Package is aaa_base, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/aaa_base/aaa_base.changes   
2011-11-22 16:04:35.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.aaa_base.new/aaa_base.changes  
2011-11-22 16:04:39.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 22 08:37:22 UTC 2011 - co...@suse.com
+
+- remove malloc_debug scripts - they were supposed to be only for
+  development (bnc#731587)
+
+---



Other differences:
--
++ aaa_base.spec ++
--- /var/tmp/diff_new_pack.E76iwk/_old  2011-11-22 16:04:39.0 +0100
+++ /var/tmp/diff_new_pack.E76iwk/_new  2011-11-22 16:04:39.0 +0100
@@ -16,8 +16,6 @@
 #
 
 
-%bcond_with aaa_base_malloc_debug
-
 Name:   aaa_base
 Version:12.1
 Release:105
@@ -76,9 +74,7 @@
 test -d $RPM_BUILD_ROOT/root/.gnupg  exit 1
 #
 # for the release
-%if !%{with aaa_base_malloc_debug}
 rm $RPM_BUILD_ROOT/etc/profile.d/malloc-debug.*
-%endif
 #
 # mark these as ghost
 for i in passwd group shadow gshadow ; do
@@ -118,10 +114,6 @@
 %config /etc/profile.d/csh.utf8
 %config /etc/profile.d/lang.csh
 %config /etc/profile.d/lang.sh
-%if %{with aaa_base_malloc_debug}
-%config /etc/profile.d/malloc-debug.sh
-%config /etc/profile.d/malloc-debug.csh
-%endif
 %config /etc/profile.d/profile.csh
 %config /etc/profile.d/profile.sh
 %config /etc/profile.d/sh.ssh

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



commit kolor-manager for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package kolor-manager for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 16:41:07

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


Package is kolor-manager, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.kolor-manager.new/kolor-manager.changes
2011-11-22 16:41:08.0 +0100
@@ -0,0 +1,22 @@
+---
+Fri Sep 23 11:54:04 UTC 2011 - Kai-Uwe Behrmann k...@gmx.de - r1252330
+
+- Requires oyranos for basic policy files and icon
+
+---
+Thu Sep 22 11:54:04 UTC 2011 - cfarr...@suse.com
+
+- license update: BSD-2-Clause
+  Use SPDX syntax
+
+---
+Thu Sep  8 17:01:14 UTC 2011 - Kai-Uwe Behrmann k...@gmx.de - r1252330
+
+- switch from PKGCONFIG to pkg_check_modules
+
+---
+Thu Sep  8 17:01:14 UTC 2011 - Kai-Uwe Behrmann k...@gmx.de - r1243368
+
+- skip cmake_kde4 macros as they dont smile with osc ci
+- improve icon placing in systemsettings
+

New:

  _link
  kolor-manager-r1252330.tar.bz2
  kolor-manager.changes
  kolor-manager.spec



Other differences:
--
++ kolor-manager.spec ++
# These macros are not present on the target distribution and are provided 
explicitly here
%define make_jobs %{__make} %{?_smp_mflags} VERBOSE=1

# Generated by kde-obs-generator version 0.3.2
#
# Copyright (c) 2010 Kai-Uwe Behrmann k...@gmx.de
#
# 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.

# norootforbuild


Name:   kolor-manager
BuildRequires:  liboyranos-alpha-devel
%if 0%{?suse_version}
BuildRequires:  libkde4-devel 
%endif
%if 0%{?fedora}
BuildRequires:  kdelibs-devel gcc-c++ libtool-ltdl-devel
%endif
%if 0%{?mandriva_version}
BuildRequires:  kdelibs4-devel libtool-devel
%endif
License:BSD-2-Clause
Url:http://www.freedesktop.org/wiki/OpenIcc
Group:  System/GUI/KDE
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
Summary:Colour Management Frontend for KDE
Version:r1252330
Release:0
Source: %{name}-%{version}.tar.bz2
%kde4_runtime_requires

Requires:   oyranos

%description
The systemsettings modules access cross desktop Oyranos CMS settings.

Author(s):
  Joe Simon, Kai-Uwe Behrmann ku.b at gmx.de 


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

%build
  %cmake_kde4 -d build
  %make_jobs

%install
  %kde4_makeinstall -C build
  %kde_post_install

%files
%defattr(-,root,root)
%doc README
%{_kde4_modulesdir}/kmdevices.so
%{_kde4_servicesdir}/kmdevices.desktop
%{_kde4_modulesdir}/kminfo.so
%{_kde4_servicesdir}/kminfo.desktop
%{_kde4_modulesdir}/kmsettings.so
%{_kde4_servicesdir}/kmsettings.desktop
%{_kde4_servicesdir}/settings-kolor-management.desktop

%changelog
++ _link ++
link project=openSUSE:12.1 package=kolor-manager 
baserev=9381cf572824836fd6546173d3067a89
  patches
branch/
  /patches
/link
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kolor-manager for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package kolor-manager for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 16:41:08

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


Package is kolor-manager, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/kolor-manager/kolor-manager.changes 
2011-11-22 16:41:08.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.kolor-manager.new/kolor-manager.changes
2011-11-22 16:41:12.0 +0100
@@ -1,0 +2,8 @@
+Thu Nov 15 13:01:00 UTC 2011 - Kai-Uwe Behrmann k...@gmx.de - r1252330
+
+- fix for bug bnc#730109 KolorManager does not pass ICC profile name to Oyranos
+- rename visible panel title from Kolor Management to Color Management
+- i18n fixes
+- adaptions to KDE coding style
+
+---

New:

  kolor-manager_fix-const-char-and-coding-style.patch



Other differences:
--
++ kolor-manager.spec ++
--- /var/tmp/diff_new_pack.vLRFnZ/_old  2011-11-22 16:41:12.0 +0100
+++ /var/tmp/diff_new_pack.vLRFnZ/_new  2011-11-22 16:41:12.0 +0100
@@ -1,8 +1,7 @@
-# These macros are not present on the target distribution and are provided 
explicitly here
-%define make_jobs %{__make} %{?_smp_mflags} VERBOSE=1
-
-# Generated by kde-obs-generator version 0.3.2
 #
+# spec file for package kolor-manager
+#
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Kai-Uwe Behrmann k...@gmx.de
 #
 # All modifications and additions to the file contributed by third parties
@@ -14,8 +13,25 @@
 # 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
 
+# These macros are not present on the target distribution and are provided 
explicitly here
+%define make_jobs %{__make} %{?_smp_mflags} VERBOSE=1
+
+# Generated by kde-obs-generator version 0.3.2
+#
+#
+# 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.
 
 Name:   kolor-manager
 BuildRequires:  liboyranos-alpha-devel
@@ -23,7 +39,7 @@
 BuildRequires:  libkde4-devel 
 %endif
 %if 0%{?fedora}
-BuildRequires:  kdelibs-devel gcc-c++ libtool-ltdl-devel
+BuildRequires:  gcc-c++ kdelibs-devel libtool-ltdl-devel
 %endif
 %if 0%{?mandriva_version}
 BuildRequires:  kdelibs4-devel libtool-devel
@@ -37,6 +53,7 @@
 Release:0
 Source: %{name}-%{version}.tar.bz2
 %kde4_runtime_requires
+Patch0: kolor-manager_fix-const-char-and-coding-style.patch
 
 Requires:   oyranos
 
@@ -49,6 +66,7 @@
 
 %prep
 %setup -n %{name}-%{version} -q
+%patch0 -p1
 
 %build
   %cmake_kde4 -d build

++ kolor-manager_fix-const-char-and-coding-style.patch ++
diff --git a/README b/README
index 6f1caf7..6527abd 100644
--- a/README
+++ b/README
@@ -57,7 +57,7 @@ ColourWiki: 
http://www.oyranos.org/wiki/index.php?title=Kolor-manager
 # local debug build
 mkdir build
 cd build
-cmake -DCMAKE_INSTALL_PREFIX=~/.kde4/ -DCMAKE_BUILD_TYPE=debugfull 
../kolor-manager
+cmake -DCMAKE_INSTALL_PREFIX=~/.kde4/ -DCMAKE_BUILD_TYPE=debugfull 
-DCMAKE_CXX_FLAGS=-g -Wall ../kolor-manager
 #Possibly prepend the PKG_CONFIG_PATH variable to reflect Oyranos...
 kbuildsycoca4 # update KDEs internal icon and module cachings
 kcmshell4 kminfo  # start
diff --git a/devices/kmdevices.cpp b/devices/kmdevices.cpp
index 8ee3c90..9fcdc79 100644
--- a/devices/kmdevices.cpp
+++ b/devices/kmdevices.cpp
@@ -501,8 +501,9 @@ void kmdevices::openProfile(int /*index*/)
   temp_item = profileAssociationList-item(i);
   if(temp_item-text() == baseFileName)
   {
+  std::string t = baseFileName.toStdString();
   KMessageBox::error(this,
-  i18n(Profile  + baseFileName.toLocal8Bit() +  is already 
associated with this device!),
+  i18n(Profile %1 is already associated with this device!, 
baseFileName),
   i18n(Cannot add profile to list));
 
   return;
@@ -576,7 +577,7 @@ void kmdevices::profileListDoubleClicked( QListWidgetItem * 
item )

commit libmsn for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libmsn for openSUSE:12.1:Update:Test 
checked in at 2011-11-22 16:46:22

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


Package is libmsn, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/libmsn/libmsn.changes   2011-11-17 
17:51:46.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.libmsn.new/libmsn.changes  
2011-11-22 16:46:23.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 17 17:08:52 UTC 2011 - idon...@suse.com
+
+- Install xmlParser.h 
+
+---

New:

  install-xmlparser.patch



Other differences:
--
++ libmsn.spec ++
--- /var/tmp/diff_new_pack.wkFc6N/_old  2011-11-22 16:46:23.0 +0100
+++ /var/tmp/diff_new_pack.wkFc6N/_new  2011-11-22 16:46:23.0 +0100
@@ -33,6 +33,7 @@
 Patch2: literal-string-compare.diff
 Patch3: openssl1.patch
 Patch4: soap-redirect.patch
+Patch5: install-xmlparser.patch
 Source99:   COPYING.LGPL
 %define debug_package_requires libmsn0_1 = %{version}-%{release}
 
@@ -72,6 +73,7 @@
 %patch2
 %patch3 -p1
 %patch4
+%patch5 -p1
 cp %{S:99} .
 
 %build

++ install-xmlparser.patch ++
Index: libmsn-4.2/msn/CMakeLists.txt
===
--- libmsn-4.2.orig/msn/CMakeLists.txt
+++ libmsn-4.2/msn/CMakeLists.txt
@@ -35,6 +35,7 @@ set(msn_HEADERS
 errorcodes.h
 msn.h
 buddy.h
+xmlParser.h
 passport.h
 sstream_fix.h
 soap.h
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xfce4-session for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package xfce4-session for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 17:28:48

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


Package is xfce4-session, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/xfce4-session/xfce4-session.changes 
2011-11-22 17:28:49.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.xfce4-session.new/xfce4-session.changes
2011-11-22 17:28:49.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov 13 17:33:24 UTC 2011 - g...@opensuse.org
+
+- fixed xfce4-session-fix-gnome-mode.patch to prevent NULL pointer
+  dereference on invalid autostart files (bnc#730059)
+
+---



Other differences:
--
++ xfce4-session-fix-gnome-mode.patch ++
--- /var/tmp/diff_new_pack.CYTAlC/_old  2011-11-22 17:28:50.0 +0100
+++ /var/tmp/diff_new_pack.CYTAlC/_new  2011-11-22 17:28:50.0 +0100
@@ -1,6 +1,6 @@
 diff -urNp xfce4-session-4.8.2.orig/settings/xfae-model.c 
xfce4-session-4.8.2/settings/xfae-model.c
 --- xfce4-session-4.8.2.orig/settings/xfae-model.c 2011-09-13 
18:17:10.0 +0200
-+++ xfce4-session-4.8.2/settings/xfae-model.c  2011-10-08 17:37:29.0 
+0200
 xfce4-session-4.8.2/settings/xfae-model.c  2011-11-13 17:45:34.0 
+0100
 @@ -73,6 +73,7 @@ static gboolean   xfae_model_ite
  static XfaeItem  *xfae_item_new   (const gchar
*relpath);
  static void   xfae_item_free  (XfaeItem   
*item);
@@ -34,32 +34,69 @@
gchar  **not_show_in;
gchar  **args;
gchar   *icon_name;
-@@ -457,18 +458,18 @@ xfae_item_new (const gchar *relpath)
- }
+@@ -454,37 +455,37 @@ xfae_item_new (const gchar *relpath)
+ item-comment = g_strdup (value);
  
-   /* check the OnlyShowIn setting */
+   item-hidden = xfce_rc_read_bool_entry (rc, Hidden, FALSE);
+-}
+-
+-  /* check the OnlyShowIn setting */
 -  only_show_in = xfce_rc_read_list_entry (rc, OnlyShowIn, ;);
 -  if (G_UNLIKELY (only_show_in != NULL))
-+  item-only_show_in = xfce_rc_read_list_entry (rc, OnlyShowIn, ;);
-+  if (G_UNLIKELY (item-only_show_in != NULL))
- {
+-{
 -  /* check if Xfce is specified */
 -  for (m = 0, skip = TRUE; only_show_in[m] != NULL; ++m)
 -if (g_ascii_strcasecmp (only_show_in[m], Xfce) == 0)
-+  /* check if Xfce, GNOME, or KDE are specified */
-+  for (m = 0, skip = TRUE; item-only_show_in[m] != NULL; ++m)
-+if ((g_ascii_strcasecmp (item-only_show_in[m], Xfce) == 0) ||
-+(g_ascii_strcasecmp (item-only_show_in[m], GNOME) == 0) ||
-+(g_ascii_strcasecmp (item-only_show_in[m], KDE) == 0))
-   {
- skip = FALSE;
- break;
-   }
--
+-  {
+-skip = FALSE;
+-break;
+-  }
+ 
 -  g_strfreev (only_show_in);
+-}
+-  else
+-{
+-  /* check the NotShowIn setting */
+-  not_show_in = xfce_rc_read_list_entry (rc, NotShowIn, ;);
+-  if (G_UNLIKELY (not_show_in != NULL))
++  /* check the OnlyShowIn setting */
++  item-only_show_in = xfce_rc_read_list_entry (rc, OnlyShowIn, 
;);
++  if (G_UNLIKELY (item-only_show_in != NULL))
+ {
+-  /* check if Xfce is not specified */
+-  for (m = 0; not_show_in[m] != NULL; ++m)
+-if (g_ascii_strcasecmp (not_show_in[m], Xfce) == 0)
++  /* check if Xfce, GNOME, or KDE are specified */
++  for (m = 0, skip = TRUE; item-only_show_in[m] != NULL; ++m)
++if ((g_ascii_strcasecmp (item-only_show_in[m], Xfce) == 0) 
||
++(g_ascii_strcasecmp (item-only_show_in[m], GNOME) == 
0) ||
++(g_ascii_strcasecmp (item-only_show_in[m], KDE) == 0))
+   {
+-skip = TRUE;
++skip = FALSE;
+ break;
+   }
++}
++  else
++{
++  /* check the NotShowIn setting */
++  not_show_in = xfce_rc_read_list_entry (rc, NotShowIn, ;);
++  if (G_UNLIKELY (not_show_in != NULL))
++{
++  /* check if Xfce is not specified */
++  for (m = 0; not_show_in[m] != NULL; ++m)
++if (g_ascii_strcasecmp (not_show_in[m], Xfce) == 0)
++  {

commit adns for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package adns for openSUSE:Factory checked in 
at 2011-11-22 17:47:09

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


Package is adns, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/adns/adns.changes2011-09-23 
01:51:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.adns.new/adns.changes   2011-11-22 
17:47:11.0 +0100
@@ -1,0 +2,7 @@
+Tue Nov 22 02:23:10 UTC 2011 - crrodrig...@opensuse.org
+
+- Use O_CLOEXEC in library code.
+- Change the visibility patch to not use the error prone 
+  version-script but rather GCC visibility
+
+---

New:

  adns-ocloexec.patch



Other differences:
--
++ adns.spec ++
--- /var/tmp/diff_new_pack.KQXNnP/_old  2011-11-22 17:47:14.0 +0100
+++ /var/tmp/diff_new_pack.KQXNnP/_new  2011-11-22 17:47:14.0 +0100
@@ -32,6 +32,7 @@
 Patch1: %{name}-%{version}-configure.patch
 Patch2: %{name}-%{version}-ipv6.patch
 Patch3: adns-visibility.patch
+Patch4: adns-ocloexec.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -65,6 +66,7 @@
 %patch1
 %patch2
 %patch3
+%patch4
 cp %{S:1} .
 
 %build
@@ -79,7 +81,7 @@
 
 %check
 # disable check for ipv6 patch
-# make check
+#make check
 
 %files
 %defattr(-,root,root)

++ adns-ocloexec.patch ++
--- src/setup.c.orig
+++ src/setup.c
@@ -464,7 +464,7 @@ static const char *instrum_getenv(adns_s
 static void readconfig(adns_state ads, const char *filename, int warnmissing) {
   getline_ctx gl_ctx;
   
-  gl_ctx.file= fopen(filename,r);
+  gl_ctx.file= fopen(filename,re);
   if (!gl_ctx.file) {
 if (errno == ENOENT) {
   if (warnmissing)
@@ -572,7 +572,7 @@ static int init_finish(adns_state ads) {
   }
 
   proto= getprotobyname(udp); if (!proto) { r= ENOPROTOOPT; goto x_free; }
-  ads-udpsocket= socket(AF_INET,SOCK_DGRAM,proto-p_proto);
+  ads-udpsocket= socket(AF_INET,SOCK_DGRAM|SOCK_CLOEXEC,proto-p_proto);
   if (ads-udpsocket0) { r= errno; goto x_free; }
 
   r= adns__setnonblock(ads,ads-udpsocket);
--- src/event.c.orig
+++ src/event.c
@@ -123,7 +123,7 @@ void adns__tcp_tryconnect(adns_state ads
   adns__diag(ads,-1,0,unable to find protocol no. for TCP !);
   return;
 }
-fd= socket(AF_INET,SOCK_STREAM,proto-p_proto);
+fd= socket(AF_INET,SOCK_STREAM|SOCK_CLOEXEC,proto-p_proto);
 if (fd0) {
   adns__diag(ads,-1,0,cannot create TCP socket: %s,strerror(errno));
   return;
++ adns-visibility.patch ++
--- /var/tmp/diff_new_pack.KQXNnP/_old  2011-11-22 17:47:14.0 +0100
+++ /var/tmp/diff_new_pack.KQXNnP/_new  2011-11-22 17:47:14.0 +0100
@@ -11,50 +11,19 @@
  AC_PROG_CPP
  AC_PROG_RANLIB
  AC_PROG_INSTALL
-@@ -252,7 +254,7 @@ SHLIBSONAME='$(SHLIBFORLINK).$(MAJOR)'
- SHLIBFILE='$(SHLIBSONAME).$(MINOR)'
+--- src/internal.h.orig
 src/internal.h
+@@ -49,6 +49,7 @@ typedef unsigned char byte;
+ # include hredirect.h
+ #endif
  
- SHLIBCC='$(CC) $(CFLAGS) -fpic'
--MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME) -o'
-+MKSHLIB_1='$(CC) $(LDFLAGS) -shared 
-Wl,-soname=$(SHLIBSONAME),-version-script=$(srcdir)/../adns.sym -o'
- MKSHLIB_2=''
- MKSHLIB_3='-lc'
++#pragma GCC visibility push(hidden)
+ /* Configuration and constants */
  
 /dev/null
-+++ adns.sym
-@@ -0,0 +1,35 @@
-+{
-+ global:
-+adns_afterselect;
-+adns_beforepoll;
-+adns_beforeselect;
-+adns_cancel;
-+adns_check;
-+adns_checkconsistency;
-+adns_errabbrev;
-+adns_errtypeabbrev;
-+adns_finish;
-+adns_firsttimeout;
-+adns_forallqueries_begin;
-+adns_forallqueries_next;
-+adns_getaddrinfo;
-+adns_globalsystemfailure;
-+adns_init;
-+adns_init_logfn;
-+adns_init_strcfg;
-+adns_processany;
-+adns_processexceptional;
-+adns_processreadable;
-+adns_processtimeouts;
-+adns_processwriteable;
-+adns_rr_info;
-+adns_strerror;
-+adns_submit;
-+adns_submit_reverse;
-+adns_submit_reverse_any;
-+adns_synchronous;
-+adns_wait;
-+adns_wait_poll;
-+
-+local: *;
-+};
+ #define MAXSERVERS 5
+@@ -803,4 +804,5 @@ static inline int errno_resources(int e)
+  (tv)|=GETIL_B(cb),   \
+  (tv) )
+ 
++#pragma GCC visibility pop
+ #endif

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



commit arpwatch-ethercodes for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2011-11-22 17:47:14

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


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

Changes:

--- /work/SRC/openSUSE:Factory/arpwatch-ethercodes/arpwatch-ethercodes.changes  
2011-11-21 12:34:16.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new/arpwatch-ethercodes.changes 
2011-11-22 17:47:16.0 +0100
@@ -2 +2 @@
-Sat Nov 19 07:40:05 CET 2011 - autobu...@suse.de
+Tue Nov 22 07:40:11 CET 2011 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2011-11-19
+- automated update on 2011-11-22



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.I3k1AY/_old  2011-11-22 17:47:18.0 +0100
+++ /var/tmp/diff_new_pack.I3k1AY/_new  2011-11-22 17:47:18.0 +0100
@@ -23,7 +23,7 @@
 License:BSD3c
 Group:  Productivity/Networking/Diagnostic
 Summary:Ethercodes Data for arpwatch
-Version:2011.11.19
+Version:2011.11.22
 Release:1
 Source0:http://standards.ieee.org/regauth/oui/oui.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt ++
--- /var/tmp/diff_new_pack.I3k1AY/_old  2011-11-22 17:47:18.0 +0100
+++ /var/tmp/diff_new_pack.I3k1AY/_new  2011-11-22 17:47:18.0 +0100
@@ -81924,6 +81924,12 @@
TAINAN  70268
TAIWAN, REPUBLIC OF CHINA
 
+08-EA-44   (hex)   Aerohive Networks, Inc.
+08EA44 (base 16)   Aerohive Networks, Inc.
+   330 Gibraltar Drive
+   Sunnyvale CA 94089
+   UNITED STATES
+
 08-F2-F4   (hex)   Net One Partners Co.,Ltd.
 08F2F4 (base 16)   Net One Partners Co.,Ltd.
2-8 Higashi Shinagawa 2-chome,
@@ -86302,6 +86308,13 @@
Newport Pagnell Buckinghamshire MK16 9HS
UNITED KINGDOM
 
+48-A2-2D   (hex)   Shenzhen Huaxuchang Telecom Technology Co.,Ltd
+48A22D (base 16)   Shenzhen Huaxuchang Telecom Technology Co.,Ltd
+   Room 501 Block B, Cyber Time Plaza
+   Tian#39;an, Futian District
+   Shenzhen Guangdong 518040
+   CHINA
+
 48-A6-D2   (hex)   GJsun Optical Science and Tech Co.,Ltd.
 48A6D2 (base 16)   GJsun Optical Science and Tech Co.,Ltd.
First floor National Information Industry Park 
D-08
@@ -86900,6 +86913,13 @@
San Jose CA 95110
UNITED STATES
 
+50-ED-94   (hex)   Egatel SL
+50ED94 (base 16)   Egatel SL
+   Parque Tecnologico de Galicia
+   Edificio Egatel, adv. Ourense, n� 1
+   Ourense  32901
+   SPAIN
+
 50-F0-03   (hex)   Open Stack, Inc.
 50F003 (base 16)   Open Stack, Inc.
Advanced Research Center #411
@@ -95087,6 +95107,12 @@
TAIPEI 23585
TAIWAN, REPUBLIC OF CHINA
 
+C0-DF-77   (hex)   Conrad Electronic SE
+C0DF77 (base 16)   Conrad Electronic SE
+   Klaus Conrad Str. 1
+   Hirschau Bavaria 92240
+   GERMANY
+
 C0-E4-22   (hex)   Texas Instruments
 C0E422 (base 16)   Texas Instruments
12500 TI Boulevard, MS8723

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



commit bash for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2011-11-22 17:47:19

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


Package is bash, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/bash/bash.changes2011-11-21 
12:34:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2011-11-22 
17:47:21.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 21 15:35:05 UTC 2011 - wer...@suse.de
+
+- Disable endpwent() in rl_username_completion_function() as this
+  cause a deadlock in a futex of the glibc (bnc#731556)
+
+---



Other differences:
--
++ bash-4.2-endpw.dif ++
--- /var/tmp/diff_new_pack.MlqEvD/_old  2011-11-22 17:47:24.0 +0100
+++ /var/tmp/diff_new_pack.MlqEvD/_new  2011-11-22 17:47:24.0 +0100
@@ -1,48 +1,58 @@
 --- bashline.c
-+++ bashline.c 2011-11-11 13:22:00.119146416 +
-@@ -2148,10 +2148,10 @@ bash_groupname_completion_function (text
-   if (gnamelen == 0 || (STREQN (gname, grent-gr_name, gnamelen)))
- break;
- }
-+  endgrent ();
- 
-   if (grent == 0)
- {
--  endgrent ();
-   return ((char *)NULL);
 bashline.c 2011-11-21 12:41:19.831646479 +
+@@ -2149,6 +2149,7 @@ bash_groupname_completion_function (text
  }
  
+   value = savestring (grent-gr_name);
++  endgrent ();
+   return (value);
+ #endif
+ }
 --- examples/loadables/finfo.c
-+++ examples/loadables/finfo.c 2011-11-11 13:21:12.319218165 +
-@@ -269,9 +269,11 @@ struct stat *st;
-   printmode((int) st-st_mode);
-   printf(Link count: %d\n, (int) st-st_nlink);
 examples/loadables/finfo.c 2011-11-21 12:23:17.331147246 +
+@@ -269,6 +269,7 @@ struct stat *st;
pw = getpwuid(st-st_uid);
-+  endpwent();
owner = pw ? pw-pw_name : unknown;
printf(Uid of owner: %d (%s)\n, (int) st-st_uid, owner);
++  endpwent();
gr = getgrgid(st-st_gid);
-+  endgrent();
owner = gr ? gr-gr_name : unknown;
printf(Gid of owner: %d (%s)\n, (int) st-st_gid, owner);
-   printf(Device type: %d\n, (int) st-st_rdev);
-@@ -348,12 +350,14 @@ int  flags;
+@@ -277,6 +278,7 @@ struct stat *st;
+   printf(File last access time: %s, ctime (st-st_atime));
+   printf(File last modify time: %s, ctime (st-st_mtime));
+   printf(File last status change time: %s, ctime (st-st_ctime));
++  endgrent();
+   fflush(stdout);
+   return(0);
+ }
+@@ -345,16 +347,18 @@ int  flags;
+   else if (flags  OPT_PMASK)
printf(%o\n, getperm(st-st_mode)  pmask);
else if (flags  OPT_UID) {
-   pw = getpwuid(st-st_uid);
-+  endpwent();
-   if (flags  OPT_ASCII)
+-  pw = getpwuid(st-st_uid);
+-  if (flags  OPT_ASCII)
++  if (flags  OPT_ASCII) {
++  pw = getpwuid(st-st_uid);
printf(%s\n, pw ? pw-pw_name : unknown);
-   else
+-  else
++  endpwent();
++  } else
printf(%d\n, st-st_uid);
} else if (flags  OPT_GID) {
-   gr = getgrgid(st-st_gid);
-+  endgrent();
-   if (flags  OPT_ASCII)
+-  gr = getgrgid(st-st_gid);
+-  if (flags  OPT_ASCII)
++  if (flags  OPT_ASCII) {
++  gr = getgrgid(st-st_gid);
printf(%s\n, gr ? gr-gr_name : unknown);
-   else
+-  else
++  endgrent();
++  } else
+   printf(%d\n, st-st_gid);
+   } else if (flags  OPT_SIZE)
+   printf(%ld\n, (long) st-st_size);
 --- examples/loadables/id.c
-+++ examples/loadables/id.c2011-11-11 13:19:36.515148229 +
 examples/loadables/id.c2011-11-21 12:39:06.895646231 +
 @@ -42,6 +42,7 @@
  
  #if !defined (HAVE_GETPW_DECLS)
@@ -51,31 +61,72 @@
  #endif
  extern struct group *getgrgid ();
  
-@@ -146,6 +147,7 @@ inituser (uname)
+@@ -136,18 +137,26 @@ static int
+ inituser (uname)
+  char *uname;
+ {
+-  struct passwd *pwd;
+-
+   if (uname)
+ {
++  struct passwd *pwd;
++  int r;
++
++  r = 0;
+   pwd = getpwnam (uname);
+   if (pwd == 0)
+   {
  builtin_error (%s: no such user, uname);
- return -1;
+-return -1;
++r = -1;
}
+-  ruid = euid = pwd-pw_uid;
+-  rgid = egid = pwd-pw_gid;
++  else
++  {
++ruid = euid = pwd-pw_uid;
++rgid = egid = pwd-pw_gid;
++  }
 +  endpwent ();
-   

commit duply for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package duply for openSUSE:Factory checked 
in at 2011-11-22 17:47:22

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


Package is duply, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/duply/duply.changes  2011-10-08 
11:41:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.duply.new/duply.changes 2011-11-22 
17:47:24.0 +0100
@@ -1,0 +2,9 @@
+Mon Nov 21 21:54:30 UTC 2011 - malcolmle...@opensuse.org
+
+- Update to version 1.5.5.4:
+  + Bugfix 3421268: SFTP passwords from conf ignored and always
+prompted for.
+  + Add support for separate sign passphrase (needs duplicity
+0.6.14+).
+
+---

Old:

  duply_1.5.5.3.tgz

New:

  duply_1.5.5.4.tgz



Other differences:
--
++ duply.spec ++
--- /var/tmp/diff_new_pack.hm0gZl/_old  2011-11-22 17:47:27.0 +0100
+++ /var/tmp/diff_new_pack.hm0gZl/_new  2011-11-22 17:47:27.0 +0100
@@ -19,13 +19,13 @@
 
 
 Name:   duply
-Version:1.5.5.3
+Version:1.5.5.4
 Release:1
 License:GPL-2.0
 Summary:A frontend for the mighty duplicity magic
 Url:http://duply.net/
 Group:  Productivity/Archiving/Compression
-Source0:
http://cdnetworks-us-2.dl.sourceforge.net/project/ftplicity/duply%20%28simple%20duplicity%29/1.5.x/duply_1.5.5.3.tgz
+Source0:
http://surfnet.dl.sourceforge.net/project/ftplicity/duply%20%28simple%20duplicity%29/1.5.x/duply_1.5.5.4.tgz
 Requires:   duplicity
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ duply_1.5.5.3.tgz - duply_1.5.5.4.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/duply_1.5.5.3/duply new/duply_1.5.5.4/duply
--- old/duply_1.5.5.3/duply 2011-10-01 12:45:02.0 +0200
+++ new/duply_1.5.5.4/duply 2011-10-16 15:15:07.0 +0200
@@ -38,8 +38,15 @@
 #  - import/export profile from/to .tgz function !!!
 #
 #  CHANGELOG:
+#  versioning scheme will be simplified to [major].[minor].[patch] version
+#  with the next minor version raise
+#
+#  1.5.5.4 (16.10.2010)
+#  - bugfix 3421268: SFTP passwords from conf ignored and always prompted for
+#  - add support for separate sign passphrase (needs duplicity 0.6.14+)
+#
 #  1.5.5.3 (1.10.2011)
-#  - bugfix 3416690: repaired preview threw echo1 error
+#  - bugfix 3416690: preview threw echo1 error
 #  - fix unknown cmds error usage  friends if more than 2 params were given
 #
 #  1.5.5.2 (23.9.2011)
@@ -272,7 +279,7 @@
 ME_LONG=$0
 ME=$(basename $0)
 ME_NAME=${ME%%.*}
-ME_VERSION=1.5.5.3
+ME_VERSION=1.5.5.4
 ME_WEBSITE=http://duply.net;
 
 # default config values
@@ -519,8 +526,9 @@
 #  GPG_KEY_SIGN='keyid1|disabled' - a secret key for signing
 #  GPG_PW='passphrase' - needed for signing, decryption and symmetric
 #   encryption. If you want to deliver different passphrases for e.g. 
-#   several keys or symmetric encryption plus key signing you should use
+#   several keys or symmetric encryption plus key signing you can use
 #   gpg-agent. Add '--use-agent' to the duplicity parameters below.
+#   also see A NOTE ON SYMMETRIC ENCRYPTION AND SIGNING in duplicity manpage
 # notes on en/decryption
 #  private key and passphrase will only be needed for decryption or signing.
 #  decryption happens on restore and incrementals (compare archdir contents).
@@ -528,10 +536,14 @@
 #  encryption keys. https://answers.launchpad.net/duplicity/+question/107216
 #GPG_KEYS_ENC='pubkey1,pubkey2,...'
 #GPG_KEY_SIGN='prvkey'
+# set if signing key passphrase differs from encryption (key) passphrase
+# NOTE: available since duplicity 0.6.14, translates to SIGN_PASSPHRASE
+#GPG_PW_SIGN='signpass'
 
 # gpg options passed from duplicity to gpg process (default='')
 # e.g. --trust-model pgp|classic|direct|always 
 #   or --compress-algo=bzip2 --bzip2-compress-level=9
+#   or --personal-cipher-preferences AES256,AES192,AES...
 #GPG_OPTS=''
 
 # disable preliminary tests with the following setting
@@ -851,6 +863,7 @@
 function duplicity_params_global {
   # already done? return
   var_isset 'DUPL_PARAMS_GLOBAL'  return
+  local DUPL_ARG_ENC
 
   # use key only if set in config, else leave it to symmetric encryption
   if gpg_disabled; then
@@ -858,10 +871,9 @@
   else
 local DUPL_PARAM_ENC=$(gpg_prefix_keyset ' --encrypt-key ' 'GPG_KEYS_ENC')
 gpg_signing  local DUPL_PARAM_SIGN=$(gpg_prefix_keyset ' --sign-key ' 
'GPG_KEY_SIGN')
-# interpret password setting
-if var_isset 'GPG_PW'; then
-  local DUPL_ARG_ENC=PASSPHRASE=$(qw ${GPG_PW})
-fi
+# interpret 

commit gentium for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package gentium for openSUSE:Factory checked 
in at 2011-11-22 17:47:26

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


Package is gentium, Maintainer is co...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gentium/gentium.changes  2011-09-23 
01:59:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.gentium.new/gentium.changes 2011-11-22 
17:47:30.0 +0100
@@ -1,0 +2,25 @@
+Mon Nov 21 15:27:41 UTC 2011 - cfarr...@suse.com
+
+- license update: OFL-1.1
+  Use SPDX format (http://www.spdx.org/licenses - look for SIL Open Font
+  License)
+
+---
+Mon Nov 21 09:12:02 UTC 2011 - co...@suse.com
+
+- update to Gentium Plus 1.508
+   Minor update that includes official Unicode codepoints for all 
+   PUA characters which were added to Unicode 5.2 and 6.0
+
+---
+Thu Jun 23 18:52:57 UTC 2011 - mrd...@opensuse.org
+
+- don't remove the buildroot in install, its not needed
+
+---
+Thu Jun 23 06:54:34 CEST 2011 - bachin...@gmail.com
+
+- update to 1.504
+  Minor bug fix for Cyrillic.
+
+---

Old:

  Gentium_102_W.zip

New:

  GentiumPlus-1.508.zip



Other differences:
--
++ gentium.spec ++
--- /var/tmp/diff_new_pack.ynn7ej/_old  2011-11-22 17:47:33.0 +0100
+++ /var/tmp/diff_new_pack.ynn7ej/_new  2011-11-22 17:47:33.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package gentium (Version 1.02)
+# spec file for package gentium
 #
-# 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,20 +20,19 @@
 
 Name:   gentium
 BuildRequires:  unzip
-%definefontdir /usr/share/fonts/truetype
-License:Other uncritical OpenSource License
+License:OFL-1.1
 Group:  System/X11/Fonts
-AutoReqProv:on
 PreReq: %suseconfig_fonts_prereq
 Provides:   locale(vi)
-Version:1.02
-Release:179
+Provides:   GentiumPlus
+Version:1.508
+Release:0
+Summary:A international typeface for languages using the Latin script
 Url:
http://scripts.sil.org/cms/scripts/page.php?site_id=nrsiitem_id=Gentium
-# old: http://www.sil.org/~gaultney/gentium/index.html
-Source0:Gentium_102_W.zip
+Source0:GentiumPlus-%{version}.zip
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Summary:A international typeface for languages using the Latin script
+%define ttf_fontdir /usr/share/fonts/truetype
 
 %description
 Gentium is a typeface family designed to enable the diverse ethnic
@@ -50,18 +49,14 @@
 
 %prep
 %setup -T -c %{name} -n %{name}
-unzip -j $RPM_SOURCE_DIR/Gentium_102_W.zip
-chmod 644 *.vfb *.txt *.TTF
+unzip -j %{SOURCE0}
+chmod 644 *.txt *.ttf
 
 %build
 
 %install
-[ $RPM_BUILD_ROOT != / ]  [ -d $RPM_BUILD_ROOT ]  rm -rf 
$RPM_BUILD_ROOT;
-mkdir -p $RPM_BUILD_ROOT%{fontdir}/
-install -c -m 644 *.TTF $RPM_BUILD_ROOT%{fontdir}
-
-%clean
-[ $RPM_BUILD_ROOT != / ]  [ -d $RPM_BUILD_ROOT ]  rm -rf 
$RPM_BUILD_ROOT;
+mkdir -p $RPM_BUILD_ROOT%{ttf_fontdir}/
+install -c -m 644 *.ttf $RPM_BUILD_ROOT%{ttf_fontdir}
 
 %post
 %run_suseconfig_fonts
@@ -71,7 +66,7 @@
 
 %files 
 %defattr(-, root,root)
-%doc *.txt *.vfb
-%{fontdir}
+%doc *.txt
+%{ttf_fontdir}
 
 %changelog

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



commit iceWMCP for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package iceWMCP for openSUSE:Factory checked 
in at 2011-11-22 17:47:30

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


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

Changes:

--- /work/SRC/openSUSE:Factory/iceWMCP/iceWMCP.changes  2011-09-23 
02:03:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.iceWMCP.new/iceWMCP.changes 2011-11-22 
17:47:33.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov 15 16:16:45 UTC 2011 - vu...@opensuse.org
+
+- Remove gnome-utils Recommends from addons subpackage: gnome-utils
+  is now gone, as it has been split in various packages. Since
+  apparently the other Recommends are about KDE apps, do not
+  replace it.
+
+---



Other differences:
--
++ iceWMCP.spec ++
--- /var/tmp/diff_new_pack.R06nqb/_old  2011-11-22 17:47:37.0 +0100
+++ /var/tmp/diff_new_pack.R06nqb/_new  2011-11-22 17:47:37.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package iceWMCP (Version 3.2)
+# spec file for package iceWMCP
 #
-# 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
@@ -49,7 +49,7 @@
 Summary:An IceWM Configuration Panel
 Group:  System/GUI/Other
 Requires:   %{name} = %{version} 
-Recommends: gnome-utils java-sun xscreensaver usbview kde4-kcron 
kde4-kuser gamix
+Recommends: java-sun xscreensaver usbview kde4-kcron kde4-kuser gamix
 
 %description addons
 IceWM Control Panel (IceWMCP) is full-featured, Gtk-based control panel

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



commit imlib2 for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package imlib2 for openSUSE:Factory checked 
in at 2011-11-22 17:47:34

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


Package is imlib2, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/imlib2/imlib2.changes2011-10-16 
12:50:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.imlib2.new/imlib2.changes   2011-11-22 
17:47:38.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 21 18:38:47 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Employ shlib policy
+
+---



Other differences:
--
++ imlib2.spec ++
--- /var/tmp/diff_new_pack.QYsbue/_old  2011-11-22 17:47:39.0 +0100
+++ /var/tmp/diff_new_pack.QYsbue/_new  2011-11-22 17:47:39.0 +0100
@@ -18,6 +18,7 @@
 
 
 Name:   imlib2
+%define lname  libImlib2-1
 BuildRequires:  freetype2-devel giflib-devel libpng-devel libtiff-devel 
xorg-x11-devel
 BuildRequires:  libtool
 Summary:Image handling and conversion library.
@@ -27,7 +28,7 @@
 Group:  Development/Libraries/X11
 Source: %name-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:http://sourceforge.net/projects/enlightenment/
+URL:http://sourceforge.net/projects/enlightenment/
 Recommends: imlib2-loaders
 
 %description
@@ -37,44 +38,34 @@
 RGBA space rendering and blending, dynamic binary filters, scripting,
 and more.
 
+%package -n %lname
+Summary:Image handling and conversion library.
+Group:  System/Libraries
 
-
-Authors:
-
-Rasterman ras...@rasterman.com
+%description -n %lname
+Imlib2 is an advanced replacement library for libraries like libXpm
+that provides many more features with much greater flexibility and
+speed than standard libraries, including font rasterization, rotation,
+RGBA space rendering and blending, dynamic binary filters, scripting,
+and more.
 
 %package devel
-License:BSD3c(or similar)
 Summary:Imlib 2 - development libraries
 Group:  Development/Libraries/X11
-Requires:   %{name} = %{version} glibc-devel xorg-x11-devel 
freetype2-devel zlib-devel libpng-devel
+Requires:   %lname = %version, glibc-devel xorg-x11-devel freetype2-devel 
zlib-devel libpng-devel
 
 %description devel
 These are the development headers and library for imlib2.
 
-
-
-Authors:
-
-Rasterman ras...@rasterman.com
-
 %package filters
-License:BSD3c(or similar)
 Summary:Imlib 2 - plugin filters
 Group:  Development/Libraries/X11
-Requires:   %{name} = %{version}
+Requires:   %lname = %version
 
 %description filters
 This package has the basic set of plugin filters that come with Imlib2.
 
-
-
-Authors:
-
-Rasterman ras...@rasterman.com
-
 %package loaders
-License:BSD3c(or similar)
 Summary:Imlib 2 - image loaders
 Group:  Development/Libraries/X11
 Provides:   imlib2-loader_jpeg imlib2-loader_png imlib2-loader_argb 
imlib2-loader_tiff imlib2-loader_gif imlib2-loader_zlib imlib2-loader_bz2 
imlib2-loader_pnm imlib2-loader_bmp imlib2-loader_xpm imlib2-loader_tga
@@ -83,12 +74,6 @@
 This package contains the imlib2 image loaders for: argb, bmp, gif,
 jpeg, png, pnm, tga, tiff, xpm
 
-
-
-Authors:
-
-Rasterman ras...@rasterman.com
-
 %prep
 %setup -q
 
@@ -122,18 +107,14 @@
 # find $RPM_BUILD_ROOT -name \*.la | xargs perl -pi -e s@$RPM_BUILD_DIR@.@g
 # find $RPM_BUILD_ROOT/%{_libdir}/imlib2_loaders -name \*.la | xargs rm
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%post -n %lname -p /sbin/ldconfig
 
-%post -p /sbin/ldconfig
-
-%postun -p /sbin/ldconfig
+%postun -n %lname -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root,0755)
 %doc AUTHORS README COPYING doc/index.html 
 %doc doc/imlib2.gif doc/blank.gif
-%_libdir/lib*.so.*
 %_bindir/imlib2_bumpmap
 %_bindir/imlib2_colorspace
 %_bindir/imlib2_conv
@@ -145,6 +126,10 @@
 %attr(755,root,root) %dir %{_prefix}/share/imlib2
 %{_prefix}/share/imlib2/*
 
+%files -n %lname
+%defattr(-,root,root)
+%_libdir/libImlib2.so.1*
+
 %files devel
 %defattr(-,root,root,0755)
 %_libdir/*.la

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



commit libgtkdatabox for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libgtkdatabox for openSUSE:Factory 
checked in at 2011-11-22 17:47:48

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


Package is libgtkdatabox, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libgtkdatabox/libgtkdatabox.changes  
2011-09-23 11:46:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgtkdatabox.new/libgtkdatabox.changes 
2011-11-22 17:47:50.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 20:32:17 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libgtkdatabox.spec ++
--- /var/tmp/diff_new_pack.OzMhpo/_old  2011-11-22 17:47:51.0 +0100
+++ /var/tmp/diff_new_pack.OzMhpo/_new  2011-11-22 17:47:51.0 +0100
@@ -33,6 +33,7 @@
 Patch2: libgtkdatabox-ld_fix.diff
 BuildRequires:  gtk-doc
 BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -40,8 +41,6 @@
 amounts of numerical data fast and easy.
 
 %package devel
-
-
 Summary:Development files for GtkDatabox
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -51,8 +50,6 @@
 documentation for developing applications that use libgtkdatabox.
 
 %package -n %{name}-%{libver}
-
-
 Summary:GTK+ widget for fast data display
 Group:  Development/Libraries/C and C++
 Provides:   %{name} = %{version}

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



commit libica-1_3_9 for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libica-1_3_9 for openSUSE:Factory 
checked in at 2011-11-22 17:47:52

Comparing /work/SRC/openSUSE:Factory/libica-1_3_9 (Old)
 and  /work/SRC/openSUSE:Factory/.libica-1_3_9.new (New)


Package is libica-1_3_9, Maintainer is jjo...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libica-1_3_9/libica-1_3_9.changes
2011-09-23 02:08:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libica-1_3_9.new/libica-1_3_9.changes   
2011-11-22 17:47:53.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 15:59:25 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libica-1_3_9.spec ++
--- /var/tmp/diff_new_pack.Yc0jc7/_old  2011-11-22 17:47:54.0 +0100
+++ /var/tmp/diff_new_pack.Yc0jc7/_new  2011-11-22 17:47:54.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libica-1_3_9 (Version 1.3.9)
+# spec file for package libica-1_3_9
 #
-# 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:   libica-1_3_9
-BuildRequires:  gcc-c++ openssl-devel
+BuildRequires:  gcc-c++ libtool openssl-devel
 Summary:An Interface Library for the ICA Device Driver
 Version:1.3.9
 Release:9

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



commit libidmef for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libidmef for openSUSE:Factory 
checked in at 2011-11-22 17:47:55

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


Package is libidmef, Maintainer is tho...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libidmef/libidmef.changes2011-09-23 
02:08:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.libidmef.new/libidmef.changes   2011-11-22 
17:47:58.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 20:33:03 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libidmef.spec ++
--- /var/tmp/diff_new_pack.5zu7km/_old  2011-11-22 17:48:00.0 +0100
+++ /var/tmp/diff_new_pack.5zu7km/_new  2011-11-22 17:48:00.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   libidmef
-BuildRequires:  dos2unix gcc-c++ libxml2-devel pkg-config
+BuildRequires:  dos2unix gcc-c++ libtool libxml2-devel pkg-config
 Url:http://sourceforge.net/projects/libidmef
 Summary:C Library for the Intrusion Detection Message Exchange Format 
(IDMEF)
 Version:1.0.2

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



commit libnl3 for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libnl3 for openSUSE:Factory checked 
in at 2011-11-22 17:47:59

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


Package is libnl3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libnl3/libnl3.changes2011-09-23 
02:09:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.libnl3.new/libnl3.changes   2011-11-22 
17:48:01.0 +0100
@@ -1,0 +2,12 @@
+Sat Nov 19 20:44:32 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---
+Fri Nov 11 00:33:56 UTC 2011 - jeng...@medozas.de
+
+- Update to new upstream release 3.2.3
+* Add missing libnl-cli-3.0 pkgconfig file
+* Fix memory leaks durgin rtnl_addr object freeing
+
+---

Old:

  libnl-3.2.1.tar.xz

New:

  libnl-3.2.3.tar.xz



Other differences:
--
++ libnl3.spec ++
--- /var/tmp/diff_new_pack.y86q96/_old  2011-11-22 17:48:09.0 +0100
+++ /var/tmp/diff_new_pack.y86q96/_new  2011-11-22 17:48:09.0 +0100
@@ -20,20 +20,20 @@
 Name:   libnl3
 %define lname  libnl3-200
 %define with_tools 1
-Version:3.2.1
+Version:3.2.3
 Release:0
 Summary:Convenience library for working with Netlink sockets
 License:LGPL-2.1, GPL-2.0
 Group:  Development/Libraries/C and C++
 
-URL:http://people.suug.ch/~tgr/libnl/
+Url:http://people.suug.ch/~tgr/libnl/
 #Git-Clone:git://git.kernel.org/pub/scm/libs/netlink/libnl
 #Git-Clone:git://git.infradead.org/users/tgr/libnl
 Source: libnl-%version.tar.xz
 Source2:baselibs.conf
 Patch1: libdir.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  bison fdupes flex pkgconfig python-devel xz
+BuildRequires:  bison fdupes flex libtool pkgconfig python-devel xz
 
 %description
 The libnl suite is a collection of libraries providing APIs to

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



commit liboauth for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package liboauth for openSUSE:Factory 
checked in at 2011-11-22 17:48:02

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


Package is liboauth, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/liboauth/liboauth.changes2011-09-23 
02:09:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.liboauth.new/liboauth.changes   2011-11-22 
17:48:11.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 20:44:55 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ liboauth.spec ++
--- /var/tmp/diff_new_pack.z5nYg8/_old  2011-11-22 17:48:13.0 +0100
+++ /var/tmp/diff_new_pack.z5nYg8/_new  2011-11-22 17:48:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package liboauth
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 
 Name:   liboauth
 Version:0.9.4
-Release:3
+Release:1
 License:MIT
 Summary:OAuth library
 Url:http://liboauth.sourceforge.net/
@@ -28,6 +28,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  libcurl-devel
 BuildRequires:  libopenssl-devel
+BuildRequires:  libtool
 Requires:   curl
 Requires:   openssl
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,13 +44,10 @@
 the hash/signatures.
 
 %define libname liboauth0
-
 %package -n %{libname}
-
 Group:  Development/Libraries/C and C++
 #
 Summary:Shared library from liboauth
-
 %description -n %{libname}
 liboauth is a collection of c functions implementing the http://oauth.net API.
 
@@ -61,13 +59,11 @@
 This archive contains the shared library files from liboauth.
 
 %package devel
-
 Summary:Development and Include Files for liboauth
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
 Requires:   libopenssl-devel
 Requires:   %{libname} = %{version}
-
 %description devel
 liboauth is a collection of c functions implementing the http://oauth.net API.
 

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



commit libopensync for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libopensync for openSUSE:Factory 
checked in at 2011-11-22 17:48:05

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


Package is libopensync, Maintainer is csten...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libopensync/libopensync.changes  2011-09-23 
02:09:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libopensync.new/libopensync.changes 
2011-11-22 17:48:14.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 20:45:33 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libopensync.spec ++
--- /var/tmp/diff_new_pack.tLNDOU/_old  2011-11-22 17:48:16.0 +0100
+++ /var/tmp/diff_new_pack.tLNDOU/_new  2011-11-22 17:48:16.0 +0100
@@ -20,6 +20,7 @@
 
 Name:   libopensync
 BuildRequires:  glib2-devel libxml2-devel python-devel sqlite3-devel swig
+BuildRequires:  libtool
 Url:http://www.opensync.org
 Version:0.22
 Release:164

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



commit libopensync-plugin-evolution2 for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libopensync-plugin-evolution2 for 
openSUSE:Factory checked in at 2011-11-22 17:48:08

Comparing /work/SRC/openSUSE:Factory/libopensync-plugin-evolution2 (Old)
 and  /work/SRC/openSUSE:Factory/.libopensync-plugin-evolution2.new (New)


Package is libopensync-plugin-evolution2, Maintainer is csten...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/libopensync-plugin-evolution2/libopensync-plugin-evolution2.changes
  2011-09-23 02:09:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libopensync-plugin-evolution2.new/libopensync-plugin-evolution2.changes
 2011-11-22 17:48:16.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:11:37 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libopensync-plugin-evolution2.spec ++
--- /var/tmp/diff_new_pack.dv26KL/_old  2011-11-22 17:48:17.0 +0100
+++ /var/tmp/diff_new_pack.dv26KL/_new  2011-11-22 17:48:17.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libopensync-plugin-evolution2 (Version 0.22)
+# spec file for package libopensync-plugin-evolution2
 #
-# 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,14 +19,13 @@
 
 
 Name:   libopensync-plugin-evolution2
-BuildRequires:  evolution-data-server-devel libbonobo-devel libopensync-devel 
update-desktop-files
+BuildRequires:  evolution-data-server-devel libbonobo-devel libopensync-devel 
libtool update-desktop-files
 Url:http://www.opensync.org
 Version:0.22
 Release:205
 Summary:Evolution 2 Synchronization Plug-In for OpenSync
 License:LGPL v2.1 or later
 Group:  Productivity/Other
-AutoReqProv:on
 Source: %{name}-%{version}.tar.bz2
 Patch:  libopensync-plugin-evolution2-fix_build.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit libopensync-plugin-python-module for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libopensync-plugin-python-module for 
openSUSE:Factory checked in at 2011-11-22 17:48:11

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


Package is libopensync-plugin-python-module, Maintainer is csten...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/libopensync-plugin-python-module/libopensync-plugin-python-module.changes
2011-09-23 02:09:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libopensync-plugin-python-module.new/libopensync-plugin-python-module.changes
   2011-11-22 17:48:17.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:16:14 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libopensync-plugin-python-module.spec ++
--- /var/tmp/diff_new_pack.ZEHg5i/_old  2011-11-22 17:48:20.0 +0100
+++ /var/tmp/diff_new_pack.ZEHg5i/_new  2011-11-22 17:48:20.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libopensync-plugin-python-module (Version 0.22)
+# spec file for package libopensync-plugin-python-module
 #
-# 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,14 +19,13 @@
 
 
 Name:   libopensync-plugin-python-module
-BuildRequires:  libopensync-devel
+BuildRequires:  libopensync-devel libtool
 Url:http://www.opensync.org
 Version:0.22
-Release:149
+Release:1
 Summary:OpenSync module for Python plugins
 License:LGPLv2.1+
 Group:  Productivity/Other
-AutoReqProv:on
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   python-opensync

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



commit librcd0 for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package librcd0 for openSUSE:Factory checked 
in at 2011-11-22 17:48:14

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


Package is librcd0, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/librcd0/librcd0.changes  2011-09-23 
02:09:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.librcd0.new/librcd0.changes 2011-11-22 
17:48:20.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 22 10:17:33 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ librcd0.spec ++
--- /var/tmp/diff_new_pack.AWyeez/_old  2011-11-22 17:48:22.0 +0100
+++ /var/tmp/diff_new_pack.AWyeez/_new  2011-11-22 17:48:22.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package librcd0 (Version 0.1.13)
+# spec file for package librcd0
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,6 +23,7 @@
 Release:1
 License:LGPLv2.1+
 Summary:Russian Charset Detection Library
+BuildRequires:  libtool
 Url:http://rusxmms.sourceforge.net
 Group:  System/Libraries
 Source0:librcd-%{version}.tar.bz2

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



commit librsync for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package librsync for openSUSE:Factory 
checked in at 2011-11-22 17:48:21

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


Package is librsync, Maintainer is crrodrig...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/librsync/librsync.changes2011-09-23 
02:10:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.librsync.new/librsync.changes   2011-11-22 
17:48:24.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 22 10:19:03 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ librsync.spec ++
--- /var/tmp/diff_new_pack.HtRaMZ/_old  2011-11-22 17:48:25.0 +0100
+++ /var/tmp/diff_new_pack.HtRaMZ/_new  2011-11-22 17:48:25.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package librsync (Version 0.9.7)
+# spec file for package librsync
 #
-# 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,10 +19,9 @@
 
 
 Name:   librsync
-BuildRequires:  libbz2-devel popt-devel zlib-devel
+BuildRequires:  libbz2-devel libtool popt-devel zlib-devel
 License:LGPL v2.1 or later
 Group:  Development/Libraries/C and C++
-AutoReqProv:on
 Summary:A Library for Generating Network Deltas
 Version:0.9.7
 Release:169

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



commit libreiserfs for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libreiserfs for openSUSE:Factory 
checked in at 2011-11-22 17:48:17

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


Package is libreiserfs, Maintainer is je...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libreiserfs/libreiserfs.changes  2011-09-23 
02:09:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libreiserfs.new/libreiserfs.changes 
2011-11-22 17:48:22.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 22 10:18:33 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libreiserfs.spec ++
--- /var/tmp/diff_new_pack.oiIPRg/_old  2011-11-22 17:48:23.0 +0100
+++ /var/tmp/diff_new_pack.oiIPRg/_new  2011-11-22 17:48:23.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libreiserfs (Version 0.3.0.5)
+# spec file for package libreiserfs
 #
-# 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,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   libreiserfs
@@ -25,7 +24,7 @@
 License:GPLv2+
 Group:  System/Libraries
 PreReq: %install_info_prereq
-AutoReqProv:on
+BuildRequires:  libtool
 Summary:ReiserFS File System Access Library
 Source: 
http://ftp.roedu.net/pub/mirrors/ftp.namesys.com/pub/libreiserfs/progsreiserfs-%{version}.tar.bz2
 Source1:series
@@ -35,7 +34,6 @@
 Patch3: reiserfs-dal-64bit.diff
 Patch4: libreiserfs-autoconf-fixups
 Patch5: libreiserfs-devel-fix
-Prefix: /usr
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

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



commit libsecprog for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libsecprog for openSUSE:Factory 
checked in at 2011-11-22 17:48:24

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


Package is libsecprog, Maintainer is tho...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libsecprog/libsecprog.changes2011-09-23 
02:10:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsecprog.new/libsecprog.changes   
2011-11-22 17:48:25.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 22 10:19:43 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libsecprog.spec ++
--- /var/tmp/diff_new_pack.s8q9Ow/_old  2011-11-22 17:48:26.0 +0100
+++ /var/tmp/diff_new_pack.s8q9Ow/_new  2011-11-22 17:48:26.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libsecprog (Version 0.8)
+# spec file for package libsecprog
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   libsecprog
@@ -23,12 +22,13 @@
 Summary:Secure Replacements for Problematic C Functions
 Version:0.8
 Release:142
-License:GPL v2 or later
+License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Source: %{name}-%{version}.tar.bz2
 Patch1: %{name}-%{version}_str-with-n-equal-zero.diff
 Patch2: %{name}-%{version}_strliteralcmp.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  libtool
 
 %description
 The Secure Programming Library provides several functions that should

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



commit libsndfile for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libsndfile for openSUSE:Factory 
checked in at 2011-11-22 17:48:27

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


Package is libsndfile, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libsndfile/libsndfile-progs.changes  
2011-09-23 02:10:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsndfile.new/libsndfile-progs.changes 
2011-11-22 17:48:32.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 17:30:11 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+
+---
--- /work/SRC/openSUSE:Factory/libsndfile/libsndfile.changes2011-09-23 
02:10:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsndfile.new/libsndfile.changes   
2011-11-22 17:48:32.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 17:30:02 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+
+---



Other differences:
--
++ libsndfile-progs.spec ++
--- /var/tmp/diff_new_pack.Bv8tX1/_old  2011-11-22 17:48:36.0 +0100
+++ /var/tmp/diff_new_pack.Bv8tX1/_new  2011-11-22 17:48:36.0 +0100
@@ -26,7 +26,7 @@
 Group:  System/Libraries
 Source: libsndfile-%{version}.tar.gz
 Patch:  libsndfile-example-fix.diff
-Url:http://www.mega-nerd.com/libsndfile/
+URL:http://www.mega-nerd.com/libsndfile/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -60,9 +60,6 @@
 rm -rf $RPM_BUILD_ROOT%{_includedir}
 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libsndfile1-dev
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %{_bindir}/*

++ libsndfile.spec ++
--- /var/tmp/diff_new_pack.Bv8tX1/_old  2011-11-22 17:48:36.0 +0100
+++ /var/tmp/diff_new_pack.Bv8tX1/_new  2011-11-22 17:48:36.0 +0100
@@ -18,10 +18,11 @@
 
 
 Name:   libsndfile
+%define lname  libsndfile1
 Version:1.0.25
 Release:4
 License:LGPLv2.1+
-Summary:A Library to Handle Various Audio File Formats
+Summary:Development/Libraries/C and C++
 Group:  System/Libraries
 BuildRequires:  alsa-devel
 BuildRequires:  flac-devel
@@ -36,7 +37,7 @@
 %ifarch ppc64
 Obsoletes:  libsndfile-64bit
 %endif
-Url:http://www.mega-nerd.com/libsndfile/
+URL:http://www.mega-nerd.com/libsndfile/
 #
 Source: libsndfile-%{version}.tar.gz
 Source2:baselibs.conf
@@ -52,8 +53,17 @@
 currently read and write 8, 16, 24, and 32-bit PCM files as well as
 32-bit floating point WAV files and a number of compressed formats.
 
+%package -n %lname
+Summary:A Library to Handle Various Audio File Formats
+Group:  System/Libraries
+
+%description -n %lname
+Libsndfile is a C library for reading and writing sound files, such
+as AIFF, AU, and WAV files, through one standard interface. It can
+currently read and write 8, 16, 24, and 32-bit PCM files as well as
+32-bit floating point WAV files and a number of compressed formats.
+
 %package devel
-License:LGPLv2.1+
 Summary:Development package for the libsndfile library
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -99,21 +109,18 @@
 make -C examples distclean
 rm -rf %{buildroot}%{_datadir}/doc/libsndfile1-dev
 
-%post -p /sbin/ldconfig
-
-%postun -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%clean
-rm -rf %{buildroot}
+%postun -n %lname -p /sbin/ldconfig
 
 %check
 pushd src
 make check
 popd
 
-%files
+%files -n %lname
 %defattr(-, root, root)
-%{_libdir}/libsndfile.so.*
+%{_libdir}/libsndfile.so.1*
 
 %files devel
 %defattr(-, root, root)

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.Bv8tX1/_old  2011-11-22 17:48:36.0 +0100
+++ /var/tmp/diff_new_pack.Bv8tX1/_new  2011-11-22 17:48:36.0 +0100
@@ -1 +1 @@
-libsndfile
+libsndfile1

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



commit libva for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package libva for openSUSE:Factory checked 
in at 2011-11-22 17:48:31

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


Package is libva, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libva/libva.changes  2011-09-23 
02:11:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.libva.new/libva.changes 2011-11-22 
17:48:38.0 +0100
@@ -1,0 +2,19 @@
+Sat Nov 19 16:03:00 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---
+Wed Nov  9 16:20:42 UTC 2011 - kkhere@gmail.com
+
+- new version 1.0.15
+  * API: make {Top,Bottom}FieldOrderCnt signed (Yi Wang)
+  * Add auto-generated Debian packaging
+  * Refine VA trace  VA fool utilities
+  * Move i965 driver to a specific repository (vaapi/intel-driver)
+  * Fix DSO link issue in tests
+  * Fix fglrx driver name detection
+  * Fix API vs. DSO vs. package versioning
+- intel-driver has been split from the library, use separate tarball
+- split the drivers into a separate package
+
+---

Old:

  libva-1.0.14.tar.bz2

New:

  intel-driver-1.0.15.tar.bz2
  libva-1.0.15.tar.bz2



Other differences:
--
++ libva.spec ++
--- /var/tmp/diff_new_pack.9MCzDL/_old  2011-11-22 17:48:41.0 +0100
+++ /var/tmp/diff_new_pack.9MCzDL/_new  2011-11-22 17:48:41.0 +0100
@@ -19,15 +19,16 @@
 
 
 Name:   libva
-Version:1.0.14
+Version:1.0.15
 Release:1
 License:MIT
 Summary:Video Acceleration (VA) API for Linux
 Url:http://freedesktop.org/wiki/Software/vaapi
 Group:  System/Libraries
-Source: 
http://cgit.freedesktop.org/libva/snapshot/%{name}-%{version}.tar.bz2
+Source0:
http://cgit.freedesktop.org/libva/snapshot/%{name}-%{version}.tar.bz2
+Source1:
http://cgit.freedesktop.org/vaapi/intel-driver/snapshot/intel-driver-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  libudev-devel pkg-config
+BuildRequires:  libtool libudev-devel pkg-config
 BuildRequires:  xorg-x11-devel xorg-x11-libXext-devel xorg-x11-libXfixes-devel
 BuildRequires:  Mesa-devel libdrm-devel
 BuildRequires:  gcc-c++ libstdc++-devel
@@ -39,7 +40,6 @@
 
 %package -n vaapi-tools
 
-
 Summary:Video Acceleration (VA) API for Linux
 Group:  System/Libraries
 
@@ -49,8 +49,17 @@
 
 This is a set of tools around vaapi livrary.
 
-%package -n libva1
+%package -n vaapi-drivers
+Summary:Video Acceleration (VA) API for Linux
+Group:  System/Libraries
 
+%description -n vaapi-drivers
+The libva library implements the Video Acceleration (VA) API for Linux.
+The library loads a hardware dependendent driver.
+
+This contains the dummy and hardware drivers.
+
+%package -n libva1
 
 Summary:Video Acceleration (VA) API for Linux
 Group:  System/Libraries
@@ -61,7 +70,6 @@
 
 %package devel
 
-
 Summary:Video Acceleration (VA) API for Linux -- development files
 Group:  Development/Languages/C and C++
 Requires:   libva1 = %{version}
@@ -73,21 +81,35 @@
 This package provides the development environment for libva.
 
 %prep
-%setup -q
+%setup -q -n vaapi -c -a 0 -a 1
 
 %build
+pushd libva-%{version}
 autoreconf -v --install
 %configure --enable-dummy-driver \
 %if 0%{?suse_version} = 01120
--enable-dummy-backend \
 %endif
-   --enable-i965-driver \
--enable-glx \
+   --enable-egl \
--with-drivers-path=%{_libdir}/dri
 make
+popd
+pushd intel-driver-%{version}
+export 
PKG_CONFIG_PATH=%{_builddir}/vaapi/libva-%{version}/pkgconfig:$PKG_CONFIG_PATH
+autoreconf -v --install
+%configure 
+popd
 
 %install
+pushd libva-%{version}
 %makeinstall
+popd
+find %{buildroot} -name '*.la' -delete -print
+pushd intel-driver-%{version}
+make CPPFLAGS=-I%{buildroot}%{_includedir} LDFLAGS=-L%{buildroot}%{_libdir}
+%makeinstall
+popd
 find %{buildroot} -name '*.la' -delete -print
 
 %clean
@@ -101,28 +123,25 @@
 %defattr(-,root,root,-)
 %{_bindir}/vainfo
 %{_bindir}/avcenc
-%dir %{_libdir}/dri
-%{_libdir}/dri/dummy_drv_video.so
-%{_libdir}/dri/i965_drv_video.so
 %{_bindir}/h264encode
 %{_bindir}/mpeg2vldemo
 %{_bindir}/putsurface
 
+%files -n vaapi-drivers
+%defattr(-,root,root,-)
+%dir %{_libdir}/dri
+%{_libdir}/dri/dummy_drv_video.so
+%{_libdir}/dri/i965_drv_video.so
+
 %files -n libva1
 %defattr(-, root, root)
-%{_libdir}/libva.so.1
-%{_libdir}/libva.so.%{version}
-%{_libdir}/libva-tpi.so.1
-%{_libdir}/libva-tpi.so.%{version}

commit lockdev for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package lockdev for openSUSE:Factory checked 
in at 2011-11-22 17:48:35

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


Package is lockdev, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lockdev/lockdev.changes  2011-09-26 
10:09:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.lockdev.new/lockdev.changes 2011-11-22 
17:48:42.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:26:15 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ lockdev.spec ++
--- /var/tmp/diff_new_pack.tVzAhW/_old  2011-11-22 17:48:44.0 +0100
+++ /var/tmp/diff_new_pack.tVzAhW/_new  2011-11-22 17:48:44.0 +0100
@@ -35,7 +35,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #
 BuildRequires:  perl
-BuildRequires:  pkg-config
+BuildRequires:  libtool pkg-config
 BuildRequires:  perl(ExtUtils::MakeMaker)
 
 %description

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



commit Mesa for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2011-11-22 17:48:42

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


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

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2011-10-06 
14:57:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2011-11-22 
17:48:49.0 +0100
@@ -1,0 +2,6 @@
+Thu Nov 17 20:34:36 UTC 2011 - v...@ovi.com
+
+- Update to Mesa 7.11.1 
+  * U_glx-ignore-BadRequest-errors-from-DRI2Connect.diff included
+
+---

Old:

  MesaLib-7.11.tar.bz2
  U_glx-ignore-BadRequest-errors-from-DRI2Connect.diff

New:

  MesaLib-7.11.1.tar.bz2



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.bUujNG/_old  2011-11-22 17:49:02.0 +0100
+++ /var/tmp/diff_new_pack.bUujNG/_new  2011-11-22 17:49:02.0 +0100
@@ -17,9 +17,9 @@
 
 # norootforbuild
 
-%define _version 7.11
+%define _version 7.11.1
 
-Version:7.11
+Version:7.11.1
 Release:5
 
 Name:   Mesa
@@ -52,7 +52,6 @@
 Patch11:u_Fix-crash-in-swrast-when-setting-a-texture-for-a-pix.patch
 # already upstream
 Patch13:U_Mesa-7.11-llvm3.patch
-Patch14:U_glx-ignore-BadRequest-errors-from-DRI2Connect.diff
 Patch15:Mesa-llvm-3.0.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -123,7 +122,6 @@
 %patch9 -p1
 %patch11 -p1
 %patch13 -p0
-%patch14 -p1
 %patch15 -p1
 
 %build

++ MesaLib-7.11.tar.bz2 - MesaLib-7.11.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/Mesa/MesaLib-7.11.tar.bz2 
/work/SRC/openSUSE:Factory/.Mesa.new/MesaLib-7.11.1.tar.bz2 differ: char 11, 
line 1

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



commit netatalk for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package netatalk for openSUSE:Factory 
checked in at 2011-11-22 17:48:49

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


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

Changes:

--- /work/SRC/openSUSE:Factory/netatalk/netatalk.changes2011-09-23 
02:14:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.netatalk.new/netatalk.changes   2011-11-22 
17:49:11.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:26:30 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ netatalk.spec ++
--- /var/tmp/diff_new_pack.dA7iPP/_old  2011-11-22 17:49:12.0 +0100
+++ /var/tmp/diff_new_pack.dA7iPP/_new  2011-11-22 17:49:12.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   netatalk
 BuildRequires:  cups cups-devel db-devel openslp-devel openssl-devel pam-devel 
tcpd-devel zlib-devel
-BuildRequires:  fdupes libavahi-devel libgcrypt-devel pkg-config
+BuildRequires:  fdupes libavahi-devel libgcrypt-devel libtool pkg-config
 Url:http://netatalk.sourceforge.net/
 #
 # --enable-fhs puts config files in /etc/netatalk

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



commit MozillaThunderbird for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:Factory checked in at 2011-11-22 17:48:45

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


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

Changes:

--- /work/SRC/openSUSE:Factory/MozillaThunderbird/MozillaThunderbird.changes
2011-11-10 15:55:10.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.MozillaThunderbird.new/MozillaThunderbird.changes   
2011-11-22 17:49:03.0 +0100
@@ -1,0 +2,12 @@
+Mon Nov 21 21:54:27 UTC 2011 - w...@rosenauer.org
+
+- do not disable system addons
+- fixed enigmail localizations
+
+---
+Mon Nov 21 11:35:56 UTC 2011 - dval...@suse.com
+
+- fix powerpc build
+- disable crashreporter on ppc and ppc64
+
+---

New:

  mozilla-ipc.patch
  mozilla-ppc64.patch



Other differences:
--
++ MozillaThunderbird.spec ++
--- /var/tmp/diff_new_pack.5V6iFm/_old  2011-11-22 17:49:11.0 +0100
+++ /var/tmp/diff_new_pack.5V6iFm/_new  2011-11-22 17:49:11.0 +0100
@@ -54,11 +54,17 @@
 Patch10:tb-ssldap.patch
 Patch11:tb-develdirs.patch
 Patch12:thunderbird-shared-nss-db.patch
+Patch20:mozilla-ppc64.patch
+Patch21:mozilla-ipc.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: coreutils fileutils textutils /bin/sh
 ### build options
 %define build_enigmail 1
+%ifnarch ppc ppc64
 %define crashreporter  1
+%else
+%define crashreporter  0
+%endif
 %define has_system_cairo 0
 %define localize 1
 ### build options end
@@ -172,6 +178,8 @@
 %patch10 -p1
 %patch11 -p1
 %patch12 -p1
+%patch20 -p1
+%patch21
 
 %build
 # no need to add build time to binaries
@@ -244,7 +252,7 @@
  ./makemake -r -o '../../../../obj'
 popd
 pushd $RPM_BUILD_DIR/obj/mailnews/extensions/enigmail
-make MOZ_CHROME_FILE_FORMAT=jar
+make
 make xpi
 popd
 %endif
@@ -365,7 +373,12 @@
 #
 # remove spurious executable bits
 find $RPM_BUILD_ROOT/usr/include/%{progname} -type f -exec chmod a-x {} \;
-find $RPM_BUILD_ROOT%{_libdir}/%{progname} -name *.js | xargs chmod a-x
+find $RPM_BUILD_ROOT%{_libdir}/%{progname}  \
+-name *.js -o \
+-name *.jsm -o \
+-name *.rdf -o \
+-name *.properties -o \
+-name *.dtd | xargs chmod a-x
 #
 for size in 16 22 24 32 48 256; do
   mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${size}x${size}/apps/

++ mozilla-ipc.patch ++
--- mozilla/ipc/chromium/src/build/build_config.h.orig  2011-11-21 
12:18:33.736681000 +0100
+++ mozilla/ipc/chromium/src/build/build_config.h   2011-11-21 
12:19:47.289191000 +0100
@@ -57,6 +57,9 @@
 #define ARCH_CPU_ARMEL 1
 #define ARCH_CPU_32_BITS 1
 #define WCHAR_T_IS_UNSIGNED 1
+#elif defined(__powerpc64__)
+#define ARCH_CPU_PPC64 1
+#define ARCH_CPU_64_BITS 1
 #elif defined(__ppc__) || defined(__powerpc__)
 #define ARCH_CPU_PPC 1
 #define ARCH_CPU_32_BITS 1
++ mozilla-ppc64.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 20 Aug 2011 14:56:49 +0200
Subject: Bug 670719 - Only add -DENABLE_JIT=1 to CXXFLAGS if any of
 trace/method/yarr jit is enabled.

---
 mozilla/js/src/Makefile.in |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/mozilla/js/src/Makefile.in b/mozilla/js/src/Makefile.in
index 79d4ae7..23320d1 100644
--- a/mozilla/js/src/Makefile.in
+++ b/mozilla/js/src/Makefile.in
@@ -439,6 +439,9 @@ else
 ###
 # BEGIN include sources for the Nitro assembler
 #
+
+ENABLE_YARR_JIT = 1
+
 VPATH +=   $(srcdir)/assembler \
$(srcdir)/assembler/wtf \
$(srcdir)/assembler/jit \
@@ -1099,7 +1102,11 @@ endif
 # Needed to configure it correctly.  Unfortunately these
 # flags wind up being applied to all code in js/src, not just
 # the code in js/src/assembler.
-CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1 -DENABLE_JIT=1
+CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1
+
+ifneq (,$(ENABLE_YARR_JIT)$(ENABLE_TRACEJIT)$(ENABLE_METHODJIT))
+CXXFLAGS +=  -DENABLE_JIT=1
+endif
 
 INCLUDES +=-I$(srcdir)/assembler -I$(srcdir)/yarr
 
-- 
++ suse-default-prefs.js ++
--- /var/tmp/diff_new_pack.5V6iFm/_old  2011-11-22 17:49:11.0 +0100
+++ /var/tmp/diff_new_pack.5V6iFm/_new  2011-11-22 17:49:11.0 +0100
@@ -10,3 +10,8 @@
 pref(print.print_edge_right, 16); // 1/100 of an inch
 pref(print.print_edge_bottom, 14); // 1/100 of an inch
 pref(intl.locale.matchOS, true);
+
+// do not disable system-global or app-global extensions

commit obexftp for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package obexftp for openSUSE:Factory checked 
in at 2011-11-22 17:48:58

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


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

Changes:

--- /work/SRC/openSUSE:Factory/obexftp/obexftp.changes  2011-09-23 
02:14:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.obexftp.new/obexftp.changes 2011-11-22 
17:49:15.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:47:21 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ obexftp.spec ++
--- /var/tmp/diff_new_pack.PnH4u0/_old  2011-11-22 17:49:16.0 +0100
+++ /var/tmp/diff_new_pack.PnH4u0/_new  2011-11-22 17:49:16.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   obexftp
-BuildRequires:  bluez-devel openobex-devel pkgconfig python-devel
+BuildRequires:  bluez-devel libtool openobex-devel pkgconfig python-devel
 License:GPLv2+
 Group:  Productivity/Networking/Other
 AutoReqProv:on

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



commit opencdk for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package opencdk for openSUSE:Factory checked 
in at 2011-11-22 17:49:02

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


Package is opencdk, Maintainer is co...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/opencdk/opencdk.changes  2011-09-23 
02:15:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.opencdk.new/opencdk.changes 2011-11-22 
17:49:16.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:26:44 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ opencdk.spec ++
--- /var/tmp/diff_new_pack.E3Dgdi/_old  2011-11-22 17:49:18.0 +0100
+++ /var/tmp/diff_new_pack.E3Dgdi/_new  2011-11-22 17:49:18.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package opencdk (Version 0.6.6)
+# spec file for package opencdk
 #
-# 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
@@ -18,7 +18,7 @@
 
 
 Name:   opencdk
-BuildRequires:  libgcrypt-devel pkg-config zlib-devel
+BuildRequires:  libgcrypt-devel libtool pkg-config zlib-devel
 Url:http://www.gnutls.org/
 Version:0.6.6
 Release:5

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



commit openmotif for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package openmotif for openSUSE:Factory 
checked in at 2011-11-22 17:49:05

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


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

Changes:

--- /work/SRC/openSUSE:Factory/openmotif/openmotif.changes  2011-11-16 
17:20:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.openmotif.new/openmotif.changes 2011-11-22 
17:49:18.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 16 12:38:17 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+
+---



Other differences:
--
++ openmotif.spec ++
--- /var/tmp/diff_new_pack.OIEKzd/_old  2011-11-22 17:49:21.0 +0100
+++ /var/tmp/diff_new_pack.OIEKzd/_new  2011-11-22 17:49:21.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   openmotif
@@ -30,12 +29,11 @@
 Release:2
 License:MOTIF LICENSE (http://www.opengroup.org/openmotif/license)
 Group:  System/Libraries
-AutoReqProv:on
 PreReq: sed grep
 Conflicts:  lestif2
 Summary:Open Motif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:http://www.motifzone.net/
+URL:http://www.motifzone.net/
 Source: openmotif-%{version}.tar.lzma
 Source1:mwm.desktop
 Source2:baselibs.conf
@@ -56,13 +54,9 @@
 known Motif user interface toolkit for Open Source operating systems. 
 This package was built with the Metro Link sources.
 
-
-
 %package libs
-License:MOTIF LICENSE (http://www.opengroup.org/openmotif/license)
 Summary:Open Motif Runtime Libraries
 Group:  System/Libraries
-AutoReqProv:on
 # bug437293
 %ifarch ppc64
 Obsoletes:  openmotif-libs-64bit
@@ -76,13 +70,9 @@
 known user interface toolkit Motif for Open Source operating systems. 
 This package was built with the sources from Metro Link.
 
-
-
 %package devel
-License:http://www.opengroup.org/openmotif/license/
 Summary:Include Files and Libraries mandatory for Development.
 Group:  Development/Libraries/X11
-AutoReqProv:on
 # bug437293
 %ifarch ppc64
 Obsoletes:  openmotif-devel-64bit
@@ -98,8 +88,6 @@
 Language) compiler and the manual pages for the Motif widgets and
 library functions.
 
-
-
 %prep
 %setup -q
 %patch
@@ -172,9 +160,6 @@
 [ ! -f $SITEDEF.orig ] || mv -f $SITEDEF.orig $SITEDEF
 fi
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %dir %{_prefix}/include/X11/bitmaps


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



commit openobex for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package openobex for openSUSE:Factory 
checked in at 2011-11-22 17:49:08

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


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

Changes:

--- /work/SRC/openSUSE:Factory/openobex/openobex.changes2011-09-23 
12:20:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.openobex.new/openobex.changes   2011-11-22 
17:49:21.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:26:59 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ openobex.spec ++
--- /var/tmp/diff_new_pack.LgU6Du/_old  2011-11-22 17:49:23.0 +0100
+++ /var/tmp/diff_new_pack.LgU6Du/_new  2011-11-22 17:49:23.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package openobex (Version 1.5)
+# spec file for package openobex
 #
-# 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:   openobex
-BuildRequires:  bluez-devel libusb-devel pkg-config
+BuildRequires:  bluez-devel libtool libusb-devel pkg-config
 License:GPLv2+ ; LGPLv2.1+
 Group:  Development/Libraries/Other
 Version:1.5

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



commit parted for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package parted for openSUSE:Factory checked 
in at 2011-11-22 17:49:11

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


Package is parted, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parted/parted.changes2011-10-27 
13:57:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.parted.new/parted.changes   2011-11-22 
17:49:23.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:27:06 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ parted.spec ++
--- /var/tmp/diff_new_pack.FF5YEv/_old  2011-11-22 17:49:26.0 +0100
+++ /var/tmp/diff_new_pack.FF5YEv/_new  2011-11-22 17:49:26.0 +0100
@@ -52,7 +52,7 @@
 BuildRequires:  libselinux-devel
 BuildRequires:  libsepol-devel
 BuildRequires:  libuuid-devel
-BuildRequires:  pkg-config
+BuildRequires:  libtool pkg-config
 BuildRequires:  readline-devel
 PreReq: %install_info_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit pcsc-lite for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package pcsc-lite for openSUSE:Factory 
checked in at 2011-11-22 17:49:14

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


Package is pcsc-lite, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pcsc-lite/pcsc-lite.changes  2011-09-23 
12:21:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.pcsc-lite.new/pcsc-lite.changes 2011-11-22 
17:49:27.0 +0100
@@ -1,0 +2,19 @@
+Sat Nov 19 18:25:31 UTC 2011 - w...@rosenauer.org
+
+- Updated to version 1.8.0:
+  * PC/SC spy tool
+  * Support systemd socket activation (the auto start of pcscd
+from the library has been removed. Use systemd instead)
+  * SCardGetStatusChange(): check all the readers are already known
+and return SCARD_E_UNKNOWN_READER if a reader name is not
+present.
+  * SCardEstablishContext(): Invalidate all the handles in the son
+after a fork
+  * Add define of FEATURE_EXECUTE_PACE from PCSC v2 Part 10
+Amendment 1 2011-06-03
+  * Fix some memory leaks repoted by Coverity
+  * Some other minor improvements and bug corrections
+- enabled usage of systemd init for 12.1 and newer
+- add libtool as buildrequire to avoid implicit dependency
+
+---

Old:

  disable-power-off.diff
  pcsc-lite-1.7.4.tar.bz2

New:

  pcsc-lite-1.8.0.tar.bz2



Other differences:
--
++ pcsc-lite.spec ++
--- /var/tmp/diff_new_pack.CZuMzG/_old  2011-11-22 17:49:28.0 +0100
+++ /var/tmp/diff_new_pack.CZuMzG/_new  2011-11-22 17:49:28.0 +0100
@@ -21,7 +21,7 @@
 Name:   pcsc-lite
 # FIXME: Maybe we should use /usr/lib/pcsc/drivers as others do:
 %define ifddir %{_libdir}/readers
-BuildRequires:  pkg-config readline-devel
+BuildRequires:  libtool pkg-config readline-devel
 %if %suse_version = 1120
 #shouldn't be found automagically ?
 BuildRequires:  libudev-devel
@@ -29,13 +29,13 @@
 %if %suse_version == 1110
 BuildRequires:  libusb-1_0-devel
 %endif
-%if %suse_version  1110
-BuildRequires:  hal-devel
+%if %suse_version  1140
+BuildRequires:  systemd
+%{?systemd_requires}
 %endif
-Version:1.7.4
-Release:2
+Version:1.8.0
+Release:1
 Requires(pre):  pwdutils
-Requires(post): %insserv_prereq %fillup_prereq
 Group:  Productivity/Security
 License:BSD3c(or similar)
 Url:http://pcsclite.alioth.debian.org/
@@ -47,8 +47,7 @@
 Source4:baselibs.conf
 Source5:pcsc-lite-init
 Source6:pcsc-lite-reader-conf
-#Is not really used just keep in case off
-Patch0: disable-power-off.diff
+Requires(post): %insserv_prereq %fillup_prereq
 %if %suse_version  1130
 PreReq: sysvinit(syslog)
 %endif
@@ -98,12 +97,22 @@
 This functionality is exercised in the driver.
 
 
+%package -n libpcscspy0
+License:BSD3c(or similar)
+Group:  System/Libraries
+Summary:PCSC Smart Card Library
+
+%description -n libpcscspy0
+Supporting library for the PC/SC spy tool.
+
+
 %package devel
 License:BSD3c(or similar)
 Group:  Development/Libraries/C and C++
 Summary:Development package for the MUSCLE project SmartCards library
 Requires:   %{name} = %{version}-%{release}
 Requires:   libpcsclite1 = %{version}-%{release}
+Requires:   libpcscspy0 = %{version}-%{release}
 
 %description devel
 This package contains the development files for pcsc-lite. It allows to
@@ -112,8 +121,6 @@
 
 %prep
 %setup -q
-# do not disable power off but keep it if it causes issues
-#%patch0
 cp -a %{S:1} %{S:2} %{S:5} %{S:6} .
 
 %build
@@ -121,14 +128,15 @@
 ACLOCAL=aclocal -I m4 autoreconf -f -i
 %endif
 %configure\
-   --docdir=%{_docdir}/%{name}\
-   --enable-usbdropdir=%{ifddir}\
-%if %suse_version = 1110
+   --docdir=%{_docdir}/%{name} \
+   --enable-usbdropdir=%{ifddir} \
--disable-libhal \
-%endif
 %if %suse_version == 1110
--disable-libudev \
 %endif
+%if %suse_version  1140
+   --with-systemdsystemunitdir=%_unitdir \
+%endif
--disable-static
 make %{?jobs:-j%jobs}
 
@@ -152,22 +160,41 @@
 %pre
 getent group %{GROUP} /dev/null || groupadd -r -o %{GROUP}
 getent passwd %{USER} /dev/null || useradd -r -o -g %{GROUP} -s /bin/nologin 
-c Smart Card Reader -d /var/run/pcscd %{USER}
+%if %suse_version  1140
+%service_add_pre pcscd.service pcscd.socket
+%endif
 exit 0
 
 %post
+%if %suse_version  1140
+%service_add_post pcscd.service pcscd.socket
+%else
 %fillup_and_insserv -y -n pcscd pcscd
 %restart_on_update pcscd
+%endif
 
 %preun
+%if %suse_version  1140
+%service_del_preun pcscd.service pcscd.socket
+%else
 %stop_on_removal pcscd

commit perl-Class-C3-Adopt-NEXT for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-C3-Adopt-NEXT for 
openSUSE:Factory checked in at 2011-11-22 17:49:18

Comparing /work/SRC/openSUSE:Factory/perl-Class-C3-Adopt-NEXT (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Class-C3-Adopt-NEXT.new (New)


Package is perl-Class-C3-Adopt-NEXT, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Class-C3-Adopt-NEXT/perl-Class-C3-Adopt-NEXT.changes
2011-09-23 12:36:18.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Class-C3-Adopt-NEXT.new/perl-Class-C3-Adopt-NEXT.changes
   2011-11-22 17:49:30.0 +0100
@@ -1,0 +2,7 @@
+Mon Nov 21 08:25:58 UTC 2011 - co...@suse.com
+
+- update to 0.13
+  * Stop shipping some author tests, so users stupid enough to run them won't
+spam me with fail reports.
+
+---

Old:

  Class-C3-Adopt-NEXT-0.12.tar.gz

New:

  Class-C3-Adopt-NEXT-0.13.tar.gz



Other differences:
--
++ perl-Class-C3-Adopt-NEXT.spec ++
--- /var/tmp/diff_new_pack.BC7tga/_old  2011-11-22 17:49:33.0 +0100
+++ /var/tmp/diff_new_pack.BC7tga/_new  2011-11-22 17:49:33.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   perl-Class-C3-Adopt-NEXT
-Version:0.12
+Version:0.13
 Release:1
 Summary:Make NEXT suck less
 License:GPL+ or Artistic

++ Class-C3-Adopt-NEXT-0.12.tar.gz - Class-C3-Adopt-NEXT-0.13.tar.gz ++
 3035 lines of diff (skipped)

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



commit pilot-link for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package pilot-link for openSUSE:Factory 
checked in at 2011-11-22 17:49:22

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


Package is pilot-link, Maintainer is mhruse...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pilot-link/pilot-link.changes2011-09-23 
12:41:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.pilot-link.new/pilot-link.changes   
2011-11-22 17:49:33.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:28:10 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ pilot-link.spec ++
--- /var/tmp/diff_new_pack.UYz5Fa/_old  2011-11-22 17:49:35.0 +0100
+++ /var/tmp/diff_new_pack.UYz5Fa/_new  2011-11-22 17:49:35.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   pilot-link
-BuildRequires:  bluez-devel gcc-c++ libpng-devel libusb-devel pkg-config 
popt-devel python-devel readline-devel
+BuildRequires:  bluez-devel gcc-c++ libpng-devel libtool libusb-devel 
pkg-config popt-devel python-devel readline-devel
 Url:http://www.pilot-link.org/
 License:GPLv2+ ; LGPLv2.1+
 Group:  Hardware/Palm


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



commit python-sip for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package python-sip for openSUSE:Factory 
checked in at 2011-11-22 17:49:25

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


Package is python-sip, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/python-sip/python-sip.changes2011-09-23 
12:43:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-sip.new/python-sip.changes   
2011-11-22 17:49:35.0 +0100
@@ -1,0 +2,21 @@
+Thu Oct 27 16:55:43 UTC 2011 - sascha.ma...@open-slx.de
+
+- Changelog from the Creators
+  - SIP v4.13 has been released. This is a minor feature release.
+o added the %DefaultDocstringFormat directive
+o added the format argument to the %Docstring directive
+o %ConvertToSubClassCode can now cause a restart of the conversion 
+  process using a different requested type
+o '*' and '' are now supported as unary operators in expressions 
+  used in the values of default arguments
+o the /Transfer/ annotation can now be used with the /Array/ 
+  annotation to prevent the freeing of the temporary array of 
+  pointers. 
+
+---
+Wed Oct 26 20:18:57 UTC 2011 - sascha.ma...@open-slx.de
+
+- Updated to 4.13
+  - last stable release 
+
+---
--- /work/SRC/openSUSE:Factory/python-sip/python3-sip.changes   2011-09-23 
12:43:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-sip.new/python3-sip.changes  
2011-11-22 17:49:35.0 +0100
@@ -1,0 +2,12 @@
+Mon Nov 21 10:33:26 UTC 2011 - cgiboude...@gmx.com
+
+- Define python3_sitearch (fixes the 12.1 build)
+- Spec cleanup
+
+---
+Wed Oct 26 20:19:38 UTC 2011 - sascha.ma...@open-slx.de
+
+- Update to 4.13
+  - last stable release 
+
+---

Old:

  sip-4.12.4.tar.bz2

New:

  sip-4.13.tar.bz2



Other differences:
--
++ python-sip.spec ++
--- /var/tmp/diff_new_pack.s65Bed/_old  2011-11-22 17:49:36.0 +0100
+++ /var/tmp/diff_new_pack.s65Bed/_new  2011-11-22 17:49:36.0 +0100
@@ -23,8 +23,8 @@
 License:GPL-2.0 or GPL-3.0 or SIP
 Group:  Development/Libraries/Python
 Summary:SIP tool to use python sip bindings
-Version:4.12.4
-Release:3
+Version:4.13
+Release:0
 %define rversion %version
 Url:http://www.riverbankcomputing.com/software/sip/intro
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ python3-sip.spec ++
--- /var/tmp/diff_new_pack.s65Bed/_old  2011-11-22 17:49:36.0 +0100
+++ /var/tmp/diff_new_pack.s65Bed/_new  2011-11-22 17:49:36.0 +0100
@@ -15,32 +15,33 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   python3-sip
+Version:4.13
+Release:2
 License:GPL-2.0 or GPL-3.0 or SIP
-Group:  Development/Libraries/Python
 Summary:SIP tool to use python sip bindings
-Version:4.12.4
-Release:2
-%define rversion %version
+%define rversion %{version}
 Url:http://www.riverbankcomputing.com/software/sip/intro
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Group:  Development/Libraries/Python
 Source0:sip-%{rversion}.tar.bz2
 Patch0: disable-rpaths.diff
 Patch1: build-compare.diff
 BuildRequires:  c++_compiler
-BuildRequires:  python3 python3-devel
+BuildRequires:  python3
+BuildRequires:  python3-devel
+Requires(pre):  python3
 Requires:   python3
-PreReq: python3
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %if 0%{?suse_version}  1140
+Requires(pre):  python3-base
 Requires:   python3-base
-PreReq: python3-base
 %endif
 
-%global py3_incdir  %(python3 -c import distutils.sysconfig; 
print(distutils.sysconfig.get_python_inc()) 2/dev/null || echo 
PYTHON-NOT-FOUND)
+%global py3_incdir  %(python3 -c import distutils.sysconfig; 
print(distutils.sysconfig.get_python_inc(True)) 2/dev/null || echo 
PYTHON-NOT-FOUND)
+%global python3_sitearch %(python3 -c import distutils.sysconfig; 
print(distutils.sysconfig.get_python_lib(True)) 2/dev/null || echo 
PYTHON-NOT-FOUND)
 
 %description
 SIP is a tool that makes it very easy to create Python bindings for C
@@ -50,11 +51,13 @@
 
 %package devel
 License:GPL-2.0 or GPL-3.0 or SIP
-Group:  Development/Libraries/Python
 Summary:SIP tool to create python bindings
+Group:  Development/Libraries/Python
+Requires:

commit radvd for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package radvd for openSUSE:Factory checked 
in at 2011-11-22 17:49:29

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


Package is radvd, Maintainer is jbo...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/radvd/radvd.changes  2011-10-21 
16:35:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.radvd.new/radvd.changes 2011-11-22 
17:49:37.0 +0100
@@ -1,0 +2,7 @@
+Wed Nov 16 14:23:54 UTC 2011 - dims...@opensuse.org
+
+- Update to version 1.8.3:
+  + proper tracking of buffer usage in send_ra
+- Drop diff_release_1_8_2..44ee01c7.patch: fixed upstream.
+
+---

Old:

  diff_release_1_8_2..44ee01c7.patch
  radvd-1.8.2.tar.gz

New:

  radvd-1.8.3.tar.gz



Other differences:
--
++ radvd.spec ++
--- /var/tmp/diff_new_pack.GiBAqv/_old  2011-11-22 17:49:39.0 +0100
+++ /var/tmp/diff_new_pack.GiBAqv/_new  2011-11-22 17:49:39.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   radvd
-Version:1.8.2
+Version:1.8.3
 Release:1
 License:BSD 3-clause (or similar)
 Summary:Router ADVertisement Daemon for IPv6
@@ -27,7 +27,6 @@
 Source0:http://www.litech.org/radvd/dist/%{name}-%{version}.tar.gz
 Source1:radvd.init
 Source2:sysconfig.radvd
-Patch0: diff_release_1_8_2..44ee01c7.patch
 Patch1: 0001-run-as-user-radvd-by-default.diff
 BuildRequires:  bison
 BuildRequires:  flex
@@ -42,7 +41,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 %patch1 -p1
 
 %build

++ 0001-run-as-user-radvd-by-default.diff ++
--- /var/tmp/diff_new_pack.GiBAqv/_old  2011-11-22 17:49:39.0 +0100
+++ /var/tmp/diff_new_pack.GiBAqv/_new  2011-11-22 17:49:39.0 +0100
@@ -7,11 +7,11 @@
  radvd.c |3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)
 
-diff --git a/radvd.c b/radvd.c
-index a84793e..90acc88 100644
 a/radvd.c
-+++ b/radvd.c
-@@ -172,6 +172,9 @@ main(int argc, char *argv[])
+Index: radvd-1.8.3/radvd.c
+===
+--- radvd-1.8.3.orig/radvd.c
 radvd-1.8.3/radvd.c
+@@ -200,6 +200,9 @@ main(int argc, char *argv[])
}
}
  
@@ -21,6 +21,3 @@
if (chrootdir) {
if (!username) {
fprintf(stderr, Chroot as root is not safe, 
exiting\n);
--- 
-1.7.3.4
-

++ radvd-1.8.2.tar.gz - radvd-1.8.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/radvd-1.8.2/CHANGES new/radvd-1.8.3/CHANGES
--- old/radvd-1.8.2/CHANGES 2011-10-06 12:52:20.0 +0200
+++ new/radvd-1.8.3/CHANGES 2011-10-14 15:48:06.0 +0200
@@ -1,3 +1,10 @@
+14/08/2011 1.8.3 release
+
+08/10/2011 More careful checking of iface name
+
+06/10/2011 Updating buffer usage tracking in send_ra to track buffer usage 
BEFORE
+   the buffer is used rather than after in order to prevent buffer 
overflow
+
 06/10/2011 1.8.2 release
 
 04/10/2011 1) A privilege escalation flaw was found in radvd, due to a 
buffer overflow
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/radvd-1.8.2/VERSION new/radvd-1.8.3/VERSION
--- old/radvd-1.8.2/VERSION 2011-10-06 12:52:20.0 +0200
+++ new/radvd-1.8.3/VERSION 2011-10-11 18:42:03.0 +0200
@@ -3,4 +3,4 @@
 #
 # this file is automatically processed by configure
 #
-1.8.2
+1.8.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/radvd-1.8.2/defaults.h new/radvd-1.8.3/defaults.h
--- old/radvd-1.8.2/defaults.h  2011-10-06 12:52:20.0 +0200
+++ new/radvd-1.8.3/defaults.h  2011-10-06 17:32:36.0 +0200
@@ -200,7 +200,7 @@
uint8_t nd_opt_dnssli_len;
uint16_tnd_opt_dnssli_reserved;
uint32_tnd_opt_dnssli_lifetime;
-   charnd_opt_dnssli_suffixes[];
+   unsigned char   nd_opt_dnssli_suffixes[];
 };
 
 /* Flags */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/radvd-1.8.2/device-linux.c 
new/radvd-1.8.3/device-linux.c
--- old/radvd-1.8.2/device-linux.c  2011-10-06 12:52:20.0 +0200
+++ new/radvd-1.8.3/device-linux.c  2011-10-08 18:25:59.0 +0200
@@ -244,7 +244,7 @@
return -1;
 
/* No path traversal */
-   if (strstr(name, ..) || strchr(name, '/'))
+   if (!iface[0] || !strcmp(iface, .) || !strcmp(iface, ..) || 
strchr(iface, '/'))

commit screen for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package screen for openSUSE:Factory checked 
in at 2011-11-22 17:49:32

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


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

Changes:

--- /work/SRC/openSUSE:Factory/screen/screen.changes2011-09-23 
12:45:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.screen.new/screen.changes   2011-11-22 
17:49:39.0 +0100
@@ -1,0 +2,10 @@
+Mon Nov 21 14:55:17 UTC 2011 - co...@suse.com
+
+- fix build with latest ncurses (split tinfo)
+
+---
+Fri Nov 18 13:09:57 UTC 2011 - j...@suse.com
+
+- mkdir /var/run/*screen both immediatly and via systemd.
+
+---



Other differences:
--
++ screen.spec ++
--- /var/tmp/diff_new_pack.V8fmGM/_old  2011-11-22 17:49:42.0 +0100
+++ /var/tmp/diff_new_pack.V8fmGM/_new  2011-11-22 17:49:42.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Url:http://www.gnu.org/software/screen/
 
@@ -29,7 +28,6 @@
 License:GPLv2+
 Group:  System/Console
 PreReq: %install_info_prereq
-AutoReqProv:on
 Version:4.0.3
 Release:19
 Summary:A program to allow multiple screens on a VT100/ANSI Terminal
@@ -65,7 +63,7 @@
 %patch8 -p1
 
 %build
-CFLAGS=-DMAXWIN=1000 $RPM_OPT_FLAGS ./configure --prefix=/usr 
--infodir=%{_infodir} \
+CFLAGS=-DMAXWIN=1000 $RPM_OPT_FLAGS %configure --prefix=/usr 
--infodir=%{_infodir} \
--mandir=%{_mandir} \
--with-socket-dir='(eff_uid ? 
/var/run/uscreens : /var/run/screens)' \
--with-sys-screenrc=/etc/screenrc \
@@ -99,7 +97,7 @@
 %dir /usr/lib/tmpfiles.d
 /usr/lib/tmpfiles.d/screen.conf
 /usr/share/screen/utf8encodings
-# Created via aaa_base on system boot
+# Created via aaa_base or systemd on system boot
 %ghost %dir /var/run/screens
 %ghost %dir /var/run/uscreens
 %doc %{_infodir}/screen.info*.gz
@@ -108,6 +106,11 @@
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
+# Create our dirs immediatly, after a manual package install.
+# After a reboot systemd/aaa_base will take care.
+test -d /var/run/screens || mkdir -m 755 /var/run/screens
+test -d /var/run/uscreens || mkdir -m 1777 /var/run/uscreens
+
 %postun
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 

++ screen-4.0.2.dif ++
 12202 lines (skipped)
 between /work/SRC/openSUSE:Factory/screen/screen-4.0.2.dif
 and /work/SRC/openSUSE:Factory/.screen.new/screen-4.0.2.dif

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



commit stardict-tools for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package stardict-tools for openSUSE:Factory 
checked in at 2011-11-22 17:49:36

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


Package is stardict-tools, Maintainer is lr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/stardict-tools/stardict-tools.changes
2011-09-26 10:36:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.stardict-tools.new/stardict-tools.changes   
2011-11-22 17:49:47.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:29:09 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ stardict-tools.spec ++
--- /var/tmp/diff_new_pack.B0A96F/_old  2011-11-22 17:49:49.0 +0100
+++ /var/tmp/diff_new_pack.B0A96F/_new  2011-11-22 17:49:49.0 +0100
@@ -37,7 +37,7 @@
 %if 0%{?suse_version}  1010
 BuildRequires:  pkgconfig
 %else
-BuildRequires:  pkg-config
+BuildRequires:  libtool pkg-config
 %endif
 %if 0%{?suse_version}  1020
 BuildRequires:  libmysqlclient-devel


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



commit tree for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package tree for openSUSE:Factory checked in 
at 2011-11-22 17:49:42

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


Package is tree, Maintainer is gre...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/tree/tree.changes2011-10-04 
18:15:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.tree.new/tree.changes   2011-11-22 
17:49:50.0 +0100
@@ -1,0 +2,44 @@
+Mon Nov 21 11:17:13 UTC 2011 - ch...@computersalat.de
+
+- update to 1.6.0
+  * Re-org of code into multiple files, split HTML and Unix listdir()
+into separate functions, various code cleanups and optimizations.
+  * Fixed a memory leak in listdir() when memory was allocated early
+and not freed before function exit.
+  * Fixed possible buffer overflow where symbolic links are followed.
+  * Fixed links printing argetm before the name of the link when the
+LINK setting for DIR_COLORS is set to target
+(Markus Schnalke mei...@marmaro.de)
+  * More fully support dir colors -- added support for su, sg, tw, ow,
+ st options (and do in theory).
+  * Use the environment variable TREE_COLORS instead of LS_COLORS
+for color information if it exists.
+  * Added --si flag to print filesizes in SI (powers of 1000) units
+(Ulrich Eckhardt)
+  * Added -Q to quote filenames in double quotes. Does not override
+-N or -q.
+  * Control characters are no longer printed in carrot notation, but as
+backslashed octal, ala ls, except for codes 7-13 which are printed
+as \a, \b, \t, \n, \v, \f and \r respectively. Spaces and
+backslashes are also now backslashed as per ls, for better input to
+scripts unless -Q is in use (where 's are backslashed.)
+(Ujjwal Kumar)
+  * Added -U for unsorted listings (directory order).
+  * Added -c for sorting by last status change (ala ls -c).
+  * --dirsfirst is now a meta-sort and does not override -c, -v, -r
+or -t, but is disabled by -U.
+  * After many requests, added the ability to process the entire tree
+before emitting output. Used for the new options --du, which works
+like the du command: sums the amount of space under each directory
+and prints a total amount used in the report and the --prune option
+which will prune all empty directories from the output (makes the -P
+option output much more readable.) It should be noted that this will
+be slow to output when processing large directory trees and can
+consume copious amounts of memory, use at your own peril.
+  * Added -X option to emit the directory tree in XML format
+(turns colorization off always.)
+  * Added --timefmt option to specify the format of time display
+(implies -D). Uses the strftime format.
+- rework donstrip patch
+
+---

Old:

  tree-1.5.3-dontstrip.patch
  tree-1.5.3.tar.bz2

New:

  tree-1.6.0.tar.bz2
  tree-dontstrip.patch



Other differences:
--
++ tree.spec ++
--- /var/tmp/diff_new_pack.ff6PKB/_old  2011-11-22 17:49:51.0 +0100
+++ /var/tmp/diff_new_pack.ff6PKB/_new  2011-11-22 17:49:51.0 +0100
@@ -20,23 +20,23 @@
 
 Name:   tree
 Summary:File listing as a tree
-Version:1.5.3
-Release:2
+Version:1.6.0
+Release:1
 License:GPLv2+
 Group:  Productivity/File utilities
 Url:http://mama.indstate.edu/users/ice/tree/
 Source0:%{name}-%{version}.tar.bz2
-Patch0: %{name}-1.5.3-dontstrip.patch
+Patch0: %{name}-dontstrip.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-A tree-like directory listing program with dircolors support
-
-  Authors:  Steve Baker i...@mama.indstate.edu
+Tree is a recursive directory listing command that produces a depth
+indented listing of files, which is colorized ala dircolors if the
+LS_COLORS environment variable is set and output is to tty.
 
 %prep
 %setup -n %{name}-%{version}
-%patch0 -p1
+%patch0
 
 %build
 %{__make} OPTFLAGS=$RPM_OPT_FLAGS CC=%{__cc}
@@ -44,7 +44,7 @@
 %install
 %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}
 %{__mkdir_p} $RPM_BUILD_ROOT%{_mandir}/man1
-%{__install} -m 644 man/%{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
+%{__install} -m 644 doc/%{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
 %{__install} -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}
 
 %clean

++ tree-1.5.3.tar.bz2 - tree-1.6.0.tar.bz2 ++
 5203 lines of diff (skipped)

++ tree-dontstrip.patch ++
Index: Makefile
===
--- Makefile.orig   2011-06-24 16:25:27.0 +0200
+++ Makefile2011-11-21 

commit streamtuner for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package streamtuner for openSUSE:Factory 
checked in at 2011-11-22 17:49:39

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


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

Changes:

--- /work/SRC/openSUSE:Factory/streamtuner/streamtuner.changes  2011-09-23 
12:46:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.streamtuner.new/streamtuner.changes 
2011-11-22 17:49:49.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 15:41:53 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ streamtuner.spec ++
--- /var/tmp/diff_new_pack.lusPwy/_old  2011-11-22 17:49:50.0 +0100
+++ /var/tmp/diff_new_pack.lusPwy/_new  2011-11-22 17:49:50.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package streamtuner (Version 0.99.99)
+# spec file for package streamtuner
 #
-# 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
@@ -21,6 +21,7 @@
 BuildRequires:  curl-devel gtk-doc gtk2-devel intltool libxml2-devel 
openldap2-devel perl-XML-Parser scrollkeeper taglib-devel update-desktop-files
 # For directory ownership:
 BuildRequires:  libgnome
+BuildRequires:  libtool
 Summary:A GUI Interface for Internet Radio Directories
 Version:0.99.99
 Release:255


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



commit trousers for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package trousers for openSUSE:Factory 
checked in at 2011-11-22 17:49:45

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


Package is trousers, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/trousers/trousers.changes2011-09-23 
12:49:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.trousers.new/trousers.changes   2011-11-22 
17:49:51.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 20:46:59 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ trousers.spec ++
--- /var/tmp/diff_new_pack.pJaD5g/_old  2011-11-22 17:49:53.0 +0100
+++ /var/tmp/diff_new_pack.pJaD5g/_new  2011-11-22 17:49:53.0 +0100
@@ -16,13 +16,12 @@
 #
 
 
-BuildRequires:  gtk2-devel openssl-devel pkgconfig
+BuildRequires:  gtk2-devel libtool openssl-devel pkgconfig
 
 Name:   trousers
 Url:http://trousers.sourceforge.net/
 License:Other uncritical OpenSource License
 Group:  Productivity/Security
-AutoReqProv:on
 Version:0.3.7
 Release:1
 Summary:TSS (TCG Software Stack) access daemon for a TPM chip
@@ -42,18 +41,6 @@
 The package needs the /dev/tpm device file to be present on your
 system. It is a character device file major 10 minor 224, 0600 tss:tss.
 
-
-
-Authors:
-
-Development sponsored by IBM
-Ryan Catherman
-Seiji Munetoh
-Taiga Nakamura
-Kent Yoder shpedoi...@gmail.com
-Megan Schneider
-Kathy Robertson
-
 %package devel
 License:Other uncritical OpenSource License
 Group:  Development/Libraries/C and C++
@@ -71,18 +58,6 @@
 The package needs the /dev/tpm device file to be present on your
 system. It is a character device file major 10 minor 224, 0600 tss:tss.
 
-
-
-Authors:
-
-Development sponsored by IBM
-Ryan Catherman
-Seiji Munetoh
-Taiga Nakamura
-Kent Yoder shpedoi...@gmail.com
-Megan Schneider
-Kathy Robertson
-
 %package -n libtspi1
 License:CPL (Common Public License) v1
 Group:  Productivity/Security
@@ -99,18 +74,6 @@
 The package needs the /dev/tpm device file to be present on your
 system. It is a character device file major 10 minor 224, 0600 tss:tss.
 
-
-
-Authors:
-
-Development sponsored by IBM
-Ryan Catherman
-Seiji Munetoh
-Taiga Nakamura
-Kent Yoder shpedoi...@gmail.com
-Megan Schneider
-Kathy Robertson
-
 %prep
 %setup -q
 %patch0 -p0

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



commit tsclient for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package tsclient for openSUSE:Factory 
checked in at 2011-11-22 17:49:49

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


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

Changes:

--- /work/SRC/openSUSE:Factory/tsclient/tsclient.changes2011-09-23 
12:49:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.tsclient.new/tsclient.changes   2011-11-22 
17:49:53.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 22 10:22:39 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ tsclient.spec ++
--- /var/tmp/diff_new_pack.K1m73J/_old  2011-11-22 17:49:55.0 +0100
+++ /var/tmp/diff_new_pack.K1m73J/_new  2011-11-22 17:49:55.0 +0100
@@ -36,6 +36,7 @@
 Patch3: tsclient-libnotify07.patch
 BuildRequires:  gnome-icon-theme
 BuildRequires:  intltool
+BuildRequires:  libtool
 %if 0%{?suse_version}
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files

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



commit util-linux for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory 
checked in at 2011-11-22 17:49:53

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


Package is util-linux, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/util-linux/util-linux.changes2011-11-16 
17:23:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.util-linux.new/util-linux.changes   
2011-11-22 17:49:55.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 15:13:56 UTC 2011 - a...@suse.de
+
+- add fdisk-tinfo.patch to fix build with newer curses.
+
+---

New:

  fdisk-tinfo.patch



Other differences:
--
++ util-linux.spec ++
--- /var/tmp/diff_new_pack.Gs4NLy/_old  2011-11-22 17:49:57.0 +0100
+++ /var/tmp/diff_new_pack.Gs4NLy/_new  2011-11-22 17:49:57.0 +0100
@@ -92,6 +92,7 @@
 Patch7: fsck-use-FS-blacklist-for-non-all-mode-too.patch
 Patch8: libmount-ignore-tailing-slash-in-netfs-source-paths.patch
 Patch9: libmount-fix-chdir-to-parent-for-restricted-user-umo.patch
+Patch10:fdisk-tinfo.patch
 
 ##
 ## adjtimex
@@ -109,6 +110,7 @@
 ## which
 ##
 Patch70:which-lib64.patch
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %insserv_prereq %fillup_prereq /bin/sed
 #
@@ -198,6 +200,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch9 -p1
+%patch10 -p1
 
 #
 cd adjtimex-*

++ fdisk-tinfo.patch ++
Index: util-linux-2.20.1/fdisk/Makefile.am
===
--- util-linux-2.20.1.orig/fdisk/Makefile.am
+++ util-linux-2.20.1/fdisk/Makefile.am
@@ -64,9 +64,13 @@ sbin_PROGRAMS += cfdisk
 dist_man_MANS += cfdisk.8
 cfdisk_SOURCES = cfdisk.c $(fdisk_common)
 cfdisk_CFLAGS = $(cflags_blkid)
+if HAVE_TINFO
+cfdisk_LDADD = -ltinfo @NCURSES_LIBS@ $(ldadd_blkid)
+else
 cfdisk_LDADD = @NCURSES_LIBS@ $(ldadd_blkid)
 endif
 endif
+endif
 
 endif # !ARCH_SPARC
 endif # !ARCH_M68K
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit vorbis-tools for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package vorbis-tools for openSUSE:Factory 
checked in at 2011-11-22 17:49:56

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


Package is vorbis-tools, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/vorbis-tools/vorbis-tools.changes
2011-09-23 12:50:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.vorbis-tools.new/vorbis-tools.changes   
2011-11-22 17:49:58.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 20 06:29:49 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ vorbis-tools.spec ++
--- /var/tmp/diff_new_pack.erKlqY/_old  2011-11-22 17:49:59.0 +0100
+++ /var/tmp/diff_new_pack.erKlqY/_new  2011-11-22 17:49:59.0 +0100
@@ -41,7 +41,7 @@
 BuildRequires:  libkate-devel
 %endif
 BuildRequires:  libvorbis-devel
-BuildRequires:  pkg-config
+BuildRequires:  libtool pkg-config
 BuildRequires:  speex-devel
 Recommends: %{name}-lang = %{version}
 

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



commit xbase for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package xbase for openSUSE:Factory checked 
in at 2011-11-22 17:50:00

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xbase/xbase.changes  2011-09-23 
12:51:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.xbase.new/xbase.changes 2011-11-22 
17:50:01.0 +0100
@@ -1,0 +2,10 @@
+Tue Nov 15 13:13:26 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---
+Mon Oct 31 09:32:15 UTC 2011 - pgaj...@suse.com
+
+- correct url address
+
+---



Other differences:
--
++ xbase.spec ++
--- /var/tmp/diff_new_pack.r2sLv2/_old  2011-11-22 17:50:02.0 +0100
+++ /var/tmp/diff_new_pack.r2sLv2/_new  2011-11-22 17:50:02.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xbase (Version 2.0.0)
+# spec file for package xbase
 #
-# 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
@@ -18,11 +18,11 @@
 
 
 Name:   xbase
-BuildRequires:  doxygen gcc-c++
+BuildRequires:  doxygen gcc-c++ libtool
 License:LGPL v2.1 or later
 Group:  Productivity/Databases/Tools
 Summary:XBase Compatible C++ Class Library
-Url:http://www.rekallrevealed.org/packages/
+Url:http://linux.techass.com/projects/xdb/#downloads
 Version:2.0.0
 Release:252
 Source0:%name-%version.tar.bz2
@@ -39,23 +39,6 @@
 This package contains header files, a library, some command line tools,
 and developer documentation.
 
-
-
-Authors:
-
-Derry Brysonde...@techass.com - current maintainer
-Mario Motta - testing and bugfixes
-Bob Cottonbcot...@synix.com- Clipper NTX index support
-Denis Braussenpostoff...@mail.dotcom.fr - general support
-Denis Pershin d...@inetlab.com  - provided library 
enhancements
-Eirk Bachman  e...@geocities.com- keeper of definitive Xbase 
spec
-Gabriel Emerson   egabr...@io.com  - provided logo
-Gary Kunkel   gkun...@startech.keller.tx.us - original author
-Kehl Hubertus ke...@hotmail.com- Xbase to Xbase C++ Perl 
Converter
-Michael Bedward   mbedw...@ozemail.com.au  - Expression logic support
-Paul Foster   pa...@quillandmouse.com  - general support
-Vitaly Fedrushkov wi...@snowyowl.csu.ac.ru - TV support and more
-
 %package devel
 License:LGPL v2.1 or later
 Group:  Development/Libraries/C and C++
@@ -69,23 +52,6 @@
 
 This package contains header files and development files.
 
-
-
-Authors:
-
-Derry Brysonde...@techass.com - current maintainer
-Mario Motta - testing and bugfixes
-Bob Cottonbcot...@synix.com- Clipper NTX index support
-Denis Braussenpostoff...@mail.dotcom.fr - general support
-Denis Pershin d...@inetlab.com  - provided library 
enhancements
-Eirk Bachman  e...@geocities.com- keeper of definitive Xbase 
spec
-Gabriel Emerson   egabr...@io.com  - provided logo
-Gary Kunkel   gkun...@startech.keller.tx.us - original author
-Kehl Hubertus ke...@hotmail.com- Xbase to Xbase C++ Perl 
Converter
-Michael Bedward   mbedw...@ozemail.com.au  - Expression logic support
-Paul Foster   pa...@quillandmouse.com  - general support
-Vitaly Fedrushkov wi...@snowyowl.csu.ac.ru - TV support and more
-
 %package doc
 License:LGPL v2.1 or later
 Group:  Productivity/Databases/Tools
@@ -100,23 +66,6 @@
 This package contains header files, a library, some command line tools,
 and developer documentation.
 
-
-
-Authors:
-
-Derry Brysonde...@techass.com - current maintainer
-Mario Motta - testing and bugfixes
-Bob Cottonbcot...@synix.com- Clipper NTX index support
-Denis Braussenpostoff...@mail.dotcom.fr - general support
-Denis Pershin d...@inetlab.com  - provided library 
enhancements
-Eirk Bachman  e...@geocities.com- keeper of definitive Xbase 
spec
-Gabriel Emerson   egabr...@io.com  - 

commit xbsql for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package xbsql for openSUSE:Factory checked 
in at 2011-11-22 17:50:03

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xbsql/xbsql.changes  2011-09-23 
12:51:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.xbsql.new/xbsql.changes 2011-11-22 
17:50:05.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 16:05:28 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xbsql.spec ++
--- /var/tmp/diff_new_pack.2XqU8E/_old  2011-11-22 17:50:06.0 +0100
+++ /var/tmp/diff_new_pack.2XqU8E/_new  2011-11-22 17:50:06.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xbsql (Version 0.11)
+# spec file for package xbsql
 #
-# 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,7 +19,7 @@
 
 
 Name:   xbsql
-BuildRequires:  bison flex gcc-c++ ncurses-devel readline-devel xbase-devel
+BuildRequires:  bison flex gcc-c++ libtool ncurses-devel readline-devel 
xbase-devel
 License:LGPL v2.1 or later
 Group:  Development/Libraries/C and C++
 Summary:SQL Wrapper for the XBase Library

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



commit xstroke for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package xstroke for openSUSE:Factory checked 
in at 2011-11-22 17:50:12

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xstroke/xstroke.changes  2011-09-23 
12:52:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.xstroke.new/xstroke.changes 2011-11-22 
17:50:13.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 16:00:06 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xstroke.spec ++
--- /var/tmp/diff_new_pack.5ubiJn/_old  2011-11-22 17:50:14.0 +0100
+++ /var/tmp/diff_new_pack.5ubiJn/_new  2011-11-22 17:50:14.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   xstroke
-BuildRequires:  gtk2-devel update-desktop-files
+BuildRequires:  gtk2-devel libtool update-desktop-files
 Url:http://xstroke.org/
 Version:0.6
 Release:237


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



commit yast2-ldap-server for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-ldap-server for 
openSUSE:Factory checked in at 2011-11-22 17:50:22

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


Package is yast2-ldap-server, Maintainer is rha...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-ldap-server/yast2-ldap-server.changes  
2011-10-03 09:26:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-ldap-server.new/yast2-ldap-server.changes 
2011-11-22 17:50:23.0 +0100
@@ -1,0 +2,12 @@
+Mon Nov 21 13:46:09 UTC 2011 - rha...@suse.de
+
+- Version 2.22.0
+- merged SLE-11-SP2 changes (mirrormode support)
+- merged results from proofreading
+
+---
+Sun Nov 20 06:30:02 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---

Old:

  yast2-ldap-server-2.21.2.tar.bz2

New:

  yast2-ldap-server-2.22.0.tar.bz2



Other differences:
--
++ yast2-ldap-server.spec ++
--- /var/tmp/diff_new_pack.B241dk/_old  2011-11-22 17:50:27.0 +0100
+++ /var/tmp/diff_new_pack.B241dk/_new  2011-11-22 17:50:27.0 +0100
@@ -19,17 +19,15 @@
 
 
 Name:   yast2-ldap-server
-Version:2.21.2
+Version:2.22.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ldap-server-2.21.2.tar.bz2
-
-Prefix: /usr
+Source0:yast2-ldap-server-%{version}.tar.bz2
 
 Group:  System/YaST
-License:GPL v2 or later X11/MIT
-BuildRequires:  boost-devel gcc-c++ libldapcpp-devel perl-Digest-SHA1 
perl-X500-DN perl-gettext pkg-config update-desktop-files yast2 
yast2-core-devel yast2-devtools yast2-ldap-client
+License:GPL-2.0+ X11/MIT
+BuildRequires:  boost-devel gcc-c++ libldapcpp-devel libtool perl-Digest-SHA1 
perl-X500-DN perl-gettext pkg-config update-desktop-files yast2 
yast2-core-devel yast2-devtools yast2-ldap-client
 Requires:   acl net-tools perl perl-Digest-SHA1 perl-gettext perl-X500-DN 
yast2 yast2-ca-management yast2-ldap-client yast2-perl-bindings yast2-users
 
 # Wizard::SetDesktopTitleAndIcon
@@ -41,26 +39,26 @@
 Center and during installation.
 
 %prep
-%setup -n yast2-ldap-server-2.21.2
+%setup -n yast2-ldap-server-%{version}
 
 %build
-%{prefix}/bin/y2tool y2autoconf
-%{prefix}/bin/y2tool y2automake
+%{_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}
+./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works
 make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-[ -e %{prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
-for f in `find $RPM_BUILD_ROOT/%{prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
+[ -e %{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
+for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
 d=${f##*/}
 %suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
 done
@@ -81,15 +79,17 @@
 %dir /usr/share/YaST2/modules/YaPI
 /usr/share/YaST2/include/ldap-server/*
 /usr/share/YaST2/clients/ldap-server.ycp
+/usr/share/YaST2/clients/openldap-mirrormode.ycp
 /usr/share/YaST2/clients/ldap-server_*.ycp
 /usr/share/YaST2/modules/LdapServer.*
 /usr/share/YaST2/modules/LdapDatabase.*
 /usr/share/YaST2/modules/YaPI/LdapServer.pm
-%{prefix}/share/applications/YaST2/ldap-server.desktop
+%{_prefix}/share/applications/YaST2/ldap-server.desktop
+%{_prefix}/share/applications/YaST2/openldap-mirrormode.desktop
 %{_libdir}/YaST2/plugin/libpy2ag_slapdconfig.*
 /usr/share/YaST2/schema/autoyast/rnc/ldap-server.rnc
 /usr/share/YaST2/scrconf/*
-%{prefix}/lib/YaST2/bin/ldap-server-ssl-check
-%doc %{prefix}/share/doc/packages/yast2-ldap-server
+%{_prefix}/lib/YaST2/bin/ldap-server-ssl-check
+%doc %{_prefix}/share/doc/packages/yast2-ldap-server
 
 %changelog

++ yast2-ldap-server-2.21.2.tar.bz2 - yast2-ldap-server-2.22.0.tar.bz2 
++
 20744 lines of diff (skipped)

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



commit yast2-country for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-country for openSUSE:Factory 
checked in at 2011-11-22 17:50:18

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


Package is yast2-country, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-country/yast2-country.changes  
2011-11-16 17:23:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-country.new/yast2-country.changes 
2011-11-22 17:50:22.0 +0100
@@ -1,0 +2,7 @@
+Mon Nov 21 16:02:30 CET 2011 - jsuch...@suse.cz
+
+- do not set keyboard layout on module start, when not in
+  installation (bnc#725470)
+- 2.22.0
+
+---

Old:

  yast2-country-2.21.6.tar.bz2

New:

  yast2-country-2.22.0.tar.bz2



Other differences:
--
++ yast2-country.spec ++
--- /var/tmp/diff_new_pack.hxEp0I/_old  2011-11-22 17:50:23.0 +0100
+++ /var/tmp/diff_new_pack.hxEp0I/_new  2011-11-22 17:50:23.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   yast2-country
-Version:2.21.6
+Version:2.22.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build



++ yast2-country-2.21.6.tar.bz2 - yast2-country-2.22.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-2.21.6/VERSION 
new/yast2-country-2.22.0/VERSION
--- old/yast2-country-2.21.6/VERSION2011-11-14 12:16:56.0 +0100
+++ new/yast2-country-2.22.0/VERSION2011-11-21 16:03:19.0 +0100
@@ -1 +1 @@
-2.21.6
+2.22.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-2.21.6/configure 
new/yast2-country-2.22.0/configure
--- old/yast2-country-2.21.6/configure  2011-10-05 09:59:42.0 +0200
+++ new/yast2-country-2.22.0/configure  2011-11-14 14:00:28.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-country 2.21.5.
+# Generated by GNU Autoconf 2.68 for yast2-country 2.21.6.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -559,8 +559,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-country'
 PACKAGE_TARNAME='yast2-country'
-PACKAGE_VERSION='2.21.5'
-PACKAGE_STRING='yast2-country 2.21.5'
+PACKAGE_VERSION='2.21.6'
+PACKAGE_STRING='yast2-country 2.21.6'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1229,7 +1229,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-country 2.21.5 to adapt to many kinds of systems.
+\`configure' configures yast2-country 2.21.6 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1300,7 +1300,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-country 2.21.5:;;
+ short | recursive ) echo Configuration of yast2-country 2.21.6:;;
esac
   cat \_ACEOF
 
@@ -1380,7 +1380,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-country configure 2.21.5
+yast2-country configure 2.21.6
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1397,7 +1397,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-country $as_me 2.21.5, which was
+It was created by yast2-country $as_me 2.21.6, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2327,7 +2327,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-country'
- VERSION='2.21.5'
+ VERSION='2.21.6'
 
 
 cat confdefs.h _ACEOF
@@ -2449,7 +2449,7 @@
 
 
 
-VERSION=2.21.5
+VERSION=2.21.6
 RPMNAME=yast2-country
 MAINTAINER=Jiri Suchomel jsuch...@suse.cz
 
@@ -3379,7 +3379,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by yast2-country $as_me 2.21.5, which was
+This file was extended by yast2-country $as_me 2.21.6, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -3432,7 +3432,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-yast2-country config.status 2.21.5
+yast2-country config.status 2.21.6
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\\$ac_cs_config\\
 
diff -urN 

commit yast2-snapper for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-snapper for openSUSE:Factory 
checked in at 2011-11-22 17:50:27

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


Package is yast2-snapper, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-snapper/yast2-snapper.changes  
2011-11-16 17:23:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-snapper.new/yast2-snapper.changes 
2011-11-22 17:50:29.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 21 14:56:44 CET 2011 - jsuch...@suse.cz
+
+- there might be other configs than 'root' (bnc#731687)
+- 2.22.1 
+
+---

Old:

  yast2-snapper-2.22.0.tar.bz2

New:

  yast2-snapper-2.22.1.tar.bz2



Other differences:
--
++ yast2-snapper.spec ++
--- /var/tmp/diff_new_pack.U40xy5/_old  2011-11-22 17:50:30.0 +0100
+++ /var/tmp/diff_new_pack.U40xy5/_new  2011-11-22 17:50:30.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   yast2-snapper
-Version:2.22.0
+Version:2.22.1
 Release:0
 Group:  System/YaST
 

++ yast2-snapper-2.22.0.tar.bz2 - yast2-snapper-2.22.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.22.0/VERSION 
new/yast2-snapper-2.22.1/VERSION
--- old/yast2-snapper-2.22.0/VERSION2011-11-16 11:20:29.0 +0100
+++ new/yast2-snapper-2.22.1/VERSION2011-11-21 15:16:33.0 +0100
@@ -1 +1 @@
-2.22.0
+2.22.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.22.0/src/Snapper.ycp 
new/yast2-snapper-2.22.1/src/Snapper.ycp
--- old/yast2-snapper-2.22.0/src/Snapper.ycp2011-11-16 11:19:55.0 
+0100
+++ new/yast2-snapper-2.22.1/src/Snapper.ycp2011-11-21 13:24:06.0 
+0100
@@ -23,7 +23,7 @@
  * Summary:Snapper settings, input and output functions
  * Authors:Jiri Suchomel jsuch...@suse.cz
  *
- * $Id: Snapper.ycp 66356 2011-10-10 10:54:07Z jsuchome $
+ * $Id: Snapper.ycp 66812 2011-11-16 10:20:49Z jsuchome $
  *
  * Representation of the configuration of snapper.
  * Input and output routines.
@@ -206,6 +206,10 @@
Report::Error (_(File /etc/sysconfig/snapper is not available.));
configs = [ root ];
 }
+if (!contains (configs, root)  size (configs)  0)
+{
+   current_config  = configs[0]:root;
+}
 return configs;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.22.0/src/dialogs.ycp 
new/yast2-snapper-2.22.1/src/dialogs.ycp
--- old/yast2-snapper-2.22.0/src/dialogs.ycp2011-11-16 11:19:55.0 
+0100
+++ new/yast2-snapper-2.22.1/src/dialogs.ycp2011-11-16 11:20:50.0 
+0100
@@ -24,7 +24,7 @@
  * Summary:Dialogs definitions
  * Authors:Jiri Suchomel jsuch...@suse.cz
  *
- * $Id: dialogs.ycp 66438 2011-10-14 08:16:10Z jsuchome $
+ * $Id: dialogs.ycp 66812 2011-11-16 10:20:49Z jsuchome $
  */
 
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-2.22.0/src/helps.ycp 
new/yast2-snapper-2.22.1/src/helps.ycp
--- old/yast2-snapper-2.22.0/src/helps.ycp  2011-11-16 11:19:55.0 
+0100
+++ new/yast2-snapper-2.22.1/src/helps.ycp  2011-11-16 11:20:50.0 
+0100
@@ -24,7 +24,7 @@
  * Summary:Help texts of all the dialogs
  * Authors:Jiri Suchomel jsuch...@suse.cz
  *
- * $Id: helps.ycp 63520 2011-03-07 09:21:10Z jsuchome $
+ * $Id: helps.ycp 66812 2011-11-16 10:20:49Z jsuchome $
  */
 
 {

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



commit zvbi for openSUSE:Factory

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package zvbi for openSUSE:Factory checked in 
at 2011-11-22 17:50:30

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


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

Changes:

--- /work/SRC/openSUSE:Factory/zvbi/zvbi.changes2011-09-23 
12:53:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.zvbi.new/zvbi.changes   2011-11-22 
17:50:32.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 19 15:39:40 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ zvbi.spec ++
--- /var/tmp/diff_new_pack.J9Lmh2/_old  2011-11-22 17:50:34.0 +0100
+++ /var/tmp/diff_new_pack.J9Lmh2/_new  2011-11-22 17:50:34.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   zvbi
-BuildRequires:  doxygen gcc-c++ xorg-x11-devel
+BuildRequires:  doxygen gcc-c++ libtool xorg-x11-devel
 Url:http://zapping.sf.net/
 License:GPL v2 or later
 Group:  Development/Libraries/Other

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



commit lightdm-branding-openSUSE for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package lightdm-branding-openSUSE for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 22:05:21

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


Package is lightdm-branding-openSUSE, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.lightdm-branding-openSUSE.new/lightdm-branding-openSUSE.changes
2011-11-22 22:05:23.0 +0100
@@ -0,0 +1,32 @@
+---
+Mon Oct 10 12:47:12 UTC 2011 - g...@opensuse.org
+
+- use wallpaper from the new wallpaper-branding package
+- use Adwaita as the gtk3 default theme
+
+---
+Mon Oct  3 17:48:03 UTC 2011 - g...@opensuse.org
+
+- depend on openSUSE-dynamic-wallpaper rather than libgnome for the
+  default background
+
+---
+Mon Sep 26 13:51:28 UTC 2011 - g...@opensuse.org
+
+- fixed typo
+
+---
+Mon Sep 26 13:11:49 UTC 2011 - g...@opensuse.org
+
+- use exact lightdm version for provides/requires
+
+---
+Tue Sep 20 10:25:57 UTC 2011 - g...@opensuse.org
+
+- enable language selector
+
+---
+Sat Sep  3 12:17:33 UTC 2011 - g...@opensuse.org
+
+- initial packaging
+

New:

  _link
  lightdm-branding-openSUSE.changes
  lightdm-branding-openSUSE.spec
  lightdm-gtk-greeter.conf



Other differences:
--
++ lightdm-branding-openSUSE.spec ++
#
# spec file for package lightdm-branding-openSUSE
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 Guido Berhoerster g...@opensuse.org.
#
# 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/
#


%define lightdm_gtk_greeter_version %(rpm -q --queryformat 
'%%{version}-%%{release}' lightdm-gtk-greeter)

Name:   lightdm-branding-openSUSE
Version:12.1
Release:0
License:GPLv3+
Summary:openSUSE branding of LightDM
Url:http://www.freedesktop.org/wiki/Software/LightDM
Group:  System/X11/Displaymanagers
Source0:lightdm-gtk-greeter.conf
BuildRequires:  lightdm
BuildRequires:  lightdm-gtk-greeter
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
This package provides the openSUSE look and feel for LightDM.


%package -n lightdm-gtk-greeter-branding-openSUSE
License:GPLv3+
Summary:openSUSE branding of lightdm-gtk-greeter
Group:  System/X11/Displaymanagers
# default background image
Requires:   wallpaper-branding
# default gtk3 theme
Requires:   gtk3-metatheme-adwaita
Requires:   lightdm-gtk-greeter = %{lightdm_gtk_greeter_version}
Provides:   lightdm-gtk-greeter-branding = %{lightdm_gtk_greeter_version}
Conflicts:  otherproviders(lightdm-gtk-greeter-branding)
Supplements:packageand(lightdm-gtk-greeter:branding-openSUSE)

%description -n lightdm-gtk-greeter-branding-openSUSE
This package provides the openSUSE look and feel for the lightdm-gtk-greeter.


%prep

%build
cp %{_defaultdocdir}/lightdm/COPYING .

%install
install -D -p -m 644 %{SOURCE0} 
%{buildroot}%{_sysconfdir}/lightdm/lightdm-gtk-greeter.conf

%clean
rm -rf %{buildroot}

%files -n lightdm-gtk-greeter-branding-openSUSE
%defattr(-,root,root)
%doc COPYING
%config(noreplace) %{_sysconfdir}/lightdm/lightdm-gtk-greeter.conf

%changelog
++ _link ++
link project=openSUSE:12.1:Update package=lightdm-branding-openSUSE 
baserev=ab0458cfb2093fde760b89f86d90e8c5
  patches
branch/
  /patches
/link
++ lightdm-gtk-greeter.conf ++
#
# background = Background file to use, either an image path or a color (e.g. 
#772953)
# theme-name = GTK+ theme to use
# font-name = Font to use
# xft-antialias = Whether to antialias Xft fonts (true or false)
# xft-dpi = 

commit pullin-flash-player for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package pullin-flash-player for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 22:06:09

Comparing /work/SRC/openSUSE:12.1:Update:Test/pullin-flash-player (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.pullin-flash-player.new (New)


Package is pullin-flash-player, Maintainer is co...@suse.com

Changes:

--- 
/work/SRC/openSUSE:12.1:Update:Test/pullin-flash-player/pullin-flash-player.changes
 2011-11-15 15:32:59.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.pullin-flash-player.new/pullin-flash-player.changes
2011-11-22 22:06:10.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 12:59:10 UTC 2011 - bbrun...@suse.com
+
+- Changed recommends to requires in spec-file 
+
+---



Other differences:
--
++ pullin-flash-player.spec ++
--- /var/tmp/diff_new_pack.ISTakV/_old  2011-11-22 22:06:10.0 +0100
+++ /var/tmp/diff_new_pack.ISTakV/_new  2011-11-22 22:06:10.0 +0100
@@ -26,7 +26,7 @@
 Summary:Placeholder for Adobe Flash PlugIn
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:README
-Recommends: flash-player
+Requires: flash-player
 
 %description
 The installation of this package triggers online update of

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



commit pullin-fluendo-mp3 for openSUSE:12.1:Update:Test

2011-11-22 Thread h_root
Hello community,

here is the log from the commit of package pullin-fluendo-mp3 for 
openSUSE:12.1:Update:Test checked in at 2011-11-22 22:06:37

Comparing /work/SRC/openSUSE:12.1:Update:Test/pullin-fluendo-mp3 (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.pullin-fluendo-mp3.new (New)


Package is pullin-fluendo-mp3, Maintainer is co...@suse.com

Changes:

--- 
/work/SRC/openSUSE:12.1:Update:Test/pullin-fluendo-mp3/pullin-fluendo-mp3.changes
   2011-11-16 16:19:59.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.pullin-fluendo-mp3.new/pullin-fluendo-mp3.changes
  2011-11-22 22:06:39.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 13:01:29 UTC 2011 - bbrun...@suse.com
+
+- Changed recommended to requires in spec-file 
+
+---



Other differences:
--
++ pullin-fluendo-mp3.spec ++
--- /var/tmp/diff_new_pack.AytEVO/_old  2011-11-22 22:06:39.0 +0100
+++ /var/tmp/diff_new_pack.AytEVO/_new  2011-11-22 22:06:39.0 +0100
@@ -27,7 +27,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:README
 BuildArch:  noarch
-Recommends: gstreamer-0_10-fluendo-mp3
+Requires: gstreamer-0_10-fluendo-mp3
 
 %description
 The installation of this package triggers online update of

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