commit alsa-utils for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package alsa-utils for openSUSE:Factory 
checked in at 2011-11-07 14:06:32

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


Package is alsa-utils, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/alsa-utils/alsa-utils.changes2011-10-18 
14:08:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.alsa-utils.new/alsa-utils.changes   
2011-11-07 14:06:34.0 +0100
@@ -1,0 +2,12 @@
+Fri Nov  4 17:27:05 CET 2011 - ti...@suse.de
+
+- Fix missing initialization of Surround, etc, as well as Front
+  Speaker, etc mixer elements in alsactl init
+
+---
+Wed Nov  2 17:38:32 CET 2011 - ti...@suse.de
+
+- Backport upstream fix:
+  - fix a crash of alsamixer with pulse plugin
+
+---

New:

  0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch
  0022-alsactl-Initialize-Front-Speaker-etc.patch



Other differences:
--
++ alsa-utils.spec ++
--- /var/tmp/diff_new_pack.Am7EBb/_old  2011-11-07 14:06:36.0 +0100
+++ /var/tmp/diff_new_pack.Am7EBb/_new  2011-11-07 14:06:36.0 +0100
@@ -55,6 +55,8 @@
 Patch18:0018-alsa-utils-amixer-Fix-SND_CTL_TLVT_DB_RANGE-handling.patch
 Patch19:0019-aplay-increase-channel-limit-to-256.patch
 Patch20:0020-fix-use-of-SED.patch
+Patch21:0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch
+Patch22:0022-alsactl-Initialize-Front-Speaker-etc.patch
 Patch99:alsa-utils-gettext-version-removal.diff
 Url:http://www.alsa-project.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -88,6 +90,8 @@
 %patch18 -p1
 %patch19 -p1
 %patch20 -p1
+%patch21 -p1
+%patch22 -p1
 %if %suse_version  1020
 %patch99 -p1
 %endif

++ 0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch ++
From 4c09aaa5c13c2260fea57a89c47f88252da8a692 Mon Sep 17 00:00:00 2001
From: Jaroslav Kysela pe...@perex.cz
Date: Wed, 2 Nov 2011 17:27:47 +0100
Subject: [PATCH] alsamixer: Fix X-win related crash for PulseAudio plugin
 (bad linking)

A lot of reports that alsamixer crashes in X terminal when the PulseAudio
CTL plugin is activated were entered to the tracking systems.

I figured that there is a linking clash for the shutdown() function.
The shutdown() function in glibc is socket related, but the alsamixer code
redefines this function and appearently that under some linking
circumstances - which PA client invokes during the runtime dynamic linking
- the wrong function is called.

This patch, for safety, renames the shutdown() function from alsamixer
to app_shutdown(), but it might make sense to figure the real linking
culprit to avoid future surprises.

Signed-off-by: Jaroslav Kysela pe...@perex.cz
---
 alsamixer/cli.c  |2 +-
 alsamixer/die.c  |4 ++--
 alsamixer/mainloop.c |2 +-
 alsamixer/mainloop.h |2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/alsamixer/cli.c b/alsamixer/cli.c
index 3898196..bb4f030 100644
--- a/alsamixer/cli.c
+++ b/alsamixer/cli.c
@@ -130,6 +130,6 @@ int main(int argc, char *argv[])
 
mainloop();
 
-   shutdown();
+   app_shutdown();
return 0;
 }
diff --git a/alsamixer/die.c b/alsamixer/die.c
index dcd8536..899a501 100644
--- a/alsamixer/die.c
+++ b/alsamixer/die.c
@@ -26,14 +26,14 @@
 
 void fatal_error(const char *msg)
 {
-   shutdown();
+   app_shutdown();
fprintf(stderr, %s\n, msg);
exit(EXIT_FAILURE);
 }
 
 void fatal_alsa_error(const char *msg, int err)
 {
-   shutdown();
+   app_shutdown();
fprintf(stderr, _(%s: %s\n), msg, snd_strerror(err));
exit(EXIT_FAILURE);
 }
diff --git a/alsamixer/mainloop.c b/alsamixer/mainloop.c
index eddaf3b..dbfef9b 100644
--- a/alsamixer/mainloop.c
+++ b/alsamixer/mainloop.c
@@ -52,7 +52,7 @@ void initialize_curses(bool use_color)
snd_lib_error_set_handler(black_hole_error_handler);
 }
 
-void shutdown(void)
+void app_shutdown(void)
 {
if (curses_initialized) {
clear();
diff --git a/alsamixer/mainloop.h b/alsamixer/mainloop.h
index 0cfc989..22317be 100644
--- a/alsamixer/mainloop.h
+++ b/alsamixer/mainloop.h
@@ -5,6 +5,6 @@
 
 void initialize_curses(bool use_color);
 void mainloop(void);
-void shutdown(void);
+void app_shutdown(void);
 
 #endif
-- 
1.7.7

++ 0022-alsactl-Initialize-Front-Speaker-etc.patch ++
From 9fa7cd2176a6be077f61c0f050f257beedf8b0c0 Mon Sep 17 00:00:00 2001
From: Takashi Iwai ti...@suse.de
Date: Fri, 4 Nov 2011 17:01:57 +0100
Subject: [PATCH] alsactl: 

commit alsa-utils for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package alsa-utils for openSUSE:12.1 checked 
in at 2011-11-07 14:06:44

Comparing /work/SRC/openSUSE:12.1/alsa-utils (Old)
 and  /work/SRC/openSUSE:12.1/.alsa-utils.new (New)


Package is alsa-utils, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/alsa-utils/alsa-utils.changes   2011-10-24 
12:27:06.0 +0200
+++ /work/SRC/openSUSE:12.1/.alsa-utils.new/alsa-utils.changes  2011-11-07 
14:06:50.0 +0100
@@ -1,0 +2,12 @@
+Fri Nov  4 17:27:05 CET 2011 - ti...@suse.de
+
+- Fix missing initialization of Surround, etc, as well as Front
+  Speaker, etc mixer elements in alsactl init
+
+---
+Wed Nov  2 17:38:32 CET 2011 - ti...@suse.de
+
+- Backport upstream fix:
+  - fix a crash of alsamixer with pulse plugin
+
+---

New:

  0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch
  0022-alsactl-Initialize-Front-Speaker-etc.patch



Other differences:
--
++ alsa-utils.spec ++
--- /var/tmp/diff_new_pack.TDGMht/_old  2011-11-07 14:06:50.0 +0100
+++ /var/tmp/diff_new_pack.TDGMht/_new  2011-11-07 14:06:50.0 +0100
@@ -55,6 +55,8 @@
 Patch18:0018-alsa-utils-amixer-Fix-SND_CTL_TLVT_DB_RANGE-handling.patch
 Patch19:0019-aplay-increase-channel-limit-to-256.patch
 Patch20:0020-fix-use-of-SED.patch
+Patch21:0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch
+Patch22:0022-alsactl-Initialize-Front-Speaker-etc.patch
 Patch99:alsa-utils-gettext-version-removal.diff
 Url:http://www.alsa-project.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -88,6 +90,8 @@
 %patch18 -p1
 %patch19 -p1
 %patch20 -p1
+%patch21 -p1
+%patch22 -p1
 %if %suse_version  1020
 %patch99 -p1
 %endif

++ 0021-alsamixer-Fix-X-win-related-crash-for-PulseAudio-plu.patch ++
From 4c09aaa5c13c2260fea57a89c47f88252da8a692 Mon Sep 17 00:00:00 2001
From: Jaroslav Kysela pe...@perex.cz
Date: Wed, 2 Nov 2011 17:27:47 +0100
Subject: [PATCH] alsamixer: Fix X-win related crash for PulseAudio plugin
 (bad linking)

A lot of reports that alsamixer crashes in X terminal when the PulseAudio
CTL plugin is activated were entered to the tracking systems.

I figured that there is a linking clash for the shutdown() function.
The shutdown() function in glibc is socket related, but the alsamixer code
redefines this function and appearently that under some linking
circumstances - which PA client invokes during the runtime dynamic linking
- the wrong function is called.

This patch, for safety, renames the shutdown() function from alsamixer
to app_shutdown(), but it might make sense to figure the real linking
culprit to avoid future surprises.

Signed-off-by: Jaroslav Kysela pe...@perex.cz
---
 alsamixer/cli.c  |2 +-
 alsamixer/die.c  |4 ++--
 alsamixer/mainloop.c |2 +-
 alsamixer/mainloop.h |2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/alsamixer/cli.c b/alsamixer/cli.c
index 3898196..bb4f030 100644
--- a/alsamixer/cli.c
+++ b/alsamixer/cli.c
@@ -130,6 +130,6 @@ int main(int argc, char *argv[])
 
mainloop();
 
-   shutdown();
+   app_shutdown();
return 0;
 }
diff --git a/alsamixer/die.c b/alsamixer/die.c
index dcd8536..899a501 100644
--- a/alsamixer/die.c
+++ b/alsamixer/die.c
@@ -26,14 +26,14 @@
 
 void fatal_error(const char *msg)
 {
-   shutdown();
+   app_shutdown();
fprintf(stderr, %s\n, msg);
exit(EXIT_FAILURE);
 }
 
 void fatal_alsa_error(const char *msg, int err)
 {
-   shutdown();
+   app_shutdown();
fprintf(stderr, _(%s: %s\n), msg, snd_strerror(err));
exit(EXIT_FAILURE);
 }
diff --git a/alsamixer/mainloop.c b/alsamixer/mainloop.c
index eddaf3b..dbfef9b 100644
--- a/alsamixer/mainloop.c
+++ b/alsamixer/mainloop.c
@@ -52,7 +52,7 @@ void initialize_curses(bool use_color)
snd_lib_error_set_handler(black_hole_error_handler);
 }
 
-void shutdown(void)
+void app_shutdown(void)
 {
if (curses_initialized) {
clear();
diff --git a/alsamixer/mainloop.h b/alsamixer/mainloop.h
index 0cfc989..22317be 100644
--- a/alsamixer/mainloop.h
+++ b/alsamixer/mainloop.h
@@ -5,6 +5,6 @@
 
 void initialize_curses(bool use_color);
 void mainloop(void);
-void shutdown(void);
+void app_shutdown(void);
 
 #endif
-- 
1.7.7

++ 0022-alsactl-Initialize-Front-Speaker-etc.patch ++
From 9fa7cd2176a6be077f61c0f050f257beedf8b0c0 Mon Sep 17 00:00:00 2001
From: Takashi Iwai ti...@suse.de
Date: Fri, 4 Nov 2011 17:01:57 +0100
Subject: [PATCH] alsactl: Initialize Front Speaker, 

commit amarok for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package amarok for openSUSE:Factory checked 
in at 2011-11-07 14:07:39

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


Package is amarok, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/amarok/amarok.changes2011-10-11 
16:41:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.amarok.new/amarok.changes   2011-11-07 
14:07:41.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov  6 17:49:24 UTC 2011 - ctri...@opensuse.org
+
+- Change ksuseinstall to support the gstreamer-backend instead of
+  the xine one (bnc#728476)
+
+---



Other differences:
--
++ ksuseinstall.diff ++
--- /var/tmp/diff_new_pack.iBg7nw/_old  2011-11-07 14:07:42.0 +0100
+++ /var/tmp/diff_new_pack.iBg7nw/_new  2011-11-07 14:07:42.0 +0100
@@ -50,7 +50,7 @@
  KRun::runCommand(installScript, 0);
  return true;
 +#else
-+if( KSUSEInstall::installCapabilities( QStringList()  
libxine1-codecs,
++if( KSUSEInstall::installCapabilities( QStringList()  
gstreamer-0_10-fluendo-mp3,
 +KSUSEInstall::FullInstallRequired, The::mainWindow()))
 +{ // TODO use the items
 +KGuiItem restartNowGuiItem( KStandardGuiItem::yes());

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



commit amarok for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package amarok for openSUSE:12.1 checked in 
at 2011-11-07 14:07:46

Comparing /work/SRC/openSUSE:12.1/amarok (Old)
 and  /work/SRC/openSUSE:12.1/.amarok.new (New)


Package is amarok, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1/amarok/amarok.changes   2011-10-24 
12:27:08.0 +0200
+++ /work/SRC/openSUSE:12.1/.amarok.new/amarok.changes  2011-11-07 
14:07:47.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov  6 17:49:24 UTC 2011 - ctri...@opensuse.org
+
+- Change ksuseinstall to support the gstreamer-backend instead of
+  the xine one (bnc#728476)
+
+---



Other differences:
--
++ ksuseinstall.diff ++
--- /var/tmp/diff_new_pack.aA8Q8T/_old  2011-11-07 14:07:47.0 +0100
+++ /var/tmp/diff_new_pack.aA8Q8T/_new  2011-11-07 14:07:47.0 +0100
@@ -50,7 +50,7 @@
  KRun::runCommand(installScript, 0);
  return true;
 +#else
-+if( KSUSEInstall::installCapabilities( QStringList()  
libxine1-codecs,
++if( KSUSEInstall::installCapabilities( QStringList()  
gstreamer-0_10-fluendo-mp3,
 +KSUSEInstall::FullInstallRequired, The::mainWindow()))
 +{ // TODO use the items
 +KGuiItem restartNowGuiItem( KStandardGuiItem::yes());

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



commit file for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2011-11-07 14:14:51

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


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

Changes:

--- /work/SRC/openSUSE:Factory/file/file.changes2011-10-03 
09:17:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.file.new/file.changes   2011-11-07 
14:14:52.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  5 18:37:25 UTC 2011 - crrodrig...@opensuse.org
+
+- libmagic: use O_CLOEXEC where needed, as there is no warranty 
+  that calling applications will not fork() and we end up leaking 
+  file descriptors to their child processes.
+
+---

New:

  file-ocloexec.patch



Other differences:
--
++ file.spec ++
--- /var/tmp/diff_new_pack.kBw5zj/_old  2011-11-07 14:14:53.0 +0100
+++ /var/tmp/diff_new_pack.kBw5zj/_new  2011-11-07 14:14:53.0 +0100
@@ -58,6 +58,7 @@
 Patch30:file-5.07-visibility.patch
 Patch31:file-5.07-biorad.dif
 Patch32:file-5.07-clicfs.dif
+Patch33:file-ocloexec.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _miscdir%{_datadir}/misc
@@ -107,6 +108,7 @@
 %patch31 -p0 -b .biorad
 %patch32 -p0 -b .clicfs
 %patch -b .0
+%patch33
 
 %build
 export LANG=POSIX
@@ -115,7 +117,7 @@
 rm -f ltcf-c.sh ltconfig ltmain.sh
 autoreconf -fiv
 CFLAGS=$RPM_OPT_FLAGS -DHOWMANY=69632
-%configure --datadir=%{_miscdir} --disable-static --with-pic 
--enable-fsect-man5
+%configure --disable-silent-rules --datadir=%{_miscdir} --disable-static 
--with-pic --enable-fsect-man5
 %{__make} %{?_smp_mflags} pkgdatadir='$(datadir)'
 %if 0%{?build_python_bindings:1}
 pushd python

++ file-ocloexec.patch ++
--- src/compress.c.orig
+++ src/compress.c
@@ -256,7 +256,7 @@ file_pipe2file(struct magic_set *ms, int
errno = r;
}
 #else
-   tfd = mkstemp(buf);
+   tfd = mkostemp(buf, O_CLOEXEC);
te = errno;
(void)unlink(buf);
errno = te;
--- src/apprentice.c.orig
+++ src/apprentice.c
@@ -676,7 +676,7 @@ load_1(struct magic_set *ms, int action,
char *line = NULL;
ssize_t len;
 
-   FILE *f = fopen(ms-file = fn, r);
+   FILE *f = fopen(ms-file = fn, re);
if (f == NULL) {
if (errno != ENOENT)
file_error(ms, errno, cannot read magic file `%s',
@@ -2226,7 +2226,7 @@ apprentice_map(struct magic_set *ms, str
if (dbname == NULL)
goto error2;
 
-   if ((fd = open(dbname, O_RDONLY|O_BINARY)) == -1)
+   if ((fd = open(dbname, O_RDONLY|O_BINARY|O_CLOEXEC)) == -1)
goto error2;
 
if (fstat(fd, st) == -1) {
@@ -2324,7 +2324,7 @@ apprentice_compile(struct magic_set *ms,
if (dbname == NULL) 
goto out;
 
-   if ((fd = open(dbname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0644)) == -1) 
{
+   if ((fd = open(dbname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY|O_CLOEXEC, 
0644)) == -1) {
file_error(ms, errno, cannot open `%s', dbname);
goto out;
}
--- src/magic.c.orig
+++ src/magic.c
@@ -411,7 +411,7 @@ file_or_fd(struct magic_set *ms, const c
if (fstat(fd, sb) == 0  S_ISFIFO(sb.st_mode))
ispipe = 1;
} else {
-   int flags = O_RDONLY|O_BINARY;
+   int flags = O_RDONLY|O_BINARY|O_CLOEXEC;
 
if (stat(inname, sb) == 0  S_ISFIFO(sb.st_mode)) {
 #ifdef O_NONBLOCK
--- src/file.c.orig
+++ src/file.c
@@ -385,7 +385,7 @@ unwrap(struct magic_set *ms, const char
f = stdin;
wid = 1;
} else {
-   if ((f = fopen(fn, r)) == NULL) {
+   if ((f = fopen(fn, re)) == NULL) {
(void)fprintf(stderr, %s: Cannot open `%s' (%s).\n,
progname, fn, strerror(errno));
return 1;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit grantlee for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package grantlee for openSUSE:Factory 
checked in at 2011-11-07 14:17:32

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


Package is grantlee, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/grantlee/grantlee.changes2011-09-23 
02:01:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.grantlee.new/grantlee.changes   2011-11-07 
14:17:36.0 +0100
@@ -1,0 +2,14 @@
+Sat Nov  5 17:17:55 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to version 0.2.0:
+  * Fix build on several platforms including mac, solaris and bsds.
+  * Gather coverage data in release builds instead of debug builds.
+  * Ensure that unit tests can be run and pass before installation.
+  * Ensure that unit tests pass in multiple locales.
+  * Fix several compiler warnings.
+  * Add options for generating coverage data using testcocoon.
+- Spec file updates:
+  * Renamed License: to LGPL-2.1+.
+  * Spec-cleaner run.
+
+---

Old:

  grantlee-0.1.9.tar.gz

New:

  grantlee-0.2.0.tar.gz



Other differences:
--
++ grantlee.spec ++
--- /var/tmp/diff_new_pack.8Tthb2/_old  2011-11-07 14:17:37.0 +0100
+++ /var/tmp/diff_new_pack.8Tthb2/_new  2011-11-07 14:17:37.0 +0100
@@ -15,30 +15,29 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   grantlee
-Version:0.1.9
+Version:0.2.0
 Release:2
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Qt string template library
 Url:http://grantlee.org/
 Group:  System/Libraries
 Source0:http://downloads.grantlee.org/%{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake
 BuildRequires:  doxygen
 BuildRequires:  kde4-filesystem
 BuildRequires:  lcov
 BuildRequires:  libqt4-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Grantlee is a string template engine based on the Django template system and
 written in Qt.
 
 %package devel
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Include Files and Libraries Mandatory for Development with 
Grantlee
 Group:  Development/Libraries/C and C++
 Requires:   libgrantlee_core0 = %{version}
@@ -49,7 +48,7 @@
 grantlee.
 
 %package -n libgrantlee_core0
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Qt string template library
 Group:  System/Libraries
 # grantlee was last used in openSUSE 11.4 (grantlee-0.1.7)
@@ -61,7 +60,7 @@
 written in Qt.
 
 %package -n libgrantlee_gui0
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Qt string template library
 Group:  System/Libraries
 # grantlee was last used in openSUSE 11.4 (grantlee-0.1.7)
@@ -103,15 +102,12 @@
 %{_libdir}/libgrantlee_core.so
 %{_libdir}/libgrantlee_gui.so
 %dir %{_libdir}/cmake
-%dir %{_libdir}/cmake/grantlee
-%{_libdir}/cmake/grantlee/*
+%{_libdir}/cmake/grantlee/
 
 %files -n libgrantlee_core0
 %defattr(-,root,root,-)
 %{_libdir}/libgrantlee_core.so.0*
-%dir %{_libdir}/grantlee
-%dir %{_libdir}/grantlee/0.1
-%{_libdir}/grantlee/0.1/grantlee_*.so
+%{_libdir}/grantlee/
 
 %files -n libgrantlee_gui0
 %defattr(-,root,root,-)

++ grantlee-0.1.9.tar.gz - grantlee-0.2.0.tar.gz ++
 3263 lines of diff (skipped)

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



commit hplip for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package hplip for openSUSE:Factory checked 
in at 2011-11-07 14:17:53

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


Package is hplip, Maintainer is jsm...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/hplip/hplip.changes  2011-10-19 
13:45:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.hplip.new/hplip.changes 2011-11-07 
14:18:07.0 +0100
@@ -1,0 +2,18 @@
+Fri Oct 28 06:08:53 UTC 2011 - badshah...@gmail.com
+
+- Install icons of various sizes in hicolor icon directory for
+  better appearance in gnome-shell (bnc#713902).
+- Add hicolor-icon-theme BuildRequires to own the hicolor icon
+  directory correctly and install icons in there
+- Use appropriate icon theme macros in post scripts
+- Modified hplip.desktop to use these hicolor icons
+- In hplip.desktop replace the category Settings by System to
+  make it appear under the correct group System Tools rather
+  than Others in desktop menus.
+
+---
+Sat Oct 15 04:47:01 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---



Other differences:
--
++ hplip.spec ++
--- /var/tmp/diff_new_pack.QbkqYR/_old  2011-11-07 14:18:12.0 +0100
+++ /var/tmp/diff_new_pack.QbkqYR/_new  2011-11-07 14:18:12.0 +0100
@@ -23,11 +23,13 @@
 # link target doesn't exist (neither in build root nor in installed system):
 # /usr/lib/cups/filter/foomatic-rip-hplip - /usr/bin/foomatic-rip
 BuildRequires:  cups cups-devel dbus-1-devel fdupes foomatic-filters 
libdrm-devel libgphoto2-devel libjpeg-devel libqt4-devel libusb-devel 
net-snmp-devel pkgconfig python-devel python-openssl python-qt4 python-xml 
readline-devel update-desktop-files
+BuildRequires:  libtool
 %if 0%{?suse_version}  1130
 BuildRequires:  sane-backends-devel
 %else
 BuildRequires:  sane-backends
 %endif
+BuildRequires:  hicolor-icon-theme
 Summary:HP's Printing, Scanning, and Faxing Software
 # HPLIP has reached 1.0 status. With this release a date encoded revision 
number is used:
 # x.y.m : x = major release number, y = year (eg: 6 = 2006), m = month (eg: 6a 
= second release in June)
@@ -419,13 +421,15 @@
 install -m 755 %{SOURCE101} %{buildroot}%{_bindir}/hp-toolbox.wrapper
 # Install /usr/share/hplip/data/images/64x64/hp_logo.png as desktop icon file
 # because it is used in the hplip.desktop.in and hplip-systray.desktop.in 
sources:
-install -d %{buildroot}%{_datadir}/pixmaps
-install -m 644 %{buildroot}%{_datadir}/%{name}/data/images/64x64/hp_logo.png 
%{buildroot}%{_datadir}/pixmaps/HPmenu.png
+install -D -m 644 
%{buildroot}%{_datadir}/%{name}/data/images/32x32/hp_logo.png 
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps/HPmenu.png
+install -D -m 644 
%{buildroot}%{_datadir}/%{name}/data/images/64x64/hp_logo.png 
%%{buildroot}%{_datadir}/icons/hicolor/64x64/apps/HPmenu.png
+install -D -m 644 
%{buildroot}%{_datadir}/%{name}/data/images/128x128/hp_logo.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/HPmenu.png
+install -D -m 644 
%{buildroot}%{_datadir}/%{name}/data/images/256x256/hp_logo.png 
%{buildroot}%{_datadir}/icons/hicolor/256x256/apps/HPmenu.png
 # Set up and install the desktop menue entry stuff using 
Categories=System;Monitor;
 # and remove HP's hplip.desktop and hplip-systray.desktop files before because 
we use Source100:
 # (additionally there is/was a typo in HP's install because of the trailing 
blank at 'applications ')
 rm %{buildroot}%{_datadir}/applications/%{name}*.desktop
-%suse_update_desktop_file -i %{name} Settings HardwareSettings Printing
+%suse_update_desktop_file -i %{name} System HardwareSettings Printing
 # Let suse_update_desktop_file add X-SuSE-translate key to 
/etc/xdg/autostart/hplip-systray.desktop
 # so that we can update its translations with translation-only packages.
 %suse_update_desktop_file %{buildroot}/etc/xdg/autostart/hplip-systray.desktop
@@ -447,6 +451,11 @@
 %fdupes -s %{buildroot}
 
 %post
+%if 0%{?suse_version}  1130
+%icon_theme_cache_post
+%else
+gtk-update-icon-cache %{_datadir}/icons/hicolor || true
+%endif
 /sbin/ldconfig
 exit 0
 
@@ -476,6 +485,11 @@
 exit 0
 
 %postun
+%if 0%{?suse_version}  1130
+%icon_theme_cache_postun
+%else
+gtk-update-icon-cache %{_datadir}/icons/hicolor || true
+%endif
 /sbin/ldconfig
 # If the package was removed (but not if it was updated)
 # then remove the hpaio lines in /etc/sane.d/dll.conf.
@@ -555,7 +569,7 @@
 /var/lib/hp/hplip.state
 %doc %{_defaultdocdir}/%{name}/
 %{_bindir}/hp-toolbox.wrapper
-%{_datadir}/pixmaps/HPmenu.png

commit kaffeine for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package kaffeine for openSUSE:Factory 
checked in at 2011-11-07 14:18:07

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


Package is kaffeine, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kaffeine/kaffeine.changes2011-10-11 
16:55:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kaffeine.new/kaffeine.changes   2011-11-07 
14:18:12.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 27 00:10:17 UTC 2011 - fi...@opensuse.org
+
+- Desktop menu entry moved to Video Player and TV.
+
+---



Other differences:
--
++ kaffeine.spec ++
--- /var/tmp/diff_new_pack.iTdDoN/_old  2011-11-07 14:18:13.0 +0100
+++ /var/tmp/diff_new_pack.iTdDoN/_new  2011-11-07 14:18:13.0 +0100
@@ -81,7 +81,8 @@
 popd
 
 %if 0%{?suse_version}
-%suse_update_desktop_file %{name} Qt KDE AudioVideo Player
+# place desktop entry in video and tv
+%suse_update_desktop_file -r %{name} Qt KDE AudioVideo Video Player TV
 %endif
 
 %kde_post_install

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



commit kiwi for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2011-11-07 14:18:33

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2011-11-02 
11:57:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2011-11-07 
14:18:38.0 +0100
@@ -1,0 +2,65 @@
+Thu Nov  3 09:51:50 CET 2011 - m...@suse.de
+  
+- v4.98.13 released
+  
+---
+Thu Nov  3 09:41:38 CET 2011 - m...@suse.de
+  
+- setupDefaultGateway uses route but route was not part of the initrd
+  
+---
+Thu Nov  3 09:38:04 CET 2011 - m...@suse.de
+  
+- fdasdGetPartitionID uses awk but awk was not part of the initrd
+  
+---
+Thu Nov  3 09:14:43 CET 2011 - m...@suse.de
+  
+- moved hook calls pre/postpartition outside of the block
+  which allows to skip the partition code via the hook
+  script
+  
+---
+Wed Nov  2 12:10:29 CET 2011 - m...@suse.de
+  
+- fixed repartition code to create an aligned table (bnc #721580)
+  
+---
+Mon Oct 31 16:49:05 CET 2011 - m...@suse.de
+  
+- setup PXE_IFACE interface only if PXE_IFACE exists in the
+  environment. When using zPXE this variable does not exist
+  
+---
+Mon Oct 31 16:23:18 CET 2011 - m...@suse.de
+  
+- fixed setupNetworkStatic to write correct interface file
+  
+---
+Mon Oct 31 16:13:05 CET 2011 - m...@suse.de
+  
+- removed static inittab and securetty overlay files from s390
+  JeOS template. The setup is done by setupConsole() in preinit
+  
+---
+Mon Oct 31 16:09:35 CET 2011 - m...@suse.de
+  
+- call runPreinitServices in s390 netboot suse-preinit
+  
+---
+Mon Oct 31 15:48:09 CET 2011 - m...@suse.de
+  
+- turn pxe PART info tranformation functions into a generic
+  and a fdasd specific function
+  
+---
+Mon Oct 31 15:38:51 CET 2011 - m...@suse.de
+  
+- added pxePartitionInputS390 suitable for use with fdasd
+  
+---
+Mon Oct 31 15:04:13 CET 2011 - m...@suse.de
+  
+- added pxeRaidPartitionInputS390 suitable for use with fdasd
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.EKvRu0/_old  2011-11-07 14:18:40.0 +0100
+++ /var/tmp/diff_new_pack.EKvRu0/_new  2011-11-07 14:18:40.0 +0100
@@ -69,7 +69,7 @@
 %endif
 %endif
 Summary:OpenSuSE - KIWI Image System
-Version:4.98.12
+Version:4.98.13
 Release:1
 Group:  System/Management
 License:GPLv2

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

++ kiwi-repo.tar.bz2 ++

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2011-10-31 10:14:36.0 +0100
+++ new/kiwi/.revision  2011-11-03 09:52:25.0 +0100
@@ -1 +1 @@
-98a56eb39d341590b41e83b10693cbe34472d7af
+1492b1caec24fa01e08a7c35fabdf1aaccae7b7e
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIConfig.sh 
new/kiwi/modules/KIWIConfig.sh
--- old/kiwi/modules/KIWIConfig.sh  2011-10-28 13:59:39.0 +0200
+++ new/kiwi/modules/KIWIConfig.sh  2011-11-03 09:52:29.0 +0100
@@ -986,6 +986,7 @@
qeth_configure fdasd mkdosfs egrep mkfs.xfs mdadm yes fdisk
startproc zfcp_host_configure zfcp_disk_configure vgrename
kpartx_id mpath_id dmraid dmevent_tool which mpath_wait seq
+   route

tools=$tools $@
for path in /sbin /usr/sbin /usr/bin /bin;do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm 2011-10-31 10:25:04.0 +0100
+++ 

commit libdvbpsi for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package libdvbpsi for openSUSE:Factory 
checked in at 2011-11-07 14:19:00

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libdvbpsi/libdvbpsi.changes  2011-09-23 
02:08:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.libdvbpsi.new/libdvbpsi.changes 2011-11-07 
14:19:01.0 +0100
@@ -1,0 +2,12 @@
+Thu Nov 03 23:33:42 UTC 2011 - pascal.ble...@opensuse.org
+
+- use proper filenames in files section, to make the build fail if the
+  SONAME changes
+
+- update to 0.2.2:
+  * revert regression introduced by ignore initial discontinuity commit
+
+- changes from 0.2.1:
+  * ignore initial discontinuity
+
+---

Old:

  libdvbpsi-0.2.0.tar.bz2

New:

  libdvbpsi-0.2.2.tar.bz2



Other differences:
--
++ libdvbpsi.spec ++
--- /var/tmp/diff_new_pack.uLttCE/_old  2011-11-07 14:19:02.0 +0100
+++ /var/tmp/diff_new_pack.uLttCE/_new  2011-11-07 14:19:02.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   libdvbpsi
-Version:0.2.0
+Version:0.2.2
 Release:1
 License:LGPLv2.1+
 Summary:Library for Decoding and Generating MPEG TS and DVB PSI Tables
@@ -87,13 +87,14 @@
 
 %files -n libdvbpsi7
 %defattr (-, root, root)
-%{_libdir}/*.so.*
+%{_libdir}/libdvbpsi.so.7
+%{_libdir}/libdvbpsi.so.7.*
 
 %files devel
 %defattr (-, root, root)
 %doc AUTHORS COPYING ChangeLog INSTALL NEWS README
-%{_libdir}/*.so
-%{_includedir}/*
+%{_libdir}/libdvbpsi.so
+%{_includedir}/dvbpsi
 %{_libdir}/pkgconfig/libdvbpsi.pc
 
 %changelog

++ libdvbpsi-0.2.0.tar.bz2 - libdvbpsi-0.2.2.tar.bz2 ++
 9970 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libdvbpsi-0.2.0/NEWS new/libdvbpsi-0.2.2/NEWS
--- old/libdvbpsi-0.2.0/NEWS2011-04-04 16:34:06.0 +0200
+++ new/libdvbpsi-0.2.2/NEWS2011-11-03 16:58:33.0 +0100
@@ -1,5 +1,18 @@
 $Id$
 
+Changes between 0.2.1 and 0.2.2:
+
+
+  * revert regression introduced by ignore initial discontinuity commit 
(commit-id: d565a849ad0191ed14db018546c71eb52d47a741).
+  * do not use -no-undefined linkerflag on *BSD systems
+
+Changes between 0.2.0 and 0.2.1:
+
+
+  * ignore initial discontinuity
+  * Build fixes for BSD builds
+  * Build fixes for MSYS builds
+
 Changes between 0.1.7 and 0.2.0:
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libdvbpsi-0.2.0/TODO new/libdvbpsi-0.2.2/TODO
--- old/libdvbpsi-0.2.0/TODO2011-03-25 11:11:44.0 +0100
+++ new/libdvbpsi-0.2.2/TODO2011-10-23 13:27:27.0 +0200
@@ -1,10 +1,24 @@
 TODO:
-- change int's used as bool into bools
-- Synchronize all dvbpsi_GatherXXXSections() sanity checks
-- Check memleak in dvbpsi_GatherXXXSections() functions with 
dvbpsi_DeletePSISections(p_section) usages,
-  I think all tables might be leaking memory of p_secion pointers now
-- unify dvbpsi_descriptor_t functions and message callback
-- make dvbpsi_NewXXX() and dvbpsi_DeleteXXX() real functions (maybe)?
-- use dvbpsi_NewXXX() and dvbpsi_DeleteXXX() in dvbpsi_GatherXXXSections() 
functions
-- write SIS Command Decoders
+- Document howto change Old API to New API
+- use dvbpsi_NewBAT/CAT/XXX() and dvbpsi_DeleteXXX() in 
dvbpsi_GatherXXXSections() functions
+- fix demux_subdec_t and dvbpsi_decoder_t discrepancy
+- require one handle to libdvbpsi and chain table decoders
+- (optional) highlevel TS handler functions (eg: dvbpsi_ts_* )
+- (optional) make use of BitStream header files to minimize rework
 - find solution for SIS descriptors decoding, since they use the same tag-id 
as PMT descriptors do.
+  Separate DVB/ITU and SCTE descriptors in separate directories.
+  For instance: descriptors/dvb
+descriptors/scte
+- write SIS Command Decoders
+
+ENHANCEMENTS:
+- dvbinfo: record/caculate distance between audio and video in bytes AND time
+- dvbinfo: new modular design
+ input 

commit liberation-fonts for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package liberation-fonts for 
openSUSE:Factory checked in at 2011-11-07 14:19:59

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


Package is liberation-fonts, Maintainer is jpal...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/liberation-fonts/liberation-fonts.changes
2011-09-23 02:08:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.liberation-fonts.new/liberation-fonts.changes   
2011-11-07 14:20:01.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov  2 20:53:54 UTC 2011 - sree...@suse.com
+
+- Fix license - bnc#725370
+
+---



Other differences:
--
++ liberation-fonts.spec ++
--- /var/tmp/diff_new_pack.Ve4gVQ/_old  2011-11-07 14:20:04.0 +0100
+++ /var/tmp/diff_new_pack.Ve4gVQ/_new  2011-11-07 14:20:04.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package liberation-fonts (Version 1.06.0.20100721)
+# spec file for package liberation-fonts
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -20,7 +20,7 @@
 
 Name:   liberation-fonts
 %definettf_fontdir /usr/share/fonts/truetype
-License:GPLv2+
+License:GPL-2.0 with exceptions ...; GPL-2.0 with exceptions
 Group:  System/X11/Fonts
 AutoReqProv:on
 PreReq: %suseconfig_fonts_prereq

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



commit liberation-fonts for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package liberation-fonts for openSUSE:12.1 
checked in at 2011-11-07 14:20:07

Comparing /work/SRC/openSUSE:12.1/liberation-fonts (Old)
 and  /work/SRC/openSUSE:12.1/.liberation-fonts.new (New)


Package is liberation-fonts, Maintainer is jpal...@novell.com

Changes:

--- /work/SRC/openSUSE:12.1/liberation-fonts/liberation-fonts.changes   
2011-10-24 13:00:42.0 +0200
+++ /work/SRC/openSUSE:12.1/.liberation-fonts.new/liberation-fonts.changes  
2011-11-07 14:20:08.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov  2 20:53:54 UTC 2011 - sree...@suse.com
+
+- Fix license - bnc#725370
+
+---



Other differences:
--
++ liberation-fonts.spec ++
--- /var/tmp/diff_new_pack.Gl8h44/_old  2011-11-07 14:20:08.0 +0100
+++ /var/tmp/diff_new_pack.Gl8h44/_new  2011-11-07 14:20:08.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package liberation-fonts (Version 1.06.0.20100721)
+# spec file for package liberation-fonts
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -20,7 +20,7 @@
 
 Name:   liberation-fonts
 %definettf_fontdir /usr/share/fonts/truetype
-License:GPLv2+
+License:GPL-2.0 with exceptions ...; GPL-2.0 with exceptions
 Group:  System/X11/Fonts
 AutoReqProv:on
 PreReq: %suseconfig_fonts_prereq

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



commit libservicelog for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package libservicelog for openSUSE:Factory 
checked in at 2011-11-07 14:20:35

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


Package is libservicelog, Maintainer is jloe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libservicelog/libservicelog.changes  
2011-09-23 02:10:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.libservicelog.new/libservicelog.changes 
2011-11-07 14:20:37.0 +0100
@@ -1,0 +2,12 @@
+Wed Nov  2 12:31:42 UTC 2011 - dval...@suse.com
+
+- update to 1.1.11
+  - new build requires librtas-devel pkg-config
+  - reworked patches
+  - Drop libservicelog.warnings.patch,
+   libservicelog.sqlite-include.patch
+   libservicelog-sqlite_fixes.patch 
+  - Fix package description typo
+  - ppc,ppc64 exclusive package as it is requires librtas
+
+---

Old:

  libservicelog-1.0.1.tar.bz2
  libservicelog-sqlite_fixes.patch
  libservicelog.sqlite-include.patch
  libservicelog.warnings.patch

New:

  libservicelog-1.1.11.tar.bz2



Other differences:
--
++ libservicelog.spec ++
--- /var/tmp/diff_new_pack.xoWjyY/_old  2011-11-07 14:21:03.0 +0100
+++ /var/tmp/diff_new_pack.xoWjyY/_new  2011-11-07 14:21:03.0 +0100
@@ -18,27 +18,25 @@
 
 
 Name:   libservicelog
-Version:1.0.1
-Release:9
+Version:1.1.11
+Release:1
 Summary:Servicelog Database and Library
 Requires:   libservicelog-library
-BuildRequires:  sqlite-devel
+BuildRequires:  sqlite3-devel librtas-devel pkg-config
 Group:  System/Libraries
 License:LGPLv2.0+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://linux-diag.sourceforge.net/servicelog/ 
+ExclusiveArch: ppc ppc64
 Source0:
http://downloads.sourceforge.net/linux-diag/%{name}-%{version}.tar.bz2
 Source1:baselibs.conf
 Source2:libservicelog-rpmlintrc
 Patch0: libservicelog.install.patch
-Patch1: libservicelog.warnings.patch
-Patch2: libservicelog.sqlite-include.patch
-Patch3: libservicelog-sqlite_fixes.patch
 Patch4: libservicelog-pkgconfig.patch
 Patch5: libservicelog-printf_types.patch
 
 %description
-The libservicelgo package contains a library to create and maintain a
+The libservicelog package contains a library to create and maintain a
 database for storing events related to system service. This database
 allows for the logging of serviceable and informational events, and for
 the logging of service procedures that have been performed upon the
@@ -51,14 +49,14 @@
 Mike Strosaker stros...@austin.ibm.com
 Nathan Fontenot nf...@austin.ibm.com
 
-%package -n libservicelog-1_0-1
+%package -n libservicelog-1_1-1
 License:LGPLv2.0+
 Summary:Servicelog Database and Library
 Group:  System/Libraries
 Provides:   libservicelog-library
 
-%description  -n libservicelog-1_0-1
-The libservicelgo package contains a library to create and maintain a
+%description  -n libservicelog-1_1-1
+The libservicelog package contains a library to create and maintain a
 database for storing events related to system service. This database
 allows for the logging of serviceable and informational events, and for
 the logging of service procedures that have been performed upon the
@@ -76,6 +74,7 @@
 Summary:Development files for libservicelog
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version} glibc-devel
+Requires:  libservicelog-1_1-1
 
 %descriptiondevel
 Contains header files for building with libservicelog.
@@ -89,10 +88,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
+%patch0 
 %patch4
 %patch5
 
@@ -111,9 +107,9 @@
 %pre
 /usr/sbin/groupadd -r service || echo groupadd service failed
 
-%post  -n libservicelog-1_0-1 -p /sbin/ldconfig
+%post  -n libservicelog-1_1-1 -p /sbin/ldconfig
 
-%postun  -n libservicelog-1_0-1 -p /sbin/ldconfig
+%postun  -n libservicelog-1_1-1 -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root,-)
@@ -121,7 +117,7 @@
 %attr( 754, root, service ) %dir /var/lib/servicelog
 %attr( 644, root, service ) /var/lib/servicelog/servicelog.db
 
-%files -n libservicelog-1_0-1
+%files -n libservicelog-1_1-1
 %defattr(-,root,root,-)
 %{_libdir}/lib*.so.*
 # dlopen object

++ libservicelog-1.0.1.tar.bz2 - libservicelog-1.1.11.tar.bz2 ++
 106875 lines of diff (skipped)

++ libservicelog-pkgconfig.patch ++
--- /var/tmp/diff_new_pack.xoWjyY/_old  2011-11-07 14:21:03.0 +0100
+++ /var/tmp/diff_new_pack.xoWjyY/_new  2011-11-07 

commit licq for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package licq for openSUSE:Factory checked in 
at 2011-11-07 14:20:52

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


Package is licq, Maintainer is llu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/licq/licq.changes2011-09-23 
02:11:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.licq.new/licq.changes   2011-11-07 
14:21:04.0 +0100
@@ -1,0 +2,52 @@
+Thu Nov  3 12:03:31 UTC 2011 - csten...@suse.com
+
+- updated to version 1.6.0
+  * Reduce number of reads and writes of config files
+  * Let GUI run in main thread on Mac OS X
+  * Build: Improved detection of libcdk and X11 scrnsaver
+  * Plugin API: Replace ICQ specific constants
+  * Plugin API: Replace exported plugin symbols with a single struct
+  * Plugin API: Define values for all enums to reduce future ABI breaking
+  * ICQ: Keep track of when contacts went away
+  * ICQ: Add detection of several other user clients
+  * ICQ: Fix owner info to send correct first name and last name
+  * ICQ: Fix several encoding problems with unicode messages
+  * Jabber: Add support to connect through HTTP proxy
+  * Jabber: Keep track of when contacts went online
+  * Jabber: Set group membership when adding contact
+  * MSN: Add user client detection
+  * RMS: Authentication can be configured instead of always using ICQ account
+  * Qt4-Gui: Add global shortcut to show/hide main window
+  * Qt4-Gui: Show authorization request dialog when adding a contact
+  * Qt4-Gui: Option to show recent messages based on message age
+  * Qt4-Gui: Server address can be configured for all accounts
+  * Qt4-Gui: Don't show online time if it isn't known
+  * Qt4-Gui: Fix multiple recipients to work with URLs and contacts
+  * Qt4-Gui: Fix user alias to be saved after edit from contact list
+  * Qt4-Gui: Fix auto-popup to not steal focus between tabs/windows
+
+---
+Mon Jul  4 18:27:36 CEST 2011 - csten...@suse.de
+
+- updated to version 1.5.1
+  * Package GTest with Licq to guarantee same version as GMock
+  * Owners can no longer be removed when online to prevent contact
+list problems
+  * Build: Various fixes to reduce problems when building
+  * AutoReply: Command line parameters -d and -e were ignored
+  * ICQ: Buddy icons would fail to update for some contacts retrying
+every minute
+  * Jabber: Use full name for contact if there is no nickname set
+  * Jabber: Get away message for contacts
+  * Jabber: Keep track of contacts pending for authorization
+  * OSD: Default config would be written to file without path
+  * RMS: Plugin could crash if bad parameters were given to some commands
+  * Qt4-Gui: Ignored users were displayed in All Users list
+  * Qt4-Gui: Several menu items and buttons were missing ... after caption
+  * Qt4-Gui: Main window would appear under other windows on some systems
+  * Qt4-Gui: GUI could hang when toggling Send Through Server button
+  * Qt4-Gui: Show keyboard shortcuts in the user popup menu from
+contact list
+- removed fix-cmake.diff
+
+---

Old:

  fix-cmake.diff
  licq-1.5.0.tar.bz2

New:

  licq-1.6.0.tar.bz2



Other differences:
--
++ licq.spec ++
--- /var/tmp/diff_new_pack.njvxmU/_old  2011-11-07 14:21:14.0 +0100
+++ /var/tmp/diff_new_pack.njvxmU/_new  2011-11-07 14:21:14.0 +0100
@@ -23,13 +23,12 @@
 License:GPLv2+
 Group:  Productivity/Networking/ICQ
 AutoReqProv:on
-Version:1.5.0
-Release:3
+Version:1.6.0
+Release:1
 Summary:Linux ICQ Client
 Source: %{name}-%{version}.tar.bz2
 Source2:licq.png
 Recommends: sox
-Patch1: fix-cmake.diff
 Patch2: licq-1.5.0-remove_desktop_file.patch
 Url:http://www.licq.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -95,7 +94,6 @@
 
 %prep
 %setup
-%patch1
 %patch2 -p1
 
 # disabled for now (deps missing)

++ licq-1.5.0.tar.bz2 - licq-1.6.0.tar.bz2 ++
 358771 lines of diff (skipped)


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



commit lsvpd for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package lsvpd for openSUSE:Factory checked 
in at 2011-11-07 14:21:15

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


Package is lsvpd, Maintainer is jloe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lsvpd/lsvpd.changes  2011-09-23 
02:12:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.lsvpd.new/lsvpd.changes 2011-11-07 
14:21:17.0 +0100
@@ -1,0 +2,21 @@
+Wed Nov  2 15:54:13 UTC 2011 - dval...@suse.com
+
+- update to 1.6.11
+- Fixed the way we find devices in /sys.  Many 
+   non-device directories were being identified as devices.
+- Minor update: Changed default lsvpd output to use 
+   Size instead of SZ for DIMM size output.  This was done 
+   to conform to the way AIX/lsvpd outputs this VPD
+- Minor update: Fixed location code discovery for 
+   storage devices. Previously, a loc-code was generated simply 
+   using the device node within the /proc/device-tree/devices 
+   file-system.  This behavior caused usysident to get a 
+   listing of invalid loc-codes.  This patch is a short-term 
+   fix, causing each port device to use the adapters loc-code.  
+   Longer-term fix will be to take this loc-code and add on 
+   port-specific modifiers queried from the device
+- Fixed the way we find devices in /sys.  Many 
+   non-device directories were being identified as devices. 
+- Switch to ExclusiveArch
+
+---

Old:

  lsvpd-1.6.5.tar.bz2
  lsvpd.cxx-includes.patch

New:

  lsvpd-1.6.11.tar.bz2



Other differences:
--
++ lsvpd.spec ++
--- /var/tmp/diff_new_pack.G9pZcp/_old  2011-11-07 14:21:19.0 +0100
+++ /var/tmp/diff_new_pack.G9pZcp/_new  2011-11-07 14:21:19.0 +0100
@@ -22,14 +22,12 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libvpd2-devel
 BuildRequires:  sg3_utils-devel
-BuildRequires:  zlib-devel
-%ifarch ppc ppc64
-BuildRequires:  librtas
-%endif
+BuildRequires:  zlib-devel librtas-devel
+ExclusiveArch:  ppc ppc64
 Url:http://sourceforge.net/projects/linux-diag/
 Summary:VPD Hardware Inventory Utilities for Linux
-Version:1.6.5
-Release:42
+Version:1.6.11
+Release:1
 License:GPLv2+
 Group:  System/Monitoring
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,7 +35,6 @@
 Requires:   /bin/sed
 Source0:%{name}-%{version}.tar.bz2
 Patch2: sgutils.patch
-Patch3: lsvpd.cxx-includes.patch   
 
 %description
 The lsvpd package contains both the lsvpd, lscfg and lsmcode commands.
@@ -57,8 +54,7 @@
 
 %prep
 %setup -q
-%patch2 -p0
-%patch3 -p1
+%patch2 
 
 %build
 autoreconf -fi

++ lsvpd-1.6.5.tar.bz2 - lsvpd-1.6.11.tar.bz2 ++
 29501 lines of diff (skipped)

++ sgutils.patch ++
--- /var/tmp/diff_new_pack.G9pZcp/_old  2011-11-07 14:21:19.0 +0100
+++ /var/tmp/diff_new_pack.G9pZcp/_new  2011-11-07 14:21:19.0 +0100
@@ -1,26 +1,11 @@
-Index: Makefile.in
-===
 Makefile.in.orig
-+++ Makefile.in
-@@ -239,7 +239,7 @@ lsvio_SOURCES = src/output/lsvio.cpp \
+--- Makefile.am.orig   2011-11-02 16:51:49.0 +0100
 Makefile.am2011-11-02 17:11:27.0 +0100
+@@ -40,7 +40,7 @@
  lsmcode_SOURCES = src/output/lsmcode.cpp \
$(update_h_files)
  
--vpdupdate_LDADD = -L. -lz -lstdc++ -lvpd_cxx -lsgutils
-+vpdupdate_LDADD = -L. -lz -lstdc++ -lvpd_cxx -lsgutils2
+-vpdupdate_LDADD = -lz -lstdc++ -lvpd_cxx -lsgutils
++vpdupdate_LDADD = -lz -lstdc++ -lvpd_cxx -lsgutils2
  vpdupdate_LDFLAGS = -Wall
- lsvpd_LDADD = -L. -lz -lstdc++ -lvpd_cxx
- lsvpd_LDFLAGS = -Wall
-Index: Makefile.am
-===
 Makefile.am.orig
-+++ Makefile.am
-@@ -40,7 +40,7 @@ lsvio_SOURCES = src/output/lsvio.cpp \
- lsmcode_SOURCES = src/output/lsmcode.cpp \
-   $(update_h_files)
- 
--vpdupdate_LDADD = -L. -lz -lstdc++ -lvpd_cxx -lsgutils
-+vpdupdate_LDADD = -L. -lz -lstdc++ -lvpd_cxx -lsgutils2
- vpdupdate_LDFLAGS = -Wall
- lsvpd_LDADD = -L. -lz -lstdc++ -lvpd_cxx
+ lsvpd_LDADD = -lz -lstdc++ -lvpd_cxx
  lsvpd_LDFLAGS = -Wall

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



commit mipv6d for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package mipv6d for openSUSE:Factory checked 
in at 2011-11-07 14:21:50

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


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

Changes:

--- /work/SRC/openSUSE:Factory/mipv6d/mipv6d.changes2011-09-23 
02:13:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.mipv6d.new/mipv6d.changes   2011-11-07 
14:21:51.0 +0100
@@ -1,0 +2,7 @@
+Thu Nov  3 13:04:34 UTC 2011 - m...@suse.com
+
+- Updated to git master commit 74528e1f fixing a memory leak,
+  adopted build requires, touched ghost mip6d.conf, test the
+  config size in the init script.
+
+---



Other differences:
--
++ mipv6d.spec ++
--- /var/tmp/diff_new_pack.VTNxgt/_old  2011-11-07 14:21:54.0 +0100
+++ /var/tmp/diff_new_pack.VTNxgt/_new  2011-11-07 14:21:54.0 +0100
@@ -19,7 +19,12 @@
 
 
 Name:   mipv6d
-BuildRequires:  bison flex indent libnl-1_1-devel openssl-devel
+BuildRequires:  bison flex indent openssl-devel
+%if 0%{?suse_version}  1140
+BuildRequires:  libnl-1_1-devel
+%else
+BuildRequires:  libnl-devel
+%endif
 Url:http://umip.org/
 License:GPLv2 ; GPLv2+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -27,7 +32,7 @@
 Group:  Productivity/Networking/Other
 Summary:MIPL - Mobile IPv6 for Linux
 Version:2.0.2.umip.0.4
-Release:2
+Release:74528e1f.RELEASE0
 Source0:mipv6-2.0.2-umip-0.4.tar.bz2
 Source1:mipv6d.init
 
@@ -78,6 +83,7 @@
   $RPM_BUILD_ROOT%{_sysconfdir}/init.d/mipv6d
 ln -sf%{_sysconfdir}/init.d/mipv6d \
   $RPM_BUILD_ROOT%{_sbindir}/rcmipv6d
+touch $RPM_BUILD_ROOT%{_sysconfdir}/mip6d.conf
 
 %post
 %{?fillup_and_insserv:%fillup_and_insserv -f -n mipv6d}

++ mipv6-2.0.2-umip-0.4.tar.bz2 ++
 4907 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mipv6-2.0.2-umip-0.4/INSTALL new/mipv6-2.0.2-umip-0.4/INSTALL
--- old/mipv6-2.0.2-umip-0.4/INSTALL2011-01-10 18:15:00.0 +0100
+++ new/mipv6-2.0.2-umip-0.4/INSTALL2011-11-03 13:25:24.0 +0100
@@ -1,64 +1,365 @@
-1. Make sure you are running a kernel configured and compiled with
-   Mobile IPv6 support enabled.  See INSTALL.kernel for more
-   information.
+Installation Instructions
+*
 
-2. Run './configure' in the main directory.  You may give any
-   additional parameters (e.g. --prefix=/usr, defaults to /usr/local)
-   to configure.  See './configure --help' for complete listing.
+Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
-  * Debug messages
+   Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.  This file is offered as-is,
+without warranty of any kind.
+
+Basic Installation
+==
+
+   Briefly, the shell commands `./configure; make; make install' should
+configure, build, and install this package.  The following
+more-detailed instructions are generic; see the `README' file for
+instructions specific to this package.  Some packages provide this
+`INSTALL' file but do not implement all of the features documented
+below.  The lack of an optional feature in a given package is not
+necessarily a bug.  More recommendations for GNU packages can be found
+in *note Makefile Conventions: (standards)Makefile Conventions.
+
+   The `configure' shell script attempts to guess correct values for
+various system-dependent variables used during compilation.  It uses
+those values to create a `Makefile' in each directory of the package.
+It may also create one or more `.h' files containing system-dependent
+definitions.  Finally, it creates a shell script `config.status' that
+you can run in the future to recreate the current configuration, and a
+file `config.log' containing compiler output (useful mainly for
+debugging `configure').
+
+   It can also use an optional file (typically called `config.cache'
+and enabled with `--cache-file=config.cache' or simply `-C') that saves
+the results of its tests to speed up reconfiguring.  Caching is
+disabled by default to prevent 

commit mozilla-nss for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package mozilla-nss for openSUSE:Factory 
checked in at 2011-11-07 14:22:38

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


Package is mozilla-nss, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/mozilla-nss/mozilla-nss.changes  2011-10-02 
10:18:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.mozilla-nss.new/mozilla-nss.changes 
2011-11-07 14:22:40.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  5 10:47:51 UTC 2011 - w...@rosenauer.org
+
+- explicitely distrust DigiCert Sdn. Bhd (bnc#728520, bmo#698753)
+- make sure NSS_NoDB_Init does not try to use wrong certificate
+  databases (CVE-2011-3640, bnc#726096, bmo#641052)
+
+---

Old:

  nss-3.12.11-diginotar.patch

New:

  ckbi-1_88.patch
  nss-3.12.11_CVE-2011-3640.patch



Other differences:
--
++ mozilla-nss.spec ++
--- /var/tmp/diff_new_pack.CUe4UH/_old  2011-11-07 14:22:42.0 +0100
+++ /var/tmp/diff_new_pack.CUe4UH/_new  2011-11-07 14:22:42.0 +0100
@@ -56,7 +56,8 @@
 Patch5: nss-no-rpath.patch
 Patch6: renegotiate-transitional.patch
 Patch9: malloc.patch
-Patch10:nss-3.12.11-diginotar.patch
+Patch10:ckbi-1_88.patch
+Patch11:nss-3.12.11_CVE-2011-3640.patch
 %define nspr_ver %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
 PreReq: mozilla-nspr = %nspr_ver
 PreReq: libfreebl3 = %{nss_softokn_fips_version}
@@ -174,7 +175,8 @@
 %if %suse_version  1110
 %patch9
 %endif
-%patch10 -p2
+%patch10 -p1
+%patch11
 # additional CA certificates
 #cd security/nss/lib/ckfw/builtins
 #cat %{SOURCE2}  certdata.txt


++ ckbi-1_88.patch ++
 3930 lines (skipped)


++ nss-3.12.11_CVE-2011-3640.patch ++
Index: security/nss/lib/softoken/sftkmod.c
===
RCS file: /cvsroot/mozilla/security/nss/lib/softoken/sftkmod.c,v
retrieving revision 1.7
diff -u -p -r1.7 sftkmod.c
--- security/nss/lib/softoken/sftkmod.c 11 Jun 2009 06:28:07 -  1.7
+++ security/nss/lib/softoken/sftkmod.c 5 Nov 2011 11:55:24 -
@@ -179,15 +179,18 @@ char *sftk_getOldSecmodName(const char *
 char *sep;
 
 sep = PORT_Strrchr(dirPath,*PATH_SEPARATOR);
-#ifdef WINDOWS
+#ifdef _WIN32
 if (!sep) {
-   sep = PORT_Strrchr(dirPath,'/');
+   /* pkcs11i.h defines PATH_SEPARATOR as / for all platforms. */
+   sep = PORT_Strrchr(dirPath,'\\');
 }
 #endif
 if (sep) {
-   *(sep)=0;
+   *sep = 0;
+   file = PR_smprintf(%sPATH_SEPARATOR%s, dirPath, filename);
+} else {
+   file = PR_smprintf(%s, filename);
 }
-file= PR_smprintf(%sPATH_SEPARATOR%s, dirPath, filename);
 PORT_Free(dirPath);
 return file;
 }
@@ -242,13 +245,18 @@ sftkdb_ReadSecmodDB(SDBType dbType, cons
 char *paramsValue=NULL;
 PRBool failed = PR_TRUE;
 
-if ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS)) {
+if ((dbname != NULL) 
+   ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS))) {
return sftkdbCall_ReadSecmodDB(appName, filename, dbname, params, rw);
 }
 
 moduleList = (char **) PORT_ZAlloc(useCount*sizeof(char **));
 if (moduleList == NULL) return NULL;
 
+if (dbname == NULL) {
+   goto return_default;
+}
+
 /* do we really want to use streams here */
 fd = fopen(dbname, r);
 if (fd == NULL) goto done;
@@ -405,7 +413,11 @@ sftkdb_ReadSecmodDB(SDBType dbType, cons
moduleString = NULL;
 }
 done:
-/* if we couldn't open a pkcs11 database, look for the old one */
+/* If we couldn't open a pkcs11 database, look for the old one.
+ * This is necessary to maintain the semantics of the transition from
+ * old to new DB's. If there is an old DB and not new DB, we will
+ * automatically use the old DB. If the DB was opened read/write, we
+ * create a new db and upgrade it from the old one. */
 if (fd == NULL) {
char *olddbname = sftk_getOldSecmodName(dbname,filename);
PRStatus status;
@@ -462,6 +474,8 @@ bail:
PR_smprintf_free(olddbname);
}
 }
+
+return_default:

 if (!moduleList[0]) {
char * newParams;
@@ -515,7 +529,8 @@ sftkdb_ReleaseSecmodDBData(SDBType dbTyp
const char *filename, const char *dbname, 
char **moduleSpecList, PRBool rw)
 {
-if ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS)) {
+if ((dbname != NULL) 
+   ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS))) {
return 

commit mozilla-nss for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package mozilla-nss for openSUSE:12.1 
checked in at 2011-11-07 14:22:44

Comparing /work/SRC/openSUSE:12.1/mozilla-nss (Old)
 and  /work/SRC/openSUSE:12.1/.mozilla-nss.new (New)


Package is mozilla-nss, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1/mozilla-nss/mozilla-nss.changes 2011-10-24 
13:08:23.0 +0200
+++ /work/SRC/openSUSE:12.1/.mozilla-nss.new/mozilla-nss.changes
2011-11-07 14:22:44.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  5 10:47:51 UTC 2011 - w...@rosenauer.org
+
+- explicitely distrust DigiCert Sdn. Bhd (bnc#728520, bmo#698753)
+- make sure NSS_NoDB_Init does not try to use wrong certificate
+  databases (CVE-2011-3640, bnc#726096, bmo#641052)
+
+---

Old:

  nss-3.12.11-diginotar.patch

New:

  ckbi-1_88.patch
  nss-3.12.11_CVE-2011-3640.patch



Other differences:
--
++ mozilla-nss.spec ++
--- /var/tmp/diff_new_pack.62x9pS/_old  2011-11-07 14:22:45.0 +0100
+++ /var/tmp/diff_new_pack.62x9pS/_new  2011-11-07 14:22:45.0 +0100
@@ -56,7 +56,8 @@
 Patch5: nss-no-rpath.patch
 Patch6: renegotiate-transitional.patch
 Patch9: malloc.patch
-Patch10:nss-3.12.11-diginotar.patch
+Patch10:ckbi-1_88.patch
+Patch11:nss-3.12.11_CVE-2011-3640.patch
 %define nspr_ver %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
 PreReq: mozilla-nspr = %nspr_ver
 PreReq: libfreebl3 = %{nss_softokn_fips_version}
@@ -174,7 +175,8 @@
 %if %suse_version  1110
 %patch9
 %endif
-%patch10 -p2
+%patch10 -p1
+%patch11
 # additional CA certificates
 #cd security/nss/lib/ckfw/builtins
 #cat %{SOURCE2}  certdata.txt


++ ckbi-1_88.patch ++
 3930 lines (skipped)


++ nss-3.12.11_CVE-2011-3640.patch ++
Index: security/nss/lib/softoken/sftkmod.c
===
RCS file: /cvsroot/mozilla/security/nss/lib/softoken/sftkmod.c,v
retrieving revision 1.7
diff -u -p -r1.7 sftkmod.c
--- security/nss/lib/softoken/sftkmod.c 11 Jun 2009 06:28:07 -  1.7
+++ security/nss/lib/softoken/sftkmod.c 5 Nov 2011 11:55:24 -
@@ -179,15 +179,18 @@ char *sftk_getOldSecmodName(const char *
 char *sep;
 
 sep = PORT_Strrchr(dirPath,*PATH_SEPARATOR);
-#ifdef WINDOWS
+#ifdef _WIN32
 if (!sep) {
-   sep = PORT_Strrchr(dirPath,'/');
+   /* pkcs11i.h defines PATH_SEPARATOR as / for all platforms. */
+   sep = PORT_Strrchr(dirPath,'\\');
 }
 #endif
 if (sep) {
-   *(sep)=0;
+   *sep = 0;
+   file = PR_smprintf(%sPATH_SEPARATOR%s, dirPath, filename);
+} else {
+   file = PR_smprintf(%s, filename);
 }
-file= PR_smprintf(%sPATH_SEPARATOR%s, dirPath, filename);
 PORT_Free(dirPath);
 return file;
 }
@@ -242,13 +245,18 @@ sftkdb_ReadSecmodDB(SDBType dbType, cons
 char *paramsValue=NULL;
 PRBool failed = PR_TRUE;
 
-if ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS)) {
+if ((dbname != NULL) 
+   ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS))) {
return sftkdbCall_ReadSecmodDB(appName, filename, dbname, params, rw);
 }
 
 moduleList = (char **) PORT_ZAlloc(useCount*sizeof(char **));
 if (moduleList == NULL) return NULL;
 
+if (dbname == NULL) {
+   goto return_default;
+}
+
 /* do we really want to use streams here */
 fd = fopen(dbname, r);
 if (fd == NULL) goto done;
@@ -405,7 +413,11 @@ sftkdb_ReadSecmodDB(SDBType dbType, cons
moduleString = NULL;
 }
 done:
-/* if we couldn't open a pkcs11 database, look for the old one */
+/* If we couldn't open a pkcs11 database, look for the old one.
+ * This is necessary to maintain the semantics of the transition from
+ * old to new DB's. If there is an old DB and not new DB, we will
+ * automatically use the old DB. If the DB was opened read/write, we
+ * create a new db and upgrade it from the old one. */
 if (fd == NULL) {
char *olddbname = sftk_getOldSecmodName(dbname,filename);
PRStatus status;
@@ -462,6 +474,8 @@ bail:
PR_smprintf_free(olddbname);
}
 }
+
+return_default:

 if (!moduleList[0]) {
char * newParams;
@@ -515,7 +529,8 @@ sftkdb_ReleaseSecmodDBData(SDBType dbTyp
const char *filename, const char *dbname, 
char **moduleSpecList, PRBool rw)
 {
-if ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS)) {
+if ((dbname != NULL) 
+   ((dbType == SDB_LEGACY) || (dbType == SDB_MULTIACCESS))) {
return 

commit nagios for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package nagios for openSUSE:Factory checked 
in at 2011-11-07 14:22:55

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


Package is nagios, Maintainer is lr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/nagios/nagios.changes2011-10-28 
19:59:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.nagios.new/nagios.changes   2011-11-07 
14:22:57.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 13:02:02 UTC 2011 - l...@linux-schulserver.de
+
+- skip fdupes call and ignore that we might save 4k on the disk
+  = fixes bnc #721346 
+- fix file permissions in docudir
+- use nagios-rpm-macros
+
+---



Other differences:
--
++ nagios.spec ++
--- /var/tmp/diff_new_pack.hRDQw0/_old  2011-11-07 14:22:59.0 +0100
+++ /var/tmp/diff_new_pack.hRDQw0/_new  2011-11-07 14:22:59.0 +0100
@@ -18,15 +18,6 @@
 
 
 Name:   nagios
-%define nsusr nagios
-%define nsgrp nagios
-%define cmdusr wwwrun
-%define cmdgrp nagcmd
-%define nslockfile_dir /var/run/%{name}
-%define nslockfile %nslockfile_dir/%{name}.pid
-%define apache2_sysconfdir %(/usr/sbin/apxs2 -q SYSCONFDIR)/conf.d
-# Macro that print mesages to syslog at package (un)install time
-%define nnmmsg logger -t %{name}/rpm
 Summary:The Nagios Network Monitor
 Version:3.3.1
 Release:1
@@ -70,6 +61,7 @@
 BuildRequires:  mailx
 BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel
+BuildRequires:  nagios-rpm-macros
 BuildRequires:  net-tools
 BuildRequires:  zlib-devel
 %if 0%{?suse_version}  1010
@@ -86,12 +78,16 @@
 Recommends: perl = %{perl_version}
 %endif
 %if 0%{?suse_version}  1020
-BuildRequires:  fdupes
 Recommends: %{name}-plugins
 %else
 Requires:   %{name}-plugins
 %endif
 Requires:   mailx
+%define nslockfile_dir /var/run/%{name}
+%define nslockfile %nslockfile_dir/%{name}.pid
+%define apache2_sysconfdir %(/usr/sbin/apxs2 -q SYSCONFDIR)/conf.d
+# Macro that print mesages to syslog at package (un)install time
+%define nnmmsg logger -t %{name}/rpm
 
 %description
 Nagios is a program that will monitor hosts and services on your
@@ -109,11 +105,6 @@
 documentation, and development files are built as separate packages
 
 
-
-Authors:
-
-Ethan Galstad nag...@nagios.org
-
 %package www
 License:GPLv2+
 Summary:Provides the HTML and CGI files for the Nagios web interface
@@ -143,11 +134,6 @@
 included in this package.
 
 
-
-Authors:
-
-Ethan Galstad nag...@nagios.org
-
 %package devel
 License:GPLv2+
 Summary:Development files for Nagios
@@ -167,12 +153,6 @@
 may compile against.
 
 
-
-Authors:
-
-Ethan Galstad nag...@nagios.org
-
-
 %prep
 %setup -q -n %{name}
 %patch2 -p0
@@ -182,8 +162,10 @@
 %patch13 -p0
 find -name .gitignore | xargs rm
 # fix p1.pl pathname of mini_epn
-sed -i 's|p1.pl|%{_prefix}/lib/%{name}/p1.pl|g' contrib/mini_epn.c
-sed -i 's|p1.pl|%{_prefix}/lib/%{name}/p1.pl|g' contrib/new_mini_epn.c
+sed -i 's|p1.pl|%{nagios_libdir}/p1.pl|g' contrib/mini_epn.c
+sed -i 's|p1.pl|%{nagios_libdir}/p1.pl|g' contrib/new_mini_epn.c
+# fix file permissions
+chmod -x Changelog LEGAL LICENSE README 
 
 %build
 # if the following command fails, then apache dependencies are not met
@@ -192,21 +174,21 @@
--prefix=%{_prefix} \
--exec-prefix=%{_sbindir} \
--bindir=%{_sbindir} \
-   --sbindir=%{_prefix}/lib/%{name}/cgi \
-   --libexecdir=%{_prefix}/lib/%{name}/plugins \
-   --datadir=%{_datadir}/%{name} \
-   --sysconfdir=%{_sysconfdir}/%{name} \
+   --sbindir=%{nagios_cgidir} \
+   --libexecdir=%{nagios_plugindir} \
+   --datadir=%{nagios_datadir} \
+   --sysconfdir=%{nagios_sysconfdir} \
--with-init-dir=%{_sysconfdir}/init.d \
-   --localstatedir=/var/lib/%{name} \
+   --localstatedir=%{nagios_localstatedir} \
--with-cgiurl=/%{name}/cgi-bin \
--with-htmurl=/%{name} \
--with-httpd-conf=%{apache2_sysconfdir} \
-   --with-checkresult-dir=/var/spool/%{name} \
+   --with-checkresult-dir=%{nagios_spooldir} \
--with-lockfile=%{nslockfile} \
-   --with-nagios-user=%{nsusr} \
-   --with-nagios-group=%{nsgrp} \
-   --with-command-user=%{cmdusr} \
-   --with-command-group=%{cmdgrp} \
+   --with-nagios-user=%{nagios_user} \
+   --with-nagios-group=%{nagios_group} \
+   --with-command-user=%{nagios_command_user} \
+   --with-command-group=%{nagios_command_group} \
--with-gd-lib=%{_libdir} 

commit nfs-utils for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package nfs-utils for openSUSE:Factory 
checked in at 2011-11-07 14:23:08

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


Package is nfs-utils, Maintainer is nfbr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/nfs-utils/nfs-utils.changes  2011-10-13 
00:14:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.nfs-utils.new/nfs-utils.changes 2011-11-07 
14:23:10.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov  6 11:43:39 UTC 2011 - pu...@suse.com
+
+- do not strip the binaries 
+
+---



Other differences:
--
++ nfs-utils.spec ++
--- /var/tmp/diff_new_pack.9mXqAC/_old  2011-11-07 14:23:11.0 +0100
+++ /var/tmp/diff_new_pack.9mXqAC/_new  2011-11-07 14:23:11.0 +0100
@@ -161,7 +161,7 @@
 done
 
 %install
-make install-strip DESTDIR=$RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
 rm -f linux-nfs/Makefile*
 # rc-script
 install -d $RPM_BUILD_ROOT/etc/init.d


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



commit nut for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package nut for openSUSE:Factory checked in 
at 2011-11-07 14:23:20

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


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

Changes:

--- /work/SRC/openSUSE:Factory/nut/nut.changes  2011-11-02 12:09:21.0 
+0100
+++ /work/SRC/openSUSE:Factory/.nut.new/nut.changes 2011-11-07 
14:23:22.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov  2 18:45:31 CET 2011 - sbra...@suse.cz
+
+- Patch real source files to get missing devices (bnc#719292#c7).
+
+---



Other differences:
--
++ nut-usb-ups-ids.patch ++
--- /var/tmp/diff_new_pack.P75dPq/_old  2011-11-07 14:23:23.0 +0100
+++ /var/tmp/diff_new_pack.P75dPq/_new  2011-11-07 14:23:23.0 +0100
@@ -1,36 +1,31 @@
-Index: nut-2.6.2/scripts/udev/nut-usbups.rules.in
+Index: nut-2.6.2/drivers/blazer_usb.c
 ===
 nut-2.6.2.orig/scripts/udev/nut-usbups.rules.in
-+++ nut-2.6.2/scripts/udev/nut-usbups.rules.in
-@@ -54,6 +54,8 @@ ATTR{idVendor}==050d, ATTR{idProduct}=
- ATTR{idVendor}==050d, ATTR{idProduct}==0980, MODE=664, 
GROUP=@RUN_AS_GROUP@
- #  F6C1100-UNV, F6C1200-UNV  - usbhid-ups
- ATTR{idVendor}==050d, ATTR{idProduct}==1100, MODE=664, 
GROUP=@RUN_AS_GROUP@
-+# Belkin F6C1200-UNV
-+ATTR{idVendor}==0665, ATTR{idProduct}==5161, MODE=664, 
GROUP=@RUN_AS_GROUP@
+--- nut-2.6.2.orig/drivers/blazer_usb.c
 nut-2.6.2/drivers/blazer_usb.c
+@@ -305,8 +305,8 @@ static void *phoenix_subdriver(void)
  
- # APC
- #  various models  - usbhid-ups
-@@ -84,9 +86,9 @@ ATTR{idVendor}==06da, ATTR{idProduct}=
- ATTR{idVendor}==075d, ATTR{idProduct}==0300, MODE=664, 
GROUP=@RUN_AS_GROUP@
- 
- # Cyber Power Systems
--#  900AVR/BC900D, CP1200AVR/BC1200D  - usbhid-ups
-+#  900AVR/BC900D - usbhid-ups
- ATTR{idVendor}==0764, ATTR{idProduct}==0005, MODE=664, 
GROUP=@RUN_AS_GROUP@
--#  Dynex DX-800U?  - usbhid-ups
-+#  CP1200AVR/BC1200D, Dynex DX-800U?  - usbhid-ups
- ATTR{idVendor}==0764, ATTR{idProduct}==0501, MODE=664, 
GROUP=@RUN_AS_GROUP@
- #  OR2200LCDRM2U  - usbhid-ups
- ATTR{idVendor}==0764, ATTR{idProduct}==0601, MODE=664, 
GROUP=@RUN_AS_GROUP@
-@@ -177,4 +179,10 @@ ATTR{idVendor}==10af, ATTR{idProduct}=
- #  GE EP series  - blazer_usb
- ATTR{idVendor}==14f0, ATTR{idProduct}==00c9, MODE=664, 
GROUP=@RUN_AS_GROUP@
+ static usb_device_id_t blazer_usb_id[] = {
+   { USB_DEVICE(0x05b8, 0x), cypress_subdriver }, /* Agiler UPS */
+-  {0x0001, 0x,  krauler_subdriver }, /* Krauler 
UP-M500VA */
+-  {0x, 0x,  krauler_subdriver }, /* Ablerex 625L 
USB */
++  { USB_DEVICE(0x0001, 0x), krauler_subdriver }, /* Krauler 
UP-M500VA */
++  { USB_DEVICE(0x, 0x), krauler_subdriver }, /* Ablerex 625L 
USB */
+   { USB_DEVICE(0x0665, 0x5161), cypress_subdriver }, /* Belkin 
F6C1200-UNV */
+   { USB_DEVICE(0x06da, 0x0003), ippon_subdriver },   /* Mustek 
Powermust */
+   { USB_DEVICE(0x0f03, 0x0001), cypress_subdriver }, /* Unitek Alpha 
1200Sx */
+Index: nut-2.6.2/drivers/cps-hid.c
+===
+--- nut-2.6.2.orig/drivers/cps-hid.c
 nut-2.6.2/drivers/cps-hid.c
+@@ -48,9 +48,9 @@ static void *cps_battery_scale(void)
  
-+# Krauler UP-M500VA - blazer_usb
-+ATTR{idVendor}==0001, ATTR{idProduct}==, MODE=664, 
GROUP=@RUN_AS_GROUP@
-+
-+# Ablerex 625L USB
-+ATTR{idVendor}==, ATTR{idProduct}==, MODE=664, 
GROUP=@RUN_AS_GROUP@
-+
- LABEL=nut-usbups_rules_end
+ /* USB IDs device table */
+ static usb_device_id_t cps_usb_device_table[] = {
+-  /* 900AVR/BC900D, CP1200AVR/BC1200D */
++  /* 900AVR/BC900D */
+   { USB_DEVICE(CPS_VENDORID, 0x0005), NULL },
+-  /* Dynex DX-800U? */
++  /* CP1200AVR/BC1200D, Dynex DX-800U? */
+   { USB_DEVICE(CPS_VENDORID, 0x0501), cps_battery_scale },
+   /* OR2200LCDRM2U */
+   { USB_DEVICE(CPS_VENDORID, 0x0601), NULL },

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



commit openvas-administrator for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package openvas-administrator for 
openSUSE:Factory checked in at 2011-11-07 14:24:26

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


Package is openvas-administrator, Maintainer is nadvor...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/openvas-administrator/openvas-administrator.changes  
2011-09-23 12:20:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.openvas-administrator.new/openvas-administrator.changes
 2011-11-07 14:24:28.0 +0100
@@ -1,0 +2,10 @@
+Fri Nov  4 21:05:44 UTC 2011 - bitshuff...@opensuse.org
+
+- Updated to 1.1.2
+  * Handling of the SIGHUP signal has been made consistent with the other 
OpenVAS
+modules. This means that openvas-administrator will no longer exit upon
+receiving a SIGHUP.
+  * OAP: The GET_VERSION command is now allowed before AUTHENTICATE to be
+consistent with OMP.
+
+---

Old:

  openvas-admin-add-needed.patch
  openvas-administrator-1.1.1-out_of_source_build.patch
  openvas-administrator-1.1.1.tar.gz

New:

  openvas-administrator-1.1.1-linking.patch
  openvas-administrator-1.1.2.tar.gz



Other differences:
--
++ openvas-administrator.spec ++
--- /var/tmp/diff_new_pack.YxPpEm/_old  2011-11-07 14:24:32.0 +0100
+++ /var/tmp/diff_new_pack.YxPpEm/_new  2011-11-07 14:24:32.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   openvas-administrator
-Version:1.1.1
+Version:1.1.2
 Release:2
 License:GPLv2+
 Group:  Productivity/Networking/Security
@@ -30,8 +30,7 @@
 Source3:openvasad.init.suse
 Source4:openvasad.init.fedora
 Source5:openvasad.init.mandriva
-Patch0: openvas-administrator-1.1.1-out_of_source_build.patch
-Patch1: openvas-admin-add-needed.patch
+Patch0: openvas-administrator-1.1.1-linking.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %if 0%{?mandriva_version}
@@ -57,7 +56,6 @@
 %prep
 %setup -q
 %patch0
-%patch1
 
 %build
 %if 0%{?mandriva_version}

++ debian.changelog ++
--- /var/tmp/diff_new_pack.YxPpEm/_old  2011-11-07 14:24:32.0 +0100
+++ /var/tmp/diff_new_pack.YxPpEm/_new  2011-11-07 14:24:32.0 +0100
@@ -1,3 +1,14 @@
+openvas-administrator (1.1.2-1) UNRELEASED; urgency=low
+
+  * New upstream release
+- Handling of the SIGHUP signal has been made consistent with the other 
OpenVAS
+  modules. This means that openvas-administrator will no longer exit upon
+  receiving a SIGHUP.
+- OAP: The GET_VERSION command is now allowed before AUTHENTICATE to be
+  consistent with OMP.
+
+ -- Stephan Kleine bitshuff...@opensuse.org  Fri, 04 Nov 2011 22:07:16 +0100
+
 openvas-administrator (1.1.1-1) UNRELEASED; urgency=low
 
   * New upstream release

++ debian.series ++
--- /var/tmp/diff_new_pack.YxPpEm/_old  2011-11-07 14:24:32.0 +0100
+++ /var/tmp/diff_new_pack.YxPpEm/_new  2011-11-07 14:24:32.0 +0100
@@ -1 +1 @@
-openvas-administrator-1.1.1-out_of_source_build.patch -p0
+openvas-administrator-1.1.1-linking.patch -p0

++ openvas-administrator-1.1.1-linking.patch ++
Index: src/CMakeLists.txt
===
--- src/CMakeLists.txt.orig 2011-02-21 11:04:30.0 +0100
+++ src/CMakeLists.txt  2011-10-16 17:24:38.163498293 +0200
@@ -45,7 +45,7 @@ set_target_properties (oap PROPERTIES CO
 ## Program
 
 add_executable (openvasad openvasad.c oxpd.c oapd.c)
-target_link_libraries (openvasad oap admin openvas_misc openvas_base gnutls)
+target_link_libraries (openvasad oap admin openvas_misc openvas_base gnutls 
glib-2.0)
 
 set_target_properties (openvasad PROPERTIES LINKER_LANGUAGE C)
 
++ openvas-administrator-1.1.1.tar.gz - openvas-administrator-1.1.2.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openvas-administrator-1.1.1/CHANGES 
new/openvas-administrator-1.1.2/CHANGES
--- old/openvas-administrator-1.1.1/CHANGES 2011-02-21 11:04:30.0 
+0100
+++ new/openvas-administrator-1.1.2/CHANGES 2011-11-03 09:59:38.0 
+0100
@@ -1,3 +1,23 @@
+openvas-administrator 1.1.2 (2011-11-03)
+
+This is the second maintenance release of the OpenVAS Administrator 1.1, the
+local and remote administrative tool for the Open Vulnerability Assessment
+System release 4 (OpenVAS-4).
+
+This release makes signal handling and the protocol handshake more consistent
+with other OpenVAS modules.
+
+Many thanks to everyone who has contributed to this release:
+Stephan Kleine, Matthew 

commit openvas-scanner for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package openvas-scanner for openSUSE:Factory 
checked in at 2011-11-07 14:28:06

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


Package is openvas-scanner, Maintainer is nadvor...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openvas-scanner/openvas-scanner.changes  
2011-09-23 12:21:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.openvas-scanner.new/openvas-scanner.changes 
2011-11-07 14:28:08.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov  4 20:41:28 UTC 2011 - bitshuff...@opensuse.org
+
+- Updated to 3.2.5
+  * The optional use of the external tool ovaldi has been made more secure.
+
+---

Old:

  openvas-scanner-3.2.4.tar.gz
  ovas-scanner-add-needed.patch

New:

  debian.series
  openvas-scanner-3.2.4-linking.patch
  openvas-scanner-3.2.5.tar.gz



Other differences:
--
++ openvas-scanner.spec ++
--- /var/tmp/diff_new_pack.xGvijC/_old  2011-11-07 14:28:12.0 +0100
+++ /var/tmp/diff_new_pack.xGvijC/_new  2011-11-07 14:28:12.0 +0100
@@ -15,21 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   openvas-scanner
-Version:3.2.4
-Release:3
+Version:3.2.5
+Release:1.0
 License:GPLv2
 Group:  Productivity/Networking/Security
-Url:http://www.openvas.org
+URL:http://www.openvas.org
 Source0:%{name}-%{version}.tar.gz
 Source1:openvassd.logrotate
 Source2:debian.openvas-scanner.default
 Source3:openvassd.init.suse
 Source4:openvassd.init.fedora
 Source5:openvassd.init.mandriva
+Patch0: openvas-scanner-3.2.4-linking.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %if 0%{?mandriva_version}
@@ -53,7 +52,6 @@
 Requires:   openssl
 Requires:   rsync
 Summary:The Scanner Module for OpenVAS
-Patch:  ovas-scanner-add-needed.patch
 
 %description
 This is the scanner module for the Open Vulnerability Assessment System 
(OpenVAS).
@@ -61,7 +59,7 @@
 
 %prep
 %setup -q
-%patch
+%patch0
 
 %build
 %if 0%{?mandriva_version}
@@ -190,4 +188,3 @@
 %else
 %config(noreplace) %{_sysconfdir}/sysconfig/openvas-scanner
 %endif
-%changelog

++ debian.changelog ++
--- /var/tmp/diff_new_pack.xGvijC/_old  2011-11-07 14:28:12.0 +0100
+++ /var/tmp/diff_new_pack.xGvijC/_new  2011-11-07 14:28:12.0 +0100
@@ -1,3 +1,10 @@
+openvas-scanner (3.2.5-1) UNRELEASED; urgency=low
+
+  * New upstream release
+- The optional use of the external tool ovaldi has been made more secure.
+
+ -- Stephan Kleine bitshuff...@opensuse.org  Fri, 04 Nov 2011 21:42:26 +0100
+
 openvas-scanner (3.2.4-1) UNRELEASED; urgency=low
 
   * New upstream release

++ debian.series ++
openvas-scanner-3.2.4-linking.patch -p0
++ openvas-scanner-3.2.4-linking.patch ++
Index: src/CMakeLists.txt
===
--- src/CMakeLists.txt.orig 2011-06-08 14:22:08.0 +0200
+++ src/CMakeLists.txt  2011-10-16 17:10:29.093020840 +0200
@@ -133,7 +133,7 @@ endif (NVT_TIMEOUT)
 set_target_properties (openvassd PROPERTIES LINK_FLAGS
${LIB_TEMP} ${GLIB_LDFLAGS} ${OPENVAS_LDFLAGS})
 
-target_link_libraries (openvassd gnutls dl gcrypt)
+target_link_libraries (openvassd dl gcrypt glib-2.0 gnutls openvas_base 
openvas_hg openvas_misc)
 
 set_target_properties (openvassd PROPERTIES COMPILE_FLAGS
${HEADER_TEMP} ${OPENVAS_CFLAGS} ${GLIB_CFLAGS})
++ openvas-scanner-3.2.4.tar.gz - openvas-scanner-3.2.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openvas-scanner-3.2.4/CHANGES 
new/openvas-scanner-3.2.5/CHANGES
--- old/openvas-scanner-3.2.4/CHANGES   2011-06-08 14:22:08.0 +0200
+++ new/openvas-scanner-3.2.5/CHANGES   2011-11-03 09:50:51.0 +0100
@@ -1,3 +1,19 @@
+openvas-scanner 3.2.5 (2011-11-03)
+
+This is the fifth maintenance release of the openvas-scanner 3.2 module for the
+Open Vulnerability Assessment System release 4 (OpenVAS-4).
+
+This release addresses a security issue related to the optional use of the
+external tool ovaldi by making file ownership and location more secure. This
+fixes the issue described in OSVDB-75177.
+
+Many thanks to everyone who has contributed to this release:
+Michael Wiegand.
+
+Main changes compared to 3.2.4:
+* The optional use of the external tool ovaldi has been made more secure.
+
+
 openvas-scanner 3.2.4 (2011-06-08)
 
 This is the 

commit pdsh for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package pdsh for openSUSE:Factory checked in 
at 2011-11-07 14:28:16

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


Package is pdsh, Maintainer is hvo...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pdsh/pdsh.changes2011-11-02 
12:13:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.pdsh.new/pdsh.changes   2011-11-07 
14:28:23.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 10:22:26 UTC 2011 - cfarr...@suse.com
+
+- license update: GPL-2.0+
+  SDPX format (http://www.spdx.org/licenses)
+
+---



Other differences:
--
++ pdsh.spec ++
--- /var/tmp/diff_new_pack.vGcIhF/_old  2011-11-07 14:28:29.0 +0100
+++ /var/tmp/diff_new_pack.vGcIhF/_new  2011-11-07 14:28:29.0 +0100
@@ -24,7 +24,7 @@
 Version:2.26
 Release:1
 Summary:Parallel remote shell program
-License:GPL
+License:GPL-2.0+
 Group:  Productivity/Clustering/Computing
 Source: %{name}-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit pdsh for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package pdsh for openSUSE:12.1 checked in at 
2011-11-07 14:28:20

Comparing /work/SRC/openSUSE:12.1/pdsh (Old)
 and  /work/SRC/openSUSE:12.1/.pdsh.new (New)


Package is pdsh, Maintainer is hvo...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/pdsh/pdsh.changes   2011-10-24 13:14:52.0 
+0200
+++ /work/SRC/openSUSE:12.1/.pdsh.new/pdsh.changes  2011-11-07 
14:28:30.0 +0100
@@ -1,0 +2,66 @@
+Wed Nov  2 10:22:26 UTC 2011 - cfarr...@suse.com
+
+- license update: GPL-2.0+
+  SDPX format (http://www.spdx.org/licenses)
+
+---
+Tue Nov  1 16:05:31 UTC 2011 - tabra...@novell.com
+
+- update to version 2.26
+  -- Fix issue 14: interactive mode broken with ssh
+  -- Fix issue 19: missing commas in dshbak(1) header output
+  -- Fix issue 20: compilation error in genders.c with non-GCC compilers
+  -- Fix issue 23: compilation failure with --enable-static-modules
+  -- Fix issue 24: don't arbitrarily limit usernames to 16 characters
+  -- Fix issue 25: PDSH_SSH_ARGS should not require %u and %h
+  -- Fix issue 26: document use of %u and %h in PDSH_SSH_ARGS
+  -- Fix interactive mode with rcmd/exec.
+  -- genders: do not look for genders_query(3) support at runtime,
+ as this causes too many problems on some systems. Instead, 
+ use autoconf to include or exclude genders_query support from
+ the genders module. (fixes Issue 1)
+
+- update to version 2.25
+  -- Fix pdcp breakage with ssh (bug introduced in pdsh-2.24).
+ (Resolves issue 12: pdcp executes file instead of copying.)
+  -- testsuite: Skip tests dependent on PDSH_MODULE_DIR when testsuite
+ run as root (Resolves issue 13: testsuite broken when run as root)
+  -- testsuite: Skip dshbak -d test to non-writable directory when
+ directory permissions do not seem to apply (e.g. privileged user)
+ (Possibly resolves issue 11: tests fail on Mac OSX under fink)
+  -- testsuite: add simple ssh teststestsuite: add simple ssh tests
+
+- update to version 2.24
+  -- Resolve issue 7: Allow PDSH_REMOTE_PDCP_PATH to set default path
+ to remote pdcp program (pdcp -e).
+  -- Resolve issue 9: Fix use of PDSH_SSH_ARGS_APPEND.
+  -- Resolve issue 10: dshbak: Support writing output to file-per-host.
+ Adds new -d DIR and -f options to dshbak.
+  -- genders: Allow relative paths to genders files with -F and
+ PDSH_GENDERS_FILE.
+  -- genders: Don't print an error if genders file is missing, unless
+ a genders optin (-F, -a, -g, -i, -X) is explicitly used.
+  -- genders: Allow -g to be used with other node selection options as
+ a filter. For example: pdsh -w host[0-1024] -g attr1 ...
+  -- ssh: Better preservation of remote command args in ssh module.
+ Previous versions of pdsh would alwas collapse all args into
+ a single argument passed to ssh: cmd arg1 arg2 ... With this
+ fix the argv list will more closely match the form passed to pdsh
+  -- Refactored large portions of dshbak, improve usage output,
+ and update manpage
+  -- Expanded testsuite.
+
+- update to version 2.23
+  -- Fix issue 4: List available but conflicting modules in -V and -L output
+  -- Fix issue 5: dshbak -c doesn't properly coalesce hosts with different
+ zero-padding in the numeric suffix.
+  -- Added torque module for setting list of target hosts based on Torque/PBS
+ jobs (Issue 2).
+  -- Enhance syntax of -w and -x to allow preceeding arguments with:
+ `-' - Exclude hosts instead of include with -w ( -w foo[1-9],-foo8)
+ `^' - insert/exclude list of hosts from a file (^/path/to/file)
+`/' - filter hosts based on regex (/host.*0$/)
+  -- Introduce new pdsh testsuite with many new tests. See tests/README
+ for more information
+
+---

Old:

  pdsh-2.22.tar.bz2

New:

  pdsh-2.26.tar.bz2



Other differences:
--
++ pdsh.spec ++
--- /var/tmp/diff_new_pack.U5CumJ/_old  2011-11-07 14:28:32.0 +0100
+++ /var/tmp/diff_new_pack.U5CumJ/_new  2011-11-07 14:28:32.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package pdsh (Version 2.22)
+# spec file for package pdsh
 #
-# 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,10 +21,10 @@
 Name:   pdsh
 BuildRequires:  dejagnu openssh readline-devel rsh
 Url:http://sourceforge.net/projects/pdsh
-Version:2.22
+Version:2.26
 Release:   

commit perl-Module-ScanDeps for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package perl-Module-ScanDeps for 
openSUSE:Factory checked in at 2011-11-07 14:28:26

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


Package is perl-Module-ScanDeps, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Module-ScanDeps/perl-Module-ScanDeps.changes
2011-09-23 12:38:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-ScanDeps.new/perl-Module-ScanDeps.changes
   2011-11-07 14:28:33.0 +0100
@@ -1,0 +2,32 @@
+Thu Nov 03 22:54:21 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 1.05:
+  * RT#72082: $FindBin::Bin issue on Moduel::ScanDeps 1.04: make FindBin work
+(at least with option -c or -x) by spoofing $0 in the temp script generated
+for M:SD::DataFeed
+  * RT #70134: patch suggestions for Module::ScanDeps 1.04: additional preload
+rules, used_via_preload attribute; add suggested %Preload rules
+  * add %Preload rules for MozRepl
+  * special case for Package::Stash
+  * special case for Moose
+
+- changes from 1.04:
+  * brown paper bag bug: fix option -x (execute) (broken by changes for -c)
+  * honor option -I with -c
+
+- changes from 1.03:
+  * RT#69213: ScanDeps incompatible with AnyEvent (Perl 5.14, AnyEvent 5.34,
+PAR 1.00.2); for option -c (compile) M:SD used to wrap the file in one big
+sub and appended an END block where it dumps %INC etc; the outer sub causes
+problems with certain contructs; instead we now use an INIT block prepended
+to the file
+  * RT #69471: problem with eval { require SomeModule } constructions
+Module::ScanDeps::DataFeed now omits %INC pairs with an undefined value
+(these may be created by an unsuccessful require under certain
+conditions); also omit CODE refs from @INC
+  * simplify Module::ScanDeps::DataFeed somewhat by localizing %INC around
+require Module::ScanDeps::DataFeed and by using Data::Dumper for the
+actual dump
+  * don't create the tempfiles for DataFeed in the working directory
+
+---

Old:

  Module-ScanDeps-1.02.tar.gz

New:

  Module-ScanDeps-1.05.tar.gz



Other differences:
--
++ perl-Module-ScanDeps.spec ++
--- /var/tmp/diff_new_pack.EHFwxL/_old  2011-11-07 14:28:34.0 +0100
+++ /var/tmp/diff_new_pack.EHFwxL/_new  2011-11-07 14:28:34.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   perl-Module-ScanDeps
-Version:1.02
+Version:1.05
 Release:1
 License:GPL+ or Artistic
 %define cpan_name Module-ScanDeps
@@ -37,31 +37,7 @@
 
 %description
 This module scans potential modules used by perl programs, and returns a
-hash reference; its keys are the module names as appears in '%INC' (e.g.
-'Test/More.pm'); the values are hash references with this structure:
-
-{
-file= '/usr/local/lib/perl5/5.8.0/Test/More.pm',
-key = 'Test/More.pm',
-type= 'module',# or 'autoload', 'data', 'shared'
-used_by = [ 'Test/Simple.pm', ... ],
-uses= [ 'Test/Other.pm', ... ],
-}
-
-One function, 'scan_deps', is exported by default. Other functions such as
-('scan_line', 'scan_chunk', 'add_deps', 'path_to_inc_name') are exported
-upon request.
-
-Users of *App::Packer* may also use this module as the dependency-checking
-frontend, by tweaking their _p2e.pl_ like below:
-
-use Module::ScanDeps;
-...
-my $packer = App::Packer-new( frontend = 'Module::ScanDeps' );
-...
-
-Please see the App::Packer::Frontend manpage for detailed explanation on
-the structure returned by 'get_files'.
+hash reference.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ Module-ScanDeps-1.02.tar.gz - Module-ScanDeps-1.05.tar.gz ++
 4760 lines of diff (skipped)

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



commit perl-Perl-Critic for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package perl-Perl-Critic for 
openSUSE:Factory checked in at 2011-11-07 14:28:37

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


Package is perl-Perl-Critic, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Perl-Critic/perl-Perl-Critic.changes
2011-09-23 12:38:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Perl-Critic.new/perl-Perl-Critic.changes   
2011-11-07 14:28:39.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov  6 10:35:00 UTC 2011 - rschweik...@suse.com
+
+- Set executable permission for commandline interface (/usr/bin/perlcritic)
+
+---



Other differences:
--
++ perl-Perl-Critic.spec ++
--- /var/tmp/diff_new_pack.6lH6Yc/_old  2011-11-07 14:28:40.0 +0100
+++ /var/tmp/diff_new_pack.6lH6Yc/_new  2011-11-07 14:28:40.0 +0100
@@ -171,6 +171,7 @@
 
 %install
 ./Build install destdir=%{buildroot} create_packlist=0
+chmod +x %{buildroot}/usr/bin/perlcritic
 %perl_gen_filelist
 
 %clean

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



commit permissions for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package permissions for openSUSE:Factory 
checked in at 2011-11-07 14:28:51

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


Package is permissions, Maintainer is lnus...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/permissions/permissions.changes  2011-09-26 
10:10:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.permissions.new/permissions.changes 
2011-11-07 14:28:56.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 09:39:43 UTC 2011 - lnus...@suse.de
+
+- disable run time fscaps detection (bnc#728312)
+
+---

New:

  0001-disable-run-time-fscaps-detection-bnc-728312.diff



Other differences:
--
++ permissions.spec ++
--- /var/tmp/diff_new_pack.yLcL1T/_old  2011-11-07 14:28:57.0 +0100
+++ /var/tmp/diff_new_pack.yLcL1T/_new  2011-11-07 14:28:57.0 +0100
@@ -30,6 +30,7 @@
 PreReq: %fillup_prereq
 Summary:SUSE Linux Default Permissions
 Source: permissions-%{version}.tar.bz2
+Patch0: 0001-disable-run-time-fscaps-detection-bnc-728312.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://gitorious.org/opensuse/permissions
 
@@ -48,6 +49,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 make %{?_smp_mflags} CFLAGS=-W -Wall $RPM_OPT_FLAGS FSCAPS_DEFAULT_ENABLED=0

++ 0001-disable-run-time-fscaps-detection-bnc-728312.diff ++
From 94311258bfdf3ad86938bd50aaef4a83ca04eae5 Mon Sep 17 00:00:00 2001
From: Ludwig Nussel ludwig.nus...@suse.de
Date: Mon, 7 Nov 2011 10:34:38 +0100
Subject: [PATCH] disable run time fscaps detection (bnc#728312)

PERMISSIONS_FSCAPS setting in /etc/sysconfig/security allows to enable
them again.
---
 chkstat.8 |5 +++--
 chkstat.c |   40 
 2 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/chkstat.8 b/chkstat.8
index 3492e21..364a237 100644
--- a/chkstat.8
+++ b/chkstat.8
@@ -52,8 +52,9 @@ Opposite of --set, ie warn only but don't make actual changes
 Omit printing the output header lines.
 .TP
 .IR \-\-fscaps,\ \-\-no\-fscaps
-Force or disable use of fscaps. Default is to automatically
-determine whether the running kernel supports fscaps.
+Enable or disable use of fscaps. In system mode the setting of
+PERMISSIONS_FSCAPS determines whether fscaps are on or off when this
+option is not set.
 .TP
 .IR \-\-examine\ file
 Check permissions for this file instead of all files listed in the permissions 
files.
diff --git a/chkstat.c b/chkstat.c
index e5c9b15..8682c3e 100644
--- a/chkstat.c
+++ b/chkstat.c
@@ -54,6 +54,7 @@ int nlevel;
 char** level;
 int do_set = -1;
 int default_set = 1;
+int have_fscaps = -1;
 char** permfiles = NULL;
 int npermfiles = 0;
 char* force_level;
@@ -281,6 +282,24 @@ parse_sysconf(const char* file)
  //fprintf(stderr, invalid value for CHECK_PERMISSIONS (must be 
'set', 'warn' or 'no')\n);
}
}
+  else if (have_fscaps == -1  !strncmp(p, PERMISSIONS_FSCAPS=, 19))
+   {
+ p+=19;
+ if (isquote(*p))
+   ++p;
+ if (!strncmp(p, yes, 3))
+   {
+ p+=3;
+ if (isquote(*p) || !*p)
+   have_fscaps=1;
+   }
+ else if (!strncmp(p, no, 2))
+   {
+ p+=2;
+ if (isquote(*p) || !*p)
+   have_fscaps=0;
+   }
+   }
 }
   fclose(fp);
   return 0;
@@ -515,18 +534,18 @@ check_fscaps_enabled()
 {
   FILE* fp;
   char line[128];
-  int have_fscaps = FSCAPS_DEFAULT_ENABLED;
+  int val = FSCAPS_DEFAULT_ENABLED;
   if ((fp = fopen(/sys/kernel/fscaps, r)) == 0)
 {
   goto out;
 }
   if (readline(fp, line, sizeof(line)))
 {
-  have_fscaps = atoi(line);
+  val = atoi(line);
 }
   fclose(fp);
 out:
-  return have_fscaps;
+  return val;
 }
 
 int
@@ -552,7 +571,6 @@ main(int argc, char **argv)
   int fd, r;
   int errors = 0;
   cap_t caps = NULL;
-  int have_fscaps = -1;
 
   while (argc  1)
 {
@@ -692,9 +710,6 @@ main(int argc, char **argv)
   break;
 }
 
-  if (have_fscaps == -1)
-  have_fscaps = check_fscaps_enabled();
-
   if (systemmode)
 {
   const char file[] = /etc/sysconfig/security;
@@ -747,6 +762,11 @@ main(int argc, char **argv)
   permfiles = argv[1];
 }
 
+  if (have_fscaps == 1  !check_fscaps_enabled())
+{
+  fprintf(stderr, Warning: running kernel does not support fscaps\n);
+}
+
   if  (do_set == -1)
 do_set = 0;
 
@@ -802,7 +822,7 @@ main(int argc, char **argv)
}
  if (!strncmp(p, +capabilities , 14))
  

commit permissions for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package permissions for openSUSE:12.1 
checked in at 2011-11-07 14:28:59

Comparing /work/SRC/openSUSE:12.1/permissions (Old)
 and  /work/SRC/openSUSE:12.1/.permissions.new (New)


Package is permissions, Maintainer is lnus...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/permissions/permissions.changes 2011-10-24 
13:18:20.0 +0200
+++ /work/SRC/openSUSE:12.1/.permissions.new/permissions.changes
2011-11-07 14:29:00.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 09:39:43 UTC 2011 - lnus...@suse.de
+
+- disable run time fscaps detection (bnc#728312)
+
+---

New:

  0001-disable-run-time-fscaps-detection-bnc-728312.diff



Other differences:
--
++ permissions.spec ++
--- /var/tmp/diff_new_pack.xFMrJB/_old  2011-11-07 14:29:01.0 +0100
+++ /var/tmp/diff_new_pack.xFMrJB/_new  2011-11-07 14:29:01.0 +0100
@@ -30,6 +30,7 @@
 PreReq: %fillup_prereq
 Summary:SUSE Linux Default Permissions
 Source: permissions-%{version}.tar.bz2
+Patch0: 0001-disable-run-time-fscaps-detection-bnc-728312.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://gitorious.org/opensuse/permissions
 
@@ -48,6 +49,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 make %{?_smp_mflags} CFLAGS=-W -Wall $RPM_OPT_FLAGS FSCAPS_DEFAULT_ENABLED=0

++ 0001-disable-run-time-fscaps-detection-bnc-728312.diff ++
From 94311258bfdf3ad86938bd50aaef4a83ca04eae5 Mon Sep 17 00:00:00 2001
From: Ludwig Nussel ludwig.nus...@suse.de
Date: Mon, 7 Nov 2011 10:34:38 +0100
Subject: [PATCH] disable run time fscaps detection (bnc#728312)

PERMISSIONS_FSCAPS setting in /etc/sysconfig/security allows to enable
them again.
---
 chkstat.8 |5 +++--
 chkstat.c |   40 
 2 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/chkstat.8 b/chkstat.8
index 3492e21..364a237 100644
--- a/chkstat.8
+++ b/chkstat.8
@@ -52,8 +52,9 @@ Opposite of --set, ie warn only but don't make actual changes
 Omit printing the output header lines.
 .TP
 .IR \-\-fscaps,\ \-\-no\-fscaps
-Force or disable use of fscaps. Default is to automatically
-determine whether the running kernel supports fscaps.
+Enable or disable use of fscaps. In system mode the setting of
+PERMISSIONS_FSCAPS determines whether fscaps are on or off when this
+option is not set.
 .TP
 .IR \-\-examine\ file
 Check permissions for this file instead of all files listed in the permissions 
files.
diff --git a/chkstat.c b/chkstat.c
index e5c9b15..8682c3e 100644
--- a/chkstat.c
+++ b/chkstat.c
@@ -54,6 +54,7 @@ int nlevel;
 char** level;
 int do_set = -1;
 int default_set = 1;
+int have_fscaps = -1;
 char** permfiles = NULL;
 int npermfiles = 0;
 char* force_level;
@@ -281,6 +282,24 @@ parse_sysconf(const char* file)
  //fprintf(stderr, invalid value for CHECK_PERMISSIONS (must be 
'set', 'warn' or 'no')\n);
}
}
+  else if (have_fscaps == -1  !strncmp(p, PERMISSIONS_FSCAPS=, 19))
+   {
+ p+=19;
+ if (isquote(*p))
+   ++p;
+ if (!strncmp(p, yes, 3))
+   {
+ p+=3;
+ if (isquote(*p) || !*p)
+   have_fscaps=1;
+   }
+ else if (!strncmp(p, no, 2))
+   {
+ p+=2;
+ if (isquote(*p) || !*p)
+   have_fscaps=0;
+   }
+   }
 }
   fclose(fp);
   return 0;
@@ -515,18 +534,18 @@ check_fscaps_enabled()
 {
   FILE* fp;
   char line[128];
-  int have_fscaps = FSCAPS_DEFAULT_ENABLED;
+  int val = FSCAPS_DEFAULT_ENABLED;
   if ((fp = fopen(/sys/kernel/fscaps, r)) == 0)
 {
   goto out;
 }
   if (readline(fp, line, sizeof(line)))
 {
-  have_fscaps = atoi(line);
+  val = atoi(line);
 }
   fclose(fp);
 out:
-  return have_fscaps;
+  return val;
 }
 
 int
@@ -552,7 +571,6 @@ main(int argc, char **argv)
   int fd, r;
   int errors = 0;
   cap_t caps = NULL;
-  int have_fscaps = -1;
 
   while (argc  1)
 {
@@ -692,9 +710,6 @@ main(int argc, char **argv)
   break;
 }
 
-  if (have_fscaps == -1)
-  have_fscaps = check_fscaps_enabled();
-
   if (systemmode)
 {
   const char file[] = /etc/sysconfig/security;
@@ -747,6 +762,11 @@ main(int argc, char **argv)
   permfiles = argv[1];
 }
 
+  if (have_fscaps == 1  !check_fscaps_enabled())
+{
+  fprintf(stderr, Warning: running kernel does not support fscaps\n);
+}
+
   if  (do_set == -1)
 do_set = 0;
 
@@ -802,7 +822,7 @@ main(int argc, char **argv)
}
  if (!strncmp(p, +capabilities , 14))
{
-

commit ppc64-diag for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package ppc64-diag for openSUSE:Factory 
checked in at 2011-11-07 14:29:24

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


Package is ppc64-diag, Maintainer is jloe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/ppc64-diag/ppc64-diag.changes2011-09-23 
12:41:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.ppc64-diag.new/ppc64-diag.changes   
2011-11-07 14:29:28.0 +0100
@@ -1,0 +2,19 @@
+Wed Nov  2 21:11:06 UTC 2011 - dval...@suse.com
+
+- update to 2.4.2 
+  - Minor modifications to GPFS catalog files 
+and syslog_to_svclog.cpp
+  - Added gpfs files to the catalog, updated ppc64-diag-setup 
+notification commands
+  - Changed Makefiles and rules.mk to build for the default 
+architecture rather than -m32
+  - Added ELA code to the package, made changes to the rules.mk 
+and minor changes to the spec file
+  - Bug fix adding in support for -e and -l, so that root users can
+be notified of serviceable events. Addresses bug #26192
+  - Added SIGCHLD handler to clean up servicelog notification 
+scripts
+  - Removed all absolute path references, specifically 
+to /sbin/lsvpd and lsvpd
+
+---

Old:

  ppc64-diag-2.3.1.tar.bz2
  ppc64-diag.event_severity.patch
  ppc64-diag.register.patch

New:

  ppc64-diag-2.4.2.tar.bz2
  ppc64-diag.makefile.patch



Other differences:
--
++ ppc64-diag.spec ++
--- /var/tmp/diff_new_pack.GTiy3X/_old  2011-11-07 14:29:29.0 +0100
+++ /var/tmp/diff_new_pack.GTiy3X/_new  2011-11-07 14:29:29.0 +0100
@@ -19,26 +19,25 @@
 Url:http://linux-diag.sourceforge.net/ppc64-diag/
 
 Name:   ppc64-diag
-Version:2.3.1
-Release:8
+Version:2.4.2
+Release:1
 Summary:Linux for Power Platform Diagnostics
 Group:  System/Monitoring
 License:Other uncritical OpenSource License; Eclipse Public License 
v1.0
 ExclusiveArch:  ppc ppc64
-BuildRequires:  librtas libservicelog-devel
+BuildRequires:  librtas-devel libservicelog-devel
+BuildRequires:  sqlite3-devel gcc-c++ bison flex libvpd2-devel
 Requires:   servicelog
 Requires:   lsvpd
 # autoselect the package on systems which have the /vdevice/IBM,sp node
 # All pSeries POWER5 and later have this property
 Supplements:modalias(vio:TIBM*spS*)
 PreReq: %insserv_prereq
-PreReq: libservicelog
 PreReq: aaa_base
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:ppc64-diag-2.3.1.tar.bz2
-Patch0: ppc64-diag.event_severity.patch
+Source0:%{name}-%{version}.tar.bz2
+Patch0:ppc64-diag.makefile.patch
 Patch1: ppc64-diag.rtas_errd.patch
-Patch2: ppc64-diag.register.patch
 
 %description
 Platform diagnostics for Linux for Power writes events reported by the
@@ -57,9 +56,8 @@
 
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 %patch1 -p1
-%patch2 -p1
 
 %build
 make
@@ -67,15 +65,21 @@
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
 chmod 644 $RPM_BUILD_ROOT/etc/ppc64-diag/servevent_parse.pl
+pushd $RPM_BUILD_ROOT/etc/init.d
+ln -s rtas_errd $RPM_BUILD_ROOT/usr/sbin/rcrtas_errd
+popd 
 
 %files
 %defattr (-,root,root,-)
-%doc COPYRIGHT
+%doc %attr(644,root,root) COPYRIGHT
 /usr/sbin/*
 %dir /etc/ppc64-diag
 %config /etc/ppc64-diag/*
 %config /etc/rc.powerfail
 %config %attr(755,root,root) /etc/init.d/rtas_errd
+%{_mandir}/man8/explain_syslog.8.gz
+%{_mandir}/man8/syslog_to_svclog.8.gz
+
 %if 1
 
 %post

++ ppc64-diag-2.3.1.tar.bz2 - ppc64-diag-2.4.2.tar.bz2 ++
 7528 lines of diff (skipped)

++ ppc64-diag.makefile.patch ++
--- ela/Makefile.orig   2011-11-02 21:40:12.0 +0100
+++ ela/Makefile2011-11-02 21:40:26.0 +0100
@@ -75,7 +75,7 @@
@$(call 
install_files,$(CATALOG),744,$(DESTDIR)/etc/ppc64-diag/message_catalog)
@$(call 
install_files,$(CATALOG_REGEX),744,$(DESTDIR)/etc/ppc64-diag/message_catalog/with_regex)
@$(call install_man,$(MANPAGES),$(DESTDIR))
-   $(INSTALL) -d -m 755 /var/log/ppc64-diag
+   $(INSTALL) -d -m 755 $(DESTDIR)/var/log/ppc64-diag
 
 clean:
@rm -rf $(CMDS) *.o lex.*.c *.tab.c *.tab.h
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit splashy for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package splashy for openSUSE:Factory checked 
in at 2011-11-07 14:31:24

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


Package is splashy, Maintainer is hma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/splashy/splashy.changes  2011-09-23 
12:46:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.splashy.new/splashy.changes 2011-11-07 
14:31:25.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov  6 11:57:20 UTC 2011 - a...@suse.de
+
+- For openSUSE it's mkinitrd and not update_initramfs (bnc#542595).
+  Patch: update-initramfs.patch
+
+---

New:

  update-initramfs.patch



Other differences:
--
++ splashy.spec ++
--- /var/tmp/diff_new_pack.btEnwi/_old  2011-11-07 14:31:27.0 +0100
+++ /var/tmp/diff_new_pack.btEnwi/_new  2011-11-07 14:31:27.0 +0100
@@ -41,6 +41,7 @@
 Patch5: fix_autogen_version.diff
 Patch6: gcc46-build-fixes.patch
 Patch7: splashy-exits-prematurely-fix.patch
+Patch8: update-initramfs.patch
 BuildRequires:  DirectFB-devel file-devel
 BuildRequires:  glib2-devel
 BuildRequires:  ImageMagick-devel
@@ -189,6 +190,7 @@
 %patch5
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 find . -type f | xargs perl -pi -e s|/usr/lib/|%{_libdir}/|g
 find . -type f | xargs perl -pi -e s|/lib/|/%{_lib}/|g
 # build gets confused on x86_64 because of this .la file

++ update-initramfs.patch ++
Index: splashy-0.3.13/src/splashy_config-functions.c
===
--- splashy-0.3.13.orig/src/splashy_config-functions.c
+++ splashy-0.3.13/src/splashy_config-functions.c
@@ -70,7 +70,7 @@ set_new_theme (gchar * theme_name)
  * - figure out the command to run (per distro) before printing (set
  * to Debian for now) 
  */
-const gchar *_initramfs_cmd = update-initramfs -u;
+const gchar *_initramfs_cmd = mkinitrd;
 
 gint ret = RETURN_ERROR;
 GString *new_theme =
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit timezone for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:Factory 
checked in at 2011-11-07 14:32:15

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


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

Changes:

--- /work/SRC/openSUSE:Factory/timezone/timezone-java.changes   2011-10-26 
16:12:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.timezone.new/timezone-java.changes  
2011-11-07 14:32:17.0 +0100
@@ -1,0 +2,9 @@
+Sat Nov  5 13:58:36 CET 2011 - dmuel...@suse.de
+
+- update to 2011n:
+  * Cuba (America/Havana) has extended summer time to end on Nov 13
+  * Europe/Tiraspol decided not to split from the rest of Moldova, hence
+  that zone has been removed
+  * Fiji end of summer time was moved fromrward from Feb 26 to Jan 22
+
+---
timezone.changes: same change

Old:

  chisinau-split-fix.diff
  tzdata2011m.tar.gz

New:

  tzdata2011n.tar.gz



Other differences:
--
++ timezone-java.spec ++
--- /var/tmp/diff_new_pack.vVXGjo/_old  2011-11-07 14:32:19.0 +0100
+++ /var/tmp/diff_new_pack.vVXGjo/_new  2011-11-07 14:32:19.0 +0100
@@ -25,7 +25,7 @@
 Group:  System/Base
 # COMMON-BEGIN
 # COMMON-BEGIN
-Version:2011m
+Version:2011n
 Release:1
 Source: ftp://munnari.oz.au/pub/tzdata%{version}.tar.gz
 Source1:ftp://munnari.oz.au/pub/tzcode2011i.tar.gz
@@ -34,7 +34,6 @@
 Patch2: tzcode-ksh.diff
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
-Patch5: chisinau-split-fix.diff
 # COMMON-END
 # COMMON-END
 Url:http://www.gnu.org/software/libc/libc.html
@@ -58,7 +57,6 @@
 %patch2
 %patch3
 %patch4
-%patch5 -p1
 # COMMON-PREP-END
 # COMMON-PREP-END
 

++ timezone.spec ++
--- /var/tmp/diff_new_pack.vVXGjo/_old  2011-11-07 14:32:19.0 +0100
+++ /var/tmp/diff_new_pack.vVXGjo/_new  2011-11-07 14:32:19.0 +0100
@@ -25,7 +25,7 @@
 Url:http://www.gnu.org/software/libc/libc.html
 PreReq: filesystem, coreutils
 # COMMON-BEGIN
-Version:2011m
+Version:2011n
 Release:1
 Source: ftp://munnari.oz.au/pub/tzdata%{version}.tar.gz
 Source1:ftp://munnari.oz.au/pub/tzcode2011i.tar.gz
@@ -34,7 +34,6 @@
 Patch2: tzcode-ksh.diff
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
-Patch5: chisinau-split-fix.diff
 # COMMON-END
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global AREAEtc
@@ -54,7 +53,6 @@
 %patch2
 %patch3
 %patch4
-%patch5 -p1
 # COMMON-PREP-END
 
 %build

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



commit timezone for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:12.1 checked 
in at 2011-11-07 14:32:21

Comparing /work/SRC/openSUSE:12.1/timezone (Old)
 and  /work/SRC/openSUSE:12.1/.timezone.new (New)


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

Changes:

--- /work/SRC/openSUSE:12.1/timezone/timezone-java.changes  2011-10-28 
19:11:17.0 +0200
+++ /work/SRC/openSUSE:12.1/.timezone.new/timezone-java.changes 2011-11-07 
14:32:22.0 +0100
@@ -1,0 +2,9 @@
+Sat Nov  5 13:58:36 CET 2011 - dmuel...@suse.de
+
+- update to 2011n:
+  * Cuba (America/Havana) has extended summer time to end on Nov 13
+  * Europe/Tiraspol decided not to split from the rest of Moldova, hence
+  that zone has been removed
+  * Fiji end of summer time was moved fromrward from Feb 26 to Jan 22
+
+---
timezone.changes: same change

Old:

  chisinau-split-fix.diff
  tzdata2011m.tar.gz

New:

  tzdata2011n.tar.gz



Other differences:
--
++ timezone-java.spec ++
--- /var/tmp/diff_new_pack.QhD9dV/_old  2011-11-07 14:32:23.0 +0100
+++ /var/tmp/diff_new_pack.QhD9dV/_new  2011-11-07 14:32:23.0 +0100
@@ -25,7 +25,7 @@
 Group:  System/Base
 # COMMON-BEGIN
 # COMMON-BEGIN
-Version:2011m
+Version:2011n
 Release:1
 Source: ftp://munnari.oz.au/pub/tzdata%{version}.tar.gz
 Source1:ftp://munnari.oz.au/pub/tzcode2011i.tar.gz
@@ -34,7 +34,6 @@
 Patch2: tzcode-ksh.diff
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
-Patch5: chisinau-split-fix.diff
 # COMMON-END
 # COMMON-END
 Url:http://www.gnu.org/software/libc/libc.html
@@ -58,7 +57,6 @@
 %patch2
 %patch3
 %patch4
-%patch5 -p1
 # COMMON-PREP-END
 # COMMON-PREP-END
 

++ timezone.spec ++
--- /var/tmp/diff_new_pack.QhD9dV/_old  2011-11-07 14:32:23.0 +0100
+++ /var/tmp/diff_new_pack.QhD9dV/_new  2011-11-07 14:32:23.0 +0100
@@ -25,7 +25,7 @@
 Url:http://www.gnu.org/software/libc/libc.html
 PreReq: filesystem, coreutils
 # COMMON-BEGIN
-Version:2011m
+Version:2011n
 Release:1
 Source: ftp://munnari.oz.au/pub/tzdata%{version}.tar.gz
 Source1:ftp://munnari.oz.au/pub/tzcode2011i.tar.gz
@@ -34,7 +34,6 @@
 Patch2: tzcode-ksh.diff
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
-Patch5: chisinau-split-fix.diff
 # COMMON-END
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global AREAEtc
@@ -54,7 +53,6 @@
 %patch2
 %patch3
 %patch4
-%patch5 -p1
 # COMMON-PREP-END
 
 %build

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



commit vacuum-im-plugins-spellchecker for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package vacuum-im-plugins-spellchecker for 
openSUSE:Factory checked in at 2011-11-07 14:33:40

Comparing /work/SRC/openSUSE:Factory/vacuum-im-plugins-spellchecker (Old)
 and  /work/SRC/openSUSE:Factory/.vacuum-im-plugins-spellchecker.new (New)


Package is vacuum-im-plugins-spellchecker, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/vacuum-im-plugins-spellchecker/vacuum-im-plugins-spellchecker.changes
2011-09-23 12:49:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.vacuum-im-plugins-spellchecker.new/vacuum-im-plugins-spellchecker.changes
   2011-11-07 14:33:41.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov  5 10:27:14 UTC 2011 - egdf...@opensuse.org
+
+- add BuildReguest aspell to build in 12.1 
+
+---



Other differences:
--
++ vacuum-im-plugins-spellchecker.spec ++
--- /var/tmp/diff_new_pack.ch57J0/_old  2011-11-07 14:33:42.0 +0100
+++ /var/tmp/diff_new_pack.ch57J0/_new  2011-11-07 14:33:42.0 +0100
@@ -27,12 +27,13 @@
 %if 0%{?suse_version}  1120
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %endif
+
 License:GPLv3
 Group:  System/Libraries
 Source: %{name}-%{version}.tar.bz2
 Url:http://www.vacuum-im.org/
-BuildRequires:  aspell-devel cmake libqt4-devel libvacuumutils1_7 
vacuum-im-devel
-BuildRequires:  fdupes
+BuildRequires:  aspell aspell-devel libqt4-devel libvacuumutils1_7 
vacuum-im-devel
+BuildRequires:  cmake fdupes
 
 %description
 Highlights words that may not be spelled correctly.

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



commit yast2-installation for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory checked in at 2011-11-07 14:35:15

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


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

Changes:

--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2011-10-20 14:14:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes   
2011-11-07 14:35:18.0 +0100
@@ -1,0 +2,20 @@
+Thu Nov 03 11:52:08 CET 2011 - aschn...@suse.de
+
+- use same code to display ip addresses during vnc and ssh
+  installation (bnc#727802)
+- 2.21.28
+
+---
+Wed Nov  2 17:14:51 CET 2011 - fcro...@suse.com
+
+- Ensure network is not started by systemd before Firstboot /
+  SecondStage (bnc#726823)
+- 2.21.27
+
+---
+Mon Oct 31 09:18:46 CET 2011 - jsuch...@suse.cz
+
+- control files: save ecdsa keys (bnc#726468)
+- 2.21.26 
+
+---

Old:

  yast2-installation-2.21.25.tar.bz2

New:

  yast2-installation-2.21.28.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.MKhuKC/_old  2011-11-07 14:35:23.0 +0100
+++ /var/tmp/diff_new_pack.MKhuKC/_new  2011-11-07 14:35:23.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   yast2-installation
-Version:2.21.25
+Version:2.21.28
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ YaST2-Firstboot.service ++
--- /var/tmp/diff_new_pack.MKhuKC/_old  2011-11-07 14:35:23.0 +0100
+++ /var/tmp/diff_new_pack.MKhuKC/_new  2011-11-07 14:35:23.0 +0100
@@ -1,7 +1,7 @@
 [Unit]
 Description=YaST2 Firstboot
 After=apparmor.service local-fs.target YaST2-Second-Stage.service
-Before=getty@tty1.service xdm.service
+Before=getty@tty1.service xdm.service network.service NetworkManager.service
 ConditionPathExists=/var/lib/YaST2/reconfig_system
 
 [Service]

++ YaST2-Second-Stage.service ++
--- /var/tmp/diff_new_pack.MKhuKC/_old  2011-11-07 14:35:23.0 +0100
+++ /var/tmp/diff_new_pack.MKhuKC/_new  2011-11-07 14:35:23.0 +0100
@@ -1,7 +1,7 @@
 [Unit]
 Description=YaST2 Second Stage
 After=apparmor.service local-fs.target
-Before=getty@tty1.service xdm.service
+Before=getty@tty1.service xdm.service network.service NetworkManager.service
 ConditionPathExists=/var/lib/YaST2/runme_at_boot
 
 [Service]

++ yast2-installation-2.21.25.tar.bz2 - yast2-installation-2.21.28.tar.bz2 
++
 13505 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-installation-2.21.25/Makefile.am 
new/yast2-installation-2.21.28/Makefile.am
--- old/yast2-installation-2.21.25/Makefile.am  2011-10-19 16:30:15.0 
+0200
+++ new/yast2-installation-2.21.28/Makefile.am  2011-10-11 09:07:05.0 
+0200
@@ -20,7 +20,6 @@
 IS_DEVTOOLS= $(findstring yast2-devtools,$(RPMNAME))
 
 DEVTOOLS_DIR   = $(if 
$(IS_DEVTOOLS),$(srcdir)/devtools,$(Y2DEVTOOLS_PREFIX)/share/YaST2/data/devtools)
-ALL_PACKAGES   = $(DEVTOOLS_DIR)/admin/all-packages
 LEGALESE_DIR   = $(if 
$(HAS_YAST_LICENSE),$(DEVTOOLS_DIR)/admin/copyright/yast,$(DEVTOOLS_DIR)/admin/copyright/gpl)
 
 COPYRIGHT_files_gpl= README COPYING
@@ -155,7 +154,7 @@
$(Y2TOOL) create-spec  $$i  $$here/package/$${newname} ; \
done
 
-package: check-up-to-date check-tagversion check-all-packages check-textdomain 
package-local
+package: check-up-to-date check-tagversion check-textdomain package-local
 
 TAGVERSION  = $(Y2TOOL) tagversion
 
@@ -185,21 +184,6 @@
 check-parse:
@echo Not running parseycp.
 
-check-all-packages:
-   @if [ ! -e $(ALL_PACKAGES) ]; then\
-   echo ERROR: Can't find $(ALL_PACKAGES); false;\
-   fi
-   @if ! grep -q ^$(RPMNAME)[[:space:]] $(ALL_PACKAGES); then
\
-   echo ERROR: $(RPMNAME) not in $(ALL_PACKAGES); false; \
-   fi
-   @if grep -q ^$(RPMNAME)[[:space:]]\+.*? $(ALL_PACKAGES); then \
-   echo ERROR: $(RPMNAME) info in $(ALL_PACKAGES) contains some 
unknown (?) fields:; \
-   

commit yast2-installation for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-installation for openSUSE:12.1 
checked in at 2011-11-07 14:35:23

Comparing /work/SRC/openSUSE:12.1/yast2-installation (Old)
 and  /work/SRC/openSUSE:12.1/.yast2-installation.new (New)


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

Changes:

--- /work/SRC/openSUSE:12.1/yast2-installation/yast2-installation.changes   
2011-10-24 13:37:45.0 +0200
+++ /work/SRC/openSUSE:12.1/.yast2-installation.new/yast2-installation.changes  
2011-11-07 14:35:27.0 +0100
@@ -1,0 +2,20 @@
+Thu Nov 03 11:52:08 CET 2011 - aschn...@suse.de
+
+- use same code to display ip addresses during vnc and ssh
+  installation (bnc#727802)
+- 2.21.28
+
+---
+Wed Nov  2 17:14:51 CET 2011 - fcro...@suse.com
+
+- Ensure network is not started by systemd before Firstboot /
+  SecondStage (bnc#726823)
+- 2.21.27
+
+---
+Mon Oct 31 09:18:46 CET 2011 - jsuch...@suse.cz
+
+- control files: save ecdsa keys (bnc#726468)
+- 2.21.26 
+
+---

Old:

  yast2-installation-2.21.25.tar.bz2

New:

  yast2-installation-2.21.28.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.LShzg5/_old  2011-11-07 14:35:27.0 +0100
+++ /var/tmp/diff_new_pack.LShzg5/_new  2011-11-07 14:35:27.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   yast2-installation
-Version:2.21.25
+Version:2.21.28
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ YaST2-Firstboot.service ++
--- /var/tmp/diff_new_pack.LShzg5/_old  2011-11-07 14:35:27.0 +0100
+++ /var/tmp/diff_new_pack.LShzg5/_new  2011-11-07 14:35:27.0 +0100
@@ -1,7 +1,7 @@
 [Unit]
 Description=YaST2 Firstboot
 After=apparmor.service local-fs.target YaST2-Second-Stage.service
-Before=getty@tty1.service xdm.service
+Before=getty@tty1.service xdm.service network.service NetworkManager.service
 ConditionPathExists=/var/lib/YaST2/reconfig_system
 
 [Service]

++ YaST2-Second-Stage.service ++
--- /var/tmp/diff_new_pack.LShzg5/_old  2011-11-07 14:35:27.0 +0100
+++ /var/tmp/diff_new_pack.LShzg5/_new  2011-11-07 14:35:27.0 +0100
@@ -1,7 +1,7 @@
 [Unit]
 Description=YaST2 Second Stage
 After=apparmor.service local-fs.target
-Before=getty@tty1.service xdm.service
+Before=getty@tty1.service xdm.service network.service NetworkManager.service
 ConditionPathExists=/var/lib/YaST2/runme_at_boot
 
 [Service]

++ yast2-installation-2.21.25.tar.bz2 - yast2-installation-2.21.28.tar.bz2 
++
 13505 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-installation-2.21.25/Makefile.am 
new/yast2-installation-2.21.28/Makefile.am
--- old/yast2-installation-2.21.25/Makefile.am  2011-10-19 16:30:15.0 
+0200
+++ new/yast2-installation-2.21.28/Makefile.am  2011-10-11 09:07:05.0 
+0200
@@ -20,7 +20,6 @@
 IS_DEVTOOLS= $(findstring yast2-devtools,$(RPMNAME))
 
 DEVTOOLS_DIR   = $(if 
$(IS_DEVTOOLS),$(srcdir)/devtools,$(Y2DEVTOOLS_PREFIX)/share/YaST2/data/devtools)
-ALL_PACKAGES   = $(DEVTOOLS_DIR)/admin/all-packages
 LEGALESE_DIR   = $(if 
$(HAS_YAST_LICENSE),$(DEVTOOLS_DIR)/admin/copyright/yast,$(DEVTOOLS_DIR)/admin/copyright/gpl)
 
 COPYRIGHT_files_gpl= README COPYING
@@ -155,7 +154,7 @@
$(Y2TOOL) create-spec  $$i  $$here/package/$${newname} ; \
done
 
-package: check-up-to-date check-tagversion check-all-packages check-textdomain 
package-local
+package: check-up-to-date check-tagversion check-textdomain package-local
 
 TAGVERSION  = $(Y2TOOL) tagversion
 
@@ -185,21 +184,6 @@
 check-parse:
@echo Not running parseycp.
 
-check-all-packages:
-   @if [ ! -e $(ALL_PACKAGES) ]; then\
-   echo ERROR: Can't find $(ALL_PACKAGES); false;\
-   fi
-   @if ! grep -q ^$(RPMNAME)[[:space:]] $(ALL_PACKAGES); then
\
-   echo ERROR: $(RPMNAME) not in $(ALL_PACKAGES); false; \
-   fi
-   @if grep -q ^$(RPMNAME)[[:space:]]\+.*? $(ALL_PACKAGES); then \
-   echo ERROR: $(RPMNAME) info in $(ALL_PACKAGES) contains some 
unknown (?) fields:; \
-   echo; 

commit yast2-nfs-server for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-nfs-server for 
openSUSE:Factory checked in at 2011-11-07 14:35:55

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


Package is yast2-nfs-server, Maintainer is mvid...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-nfs-server/yast2-nfs-server.changes
2011-09-23 12:53:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-nfs-server.new/yast2-nfs-server.changes   
2011-11-07 14:35:56.0 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 13:48:33 CET 2011 - loci...@suse.cz
+
+- Fixed testsuites
+- 2.21.2
+
+---

Old:

  yast2-nfs-server-2.21.1.tar.bz2

New:

  yast2-nfs-server-2.21.2.tar.bz2



Other differences:
--
++ yast2-nfs-server.spec ++
--- /var/tmp/diff_new_pack.BpupaU/_old  2011-11-07 14:35:57.0 +0100
+++ /var/tmp/diff_new_pack.BpupaU/_new  2011-11-07 14:35:57.0 +0100
@@ -19,16 +19,14 @@
 
 
 Name:   yast2-nfs-server
-Version:2.21.1
+Version:2.21.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-nfs-server-2.21.1.tar.bz2
-
-Prefix: /usr
+Source0:yast2-nfs-server-%{version}.tar.bz2
 
 Group:  System/YaST
-License:GPL v2 or later
+License:GPL-2.0+
 BuildRequires:  perl-XML-Writer update-desktop-files yast2 yast2-devtools 
yast2-testsuite
 # Service::Find
 # Wizard::SetDesktopTitleAndIcon
@@ -55,26 +53,26 @@
 -
 
 %prep
-%setup -n yast2-nfs-server-2.21.1
+%setup -n yast2-nfs-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
@@ -91,10 +89,10 @@
 /usr/share/YaST2/clients/nfs_server_auto.ycp
 /usr/share/YaST2/modules/NfsServer.ycp
 /usr/share/YaST2/modules/NfsServer.ybc
-%{prefix}/share/applications/YaST2/nfs_server.desktop
+%{_prefix}/share/applications/YaST2/nfs_server.desktop
 /usr/share/YaST2/scrconf/etc_exports.scr
 /usr/lib/YaST2/servers_non_y2/ag_exports
-%doc %{prefix}/share/doc/packages/yast2-nfs-server
+%doc %{_prefix}/share/doc/packages/yast2-nfs-server
 /usr/share/YaST2/schema/autoyast/rnc/nfs_server.rnc
 
 %files -n yast2-nfs-common

++ yast2-nfs-server-2.21.1.tar.bz2 - yast2-nfs-server-2.21.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.1/Makefile.am 
new/yast2-nfs-server-2.21.2/Makefile.am
--- old/yast2-nfs-server-2.21.1/Makefile.am 2011-09-21 11:38:00.0 
+0200
+++ new/yast2-nfs-server-2.21.2/Makefile.am 2011-11-03 13:45:26.0 
+0100
@@ -20,7 +20,6 @@
 IS_DEVTOOLS= $(findstring yast2-devtools,$(RPMNAME))
 
 DEVTOOLS_DIR   = $(if 
$(IS_DEVTOOLS),$(srcdir)/devtools,$(Y2DEVTOOLS_PREFIX)/share/YaST2/data/devtools)
-ALL_PACKAGES   = $(DEVTOOLS_DIR)/admin/all-packages
 LEGALESE_DIR   = $(if 
$(HAS_YAST_LICENSE),$(DEVTOOLS_DIR)/admin/copyright/yast,$(DEVTOOLS_DIR)/admin/copyright/gpl)
 
 COPYRIGHT_files_gpl= README COPYING
@@ -155,7 +154,7 @@
$(Y2TOOL) create-spec  $$i  $$here/package/$${newname} ; \
done
 
-package: check-up-to-date check-tagversion check-all-packages check-textdomain 
package-local
+package: check-up-to-date check-tagversion check-textdomain package-local
 
 TAGVERSION  = $(Y2TOOL) tagversion
 
@@ -185,21 +184,6 @@
 check-parse:
@echo Not running parseycp.
 
-check-all-packages:
-   @if [ ! -e $(ALL_PACKAGES) ]; then\
-   echo ERROR: Can't find 

commit yast2-qt-pkg for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt-pkg for openSUSE:Factory 
checked in at 2011-11-07 14:37:54

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


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

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt-pkg/yast2-qt-pkg.changes
2011-10-24 20:21:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-qt-pkg.new/yast2-qt-pkg.changes   
2011-11-07 14:37:56.0 +0100
@@ -1,0 +2,7 @@
+Fri Nov  4 14:31:32 CET 2011 - tgoettlic...@suse.de
+
+- Changed default for Ignore recommended packages for already installed
+  packages (bnc #716017)
+- Version: 2.21.14
+
+---

Old:

  yast2-qt-pkg-2.21.13.tar.bz2

New:

  yast2-qt-pkg-2.21.14.tar.bz2



Other differences:
--
++ yast2-qt-pkg.spec ++
--- /var/tmp/diff_new_pack.0xiFIG/_old  2011-11-07 14:37:57.0 +0100
+++ /var/tmp/diff_new_pack.0xiFIG/_new  2011-11-07 14:37:57.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt-pkg
-Version:2.21.13
+Version:2.21.14
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-pkg-2.21.13.tar.bz2
+Source0:yast2-qt-pkg-2.21.14.tar.bz2
 Group:  System/YaST
 License:GPL-2.0 or later
 BuildRequires:  docbook-xsl-stylesheets doxygen libdrm-devel libjpeg-devel 
libxcrypt-devel

++ yast2-qt-pkg-2.21.13.tar.bz2 - yast2-qt-pkg-2.21.14.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-pkg-2.21.13/VERSION.cmake 
new/yast2-qt-pkg-2.21.14/VERSION.cmake
--- old/yast2-qt-pkg-2.21.13/VERSION.cmake  2011-10-24 17:50:53.0 
+0200
+++ new/yast2-qt-pkg-2.21.14/VERSION.cmake  2011-11-07 09:20:51.0 
+0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 21)
-SET(VERSION_PATCH 13)
+SET(VERSION_PATCH 14)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-pkg-2.21.13/package/yast2-qt-pkg.changes 
new/yast2-qt-pkg-2.21.14/package/yast2-qt-pkg.changes
--- old/yast2-qt-pkg-2.21.13/package/yast2-qt-pkg.changes   2011-10-24 
17:50:53.0 +0200
+++ new/yast2-qt-pkg-2.21.14/package/yast2-qt-pkg.changes   2011-11-07 
09:20:51.0 +0100
@@ -1,4 +1,11 @@
 ---
+Fri Nov  4 14:31:32 CET 2011 - tgoettlic...@suse.de
+
+- Changed default for Ignore recommended packages for already installed
+  packages (bnc #716017)
+- Version: 2.21.14
+
+---
 Mon Oct 24 17:50:20 CEST 2011 - tgoettlic...@suse.de
 
 - Fixed bnc#725953: Package manager settings are saved but not applied on start
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-pkg-2.21.13/src/YQPackageSelector.cc 
new/yast2-qt-pkg-2.21.14/src/YQPackageSelector.cc
--- old/yast2-qt-pkg-2.21.13/src/YQPackageSelector.cc   2011-10-24 
17:50:53.0 +0200
+++ new/yast2-qt-pkg-2.21.14/src/YQPackageSelector.cc   2011-11-07 
09:20:51.0 +0100
@@ -1719,8 +1719,8 @@
 pkgVerifySytemModeChanged ( _verifySystemModeAction-isChecked() );
 
 _ignoreAlreadyRecommendAction-setChecked( 
-   updateMode() ? false : 
settings.value(Options/IgnoreRecommendedPackagesForAlreadyInstalledPackages,
-   
zypp::getZYpp()-resolver()-ignoreAlreadyRecommended() ).toBool() ); 
+   
settings.value(Options/IgnoreRecommendedPackagesForAlreadyInstalledPackages,
+   false ).toBool() ); 
 
pkgIgnoreAlreadyRecommendedChanged(_ignoreAlreadyRecommendAction-isChecked());
 
 

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



commit yast2-trans for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-trans for openSUSE:Factory 
checked in at 2011-11-07 14:38:04

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


Package is yast2-trans, Maintainer is k...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-trans/yast2-trans.changes  2011-11-05 
11:35:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-trans.new/yast2-trans.changes 
2011-11-07 14:38:07.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 7 12:02:21 CET 2011 - k...@suse.de
+
+- Updated languages: gl hu it.
+
+



Other differences:
--
++ yast2-trans-gl-2.21.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-trans-gl-2.21.0/po/network.gl.po 
new/yast2-trans-gl-2.21.0/po/network.gl.po
--- old/yast2-trans-gl-2.21.0/po/network.gl.po  2011-10-05 11:19:23.0 
+0200
+++ new/yast2-trans-gl-2.21.0/po/network.gl.po  2011-11-07 11:58:58.0 
+0100
@@ -7,15 +7,15 @@
 #
 # Jesús Bravo Álvarez j...@pobox.com, 2000.
 # Leandro Regueiro leandro.regue...@gmail.com, 2008.
-# Manuel A. Vazquez xixi...@yahoo.es, 2010.
+# Manuel A. Vazquez xixi...@yahoo.es, 2010, 2011.
 msgid 
 msgstr 
 Project-Id-Version: YaST2 (@memory@)\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2011-10-05 10:00+0200\n
-PO-Revision-Date: 2010-04-25 09:13+0200\n
+PO-Revision-Date: 2011-11-05 12:32+0100\n
 Last-Translator: Manuel A. Vazquez xixi...@yahoo.es\n
-Language-Team: Galician proxe...@trasno.net\n
+Language-Team: Documentos kde-i18n-...@kde.org\n
 Language: gl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -89,6 +89,10 @@
 SSH is a service that allows logging into this computer remotely via 
dedicated\n
 SSH client/p
 msgstr 
+pbbigDevasa e SSH/big/bbr /\n
+A devasa é un mecanismo de defensa para protexer o seu sistema de ataques 
procedentes da rede.\n
+SSH é un servizo que lle permite identificarse remotamente no seu computador 
mediante un cliente\n
+SSH dedicado/p
 
 #: src/clients/firewall_stage1_proposal.ycp:68
 msgid 
@@ -104,16 +108,17 @@
 service and allow remote SSH logins. This will also enable SSH service (i.e. 
it\n
 will be started on computer boot)./p
 msgstr 
+pCoa devasa activada, debe decidir se abre o porto da devasa\n
+para o servizo SSH e permite a identificación remota mediante SSH. Tamén\n
+debe permitir o servizo SSH( p.e. inicialo no arrinque do sistema)./p
 
 #: src/clients/firewall_stage1_proposal.ycp:143
-#, fuzzy
 msgid Firewall will be enabled (a 
href=\firewall--disable_firewall_in_proposal\disable/a)
-msgstr O cortalumes está activado (a 
href=\firewall--disable_firewall_in_proposal\desactivar/a)
+msgstr A devasa está activada (a 
href=\firewall--disable_firewall_in_proposal\desactivar/a)
 
 #: src/clients/firewall_stage1_proposal.ycp:145
-#, fuzzy
 msgid Firewall will be disabled (a 
href=\firewall--enable_firewall_in_proposal\enable/a)
-msgstr O cortalumes está desactivado (a 
href=\firewall--enable_firewall_in_proposal\activar/a)
+msgstr A devasa está desactivada (a 
href=\firewall--enable_firewall_in_proposal\activar/a)
 
 #: src/clients/firewall_stage1_proposal.ycp:149
 msgid SSH service will be enabled, SSH port will be open (a 
href=\firewall--disable_ssh_in_proposal\disable and close/a)
@@ -337,14 +342,17 @@
 
 #. translators: command line help for network module
 #: src/clients/network.ycp:133
-#, fuzzy
 msgid 
 Configuration of network.\n
 This is only a delegator to network sub-modules.\n
 You can run these network modules:\n
 \n
 lan\t
-msgstr Configuración da rede.\n
+msgstr 
+Configuración da rede.\n
+Isto só é un delegado dos submódulos da rede.\n
+Pode executar este módulo de rede:\n
+rede\t
 
 #. ask the user
 #. translators: command line prompt for entering a password
@@ -559,7 +567,7 @@
 
 #: src/clients/routing.ycp:187
 msgid At least one of the following parameters (gateway, netmask, device, 
options) must be specified
-msgstr 
+msgstr Hase especificar polo menos un dos seguintes parámetros (pasarela, 
máscara de rede, dispositivo, opcións)
 
 #: src/clients/routing.ycp:205
 #, ycp-format
@@ -1330,6 +1338,9 @@
 Choose an ISDN card or connection to change or remove.\n
 Then press the appropriate button: BEdit/B or BDelete/B./P\n
 msgstr 
+pbbigEditar ou eliminar:/BIG/Bbr\n
+Escolla unha tarxeta RDSI cuxa configuración queira modificar ou eliminar e\n
+prema o botón correspondente: BEditar/B ou BEliminar/B./P\n
 
 #: src/isdn/complex.ycp:365
 msgid Hardware
@@ -1369,27 +1380,28 @@
 
 #. help text 3/7
 #: src/isdn/ifdetails.ycp:61
-#, fuzzy
 msgid 
 pIf the callback mode is boff/b,  

commit yast2-trans for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-trans for openSUSE:12.1 
checked in at 2011-11-07 14:38:10

Comparing /work/SRC/openSUSE:12.1/yast2-trans (Old)
 and  /work/SRC/openSUSE:12.1/.yast2-trans.new (New)


Package is yast2-trans, Maintainer is k...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/yast2-trans/yast2-trans.changes 2011-11-05 
11:36:00.0 +0100
+++ /work/SRC/openSUSE:12.1/.yast2-trans.new/yast2-trans.changes
2011-11-07 14:38:12.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 7 12:02:21 CET 2011 - k...@suse.de
+
+- Updated languages: gl hu it.
+
+



Other differences:
--
++ yast2-trans-gl-2.21.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-trans-gl-2.21.0/po/network.gl.po 
new/yast2-trans-gl-2.21.0/po/network.gl.po
--- old/yast2-trans-gl-2.21.0/po/network.gl.po  2011-10-05 11:19:23.0 
+0200
+++ new/yast2-trans-gl-2.21.0/po/network.gl.po  2011-11-07 11:58:58.0 
+0100
@@ -7,15 +7,15 @@
 #
 # Jesús Bravo Álvarez j...@pobox.com, 2000.
 # Leandro Regueiro leandro.regue...@gmail.com, 2008.
-# Manuel A. Vazquez xixi...@yahoo.es, 2010.
+# Manuel A. Vazquez xixi...@yahoo.es, 2010, 2011.
 msgid 
 msgstr 
 Project-Id-Version: YaST2 (@memory@)\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2011-10-05 10:00+0200\n
-PO-Revision-Date: 2010-04-25 09:13+0200\n
+PO-Revision-Date: 2011-11-05 12:32+0100\n
 Last-Translator: Manuel A. Vazquez xixi...@yahoo.es\n
-Language-Team: Galician proxe...@trasno.net\n
+Language-Team: Documentos kde-i18n-...@kde.org\n
 Language: gl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -89,6 +89,10 @@
 SSH is a service that allows logging into this computer remotely via 
dedicated\n
 SSH client/p
 msgstr 
+pbbigDevasa e SSH/big/bbr /\n
+A devasa é un mecanismo de defensa para protexer o seu sistema de ataques 
procedentes da rede.\n
+SSH é un servizo que lle permite identificarse remotamente no seu computador 
mediante un cliente\n
+SSH dedicado/p
 
 #: src/clients/firewall_stage1_proposal.ycp:68
 msgid 
@@ -104,16 +108,17 @@
 service and allow remote SSH logins. This will also enable SSH service (i.e. 
it\n
 will be started on computer boot)./p
 msgstr 
+pCoa devasa activada, debe decidir se abre o porto da devasa\n
+para o servizo SSH e permite a identificación remota mediante SSH. Tamén\n
+debe permitir o servizo SSH( p.e. inicialo no arrinque do sistema)./p
 
 #: src/clients/firewall_stage1_proposal.ycp:143
-#, fuzzy
 msgid Firewall will be enabled (a 
href=\firewall--disable_firewall_in_proposal\disable/a)
-msgstr O cortalumes está activado (a 
href=\firewall--disable_firewall_in_proposal\desactivar/a)
+msgstr A devasa está activada (a 
href=\firewall--disable_firewall_in_proposal\desactivar/a)
 
 #: src/clients/firewall_stage1_proposal.ycp:145
-#, fuzzy
 msgid Firewall will be disabled (a 
href=\firewall--enable_firewall_in_proposal\enable/a)
-msgstr O cortalumes está desactivado (a 
href=\firewall--enable_firewall_in_proposal\activar/a)
+msgstr A devasa está desactivada (a 
href=\firewall--enable_firewall_in_proposal\activar/a)
 
 #: src/clients/firewall_stage1_proposal.ycp:149
 msgid SSH service will be enabled, SSH port will be open (a 
href=\firewall--disable_ssh_in_proposal\disable and close/a)
@@ -337,14 +342,17 @@
 
 #. translators: command line help for network module
 #: src/clients/network.ycp:133
-#, fuzzy
 msgid 
 Configuration of network.\n
 This is only a delegator to network sub-modules.\n
 You can run these network modules:\n
 \n
 lan\t
-msgstr Configuración da rede.\n
+msgstr 
+Configuración da rede.\n
+Isto só é un delegado dos submódulos da rede.\n
+Pode executar este módulo de rede:\n
+rede\t
 
 #. ask the user
 #. translators: command line prompt for entering a password
@@ -559,7 +567,7 @@
 
 #: src/clients/routing.ycp:187
 msgid At least one of the following parameters (gateway, netmask, device, 
options) must be specified
-msgstr 
+msgstr Hase especificar polo menos un dos seguintes parámetros (pasarela, 
máscara de rede, dispositivo, opcións)
 
 #: src/clients/routing.ycp:205
 #, ycp-format
@@ -1330,6 +1338,9 @@
 Choose an ISDN card or connection to change or remove.\n
 Then press the appropriate button: BEdit/B or BDelete/B./P\n
 msgstr 
+pbbigEditar ou eliminar:/BIG/Bbr\n
+Escolla unha tarxeta RDSI cuxa configuración queira modificar ou eliminar e\n
+prema o botón correspondente: BEditar/B ou BEliminar/B./P\n
 
 #: src/isdn/complex.ycp:365
 msgid Hardware
@@ -1369,27 +1380,28 @@
 
 #. help text 3/7
 #: src/isdn/ifdetails.ycp:61
-#, fuzzy
 msgid 
 pIf the callback mode is boff/b,  calls  are 

commit installation-images for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2011-11-07 14:45:29

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


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2011-10-19 13:56:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2011-11-07 14:45:31.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 12:02:14 CET 2011 - snw...@suse.de
+
+- add maxcpus=1 to kernel options to work around udevd hang (bnc #722858)
+
+---

Old:

  installation-images-13.16.tar.bz2

New:

  installation-images-13.17.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.BRRk4K/_old  2011-11-07 14:45:41.0 +0100
+++ /var/tmp/diff_new_pack.BRRk4K/_new  2011-11-07 14:45:41.0 +0100
@@ -109,9 +109,9 @@
 Obsoletes:  y2image
 AutoReqProv:off
 Summary:Installation Image Files
-Version:13.16
+Version:13.17
 Release:4
-Source: installation-images-13.16.tar.bz2
+Source: installation-images-13.17.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 

++ installation-images-13.16.tar.bz2 - installation-images-13.17.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/VERSION 
new/installation-images-13.17/VERSION
--- old/installation-images-13.16/VERSION   2011-10-19 13:34:44.0 
+0200
+++ new/installation-images-13.17/VERSION   2011-11-07 12:02:01.0 
+0100
@@ -1 +1 @@
-13.16
+13.17
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/changelog 
new/installation-images-13.17/changelog
--- old/installation-images-13.16/changelog 2011-10-19 13:34:48.0 
+0200
+++ new/installation-images-13.17/changelog 2011-11-07 12:02:11.0 
+0100
@@ -1,4 +1,7 @@
-2011-10-19:HEAD
+2011-11-07:HEAD
+   - add maxcpus=1 to kernel options to work around udevd hang (bnc 
#722858)
+
+2011-10-19:13.16
- we need sysvinit-init
 
 2011-10-13:13.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/data/boot/syslinux.cfg 
new/installation-images-13.17/data/boot/syslinux.cfg
--- old/installation-images-13.16/data/boot/syslinux.cfg2011-10-13 
17:12:11.0 +0200
+++ new/installation-images-13.17/data/boot/syslinux.cfg2011-11-07 
12:01:28.0 +0100
@@ -7,22 +7,22 @@
 # install
 label linux
   kernel linux
-  append initrd=initrd splash=silent showopts
+  append initrd=initrd splash=silent maxcpus=1 showopts
 
 # rescue
 label rescue
   kernel linux
-  append initrd=initrd splash=silent rescue=1 showopts
+  append initrd=initrd splash=silent rescue=1 maxcpus=1 showopts
 
 # mediacheck
 label mediachk
   kernel linux
-  append initrd=initrd splash=silent mediacheck=1 showopts
+  append initrd=initrd splash=silent mediacheck=1 maxcpus=1 showopts
 
 # bios test
 label firmware
   kernel linux
-  append initrd=biostest,initrd splash=silent install=exec:/bin/run_biostest 
showopts
+  append initrd=biostest,initrd splash=silent install=exec:/bin/run_biostest 
maxcpus=1 showopts
 
 # memory test
 label memtest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-13.16/data/initrd/theme.file_list 
new/installation-images-13.17/data/initrd/theme.file_list
--- old/installation-images-13.16/data/initrd/theme.file_list   2011-10-13 
17:12:11.0 +0200
+++ new/installation-images-13.17/data/initrd/theme.file_list   2011-11-07 
12:01:28.0 +0100
@@ -70,5 +70,5 @@
 
 e echo KexecReboot:1 linuxrc.config
 
-e echo PTOptions: AutoUpgrade linuxrc.config
+e echo PTOptions: AutoUpgrade,maxcpus linuxrc.config
 

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



commit installation-images for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:12.1 checked in at 2011-11-07 14:45:57

Comparing /work/SRC/openSUSE:12.1/installation-images (Old)
 and  /work/SRC/openSUSE:12.1/.installation-images.new (New)


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/installation-images/installation-images.changes 
2011-10-24 12:53:12.0 +0200
+++ 
/work/SRC/openSUSE:12.1/.installation-images.new/installation-images.changes
2011-11-07 14:45:58.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 12:02:14 CET 2011 - snw...@suse.de
+
+- add maxcpus=1 to kernel options to work around udevd hang (bnc #722858)
+
+---

Old:

  installation-images-13.16.tar.bz2

New:

  installation-images-13.17.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.Gk5Ffm/_old  2011-11-07 14:46:01.0 +0100
+++ /var/tmp/diff_new_pack.Gk5Ffm/_new  2011-11-07 14:46:01.0 +0100
@@ -109,9 +109,9 @@
 Obsoletes:  y2image
 AutoReqProv:off
 Summary:Installation Image Files
-Version:13.16
+Version:13.17
 Release:4
-Source: installation-images-13.16.tar.bz2
+Source: installation-images-13.17.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 

++ installation-images-13.16.tar.bz2 - installation-images-13.17.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/VERSION 
new/installation-images-13.17/VERSION
--- old/installation-images-13.16/VERSION   2011-10-19 13:34:44.0 
+0200
+++ new/installation-images-13.17/VERSION   2011-11-07 12:02:01.0 
+0100
@@ -1 +1 @@
-13.16
+13.17
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/changelog 
new/installation-images-13.17/changelog
--- old/installation-images-13.16/changelog 2011-10-19 13:34:48.0 
+0200
+++ new/installation-images-13.17/changelog 2011-11-07 12:02:11.0 
+0100
@@ -1,4 +1,7 @@
-2011-10-19:HEAD
+2011-11-07:HEAD
+   - add maxcpus=1 to kernel options to work around udevd hang (bnc 
#722858)
+
+2011-10-19:13.16
- we need sysvinit-init
 
 2011-10-13:13.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.16/data/boot/syslinux.cfg 
new/installation-images-13.17/data/boot/syslinux.cfg
--- old/installation-images-13.16/data/boot/syslinux.cfg2011-10-13 
17:12:11.0 +0200
+++ new/installation-images-13.17/data/boot/syslinux.cfg2011-11-07 
12:01:28.0 +0100
@@ -7,22 +7,22 @@
 # install
 label linux
   kernel linux
-  append initrd=initrd splash=silent showopts
+  append initrd=initrd splash=silent maxcpus=1 showopts
 
 # rescue
 label rescue
   kernel linux
-  append initrd=initrd splash=silent rescue=1 showopts
+  append initrd=initrd splash=silent rescue=1 maxcpus=1 showopts
 
 # mediacheck
 label mediachk
   kernel linux
-  append initrd=initrd splash=silent mediacheck=1 showopts
+  append initrd=initrd splash=silent mediacheck=1 maxcpus=1 showopts
 
 # bios test
 label firmware
   kernel linux
-  append initrd=biostest,initrd splash=silent install=exec:/bin/run_biostest 
showopts
+  append initrd=biostest,initrd splash=silent install=exec:/bin/run_biostest 
maxcpus=1 showopts
 
 # memory test
 label memtest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-13.16/data/initrd/theme.file_list 
new/installation-images-13.17/data/initrd/theme.file_list
--- old/installation-images-13.16/data/initrd/theme.file_list   2011-10-13 
17:12:11.0 +0200
+++ new/installation-images-13.17/data/initrd/theme.file_list   2011-11-07 
12:01:28.0 +0100
@@ -70,5 +70,5 @@
 
 e echo KexecReboot:1 linuxrc.config
 
-e echo PTOptions: AutoUpgrade linuxrc.config
+e echo PTOptions: AutoUpgrade,maxcpus linuxrc.config
 

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



commit asciidoc for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package asciidoc for openSUSE:Factory 
checked in at 2011-11-07 15:51:47

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


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

Changes:

--- /work/SRC/openSUSE:Factory/asciidoc/asciidoc.changes2011-11-02 
11:47:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.asciidoc.new/asciidoc.changes   2011-11-07 
15:51:49.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 13:04:59 UTC 2011 - mma...@suse.cz
+
+- Add missing dependency on python-xml.
+
+---



Other differences:
--
++ asciidoc.spec ++
--- /var/tmp/diff_new_pack.LgyCBr/_old  2011-11-07 15:51:56.0 +0100
+++ /var/tmp/diff_new_pack.LgyCBr/_new  2011-11-07 15:51:56.0 +0100
@@ -23,7 +23,7 @@
 Release:1
 License:GPL v2 or later
 Group:  Development/Tools/Doc Generators
-Requires:   python = 2.3
+Requires:   python = 2.3 python-xml
 Requires:   docbook-xsl-stylesheets
 Recommends: dblatex
 # a2x needs /usr/bin/xsltproc

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



commit fonts-config for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package fonts-config for openSUSE:Factory 
checked in at 2011-11-07 15:51:54

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


Package is fonts-config, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/fonts-config/fonts-config.changes
2011-10-13 16:25:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.fonts-config.new/fonts-config.changes   
2011-11-07 15:51:56.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 12:48:49 UTC 2011 - co...@suse.com
+
+- require perl(English), which is not part of perl-base
+
+---



Other differences:
--
++ fonts-config.spec ++
--- /var/tmp/diff_new_pack.bsOMyR/_old  2011-11-07 15:52:05.0 +0100
+++ /var/tmp/diff_new_pack.bsOMyR/_new  2011-11-07 15:52:05.0 +0100
@@ -22,6 +22,7 @@
 Group:  System/X11/Fonts
 Provides:   xf86tools:/usr/sbin/fonts-config
 Requires:   fontconfig = 2.3.93.20060103
+Requires:   perl(English)
 Recommends: ft2demos
 PreReq: %fillup_prereq
 Version:20080121




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



commit obby for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package obby for openSUSE:Factory checked in 
at 2011-11-07 15:52:11

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


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

Changes:

--- /work/SRC/openSUSE:Factory/obby/obby.changes2011-09-23 
02:14:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.obby.new/obby.changes   2011-11-07 
15:52:12.0 +0100
@@ -1,0 +2,8 @@
+Mon Nov  7 00:17:01 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.4.8:
+  + Swap global password and user color checks during
+authentication
+  + Updated translations.
+
+---

Old:

  obby-0.4.7.tar.bz2

New:

  obby-0.4.8.tar.gz



Other differences:
--
++ obby.spec ++
--- /var/tmp/diff_new_pack.CkSdYL/_old  2011-11-07 15:52:49.0 +0100
+++ /var/tmp/diff_new_pack.CkSdYL/_new  2011-11-07 15:52:49.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package obby (Version 0.4.7)
+# spec file for package obby
 #
-# 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
@@ -23,10 +23,10 @@
 License:GPL v2 or later
 Group:  Productivity/Networking/Other
 AutoReqProv:on
-Version:0.4.7
+Version:0.4.8
 Release:1
 Summary:Synced document buffers
-Source: %{name}-%{version}.tar.bz2
+Source: http://releases.0x539.de/obby/%{name}-%{version}.tar.gz
 Url:http://gobby.0x539.de/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %{name}-lang = %{version}

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



commit SuSEfirewall2 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package SuSEfirewall2 for openSUSE:Factory 
checked in at 2011-11-07 15:56:49

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


Package is SuSEfirewall2, Maintainer is lnus...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/SuSEfirewall2/SuSEfirewall2.changes  
2011-11-05 12:02:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.SuSEfirewall2.new/SuSEfirewall2.changes 
2011-11-07 15:56:52.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 10:56:04 UTC 2011 - lnus...@suse.de
+
+- use /sbin/rpcinfo as /usr/sbin/rpcinfo is gone (bnc#727438)
+
+---

Old:

  SuSEfirewall2-3.6.281.tar.bz2

New:

  SuSEfirewall2-3.6.282.tar.bz2



Other differences:
--
++ SuSEfirewall2.spec ++
--- /var/tmp/diff_new_pack.tRFg7U/_old  2011-11-07 15:56:57.0 +0100
+++ /var/tmp/diff_new_pack.tRFg7U/_new  2011-11-07 15:56:57.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   SuSEfirewall2
-Version:3.6.281
+Version:3.6.282
 Release:1
 License:GPLv2+
 Group:  Productivity/Networking/Security

++ SuSEfirewall2-3.6.281.tar.bz2 - SuSEfirewall2-3.6.282.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SuSEfirewall2-3.6.281/SuSEfirewall2-rpcinfo 
new/SuSEfirewall2-3.6.282/SuSEfirewall2-rpcinfo
--- old/SuSEfirewall2-3.6.281/SuSEfirewall2-rpcinfo 2011-11-02 
16:26:04.0 +0100
+++ new/SuSEfirewall2-3.6.282/SuSEfirewall2-rpcinfo 2011-11-07 
11:55:00.0 +0100
@@ -92,7 +92,7 @@
 my %tcpports = ();
 
 # collect registered rpc services
-open (RPCINFO, '/usr/sbin/rpcinfo -p localhost|') or die;
+open (RPCINFO, '/sbin/rpcinfo -p localhost|') or die;
 RPCINFO; # header line
 while(RPCINFO)
 {

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



commit SuSEfirewall2 for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package SuSEfirewall2 for openSUSE:12.1 
checked in at 2011-11-07 15:57:06

Comparing /work/SRC/openSUSE:12.1/SuSEfirewall2 (Old)
 and  /work/SRC/openSUSE:12.1/.SuSEfirewall2.new (New)


Package is SuSEfirewall2, Maintainer is lnus...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1/SuSEfirewall2/SuSEfirewall2.changes 2011-11-05 
12:02:32.0 +0100
+++ /work/SRC/openSUSE:12.1/.SuSEfirewall2.new/SuSEfirewall2.changes
2011-11-07 15:57:08.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 10:56:04 UTC 2011 - lnus...@suse.de
+
+- use /sbin/rpcinfo as /usr/sbin/rpcinfo is gone (bnc#727438)
+
+---

Old:

  SuSEfirewall2-3.6.281.tar.bz2

New:

  SuSEfirewall2-3.6.282.tar.bz2



Other differences:
--
++ SuSEfirewall2.spec ++
--- /var/tmp/diff_new_pack.p1rigS/_old  2011-11-07 15:57:08.0 +0100
+++ /var/tmp/diff_new_pack.p1rigS/_new  2011-11-07 15:57:08.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   SuSEfirewall2
-Version:3.6.281
+Version:3.6.282
 Release:1
 License:GPLv2+
 Group:  Productivity/Networking/Security

++ SuSEfirewall2-3.6.281.tar.bz2 - SuSEfirewall2-3.6.282.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SuSEfirewall2-3.6.281/SuSEfirewall2-rpcinfo 
new/SuSEfirewall2-3.6.282/SuSEfirewall2-rpcinfo
--- old/SuSEfirewall2-3.6.281/SuSEfirewall2-rpcinfo 2011-11-02 
16:26:04.0 +0100
+++ new/SuSEfirewall2-3.6.282/SuSEfirewall2-rpcinfo 2011-11-07 
11:55:00.0 +0100
@@ -92,7 +92,7 @@
 my %tcpports = ();
 
 # collect registered rpc services
-open (RPCINFO, '/usr/sbin/rpcinfo -p localhost|') or die;
+open (RPCINFO, '/sbin/rpcinfo -p localhost|') or die;
 RPCINFO; # header line
 while(RPCINFO)
 {

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



commit syslogd for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package syslogd for openSUSE:Factory checked 
in at 2011-11-07 15:57:36

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


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

Changes:

--- /work/SRC/openSUSE:Factory/syslogd/syslogd.changes  2011-10-24 
14:02:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.syslogd.new/syslogd.changes 2011-11-07 
15:57:39.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 10:04:35 UTC 2011 - wer...@suse.de
+
+- Invert network/early logic for rsyslog (bnc#728565)
+
+---



Other differences:
--
++ syslog-service-generator ++
--- /var/tmp/diff_new_pack.P5nOYD/_old  2011-11-07 15:57:50.0 +0100
+++ /var/tmp/diff_new_pack.P5nOYD/_new  2011-11-07 15:57:50.0 +0100
@@ -110,7 +110,7 @@
 ;;
 rsyslogd)
 syslog=rsyslogd
-config=/etc/rsyslog.early.conf
+config=/etc/rsyslog.conf
 socksdir=/var/run/rsyslog
 socks=$socksdir/additional-log-sockets.conf
 #
@@ -130,9 +130,9 @@
break
esac
done  ${config}
-   test -n $network  config=/etc/rsyslog.conf
+   test -z $network  config=/etc/rsyslog.early.conf
 else
-   config=/etc/rsyslog.conf
+   config=/etc/rsyslog.early.conf
 fi
 if test -r $config ; then
while read one two rest ; do


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



commit vim for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2011-11-07 16:18:10

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


Package is vim, Maintainer is idon...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/vim/vim.changes  2011-10-19 14:08:29.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2011-11-07 
16:18:11.0 +0100
@@ -1,0 +2,13 @@
+Mon Nov  7 12:59:21 UTC 2011 - idon...@suse.com
+
+- Move spec skeleton functionality into /etc/vimrc (bnc#720898) 
+
+---
+Sun Nov  6 03:49:09 UTC 2011 - crrodrig...@opensuse.org
+
+- vim-enhanced,gvim: Never ever link against static libpython
+  this happends because %{_libdir}/python$vesion/config is
+  searched first and picks libpython.a instead of .so ...
+
+
+---

Old:

  dot.vimrc

New:

  vim73-no-static-libpython.patch



Other differences:
--
++ vim.spec ++
--- /var/tmp/diff_new_pack.4GBGdB/_old  2011-11-07 16:18:18.0 +0100
+++ /var/tmp/diff_new_pack.4GBGdB/_new  2011-11-07 16:18:18.0 +0100
@@ -88,7 +88,6 @@
 Source18:   missing-vim-client
 Source19:   gvim.desktop
 Source20:   spec.skeleton
-Source21:   dot.vimrc
 Source22:   vim.conf
 Source23:   apparmor.vim
 Source98:   %{name}-7.3-patches.tar.bz2
@@ -112,6 +111,7 @@
 Patch25:vim-7.2-lzma-support.patch
 Patch27:%{name}-7.3-disable_gcc_warning_eval_c.patch
 Patch100:   vim-7.1.314-CVE-2009-0316-debian.patch
+Patch101:   vim73-no-static-libpython.patch
 
 %description
 Vim (Vi IMproved) is an almost compatible version of the UNIX editor
@@ -277,6 +277,7 @@
 #%patch25
 %patch27 -p1
 %patch100 -p1
+%patch101
 cp %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} %{SOURCE8} %{SOURCE10} .
 #rename no nb $RPM_BUILD_DIR/vim*/src/po/no.*
 #rename menu_no menu_nb $RPM_BUILD_DIR/vim*/runtime/lang/menu_no*
@@ -314,6 +315,10 @@
 --enable-gtk2-check \
 --with-gtk-prefix=/opt/gnome \
 --with-gnome=/opt/gnome
+
+pushd src
+autoconf 
+popd
 #
 # build small default binary
 %configure \
@@ -350,10 +355,10 @@
 gcc %{optflags} %{SOURCE13} -o vitmp
 
 %install
-#
 # create icon directory to have the icon from the tarball installed
 install -d -m 0755 %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
 %makeinstall STRIP=:
+
 # the last installed binary is gvim. preserve it and
 # fix its symlinks. e* was added here as it doesnt make much sense in
 # console
@@ -361,13 +366,14 @@
 for f in egvim egview eview evim gex gvi gview gvimdiff rgview rgvim ; do
 ln -s -vf gvim %{buildroot}%{_bindir}/$f
 done
-#
+
 # install the other binaries
 install -D -m 0755 vim-normal%{buildroot}/bin/vim-normal
 install -D -m 0755 vim-enhanced  %{buildroot}%{_bindir}/vim-enhanced
 %if 0%{?with_splitted_gvim}
 install -D -m 0755 gvim-enhanced %{buildroot}%{_bindir}/gvim-enhanced
 %endif
+
 # compat symlinks
 # we need a dummy target for /etc/alternatives/vim
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
@@ -378,21 +384,23 @@
 ln -s -f /bin/vim   %{buildroot}%{_bindir}/vi
 ln -s -f vim%{buildroot}%{_bindir}/edit
 ln -s -f /bin/vim  %{buildroot}/bin/ex
-#
+
 # man pages
 ln -s -f vim.1.gz %{buildroot}%{_mandir}/man1/vi.1.gz
 ln -s -f vim.1.gz %{buildroot}%{_mandir}/man1/ex.1.gz
-#
+
 # vitmp
 install -m 0755 vitmp   %{buildroot}%{_bindir}/vitmp
 install -m 0644 %{SOURCE14} %{buildroot}%{_mandir}/man1/vitmp.1
 install -m 0755 %{SOURCE15} 
%{buildroot}%{_datadir}/vim/%{VIM_SUBDIR}/tools/vim132
-#
+
 # make the vim settings more generic
 ln -s -f %{VIM_SUBDIR} %{buildroot}%{_datadir}/vim/current
+
 # additional files
 install -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/vimrc
 install -D -m 0644 %{SOURCE8} %{buildroot}%{_sysconfdir}/gvimrc
+
 # create site wide runtime directory
 mkdir -p -m 0755 %{buildroot}%{site_runtimepath}/after
 mkdir -m 0755 %{buildroot}%{site_runtimepath}/autoload
@@ -404,9 +412,9 @@
 mkdir -m 0755 %{buildroot}%{site_runtimepath}/after/syntax
 mkdir -m 0755 %{buildroot}%{_datadir}/vim/current/skeletons
 mkdir -m 0755 %{buildroot}%{_sysconfdir}/skel
+
 # install spec helper
 install -m 0644 %{SOURCE20}  
%{buildroot}%{_datadir}/vim/current/skeletons/skeleton.spec
-install -m 0644 %{SOURCE21}  %{buildroot}%{_sysconfdir}/skel/.vimrc
 
 # desktop file for gvim
 install -D -m 0644 %{SOURCE19} 
%{buildroot}%{_datadir}/applications/gvim.desktop
@@ -515,7 +523,6 @@
 %files base
 %defattr(-,root,root,-)
 %config(noreplace) %{_sysconfdir}/vimrc
-%config(noreplace) %{_sysconfdir}/skel/.vimrc
 %ghost %{_sysconfdir}/alternatives/vim
 

commit net6 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package net6 for openSUSE:Factory checked in 
at 2011-11-07 16:19:18

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


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

Changes:

--- /work/SRC/openSUSE:Factory/net6/net6.changes2011-10-02 
10:21:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.net6.new/net6.changes   2011-11-07 
16:19:20.0 +0100
@@ -1,0 +2,13 @@
+Mon Nov  7 00:05:31 UTC 2011 - dims...@opensuse.org
+
+- Update to version 1.3.14:
+  + Ensure that overflows on the user ID assigned to each
+connection do not yield one that is already in use.
+[CVE-2011-4093]
+  + Do not leak information about logged-in users. [CVE-2011-4091]
+  + Fix build failures with GnuTLS 3.0 and above
+  + Updated translations
+- Drop net6-gnutls-3.0.3.patch and net6-gnutls-3.0.patch: fixed
+  upstream.
+
+---

Old:

  net6-1.3.13.tar.bz2
  net6-gnutls-3.0.3.patch
  net6-gnutls-3.0.patch

New:

  net6-1.3.14.tar.gz



Other differences:
--
++ net6.spec ++
--- /var/tmp/diff_new_pack.tXXUdQ/_old  2011-11-07 16:19:30.0 +0100
+++ /var/tmp/diff_new_pack.tXXUdQ/_new  2011-11-07 16:19:30.0 +0100
@@ -27,15 +27,11 @@
 BuildRequires:  pkg-config
 License:LGPLv2.1+
 Group:  Development/Libraries/GNOME
-Version:1.3.13
-Release:3
+Version:1.3.14
+Release:1
 Summary:Network access framework for IPv4/IPv6
 Url:http://gobby.0x539.de/
-Source: %{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM net6-gnutls-3.0.patch vu...@opensuse.org -- Fix an 
incompatibility with gnutls 3.0, due to new #define breaking things using the 
gnutls namespace in the code. Sent upstream by mail.
-Patch0: net6-gnutls-3.0.patch
-# PATCH-FIX-UPSTREAM net6-gnutls-3.0.3.patch vu...@opensuse.org -- Drop 
deprecated and unneeded call to gnutls_transport_set_lowat. Sent upstream by 
mail.
-Patch1: net6-gnutls-3.0.3.patch
+Source: http://releases.0x539.de/net6/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %{name}-lang = %{version}
 
@@ -58,8 +54,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 %build
 %configure --disable-static --with-pic

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



commit bundle-lang-common for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2011-11-07 16:58:38

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


Package is bundle-lang-common, Maintainer is co...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-common.changes
2011-10-29 06:49:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.changes   
2011-11-07 16:58:40.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 13:44:47 UTC 2011 - co...@suse.com
+
+- update package list
+
+---
bundle-lang-gnome-extras.changes: same change
bundle-lang-gnome.changes: same change
bundle-lang-kde.changes: same change



Other differences:
--
++ bundle-lang-gnome-extras.spec ++
--- /var/tmp/diff_new_pack.yjaV9Y/_old  2011-11-07 16:58:42.0 +0100
+++ /var/tmp/diff_new_pack.yjaV9Y/_new  2011-11-07 16:58:42.0 +0100
@@ -112,7 +112,6 @@
 BuildRequires:  gnote-lang
 BuildRequires:  gnome-themes-standard-lang
 BuildRequires:  gnome-subtitles-lang
-BuildRequires:  gnome-shell-extensions-common-lang
 BuildRequires:  gnome-search-tool-lang
 BuildRequires:  gnome-schedule-lang
 BuildRequires:  gnome-pilot-lang
@@ -376,8 +375,6 @@
 Provides:   locale(gnome-schedule:en)
 Provides:   gnome-search-tool-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-search-tool-lang)
 Provides:   locale(gnome-search-tool:en)
-Provides:   gnome-shell-extensions-common-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-shell-extensions-common-lang)
-Provides:   locale(gnome-shell-extensions-common:en)
 Provides:   gnome-subtitles-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-subtitles-lang)
 Provides:   locale(gnome-subtitles:en)
 Provides:   gnome-themes-standard-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-themes-standard-lang)
@@ -726,8 +723,6 @@
 Provides:   locale(gnome-schedule:de)
 Provides:   gnome-search-tool-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-search-tool-lang)
 Provides:   locale(gnome-search-tool:de)
-Provides:   gnome-shell-extensions-common-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-shell-extensions-common-lang)
-Provides:   locale(gnome-shell-extensions-common:de)
 Provides:   gnome-subtitles-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-subtitles-lang)
 Provides:   locale(gnome-subtitles:de)
 Provides:   gnome-themes-standard-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-themes-standard-lang)
@@ -1076,8 +1071,6 @@
 Provides:   locale(gnome-schedule:es)
 Provides:   gnome-search-tool-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-search-tool-lang)
 Provides:   locale(gnome-search-tool:es)
-Provides:   gnome-shell-extensions-common-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-shell-extensions-common-lang)
-Provides:   locale(gnome-shell-extensions-common:es)
 Provides:   gnome-subtitles-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-subtitles-lang)
 Provides:   locale(gnome-subtitles:es)
 Provides:   gnome-themes-standard-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-themes-standard-lang)
@@ -1426,8 +1419,6 @@
 Provides:   locale(gnome-schedule:it)
 Provides:   gnome-search-tool-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-search-tool-lang)
 Provides:   locale(gnome-search-tool:it)
-Provides:   gnome-shell-extensions-common-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-shell-extensions-common-lang)
-Provides:   locale(gnome-shell-extensions-common:it)
 Provides:   gnome-subtitles-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-subtitles-lang)
 Provides:   locale(gnome-subtitles:it)
 Provides:   gnome-themes-standard-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-themes-standard-lang)
@@ -1776,8 +1767,6 @@
 Provides:   locale(gnome-schedule:fr)
 Provides:   gnome-search-tool-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-search-tool-lang)
 Provides:   locale(gnome-search-tool:fr)
-Provides:   gnome-shell-extensions-common-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-shell-extensions-common-lang)
-Provides:   locale(gnome-shell-extensions-common:fr)
 Provides:   gnome-subtitles-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-subtitles-lang)
 Provides:   locale(gnome-subtitles:fr)
 Provides:   gnome-themes-standard-lang = %(rpm -q --queryformat 
'%{VERSION}' gnome-themes-standard-lang)
@@ -2126,8 +2115,6 @@
 Provides:   locale(gnome-schedule:ja)
 Provides:   gnome-search-tool-lang = %(rpm -q 

commit release-notes-openSUSE for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package release-notes-openSUSE for 
openSUSE:Factory checked in at 2011-11-07 17:00:07

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


Package is release-notes-openSUSE, Maintainer is k...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/release-notes-openSUSE/release-notes-openSUSE.changes
2011-11-05 11:30:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.release-notes-openSUSE.new/release-notes-openSUSE.changes
   2011-11-07 17:00:13.0 +0100
@@ -1,0 +2,7 @@
+Mon Nov  7 14:37:15 UTC 2011 - k...@suse.de
+
+- 12.1.6:
+* New entry: NetworkManager Command Line Interface (bnc#727537).
+* Update translations.
+
+---

Old:

  release-notes-opensuse-12.1.5.tar.bz2

New:

  release-notes-opensuse-12.1.6.tar.bz2



Other differences:
--
++ release-notes-openSUSE.spec ++
--- /var/tmp/diff_new_pack.KSxkv9/_old  2011-11-07 17:00:15.0 +0100
+++ /var/tmp/diff_new_pack.KSxkv9/_new  2011-11-07 17:00:15.0 +0100
@@ -25,7 +25,7 @@
 Summary:Most Important Changes for This openSUSE Release
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:12.1.5
+Version:12.1.6
 Release:1
 Provides:   release-notes = %{version}
 Source0:release-notes-opensuse-%{version}.tar.bz2

++ release-notes-opensuse-12.1.5.tar.bz2 - 
release-notes-opensuse-12.1.6.tar.bz2 ++
 1702 lines of diff (skipped)

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



commit release-notes-openSUSE for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package release-notes-openSUSE for 
openSUSE:12.1 checked in at 2011-11-07 17:00:11

Comparing /work/SRC/openSUSE:12.1/release-notes-openSUSE (Old)
 and  /work/SRC/openSUSE:12.1/.release-notes-openSUSE.new (New)


Package is release-notes-openSUSE, Maintainer is k...@suse.com

Changes:

--- 
/work/SRC/openSUSE:12.1/release-notes-openSUSE/release-notes-openSUSE.changes   
2011-11-05 11:31:08.0 +0100
+++ 
/work/SRC/openSUSE:12.1/.release-notes-openSUSE.new/release-notes-openSUSE.changes
  2011-11-07 17:00:16.0 +0100
@@ -1,0 +2,7 @@
+Mon Nov  7 14:37:15 UTC 2011 - k...@suse.de
+
+- 12.1.6:
+* New entry: NetworkManager Command Line Interface (bnc#727537).
+* Update translations.
+
+---

Old:

  release-notes-opensuse-12.1.5.tar.bz2

New:

  release-notes-opensuse-12.1.6.tar.bz2



Other differences:
--
++ release-notes-openSUSE.spec ++
--- /var/tmp/diff_new_pack.nhFdaH/_old  2011-11-07 17:00:16.0 +0100
+++ /var/tmp/diff_new_pack.nhFdaH/_new  2011-11-07 17:00:16.0 +0100
@@ -25,7 +25,7 @@
 Summary:Most Important Changes for This openSUSE Release
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:12.1.5
+Version:12.1.6
 Release:1
 Provides:   release-notes = %{version}
 Source0:release-notes-opensuse-%{version}.tar.bz2

++ release-notes-opensuse-12.1.5.tar.bz2 - 
release-notes-opensuse-12.1.6.tar.bz2 ++
 1702 lines of diff (skipped)

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



commit bash for openSUSE:12.1

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package bash for openSUSE:12.1 checked in at 
2011-11-07 17:00:11

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


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

Changes:

--- /work/SRC/openSUSE:12.1/bash/bash.changes   2011-11-02 11:47:25.0 
+0100
+++ /work/SRC/openSUSE:12.1/.bash.new/bash.changes  2011-11-07 
17:00:16.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov  7 15:59:54 UTC 2011 - co...@suse.com
+
+- add work around for bnc#728685
+
+---



Other differences:
--
++ bash.spec ++
--- /var/tmp/diff_new_pack.A0990G/_old  2011-11-07 17:00:17.0 +0100
+++ /var/tmp/diff_new_pack.A0990G/_new  2011-11-07 17:00:17.0 +0100
@@ -35,6 +35,8 @@
 Suggests:   command-not-found
 Recommends: bash-doc = %bash_vers
 %endif
+# work around to have rpm early in the cycles (bnc#728685)
+Requires:   rpm
 Version:4.2
 Release:5
 Summary:The GNU Bourne-Again Shell

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



commit python-pyudev for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package python-pyudev for openSUSE:Factory 
checked in at 2011-11-07 17:25:06

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


Package is python-pyudev, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-pyudev/python-pyudev.changes  
2011-09-23 12:43:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyudev.new/python-pyudev.changes 
2011-11-07 17:25:09.0 +0100
@@ -1,0 +2,16 @@
+Sun Nov  6 13:37:02 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to version 0.13:
+  * #36: Added :meth:`pyudev.Monitor.set_receive_buffer_size` (thanks to Rémi
+Rérolle)
+  * #34: :class:`pyudev.Device.tags` returns a :class:`pyudev.Tags` object now
+  * Added :meth:`pyudev.Enumerator.match_parent`
+  * Added ``parent`` keyword argument to :meth:`pyudev.Enumerator.match()`
+  * Removed :meth:`pyudev.Enumerator.match_children` in favour of
+:meth:`pyudev.Enumerator.match_parent`
+  * :attr:`pyudev.Device.children` requires udev version 172 now
+  * #31: Added :meth:`pyudev.Enumerator.match_attribute`
+  * Added ``nomatch`` argument to :meth:`pyudev.Enumerator.match_subsystem` and
+:meth:`pyudev.Enumerator.match_attribute`
+
+---

Old:

  pyudev-0.12.tar.gz

New:

  pyudev-0.13.tar.gz



Other differences:
--
++ python-pyudev.spec ++
--- /var/tmp/diff_new_pack.0R2blD/_old  2011-11-07 17:25:10.0 +0100
+++ /var/tmp/diff_new_pack.0R2blD/_new  2011-11-07 17:25:10.0 +0100
@@ -15,11 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   python-pyudev
-Version:0.12
+Version:0.13
 Release:1
 License:LGPL-2.1+
 Summary:Udev bindings for Python

++ pyudev-0.12.tar.gz - pyudev-0.13.tar.gz ++
 2062 lines of diff (skipped)

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



commit rubygem-actionmailer-2_3 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionmailer-2_3 for 
openSUSE:Factory checked in at 2011-11-07 17:25:13

Comparing /work/SRC/openSUSE:Factory/rubygem-actionmailer-2_3 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionmailer-2_3.new (New)


Package is rubygem-actionmailer-2_3, Maintainer is mrueck...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionmailer-2_3/rubygem-actionmailer-2_3.changes
2011-09-23 12:44:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionmailer-2_3.new/rubygem-actionmailer-2_3.changes
   2011-11-07 17:25:14.0 +0100
@@ -1,0 +2,12 @@
+Wed Aug 17 12:12:38 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.14
+  * Version bump.
+
+---
+Mon Jun 20 15:51:07 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.12
+  * Version bump.
+
+---

Old:

  actionmailer-2.3.11.gem

New:

  actionmailer-2.3.14.gem



Other differences:
--
++ rubygem-actionmailer-2_3.spec ++
--- /var/tmp/diff_new_pack.2kyQLF/_old  2011-11-07 17:25:21.0 +0100
+++ /var/tmp/diff_new_pack.2kyQLF/_new  2011-11-07 17:25:21.0 +0100
@@ -16,12 +16,11 @@
 #
 
 # norootforbuild
-
-
 Name:   rubygem-actionmailer-2_3
-Version:2.3.11
-Release:1
+Version:2.3.14
+Release:0
 %define mod_name actionmailer
+%define mod_full_name %{mod_name}-%{version}
 #
 Group:  Development/Languages/Ruby
 License:MIT
@@ -31,23 +30,21 @@
 %rubygems_requires
 Provides:   rubygem-%{mod_name} = %{version}-%{release}
 #
+# actionpack = 2.3.14
 BuildRequires:  rubygem-actionpack-2_3 = %{version}
 Requires:   rubygem-actionpack-2_3 = %{version}
 #
 Url:http://www.rubyonrails.org
-Source: %{mod_name}-%{version}.gem
+Source: %{mod_full_name}.gem
 #
 Summary:Service layer for easy email delivery and testing
-
 %description
 Makes it trivial to test and deliver emails sent from a single service layer.
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
@@ -55,16 +52,12 @@
 %package testsuite
 Summary:Test suite for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description testsuite
 Test::Unit or RSpec files, useful for developers.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
 find %{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/ 
-name \*.bak -print -delete
@@ -75,17 +68,17 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-activerecord-2_3 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activerecord-2_3 for 
openSUSE:Factory checked in at 2011-11-07 17:25:24

Comparing /work/SRC/openSUSE:Factory/rubygem-activerecord-2_3 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-activerecord-2_3.new (New)


Package is rubygem-activerecord-2_3, Maintainer is mrueck...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activerecord-2_3/rubygem-activerecord-2_3.changes
2011-09-23 12:44:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activerecord-2_3.new/rubygem-activerecord-2_3.changes
   2011-11-07 17:25:32.0 +0100
@@ -1,0 +2,12 @@
+Wed Aug 17 11:53:14 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.14
+  - potential SQL injection with quote_table_name (bnc#712062)
+
+---
+Mon Jun 20 17:07:28 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.12
+  * Version Bump
+
+---

Old:

  activerecord-2.3.11.gem

New:

  activerecord-2.3.14.gem



Other differences:
--
++ rubygem-activerecord-2_3.spec ++
--- /var/tmp/diff_new_pack.nbSb6o/_old  2011-11-07 17:25:40.0 +0100
+++ /var/tmp/diff_new_pack.nbSb6o/_new  2011-11-07 17:25:40.0 +0100
@@ -16,12 +16,11 @@
 #
 
 # norootforbuild
-
-
 Name:   rubygem-activerecord-2_3
-Version:2.3.11
-Release:1
+Version:2.3.14
+Release:0
 %define mod_name activerecord
+%define mod_full_name %{mod_name}-%{version}
 #
 Group:  Development/Languages/Ruby
 License:MIT
@@ -30,15 +29,14 @@
 BuildRequires:  rubygems_with_buildroot_patch
 %rubygems_requires
 Provides:   rubygem-%{mod_name} = %{version}-%{release}
-#
+# activesupport = 2.3.14
 BuildRequires:  rubygem-activesupport-2_3 = %{version}
 Requires:   rubygem-activesupport-2_3 = %{version}
 #
 Url:http://www.rubyonrails.org
-Source: %{mod_name}-%{version}.gem
+Source: %{mod_full_name}.gem
 #
 Summary:Implements the ActiveRecord pattern for ORM
-
 %description
 Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database
 tables and classes together for business objects, like Customer or
@@ -48,9 +46,7 @@
 %package doc
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
@@ -58,16 +54,12 @@
 %package testsuite
 Summary:Test suite for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description testsuite
 Test::Unit or RSpec files, useful for developers.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
 
@@ -76,17 +68,17 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-activesupport-2_3 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activesupport-2_3 for 
openSUSE:Factory checked in at 2011-11-07 17:25:34

Comparing /work/SRC/openSUSE:Factory/rubygem-activesupport-2_3 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-activesupport-2_3.new (New)


Package is rubygem-activesupport-2_3, Maintainer is mrueck...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activesupport-2_3/rubygem-activesupport-2_3.changes
  2011-09-23 12:44:54.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activesupport-2_3.new/rubygem-activesupport-2_3.changes
 2011-11-07 17:25:46.0 +0100
@@ -1,0 +2,13 @@
+Wed Aug 17 11:44:57 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.14
+  - fixing utf8 escape vulerability (bnc#712060)
+  - Fix OrderedHash merging with block given.
+
+---
+Mon Jun 20 16:33:17 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.12
+  * Version bump
+
+---

Old:

  activesupport-2.3.11.gem

New:

  activesupport-2.3.14.gem



Other differences:
--
++ rubygem-activesupport-2_3.spec ++
--- /var/tmp/diff_new_pack.JvM3SA/_old  2011-11-07 17:25:50.0 +0100
+++ /var/tmp/diff_new_pack.JvM3SA/_new  2011-11-07 17:25:50.0 +0100
@@ -16,12 +16,11 @@
 #
 
 # norootforbuild
-
-
 Name:   rubygem-activesupport-2_3
-Version:2.3.11
-Release:1
+Version:2.3.14
+Release:0
 %define mod_name activesupport
+%define mod_full_name %{mod_name}-%{version}
 #
 Group:  Development/Languages/Ruby
 License:MIT
@@ -32,27 +31,22 @@
 Provides:   rubygem-%{mod_name} = %{version}-%{release}
 #
 Url:http://rubyforge.org/projects/activesupport/
-Source: %{mod_name}-%{version}.gem
+Source: %{mod_full_name}.gem
 #
 Summary:Support and utility classes used by the Rails framework
-
 %description
 Utility library which carries commonly used classes and goodies from the Rails 
framework
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
 
@@ -61,12 +55,12 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
 
 %changelog

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



commit rubygem-activeresource-2_3 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activeresource-2_3 for 
openSUSE:Factory checked in at 2011-11-07 17:25:28

Comparing /work/SRC/openSUSE:Factory/rubygem-activeresource-2_3 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-activeresource-2_3.new (New)


Package is rubygem-activeresource-2_3, Maintainer is mrueck...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activeresource-2_3/rubygem-activeresource-2_3.changes
2011-09-23 12:44:54.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activeresource-2_3.new/rubygem-activeresource-2_3.changes
   2011-11-07 17:25:40.0 +0100
@@ -1,0 +2,12 @@
+Wed Aug 17 11:59:32 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.14
+  * Version bump
+
+---
+Mon Jun 20 19:01:03 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.12:
+  * Version bump
+
+---

Old:

  activeresource-2.3.11.gem

New:

  activeresource-2.3.14.gem



Other differences:
--
++ rubygem-activeresource-2_3.spec ++
--- /var/tmp/diff_new_pack.at3jzc/_old  2011-11-07 17:25:46.0 +0100
+++ /var/tmp/diff_new_pack.at3jzc/_new  2011-11-07 17:25:46.0 +0100
@@ -16,12 +16,11 @@
 #
 
 # norootforbuild
-
-
 Name:   rubygem-activeresource-2_3
-Version:2.3.11
-Release:1
+Version:2.3.14
+Release:0
 %define mod_name activeresource
+%define mod_full_name %{mod_name}-%{version}
 #
 Group:  Development/Languages/Ruby
 License:MIT
@@ -32,23 +31,21 @@
 Provides:   rubygem-actionwebservice = %{version}-%{release}
 Provides:   rubygem-%{mod_name} = %{version}-%{release}
 #
+# activesupport = 2.3.14
 BuildRequires:  rubygem-activesupport-2_3 = %{version}
 Requires:   rubygem-activesupport-2_3 = %{version}
 #
 Url:http://www.rubyonrails.org
-Source: %{mod_name}-%{version}.gem
+Source: %{mod_full_name}.gem
 #
 Summary:Think Active Record for web resources
-
 %description
 Wraps web resources in model classes that can be manipulated through XML over 
REST.
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
@@ -56,16 +53,12 @@
 %package testsuite
 Summary:Test suite for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
-
 %description testsuite
 Test::Unit or RSpec files, useful for developers.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
 
@@ -74,17 +67,17 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-rails-2_3 for openSUSE:Factory

2011-11-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rails-2_3 for 
openSUSE:Factory checked in at 2011-11-07 17:26:03

Comparing /work/SRC/openSUSE:Factory/rubygem-rails-2_3 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rails-2_3.new (New)


Package is rubygem-rails-2_3, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rails-2_3/rubygem-rails-2_3.changes  
2011-09-23 12:45:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-rails-2_3.new/rubygem-rails-2_3.changes 
2011-11-07 17:26:06.0 +0100
@@ -1,0 +2,25 @@
+Wed Aug 17 12:14:55 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.14
+  - adding notification for rdoc
+- drop rails-2.3.12-missing_rdoc_requires.patch:
+  patch upstreamed
+
+---
+Tue Aug  2 19:24:16 UTC 2011 - mrueck...@suse.de
+
+- added rails-2.3.12-missing_rdoc_requires.patch
+  make rake tasks work again. the port of the documentation task to
+  the new API forgot some important bits
+
+  for details see:
+  https://github.com/rails/rails/issues/2403
+- package now requires rubygem-rdoc
+
+---
+Mon Jun 20 20:18:05 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.3.12
+  - fixes for newer rubygems
+
+---

Old:

  rails-2.3.11.gem

New:

  rails-2.3.14.gem



Other differences:
--
++ rubygem-rails-2_3.spec ++
--- /var/tmp/diff_new_pack.nwtTSQ/_old  2011-11-07 17:26:10.0 +0100
+++ /var/tmp/diff_new_pack.nwtTSQ/_new  2011-11-07 17:26:10.0 +0100
@@ -19,10 +19,12 @@
 
 
 Name:   rubygem-rails-2_3
-Version:2.3.11
-Release:1
+Version:2.3.14
+Release:0
 %define mod_name rails
-%define mod_branch 2_3
+%define mod_full_name %{mod_name}-%{version}
+%define mod_branch -2_3
+%define mod_weight 23
 #
 Group:  Development/Languages/Ruby
 License:MIT
@@ -31,53 +33,56 @@
 BuildRequires:  rubygems_with_buildroot_patch
 %rubygems_requires
 Provides:   rubygem-%{mod_name} = %{version}-%{release}
-#
+# rake = 0.8.3
 BuildRequires:  rubygem-rake = 0.8.3
 Requires:   rubygem-rake = 0.8.3
+# activesupport = 2.3.14
 BuildRequires:  rubygem-activesupport-2_3 = %{version}
 Requires:   rubygem-activesupport-2_3 = %{version}
+# activerecord = 2.3.14
 BuildRequires:  rubygem-activerecord-2_3 = %{version}
 Requires:   rubygem-activerecord-2_3 = %{version}
+# actionpack = 2.3.14
 BuildRequires:  rubygem-actionpack-2_3 = %{version}
 Requires:   rubygem-actionpack-2_3 = %{version}
+# actionmailer = 2.3.14
 BuildRequires:  rubygem-actionmailer-2_3 = %{version}
 Requires:   rubygem-actionmailer-2_3 = %{version}
+# activeresource = 2.3.14
 BuildRequires:  rubygem-activeresource-2_3 = %{version}
 Requires:   rubygem-activeresource-2_3 = %{version}
+# we need rubygem-rdoc because 2.3.12 got ported to the new API
+# the requires is missing in the gem spec
+Requires:   rubygem-rdoc  2.4.2
 PreReq: update-alternatives
 #
 Url:http://www.rubyonrails.org
-Source: %{mod_name}-%{version}.gem
+Source: %{mod_full_name}.gem
 #
 Summary:Web-application framework with template engine, control-flow 
layer, and ORM
-
 %description
 Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or
 WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle
 with eRuby- or Builder-based templates.
 
 %package doc
-License:MIT
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
 Requires:   %{name} = %{version}
-
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
-mv %{buildroot}%{_bindir}/rails{,-%{mod_branch}}
+mv %{buildroot}%{_bindir}/rails{,%{mod_branch}}
 %{__ln_s} rails %{buildroot}%{_bindir}/rails
 # make sure it installs the right version when using rails-1.1
-ruby -p -i.bak -e '$_.gsub!(/= 0/, = %{version})' 
%{buildroot}%{_bindir}/rails-%{mod_branch}
-diff -urN %{buildroot}%{_bindir}/rails-%{mod_branch}{.bak,} || :
-rm %{buildroot}%{_bindir}/rails-%{mod_branch}.bak
+ruby -p -i.bak -e '$_.gsub!(/= 0/, = %{version})' 
%{buildroot}%{_bindir}/rails%{mod_branch}
+diff -urN %{buildroot}%{_bindir}/rails%{mod_branch}{.bak,} || :
+rm %{buildroot}%{_bindir}/rails%{mod_branch}.bak
 find %{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/ 
-name dispatch.\* -print0 | \
 xargs -r0 ruby -p -i -e 'gsub(%r{#!.*/bin/ruby}, #!/usr/bin/ruby)'
 
@@ -86,23 +91,23 @@