commit xorg-x11-server for openSUSE:11.3

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:11.3
checked in at Thu Dec 1 12:11:02 CET 2011.




--- old-versions/11.3/UPDATES/all/xorg-x11-server/xorg-x11-server.changes   
2011-05-30 17:29:22.0 +0200
+++ 11.3/xorg-x11-server/xorg-x11-server.changes2011-11-30 
15:46:23.0 +0100
@@ -1,0 +2,13 @@
+Wed Nov 30 14:37:17 UTC 2011 - sndir...@suse.com
+
+- U_Fix-CVE-2011-4028-File-disclosure-vulnerability.patch
+  * use O_NOFOLLOW to open the existing lock file, so symbolic
+links aren't followed, thus avoid revealing if it point to
+an existing file. (bnc #722944)
+- U_Fix-CVE-2011-4029-File-permission-change-vulnerabili.patch
+  * Use fchmod() to change permissions of the lock file instead
+of chmod(), thus avoid the race that can be exploited to set
+a symbolic link to any file or directory in the system. 
+(bnc #722944)
+
+---

calling whatdependson for 11.3-i586


New:

  U_Fix-CVE-2011-4028-File-disclosure-vulnerability.patch
  U_Fix-CVE-2011-4029-File-permission-change-vulnerabili.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.G9Tz16/_old  2011-12-01 12:10:45.0 +0100
+++ /var/tmp/diff_new_pack.G9Tz16/_new  2011-12-01 12:10:45.0 +0100
@@ -32,7 +32,7 @@
 %endif
 Url:http://xorg.freedesktop.org/
 Version:7.5_%{dirsuffix}
-Release:10.RELEASE13
+Release:10.RELEASE15
 License:GPLv2+ ; MIT License (or similar)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  System/X11/Servers/XF86_4
@@ -119,6 +119,8 @@
 Patch214:   CVE-2010-2240-address_space_limit.patch
 Patch215:   CVE-2010-2240-tree_depth_limit.patch
 Patch216:   xorg-x11-server-gl-apps-crash.patch
+Patch217:   U_Fix-CVE-2011-4028-File-disclosure-vulnerability.patch
+Patch218:   U_Fix-CVE-2011-4029-File-permission-change-vulnerabili.patch
 %if %moblin
 Patch300:   moblin-use_preferred_mode_for_all_outputs.diff
 %endif
@@ -248,6 +250,8 @@
 %patch214 -p1
 %patch215 -p1
 %patch216 -p1
+%patch217 -p1
+%patch218 -p1
 %if %moblin
 %patch300 -p1
 %endif

++ U_Fix-CVE-2011-4028-File-disclosure-vulnerability.patch ++
From 6ba44b91e37622ef8c146d8f2ac92d708a18ed34 Mon Sep 17 00:00:00 2001
From: Matthieu Herrb matthieu.he...@laas.fr
Date: Mon, 17 Oct 2011 22:26:12 +0200
Subject: [PATCH] Fix CVE-2011-4028: File disclosure vulnerability.

use O_NOFOLLOW to open the existing lock file, so symbolic links
aren't followed, thus avoid revealing if it point to an existing
file.

Signed-off-by: Matthieu Herrb matthieu.he...@laas.fr
Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com
---
 os/utils.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/os/utils.c b/os/utils.c
index e8ecb71..fe49254 100644
--- a/os/utils.c
+++ b/os/utils.c
@@ -318,7 +318,7 @@ LockServer(void)
   /*
* Read the pid from the existing file
*/
-  lfd = open(LockFile, O_RDONLY);
+  lfd = open(LockFile, O_RDONLY|O_NOFOLLOW);
   if (lfd  0) {
 unlink(tmp);
 FatalError(Can't read lock file %s\n, LockFile);
-- 
1.7.7

++ U_Fix-CVE-2011-4029-File-permission-change-vulnerabili.patch ++
From b67581cf825940fdf52bf2e0af4330e695d724a4 Mon Sep 17 00:00:00 2001
From: Matthieu Herrb matthieu.he...@laas.fr
Date: Mon, 17 Oct 2011 22:27:35 +0200
Subject: [PATCH] Fix CVE-2011-4029: File permission change vulnerability.

Use fchmod() to change permissions of the lock file instead
of chmod(), thus avoid the race that can be exploited to set
a symbolic link to any file or directory in the system.

Signed-off-by: Matthieu Herrb matthieu.he...@laas.fr
Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com
---
 os/utils.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/os/utils.c b/os/utils.c
index fe49254..07cf4c2 100644
--- a/os/utils.c
+++ b/os/utils.c
@@ -297,7 +297,7 @@ LockServer(void)
 FatalError(Could not create lock file in %s\n, tmp);
   (void) sprintf(pid_str, %10ld\n, (long)getpid());
   (void) write(lfd, pid_str, 11);
-  (void) chmod(tmp, 0444);
+  (void) fchmod(lfd, 0444);
   (void) close(lfd);
 
   /*
-- 
1.7.7

continue with q...



Remember to have fun...

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



commit libxml2 for openSUSE:11.3

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package libxml2 for openSUSE:11.3
checked in at Thu Dec 1 12:11:25 CET 2011.




--- old-versions/11.3/UPDATES/all/libxml2/libxml2.changes   2011-06-29 
14:10:59.0 +0200
+++ 11.3/libxml2/libxml2.changes2011-11-28 16:25:17.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 28 15:24:29 UTC 2011 - vci...@suse.com
+
+- add libxml2-CVE-2011-2821.patch (bnc#732787)
+
+---

calling whatdependson for 11.3-i586


New:

  libxml2-CVE-2011-2821.patch



Other differences:
--
++ libxml2-python.spec ++
--- /var/tmp/diff_new_pack.riC8d6/_old  2011-12-01 12:11:12.0 +0100
+++ /var/tmp/diff_new_pack.riC8d6/_new  2011-12-01 12:11:12.0 +0100
@@ -25,7 +25,7 @@
 AutoReqProv:on
 Summary:Python Bindings for libxml2
 Version:2.7.7
-Release:4.RELEASE4
+Release:4.RELEASE5
 Source: libxml2-%{version}.tar.bz2
 Source1:libxml2-python-rpmlintrc
 %py_requires

++ libxml2.spec ++
--- /var/tmp/diff_new_pack.riC8d6/_old  2011-12-01 12:11:12.0 +0100
+++ /var/tmp/diff_new_pack.riC8d6/_new  2011-12-01 12:11:12.0 +0100
@@ -25,12 +25,13 @@
 Summary:A Library to Manipulate XML Files
 Url:http://xmlsoft.org
 Version:2.7.7
-Release:4.RELEASE7
+Release:4.RELEASE9
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
 Patch1: libxml2-xpath-ns-attr-axis.patch
 Patch2: libxml2-CVE-2010-4494.patch
 Patch3: libxml2-CVE-2011-1944.patch
+Patch4: libxml2-CVE-2011-2821.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # bug437293
 %ifarch ppc64
@@ -105,6 +106,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure \

++ libxml2-CVE-2011-2821.patch ++
From f5048b3e71fc30ad096970b8df6e7af073bae4cb Mon Sep 17 00:00:00 2001
From: Daniel Veillard veill...@redhat.com
Date: Thu, 18 Aug 2011 09:10:13 +
Subject: Hardening of XPath evaluation

Add a mechanism of frame for XPath evaluation when entering a function
or a scoped evaluation, also fix a potential problem in predicate
evaluation.
---
Index: libxml2-2.7.6/include/libxml/xpath.h
===
--- libxml2-2.7.6.orig/include/libxml/xpath.h   2009-09-24 17:31:59.0 
+0200
+++ libxml2-2.7.6/include/libxml/xpath.h2011-11-25 15:53:41.300858185 
+0100
@@ -68,7 +68,8 @@
 XPATH_UNDEF_PREFIX_ERROR,
 XPATH_ENCODING_ERROR,
 XPATH_INVALID_CHAR_ERROR,
-XPATH_INVALID_CTXT
+XPATH_INVALID_CTXT,
+XPATH_STACK_ERROR
 } xmlXPathError;
 
 /*
@@ -380,6 +381,8 @@
 xmlXPathCompExprPtr comp;  /* the precompiled expression */
 int xptr;  /* it this an XPointer expression */
 xmlNodePtr ancestor;   /* used for walking preceding axis */
+
+int  valueFrame;/* used to limit Pop on the stack */
 };
 
 /
Index: libxml2-2.7.6/xpath.c
===
--- libxml2-2.7.6.orig/xpath.c  2011-11-25 15:51:55.0 +0100
+++ libxml2-2.7.6/xpath.c   2011-11-25 15:56:00.907034977 +0100
@@ -252,6 +252,7 @@
 Encoding error\n,
 Char out of XML range\n,
 Invalid or incomplete context\n,
+Stack usage errror\n,
 ?? Unknown error ??\n/* Must be last in the list! */
 };
 #define MAXERRNO ((int)(sizeof(xmlXPathErrorMessages) /\
@@ -2398,6 +2399,42 @@
  /
 
 /**
+ * xmlXPathSetFrame:
+ * @ctxt: an XPath parser context
+ *
+ * Set the callee evaluation frame
+ *
+ * Returns the previous frame value to be restored once done
+ */
+static int
+xmlXPathSetFrame(xmlXPathParserContextPtr ctxt) {
+int ret;
+
+if (ctxt == NULL)
+return(0);
+ret = ctxt-valueFrame;
+ctxt-valueFrame = ctxt-valueNr;
+return(ret);
+}
+
+/**
+ * xmlXPathPopFrame:
+ * @ctxt: an XPath parser context
+ * @frame: the previous frame value
+ *
+ * Remove the callee evaluation frame
+ */
+static void
+xmlXPathPopFrame(xmlXPathParserContextPtr ctxt, int frame) {
+if (ctxt == NULL)
+return;
+if (ctxt-valueNr  ctxt-valueFrame) {
+xmlXPatherror(ctxt, __FILE__, __LINE__, XPATH_STACK_ERROR);
+}
+ctxt-valueFrame = frame;
+}
+
+/**
  * valuePop:
  * @ctxt: an XPath evaluation context
  *
@@ -2412,6 +2449,12 @@
 
 if ((ctxt == NULL) || (ctxt-valueNr = 0))
 return (NULL);
+
+if (ctxt-valueNr = ctxt-valueFrame) {
+xmlXPatherror(ctxt, __FILE__, __LINE__, XPATH_STACK_ERROR);
+return (NULL);
+}
+
 ctxt-valueNr--;
 if (ctxt-valueNr  0)
 

commit fail2ban for openSUSE:11.4

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package fail2ban for openSUSE:11.4
checked in at Thu Dec 1 12:11:47 CET 2011.




--- old-versions/11.4/UPDATES/all/fail2ban/fail2ban.changes 2011-09-01 
16:09:20.0 +0200
+++ 11.4/fail2ban/fail2ban.changes  2011-11-25 15:48:43.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 25 13:51:35 UTC 2011 - lchiqui...@suse.com
+
+- Drop stale socket files on startup (bnc#537239, bnc#730044)
+
+---

calling whatdependson for 11.4-i586




Other differences:
--
++ fail2ban.spec ++
--- /var/tmp/diff_new_pack.XiEp1m/_old  2011-12-01 12:11:30.0 +0100
+++ /var/tmp/diff_new_pack.XiEp1m/_new  2011-12-01 12:11:30.0 +0100
@@ -26,7 +26,7 @@
 PreReq: %fillup_prereq
 AutoReqProv:on
 Version:0.8.4
-Release:11.RELEASE12
+Release:11.RELEASE14
 Url:http://www.fail2ban.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch

++ fail2ban.init ++
--- /var/tmp/diff_new_pack.XiEp1m/_old  2011-12-01 12:11:30.0 +0100
+++ /var/tmp/diff_new_pack.XiEp1m/_new  2011-12-01 12:11:30.0 +0100
@@ -50,6 +50,7 @@
 
 # Socket directory
 FAIL2BAN_SOCK_DIR=/var/run/fail2ban
+FAIL2BAN_SOCK=$FAIL2BAN_SOCK_DIR/fail2ban.sock
 
 # Read config  
 . $FAIL2BAN_CONFIG
@@ -64,6 +65,11 @@
if [ ! -d $FAIL2BAN_SOCK_DIR ]; then
mkdir -p $FAIL2BAN_SOCK_DIR
fi
+   if [ -e $FAIL2BAN_SOCK ]; then
+   if ! lsof -n $FAIL2BAN_SOCK /dev/null; then
+   rm $FAIL2BAN_SOCK
+   fi
+   fi
## Start daemon with startproc(8). If this fails
## the return value is set appropriately by startproc.
startproc $FAIL2BAN_CLI -q $FAIL2BAN_OPTIONS start  /dev/null 21

continue with q...



Remember to have fun...

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



commit libxml2 for openSUSE:11.4

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package libxml2 for openSUSE:11.4
checked in at Thu Dec 1 12:12:08 CET 2011.




--- old-versions/11.4/UPDATES/all/libxml2/libxml2.changes   2011-06-29 
14:11:08.0 +0200
+++ 11.4/libxml2/libxml2.changes2011-11-28 16:40:25.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 28 15:31:52 UTC 2011 - vci...@suse.com
+
+- add libxml2-CVE-2011-2821.patch (bnc#732787)
+
+---

calling whatdependson for 11.4-i586


New:

  libxml2-CVE-2011-2821.patch



Other differences:
--
++ libxml2.spec ++
--- /var/tmp/diff_new_pack.Ws4PjO/_old  2011-12-01 12:11:54.0 +0100
+++ /var/tmp/diff_new_pack.Ws4PjO/_new  2011-12-01 12:11:54.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   libxml2
 Version:2.7.8
-Release:16.RELEASE17
+Release:16.RELEASE19
 License:MIT License (or similar)
 Summary:A Library to Manipulate XML Files
 Url:http://xmlsoft.org
@@ -29,6 +29,7 @@
 Patch1: noxref.patch
 Patch2: libxml2-CVE-2010-4494.patch
 Patch3: libxml2-CVE-2011-1944.patch
+Patch4: libxml2-CVE-2011-2821.patch
 BuildRequires:  pkg-config
 BuildRequires:  readline-devel
 BuildRequires:  zlib-devel
@@ -101,6 +102,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure --disable-static \

++ libxml2-CVE-2011-2821.patch ++
From f5048b3e71fc30ad096970b8df6e7af073bae4cb Mon Sep 17 00:00:00 2001
From: Daniel Veillard veill...@redhat.com
Date: Thu, 18 Aug 2011 09:10:13 +
Subject: Hardening of XPath evaluation

Add a mechanism of frame for XPath evaluation when entering a function
or a scoped evaluation, also fix a potential problem in predicate
evaluation.
---
Index: libxml2-2.7.8/include/libxml/xpath.h
===
--- libxml2-2.7.8.orig/include/libxml/xpath.h   2010-10-12 08:25:32.0 
+0200
+++ libxml2-2.7.8/include/libxml/xpath.h2011-11-28 16:34:41.290246643 
+0100
@@ -68,7 +68,8 @@
 XPATH_UNDEF_PREFIX_ERROR,
 XPATH_ENCODING_ERROR,
 XPATH_INVALID_CHAR_ERROR,
-XPATH_INVALID_CTXT
+XPATH_INVALID_CTXT,
+XPATH_STACK_ERROR
 } xmlXPathError;
 
 /*
@@ -380,6 +381,8 @@
 xmlXPathCompExprPtr comp;  /* the precompiled expression */
 int xptr;  /* it this an XPointer expression */
 xmlNodePtr ancestor;   /* used for walking preceding axis */
+
+int  valueFrame;/* used to limit Pop on the stack */
 };
 
 /
Index: libxml2-2.7.8/xpath.c
===
--- libxml2-2.7.8.orig/xpath.c  2011-11-28 16:34:31.0 +0100
+++ libxml2-2.7.8/xpath.c   2011-11-28 16:37:19.692872328 +0100
@@ -252,6 +252,7 @@
 Encoding error\n,
 Char out of XML range\n,
 Invalid or incomplete context\n,
+Stack usage errror\n,
 ?? Unknown error ??\n/* Must be last in the list! */
 };
 #define MAXERRNO ((int)(sizeof(xmlXPathErrorMessages) /\
@@ -2398,6 +2399,42 @@
  /
 
 /**
+ * xmlXPathSetFrame:
+ * @ctxt: an XPath parser context
+ *
+ * Set the callee evaluation frame
+ *
+ * Returns the previous frame value to be restored once done
+ */
+static int
+xmlXPathSetFrame(xmlXPathParserContextPtr ctxt) {
+int ret;
+
+if (ctxt == NULL)
+return(0);
+ret = ctxt-valueFrame;
+ctxt-valueFrame = ctxt-valueNr;
+return(ret);
+}
+
+/**
+ * xmlXPathPopFrame:
+ * @ctxt: an XPath parser context
+ * @frame: the previous frame value
+ *
+ * Remove the callee evaluation frame
+ */
+static void
+xmlXPathPopFrame(xmlXPathParserContextPtr ctxt, int frame) {
+if (ctxt == NULL)
+return;
+if (ctxt-valueNr  ctxt-valueFrame) {
+xmlXPatherror(ctxt, __FILE__, __LINE__, XPATH_STACK_ERROR);
+}
+ctxt-valueFrame = frame;
+}
+
+/**
  * valuePop:
  * @ctxt: an XPath evaluation context
  *
@@ -2412,6 +2449,12 @@
 
 if ((ctxt == NULL) || (ctxt-valueNr = 0))
 return (NULL);
+
+if (ctxt-valueNr = ctxt-valueFrame) {
+xmlXPatherror(ctxt, __FILE__, __LINE__, XPATH_STACK_ERROR);
+return (NULL);
+}
+
 ctxt-valueNr--;
 if (ctxt-valueNr  0)
 ctxt-value = ctxt-valueTab[ctxt-valueNr - 1];
@@ -6154,6 +6197,7 @@
 ret-valueNr = 0;
 ret-valueMax = 10;
 ret-value = NULL;
+ret-valueFrame = 0;
 
 ret-context = ctxt;
 ret-comp = comp;
@@ -11712,6 +11756,7 @@
xmlXPathObjectPtr contextObj = NULL, exprRes = NULL;
xmlNodePtr oldContextNode, contextNode = NULL;
xmlXPathContextPtr xpctxt = ctxt-context;
+int frame;
 
 #ifdef 

commit alacarte for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package alacarte for openSUSE:Factory 
checked in at 2011-12-01 12:23:25

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


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

Changes:

--- /work/SRC/openSUSE:Factory/alacarte/alacarte.changes2011-10-28 
19:14:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.alacarte.new/alacarte.changes   2011-12-01 
12:23:26.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  5 11:16:07 UTC 2011 - g...@opensuse.org
+
+- Added alacarte-support-exo-desktop-item-edit.patch in order to
+  support exo-desktop-item-edit as an alternative to
+  gnome-desktop-item-edit (bnc#728482)
+
+---

New:

  alacarte-support-exo-desktop-item-edit.patch



Other differences:
--
++ alacarte.spec ++
--- /var/tmp/diff_new_pack.dtvO57/_old  2011-12-01 12:23:27.0 +0100
+++ /var/tmp/diff_new_pack.dtvO57/_new  2011-12-01 12:23:27.0 +0100
@@ -29,6 +29,8 @@
 Patch0: alacarte-no-settings.menu.patch
 # PATCH-NEEDS-REBASE alacarte_system_edit_mode.patch sree...@novell.com (was 
PATCH-FEATURE-OPENSUSE)
 Patch1: alacarte_system_edit_mode.patch
+# PATCH-FEATURE-UPSTREAM alacarte-support-exo-desktop-item-edit.patch 
bnc#728482 bgo#664114 g...@opensuse.org -- Add support for 
exo-desktop-item-edit as an alternative to gnome-desktop-item-edit
+Patch2: alacarte-support-exo-desktop-item-edit.patch
 BuildRequires:  fdupes
 BuildRequires:  glib2-devel
 BuildRequires:  intltool
@@ -58,6 +60,7 @@
 # Needs rebase. Reenable suse_update_desktop_file call below when enabling
 # again
 # %patch1 -p0
+%patch2 -p1
 
 %build
 # Patch is disabled

++ alacarte-support-exo-desktop-item-edit.patch ++
diff -ur alacarte-0.13.2.orig/Alacarte/MainWindow.py 
alacarte-0.13.2/Alacarte/MainWindow.py
--- alacarte-0.13.2.orig/Alacarte/MainWindow.py 2011-11-05 11:02:03.91019 
+0100
+++ alacarte-0.13.2/Alacarte/MainWindow.py  2011-11-05 12:12:33.94762 
+0100
@@ -41,6 +41,7 @@
dnd_both = [dnd_items[0],] + dnd_menus
drag_data = None
edit_pool = []
+   desktop_item_editor = util.getCommandPath(['gnome-desktop-item-edit', 
'exo-desktop-item-edit'])
 
def __init__(self, datadir, version, argv):
self.file_path = datadir
@@ -294,7 +295,7 @@
else:
parent = menus[iter][2]
file_path = os.path.join(util.getUserDirectoryPath(), 
util.getUniqueFileId('alacarte-made', '.directory'))
-   process = subprocess.Popen(['gnome-desktop-item-edit', 
file_path], env=os.environ)
+   process = subprocess.Popen([self.desktop_item_editor, 
file_path], env=os.environ)
gobject.timeout_add(100, self.waitForNewMenuProcess, process, 
parent.menu_id, file_path)
 
def on_new_item_button_clicked(self, button):
@@ -307,7 +308,7 @@
else:
parent = menus[iter][2]
file_path = os.path.join(util.getUserItemPath(), 
util.getUniqueFileId('alacarte-made', '.desktop'))
-   process = subprocess.Popen(['gnome-desktop-item-edit', 
file_path], env=os.environ)
+   process = subprocess.Popen([self.desktop_item_editor, 
file_path], env=os.environ)
gobject.timeout_add(100, self.waitForNewItemProcess, process, 
parent.menu_id, file_path)
 
def on_new_separator_button_clicked(self, button):
@@ -378,7 +379,7 @@
self.editor._MenuEditor__addUndo([item,])
if file_path not in self.edit_pool:
self.edit_pool.append(file_path)
-   process = subprocess.Popen(['gnome-desktop-item-edit', 
file_path], env=os.environ)
+   process = subprocess.Popen([self.desktop_item_editor, 
file_path], env=os.environ)
gobject.timeout_add(100, self.waitForEditProcess, 
process, file_path)
 
def on_menu_tree_cursor_changed(self, treeview):
diff -ur alacarte-0.13.2.orig/Alacarte/util.py alacarte-0.13.2/Alacarte/util.py
--- alacarte-0.13.2.orig/Alacarte/util.py   2009-04-17 15:03:43.0 
+0200
+++ alacarte-0.13.2/Alacarte/util.py2011-11-05 11:27:45.56597 +0100
@@ -122,6 +122,15 @@
append += 1
return new_filepath
 
+def getCommandPath(commands):
+   paths = os.environ['PATH'].split(os.pathsep)
+   for command in commands:
+   for path in paths:
+   command_path = os.path.join(path, command)
+   if os.access(command_path, os.X_OK):
+   

commit arpwatch-ethercodes for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2011-12-01 12:23:33

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


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

Changes:

--- /work/SRC/openSUSE:Factory/arpwatch-ethercodes/arpwatch-ethercodes.changes  
2011-11-29 15:07:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new/arpwatch-ethercodes.changes 
2011-12-01 12:23:38.0 +0100
@@ -2 +2 @@
-Tue Nov 29 07:40:07 CET 2011 - autobu...@suse.de
+Thu Dec  1 06:40:04 CET 2011 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2011-11-29
+- automated update on 2011-12-01



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.Eyopff/_old  2011-12-01 12:23:40.0 +0100
+++ /var/tmp/diff_new_pack.Eyopff/_new  2011-12-01 12:23:40.0 +0100
@@ -23,7 +23,7 @@
 License:BSD3c
 Group:  Productivity/Networking/Diagnostic
 Summary:Ethercodes Data for arpwatch
-Version:2011.11.29
+Version:2011.12.1
 Release:1
 Source0:http://standards.ieee.org/regauth/oui/oui.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt ++
--- /var/tmp/diff_new_pack.Eyopff/_old  2011-12-01 12:23:40.0 +0100
+++ /var/tmp/diff_new_pack.Eyopff/_new  2011-12-01 12:23:40.0 +0100
@@ -82567,6 +82567,12 @@
Chatsworth CA 91311
UNITED STATES
 
+10-F9-6F   (hex)   LG Electronics
+10F96F (base 16)   LG Electronics
+   60-39 , Kasan-dong, Gumcheon-gu
+   Seoul  153-801
+   KOREA, REPUBLIC OF
+
 10-F9-EE   (hex)   Nokia Corporation
 10F9EE (base 16)   Nokia Corporation
Yrttipellontie 6
@@ -83220,6 +83226,12 @@
Xindian City, Taipei County  231
TAIWAN, REPUBLIC OF CHINA
 
+1C-51-B5   (hex)   Techaya LTD
+1C51B5 (base 16)   Techaya LTD
+   P.O.B 1500
+   Pardes Hanna  3700
+   ISRAEL
+
 1C-5C-55   (hex)   PRIMA Cinema, Inc
 1C5C55 (base 16)   PRIMA Cinema, Inc
1903 Wright Place, Suite 320
@@ -84755,6 +84767,12 @@
Zywiec Slaskie 34-300
POLAND
 
+34-2F-6E   (hex)   Anywire corporation
+342F6E (base 16)   Anywire corporation
+   8-1 Shimo-inden Inouchi
+   Nagaokakyo Kyoto pref. 617-0813
+   JAPAN
+
 34-40-B5   (hex)   IBM
 3440B5 (base 16)   IBM
3039 E Cornwallis Rd
@@ -88180,6 +88198,13 @@
Shenzhen Guangdong 518057
CHINA
 
+64-5E-BE   (hex)   Yahoo! JAPAN
+645EBE (base 16)   Yahoo! JAPAN
+   Midtown Tower
+   9-7-1 Akasaka
+   Minato-ku Tokyo 107-6211
+   JAPAN
+
 64-65-C0   (hex)   Nuvon, Inc
 6465C0 (base 16)   Nuvon, Inc
3130 Alpine Road
@@ -88491,6 +88516,13 @@
Hsin Tien Taipei Hsien 231
TAIWAN, REPUBLIC OF CHINA
 
+68-16-05   (hex)   Systems And Electronic Development FZCO
+681605 (base 16)   Systems And Electronic Development FZCO
+   Roundabout no. 8
+   Factory unit no. FB-06
+   Jebel Ali free Zone Dubai P.O.Box 61129
+   UNITED ARAB EMIRATES
+
 68-1A-B2   (hex)   zte corporation
 681AB2 (base 16)   zte corporation
12/F.,zte RD Building,Kejinan Road
@@ -90607,6 +90639,12 @@
Littleton MA 01460
UNITED STATES
 
+80-DB-31   (hex)   Power Quotient International Co., Ltd.
+80DB31 (base 16)   Power Quotient International Co., Ltd.
+   8F., No. 49, Sec. 4, Jhongyang Rd., Tu Cheng 
Dist.,
+   New Taipei City  23675
+   TAIWAN, REPUBLIC OF CHINA
+

commit cellwriter for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package cellwriter for openSUSE:Factory 
checked in at 2011-12-01 12:23:41

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


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

Changes:

--- /work/SRC/openSUSE:Factory/cellwriter/cellwriter.changes2011-09-23 
01:53:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.cellwriter.new/cellwriter.changes   
2011-12-01 12:23:43.0 +0100
@@ -1,0 +2,11 @@
+Wed Nov 30 10:33:34 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---
+Sat Sep 17 22:45:13 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Use %_smp_mflags for parallel build
+
+---



Other differences:
--
++ cellwriter.spec ++
--- /var/tmp/diff_new_pack.SCRzty/_old  2011-12-01 12:23:45.0 +0100
+++ /var/tmp/diff_new_pack.SCRzty/_new  2011-12-01 12:23:45.0 +0100
@@ -15,21 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   cellwriter
 Summary:Character-based handwriting input panel
 Version:1.3.4 
-Release:45
+Release:0
 Source0:%{name}-%{version}.tar.bz2
 # feel free to improve this patch and please upstream it
 Patch0: %{name}-no-copy-dt-needed-entries.patch
 Url:http://risujin.org/cellwriter/
 Group:  System/GUI/GNOME
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-License:GPL v2 or later
-BuildRequires:  gtk2-devel update-desktop-files xorg-x11-devel
+License:GPL-2.0+
+BuildRequires:  automake gtk2-devel update-desktop-files xorg-x11-devel
 Requires:   gtk2
 
 %description
@@ -39,12 +38,6 @@
 you entered is sent to the currently focused application as if typed on
 the keyboard.
 
-
-
-Authors:
-
-Michael Levin risu...@risujin.org
-
 %prep 
 %setup -q
 %patch0 -p1
@@ -54,15 +47,12 @@
 autoreconf -fi
 %configure \
 --without-gnome
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
 %suse_update_desktop_file -i -G Handwriting Input Panel cellwriter Utility 
Accessibility 
 
-%clean 
-rm -rf $RPM_BUILD_ROOT 
-
 %files 
 %defattr(-,root,root) 
 %doc README NEWS COPYING AUTHORS 

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



commit kdebindings-smokegen for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdebindings-smokegen for 
openSUSE:Factory checked in at 2011-12-01 12:24:12

Comparing /work/SRC/openSUSE:Factory/kdebindings-smokegen (Old)
 and  /work/SRC/openSUSE:Factory/.kdebindings-smokegen.new (New)


Package is kdebindings-smokegen, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/kdebindings-smokegen/kdebindings-smokegen.changes
2011-11-16 17:18:44.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebindings-smokegen.new/kdebindings-smokegen.changes
   2011-12-01 12:24:13.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 00:45:20 CET 2011 - r...@suse.de
+
+- work around segfault when building kdebindings-smokekde 
+
+---

New:

  smokegen-segfault.patch



Other differences:
--
++ kdebindings-smokegen.spec ++
--- /var/tmp/diff_new_pack.AlCcQl/_old  2011-12-01 12:24:14.0 +0100
+++ /var/tmp/diff_new_pack.AlCcQl/_new  2011-12-01 12:24:14.0 +0100
@@ -26,6 +26,7 @@
 Group:  Development/Libraries/KDE
 Source0:smokegen-%{version}.tar.bz2
 Patch0: correct_naming.patch
+Patch1: smokegen-segfault.patch
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
 BuildRequires:  libQtWebKit-devel
@@ -57,6 +58,7 @@
 %prep
 %setup -q -n smokegen-%{version}
 %patch0 -p0
+%patch1
 
 %build
   %cmake_kde4 -d build

++ smokegen-segfault.patch ++
--- type_compiler.cpp
+++ type_compiler.cpp
@@ -191,12 +191,14 @@
 
 void TypeCompiler::visitPtrOperator(PtrOperatorAST* node)
 {
+if (token_text(m_session-token_stream-kind(node-op))) {
 if (token_text(m_session-token_stream-kind(node-op))[0] == '*') {
 QPairbool, bool cv = m_visitor-parseCv(node-cv);
 pointerDepth.append(cv.first);
 } else if (token_text(m_session-token_stream-kind(node-op))[0] == '') {
 isRef = true;
 }
+}
 }
 
 void TypeCompiler::visitSimpleTypeSpecifier(SimpleTypeSpecifierAST *node)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libvirt-glib for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package libvirt-glib for openSUSE:Factory 
checked in at 2011-12-01 12:24:26

Comparing /work/SRC/openSUSE:Factory/libvirt-glib (Old)
 and  /work/SRC/openSUSE:Factory/.libvirt-glib.new (New)


Package is libvirt-glib, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt-glib.new/libvirt-glib.changes   
2011-12-01 12:24:27.0 +0100
@@ -0,0 +1,5 @@
+---
+Thu Nov 24 08:08:49 UTC 2011 - dims...@opensuse.org
+
+- Initial package, version 0.0.2
+

New:

  libvirt-glib-0.0.2.tar.gz
  libvirt-glib.changes
  libvirt-glib.spec



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

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

Name:   libvirt-glib
Version:0.0.2
Release:1
License:LGPL-2.1+
Summary:GLib and GObject mapping of libvirt
Url:http://libvirt.org
Group:  System/Libraries
Source: http://libvirt.org/sources/glib/%{name}-%{version}.tar.gz
BuildRequires:  vala
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(gobject-introspection-1.0)
BuildRequires:  pkgconfig(gthread-2.0)
BuildRequires:  pkgconfig(libvirt)
BuildRequires:  pkgconfig(libxml-2.0)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). It is free software
available under the GNU Lesser General Public License. Virtualization on
the Linux Operating System means the ability to run multiple instances of
Operating Systems concurrently on a single hardware system where the basic
resources are driven by a Linux instance. The library aim at providing
long term stable C API initially for the Xen paravirtualization but
should be able to integrate other virtualization mechanisms if needed

%package -n libvirt-glib-1_0-0
Summary:GLib and GObject mapping of libvirt
Group:  System/Libraries

%description -n libvirt-glib-1_0-0
libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). It is free software
available under the GNU Lesser General Public License. Virtualization on
the Linux Operating System means the ability to run multiple instances of
Operating Systems concurrently on a single hardware system where the basic
resources are driven by a Linux instance. The library aim at providing
long term stable C API initially for the Xen paravirtualization but
should be able to integrate other virtualization mechanisms if needed

%package devel
Summary:GLib and GObject mapping of libvirt - Development files
Group:  Development/Languages/C and C++
Requires:   libvirt-glib-1_0-0 = %{version}

%description devel
libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). It is free software
available under the GNU Lesser General Public License. Virtualization on
the Linux Operating System means the ability to run multiple instances of
Operating Systems concurrently on a single hardware system where the basic
resources are driven by a Linux instance. The library aim at providing
long term stable C API initially for the Xen paravirtualization but
should be able to integrate other virtualization mechanisms if needed

%prep
%setup -q

%build
%configure --disable-static
make %{?_smp_mflags}

%install
%make_install
find %{buildroot} -type f -name *.la -delete -print

%post -n libvirt-glib-1_0-0 -p /sbin/ldconfig

%postun -n libvirt-glib-1_0-0 -p /sbin/ldconfig

%files -n libvirt-glib-1_0-0
%defattr(-, root, root)
%doc COPYING README ChangeLog
%{_libdir}/libvirt-gconfig-1.0.so.*
%{_libdir}/libvirt-glib-1.0.so.*
%{_libdir}/libvirt-gobject-1.0.so.*
%{_libdir}/girepository-1.0/LibvirtGConfig-1.0.typelib
%{_libdir}/girepository-1.0/LibvirtGLib-1.0.typelib

commit lyx for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package lyx for openSUSE:Factory checked in 
at 2011-12-01 12:24:32

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


Package is lyx, Maintainer is b...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lyx/lyx.changes  2011-10-18 14:32:12.0 
+0200
+++ /work/SRC/openSUSE:Factory/.lyx.new/lyx.changes 2011-12-01 
12:24:38.0 +0100
@@ -1,0 +2,9 @@
+Tue Nov 29 15:58:32 UTC 2011 - corne...@solcon.nl
+
+- update to 2.0.2:
+  * Improvements in export filters
+  * Updates to the tex2lyx conversion script
+  * Support for the ctex documents classes, used for Chinese documents
+  * Support for the Springer documents classes has been updated for 
compatibility with the latest version. This, however, breaks compatibillity for 
documents with the Springer classes in LyX itself: documents made in 2.0.2 or 
later will not be compilable in older versions of LyX.
+
+---

Old:

  lyx-2.0.1.tar.gz

New:

  lyx-2.0.2.tar.gz



Other differences:
--
++ lyx.spec ++
--- /var/tmp/diff_new_pack.8UUPZU/_old  2011-12-01 12:24:40.0 +0100
+++ /var/tmp/diff_new_pack.8UUPZU/_new  2011-12-01 12:24:40.0 +0100
@@ -22,11 +22,11 @@
 BuildRequires:  boost-devel enchant-devel fdupes hunspell-devel libqt4-devel 
python update-desktop-files
 License:LGPLv2.1+
 Group:  Productivity/Publishing/TeX/Frontends
-Version:2.0.1
-Release:4
+Version:2.0.2
+Release:1
 Summary:WYSIWYM (What You See Is What You Mean) document processor
 Url:http://www.lyx.org/
-Source: ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/lyx-2.0.1.tar.gz
+Source: ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/lyx-%{version}.tar.gz
 Source1:lyx.desktop
 Source2:lyx.png
 Source3:lyxrc.dist

++ lyx-2.0.1.tar.gz - lyx-2.0.2.tar.gz ++
/work/SRC/openSUSE:Factory/lyx/lyx-2.0.1.tar.gz 
/work/SRC/openSUSE:Factory/.lyx.new/lyx-2.0.2.tar.gz differ: char 5, line 1


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



commit mirall for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package mirall for openSUSE:Factory checked 
in at 2011-12-01 12:24:40

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


Package is mirall, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/mirall/mirall.changes2011-11-24 
11:36:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.mirall.new/mirall.changes   2011-12-01 
12:24:41.0 +0100
@@ -1,0 +2,25 @@
+Tue Nov 29 10:57:27 UTC 2011 - frei...@suse.com
+
+- removed .git files  from tarball 
+
+---
+Mon Nov 28 16:11:04 UTC 2011 - frei...@suse.com
+
+- fixed changes file to correct bug fixed format bnc... as this 
+  confuses scripts 
+
+---
+Mon Nov 28 15:20:03 UTC 2011 - frei...@suse.com
+
+- update to version 0.1.2
+- added icon defaults for systems without icon theming bnc#730834
+- fixed some bugs with ownCloud status check fails
+
+---
+Thu Nov 24 16:00:52 UTC 2011 - frei...@suse.com
+
+- update to verion 0.1.1 with fix for bnc#730842, enable download
+  of owncloud tarball again
+- fixed progress output in setup window
+
+---

Old:

  mirall-0.1.0.tar.bz2

New:

  mirall-0.1.2.tar.bz2



Other differences:
--
++ mirall.spec ++
--- /var/tmp/diff_new_pack.LPMBdD/_old  2011-12-01 12:24:42.0 +0100
+++ /var/tmp/diff_new_pack.LPMBdD/_new  2011-12-01 12:24:42.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   mirall
-Version:0.1.0
+Version:0.1.2
 Release:0
 License:GPL-2.0+
 Summary:Opensource Dropbox-like program

++ mirall-0.1.0.tar.bz2 - mirall-0.1.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mirall-0.1.0/mirall.qrc new/mirall-0.1.2/mirall.qrc
--- old/mirall-0.1.0/mirall.qrc 2011-11-22 21:45:28.0 +0100
+++ new/mirall-0.1.2/mirall.qrc 2011-11-28 16:15:48.0 +0100
@@ -1,5 +1,5 @@
 RCC
-qresource prefix=/new/mirall
+qresource prefix=/mirall
 fileresources/mirall-32.png/file
 fileresources/mirall-64.png/file
 fileresources/mirall-128.png/file
@@ -11,5 +11,13 @@
 fileresources/mirall-48.png/file
 fileresources/folder-grey-48.png/file
 fileresources/folder-remote-48.png/file
+fileresources/dialog-close.png/file
+fileresources/dialog-ok.png/file
+fileresources/dialog-cancel.png/file
+fileresources/view-refresh.png/file
+fileresources/folder-favorites.png/file
+fileresources/folder-sync.png/file
+fileresources/folder-important.png/file
+fileresources/folder-grey.png/file
 /qresource
 /RCC
Files old/mirall-0.1.0/resources/dialog-cancel.png and 
new/mirall-0.1.2/resources/dialog-cancel.png differ
Files old/mirall-0.1.0/resources/dialog-close.png and 
new/mirall-0.1.2/resources/dialog-close.png differ
Files old/mirall-0.1.0/resources/dialog-ok.png and 
new/mirall-0.1.2/resources/dialog-ok.png differ
Files old/mirall-0.1.0/resources/folder-favorites.png and 
new/mirall-0.1.2/resources/folder-favorites.png differ
Files old/mirall-0.1.0/resources/folder-grey.png and 
new/mirall-0.1.2/resources/folder-grey.png differ
Files old/mirall-0.1.0/resources/folder-important.png and 
new/mirall-0.1.2/resources/folder-important.png differ
Files old/mirall-0.1.0/resources/folder-sync.png and 
new/mirall-0.1.2/resources/folder-sync.png differ
Files old/mirall-0.1.0/resources/view-refresh.png and 
new/mirall-0.1.2/resources/view-refresh.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mirall-0.1.0/src/libqtwebdav/qwebdav.h 
new/mirall-0.1.2/src/libqtwebdav/qwebdav.h
--- old/mirall-0.1.0/src/libqtwebdav/qwebdav.h  2011-11-22 21:45:28.0 
+0100
+++ new/mirall-0.1.2/src/libqtwebdav/qwebdav.h  2011-11-28 16:15:48.0 
+0100
@@ -36,7 +36,7 @@
 /**
  * @brief Main class used to handle the webdav protocol
  */
-class QWEBDAV_EXPORT QWebdav : virtual public QNetworkAccessManager
+class QWEBDAV_EXPORT QWebdav : public QNetworkAccessManager
 {
   Q_OBJECT
  public:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mirall-0.1.0/src/mirall/application.cpp 
new/mirall-0.1.2/src/mirall/application.cpp
--- old/mirall-0.1.0/src/mirall/application.cpp 2011-11-22 21:45:28.0 
+0100
+++ new/mirall-0.1.2/src/mirall/application.cpp 2011-11-28 16:15:48.0 
+0100
@@ -118,7 +118,7 @@
 void 

commit monit for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package monit for openSUSE:Factory checked 
in at 2011-12-01 12:24:48

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


Package is monit, Maintainer is lmue...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/monit/monit.changes  2011-10-26 
15:40:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.monit.new/monit.changes 2011-12-01 
12:24:49.0 +0100
@@ -1,0 +2,18 @@
+Wed Nov 30 18:05:54 UTC 2011 - pascal.ble...@opensuse.org
+
+- fixes to init script and configuration file for state file
+- fix installation routine on = 12.1: directories under /var/run are now
+  created at installation time, as /var/run is on tmpfs on = 12.1
+- minor packaging improvements, including the use of the pristine upstream
+  tarball instead of a recompressed one (better traceability)
+
+---
+Fri Nov  4 11:00:25 UTC 2011 - pascal.ble...@opensuse.org
+
+- add some better defaults:
+  * set mailserver to localhost
+  * set alert recipient to root@localhost
+  * enable event queue in /var/run/monit/events
+  * move id and state files to /var/run/monit/
+
+---

Old:

  monit-5.3.1.tar.bz2

New:

  monit-5.3.1.tar.gz
  monit-better_default_monitrc.patch
  monit-rpmlintrc



Other differences:
--
++ monit.spec ++
--- /var/tmp/diff_new_pack.giN89l/_old  2011-12-01 12:24:50.0 +0100
+++ /var/tmp/diff_new_pack.giN89l/_new  2011-12-01 12:24:50.0 +0100
@@ -22,10 +22,11 @@
 Version:5.3.1
 Release:1
 Summary:Service Manager and Monitor System
-# http://mmonit.com/monit/dist/monit-%{version}.tar.gz
-Source: monit-%{version}.tar.bz2
+Source: http://mmonit.com/monit/dist/monit-%{version}.tar.gz
 Source1:monit-vendor-files.tar.gz
 Patch1: monit-page_shift.patch
+Patch2: monit-better_default_monitrc.patch
+Source99:   monit-rpmlintrc
 Url:http://mmonit.com/monit/download/
 Group:  System/Monitoring
 License:GNU General Public License (GPL)
@@ -76,6 +77,7 @@
 %prep
 %setup -q -a1
 %patch1
+%patch2
 
 find doc/ -type f -size 0 -exec %__rm {} \;
 
@@ -96,8 +98,11 @@
%{buildroot}%{_datadir}/monit \
%{buildroot}%{_var}/adm/fillup-templates \
%{buildroot}%{_var}/run/monit \
+   %{buildroot}%{_var}/run/monit/events \
%{buildroot}%{_var}/lib/monit
 
+touch %{buildroot}%{_var}/run/monit/.monit.id
+
 . vendor-files/sysconfig/monit.tmpl
 MONIT_BIN=%{_bindir}/monit
 MONIT_MODIFY_INITTAB=%{_datadir}/monit/monit-modifyinittab
@@ -148,6 +153,8 @@
 
 %post
 %{fillup_and_insserv}
+%__install -d -m0700 -o root -g root %{_var}/run/monit
+%__install -d -m0700 -o root -g root %{_var}/run/monit/events
 
 %preun
 %{stop_on_removal monit}
@@ -157,7 +164,7 @@
 %{insserv_cleanup}
 
 %clean
-%__rm -rf %{buildroot}
+%{?buildroot:%__rm -rf %{buildroot}}
 
 %files -f doc.main.lst
 %defattr(-,root,root)
@@ -175,6 +182,8 @@
 %ghost %dir %{_var}/run/monit
 %ghost %{_var}/run/monit/monit.pid
 %ghost %{_var}/run/monit/monit.state
+%ghost %{_var}/run/monit/.monit.id
+%ghost %dir %{_var}/run/monit/events
 %doc %{_mandir}/man1/monit.1%{ext_man}
 
 %files doc -f doc.doc.lst

++ monit-better_default_monitrc.patch ++
--- monitrc.orig2011-11-04 11:54:04.674000463 +0100
+++ monitrc 2011-11-04 11:56:10.848000463 +0100
@@ -24,24 +24,24 @@
 ## Set syslog logging with the 'daemon' facility. If the FACILITY option is
 ## omitted, Monit will use 'user' facility by default. If you want to log to 
 ## a standalone log file instead, specify the full path to the log file
-#
-# set logfile syslog facility log_daemon   
-#
+
+set logfile syslog facility log_daemon   
+
 #
 ## Set the location of the Monit id file which stores the unique id for the
 ## Monit instance. The id is generated and stored on first Monit start. By 
 ## default the file is placed in $HOME/.monit.id.
-#
-# set idfile /var/.monit.id
-#
+
+set idfile /var/run/monit/.monit.id
+
 ## Set the location of the Monit state file which saves monitoring states
 ## on each cycle. By default the file is placed in $HOME/.monit.state. If
 ## the state file is stored on a persistent filesystem, Monit will recover
 ## the monitoring state across reboots. If it is on temporary filesystem, the
 ## state will be lost on reboot which may be convenient in some situations.
-#
-# set statefile /var/.monit.state
-#
+
+set statefile /var/run/monit/monit.state
+
 ## Set the list of mail servers for alert delivery. Multiple servers may be 
 ## specified 

commit perl-Config-Simple for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-Config-Simple for 
openSUSE:Factory checked in at 2011-12-01 12:25:03

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


Package is perl-Config-Simple, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Config-Simple/perl-Config-Simple.changes
2011-09-23 12:36:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Config-Simple.new/perl-Config-Simple.changes   
2011-12-01 12:25:04.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 29 15:06:10 UTC 2011 - co...@suse.com
+
+- use original tar
+
+---

Old:

  Config-Simple-4.59.tar.bz2

New:

  Config-Simple-4.59.tar.gz



Other differences:
--
++ perl-Config-Simple.spec ++
--- /var/tmp/diff_new_pack.LOkhWT/_old  2011-12-01 12:25:05.0 +0100
+++ /var/tmp/diff_new_pack.LOkhWT/_new  2011-12-01 12:25:05.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Config-Simple (Version 4.59)
+# spec file for package perl-Config-Simple
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,18 +19,17 @@
 
 
 Name:   perl-Config-Simple
-%define cpan_name %( %{__sed} -e 's,perl-,,'  %{name} )
+%define cpan_name Config-Simple
 Summary:Simple configuration file class
 Url:http://search.cpan.org/perldoc?Config::Simple
 Group:  Development/Libraries/Perl
 License:Artistic
 Version:4.59
 Release:2
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: 
http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/%{cpan_name}-%{version}.tar.gz
 Requires:   perl(AutoLoader)
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 
@@ -43,11 +42,6 @@
 automatically. Library supports parsing, updating and creating configuration
 files.
 
-Author:

-Sherzod B. Ruzmetov
-
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 # rpmlint: executable-docs, script-without-shebang

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



commit perl-Data-Alias for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-Data-Alias for openSUSE:Factory 
checked in at 2011-12-01 12:25:09

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


Package is perl-Data-Alias, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Data-Alias/perl-Data-Alias.changes  
2011-09-23 12:36:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Data-Alias.new/perl-Data-Alias.changes 
2011-12-01 12:25:10.0 +0100
@@ -1,0 +2,36 @@
+Tue Nov 29 20:30:24 UTC 2011 - co...@suse.com
+
+version 1.16; 2011-11-17
+
+  * bugfix: use supported API to put destructor calls on the save stack
+(the unsupported way used before was wrong for 64-bit systems on
+perl 5.13.1 and later)
+
+  * document the behaviour of alias return in more detail
+
+  * convert .cvsignore to .gitignore
+
+---
+Tue Nov 29 20:28:20 UTC 2011 - co...@suse.com
+
+- update to 1.14
+  * port to Perl 5.15.0, where the op type aelemfast has been split into
+aelemfast and aelemfast_lex
+  * test compatibility with Devel::CallParser
+  * bugfix: never unhook peephole optimiser, because unhooking is liable
+to fail if anything else hooked it
+  * bugfix: revise check for dorassign opcode to cope with FreeBSD's
+mutant Perl 5.8 that has it
+  * test POD syntax and coverage
+  * bugfix: prevent the lexer getting confused if the first thing inside
+an alias{} block is an open paren
+  * bugfix: don't crash if an rv2cv op is built with PL_parser null
+  * bugfix: handle variant structure of entersub op which lacks (ex-)list
+op as direct child
+  * bugfix: squash bogus dtrace-related macro definitions that are picked
+up due to defining PERL_CORE
+  * switch all pp functions to internal linkage
+  * avoid some compiler warnings
+  * include .cvsignore file in distribution
+
+---

Old:

  Data-Alias-1.12.tar.gz

New:

  Data-Alias-1.16.tar.gz



Other differences:
--
++ perl-Data-Alias.spec ++
--- /var/tmp/diff_new_pack.kRAhzm/_old  2011-12-01 12:25:11.0 +0100
+++ /var/tmp/diff_new_pack.kRAhzm/_new  2011-12-01 12:25:11.0 +0100
@@ -18,15 +18,14 @@
 
 
 Name:   perl-Data-Alias
-Version:1.12
+Version:1.16
 Release:1
 License:GPL+ or Artistic
 %define cpan_name Data-Alias
 Summary:Comprehensive set of aliasing operations
 Url:http://search.cpan.org/dist/Data-Alias/
 Group:  Development/Libraries/Perl
-#Source: 
http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Data-Alias-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
@@ -71,11 +70,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
+%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog

++ Data-Alias-1.12.tar.gz - Data-Alias-1.16.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Alias-1.12/.gitignore 
new/Data-Alias-1.16/.gitignore
--- old/Data-Alias-1.12/.gitignore  1970-01-01 01:00:00.0 +0100
+++ new/Data-Alias-1.16/.gitignore  2011-11-17 22:42:27.0 +0100
@@ -0,0 +1,8 @@
+/Makefile
+/pm_to_blib
+/blib
+/MYMETA.yml
+/Data-Alias-*
+/Alias.c
+/Alias.o
+/Alias.bs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Alias-1.12/Alias.xs new/Data-Alias-1.16/Alias.xs
--- old/Data-Alias-1.12/Alias.xs2011-02-22 21:41:15.0 +0100
+++ new/Data-Alias-1.16/Alias.xs2011-11-17 22:57:41.0 +0100
@@ -25,6 +25,12 @@
PERL_SUBVERSION)
 #endif
 
+#if defined(USE_DTRACE)  defined(PERL_CORE)
+#undef ENTRY_PROBE
+#undef RETURN_PROBE
+#define ENTRY_PROBE(func, file, line, stash)
+#define RETURN_PROBE(func, file, line, stash)
+#endif
 
 #if defined(PERL_CORE)  defined(MULTIPLICITY)  \
(PERL_COMBI_VERSION  5013006)
@@ -176,7 +182,11 @@
 #endif
 #define SVs_PADFLAGS (SVs_PADBUSY|SVs_PADMY|SVs_PADTMP)
 
+#ifdef pp_dorassign
+#define DA_HAVE_OP_DORASSIGN 1
+#else
 #define DA_HAVE_OP_DORASSIGN (PERL_COMBI_VERSION = 5009000)
+#endif
 
 #define DA_TIED_ERR Can't %s alias %s tied %s
 #define DA_ODD_HASH_ERR Odd number of elements in hash assignment
@@ -210,7 +220,6 @@
 #define dDA SV *_da, **_dap
 #define dDAforce SV 

commit perl-DBD-Pg for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-DBD-Pg for openSUSE:Factory 
checked in at 2011-12-01 12:25:13

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


Package is perl-DBD-Pg, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBD-Pg/perl-DBD-Pg.changes  2011-09-23 
12:36:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DBD-Pg.new/perl-DBD-Pg.changes 
2011-12-01 12:25:15.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov 29 20:26:53 UTC 2011 - co...@suse.com
+
+- update to 2.18.1
+  - Fix LANG testing issue [GSM] (CPAN bug #56705)
+  - Fix bug when async commands issued immediately after a COPY. 
+[GSM] (CPAN bug #68041)
+
+---

Old:

  DBD-Pg-2.18.0.tar.bz2

New:

  DBD-Pg-2.18.1.tar.gz



Other differences:
--
++ perl-DBD-Pg.spec ++
--- /var/tmp/diff_new_pack.3pHEmY/_old  2011-12-01 12:25:16.0 +0100
+++ /var/tmp/diff_new_pack.3pHEmY/_new  2011-12-01 12:25:16.0 +0100
@@ -20,13 +20,12 @@
 Name:   perl-DBD-Pg
 %define cpan_name DBD-Pg
 Summary:PostgreSQL database driver for the DBI module
-Version:2.18.0
+Version:2.18.1
 Release:1
 License:GPL+ or Artistic
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/DBD-Pg/
-#Source: 
http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: 
http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  openssl-devel
 BuildRequires:  postgresql-devel = 7.4

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



commit perl-IO-Interface for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-IO-Interface for 
openSUSE:Factory checked in at 2011-12-01 12:25:18

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


Package is perl-IO-Interface, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-IO-Interface/perl-IO-Interface.changes  
2011-09-23 12:37:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-IO-Interface.new/perl-IO-Interface.changes 
2011-12-01 12:25:20.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 29 15:15:17 UTC 2011 - co...@suse.com
+
+- update to 1.06
+Address test 5 failure on systems with aliases on loopback. 
+
+---

Old:

  IO-Interface-1.05.tar.gz

New:

  IO-Interface-1.06.tar.gz



Other differences:
--
++ perl-IO-Interface.spec ++
--- /var/tmp/diff_new_pack.baoZ0x/_old  2011-12-01 12:25:21.0 +0100
+++ /var/tmp/diff_new_pack.baoZ0x/_new  2011-12-01 12:25:21.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-IO-Interface (Version 1.05)
+# spec file for package perl-IO-Interface
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,8 +20,8 @@
 
 Name:   perl-IO-Interface
 Summary:Perl extension for access to network card configuration 
information
-Version:1.05
-Release:4
+Version:1.06
+Release:0
 License:Artistic
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/IO-Interface/

++ IO-Interface-1.05.tar.gz - IO-Interface-1.06.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/Changes 
new/IO-Interface-1.06/Changes
--- old/IO-Interface-1.05/Changes   2008-06-06 17:53:45.0 +0200
+++ new/IO-Interface-1.06/Changes   2011-07-21 19:41:12.0 +0200
@@ -1,4 +1,7 @@
 Revision history for Perl extension IO::Interface.
+1.06Thu Jul 21 13:40:49 EDT 2011
+Address test 5 failure on systems with aliases on loopback.
+
 1.05Fri Jun  6 11:53:21 EDT 2008
 Fix from Mitsuru Yoshida to compile on FreeBSD.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/Interface.pm 
new/IO-Interface-1.06/Interface.pm
--- old/IO-Interface-1.05/Interface.pm  2008-06-06 17:54:33.0 +0200
+++ new/IO-Interface-1.06/Interface.pm  2011-07-21 19:41:27.0 +0200
@@ -28,7 +28,7 @@
 @EXPORT = qw( );
 
 @ISA = qw(Exporter DynaLoader);
-$VERSION = '1.05';
+$VERSION = '1.06';
 
 sub AUTOLOAD {
 # This AUTOLOAD is used to 'autoload' constants from the constant()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/META.yml 
new/IO-Interface-1.06/META.yml
--- old/IO-Interface-1.05/META.yml  2008-06-06 17:55:08.0 +0200
+++ new/IO-Interface-1.06/META.yml  2011-07-21 19:42:07.0 +0200
@@ -1,12 +1,20 @@
 --- #YAML:1.0
-name:IO-Interface
-version: 1.05
-abstract:~
-license: ~
-author:  ~
-generated_by:ExtUtils::MakeMaker version 6.44
-distribution_type:   module
-requires: 
+name:   IO-Interface
+version:1.06
+abstract:   ~
+author:  []
+license:unknown
+distribution_type:  module
+configure_requires:
+ExtUtils::MakeMaker:  0
+build_requires:
+ExtUtils::MakeMaker:  0
+requires:  {}
+no_index:
+directory:
+- t
+- inc
+generated_by:   ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-url: http://module-build.sourceforge.net/META-spec-v1.3.html
-version: 1.3
+url:  http://module-build.sourceforge.net/META-spec-v1.4.html
+version:  1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/t/basic.t 
new/IO-Interface-1.06/t/basic.t
--- old/IO-Interface-1.05/t/basic.t 2004-03-27 00:18:31.0 +0100
+++ new/IO-Interface-1.06/t/basic.t 2011-07-21 19:40:15.0 +0200
@@ -26,13 +26,15 @@
 print @if ? 'ok ': 'not ok ',3,\n;
 
 # find loopback interface
-my $loopback;
+my @loopback;
 foreach (@if) {
next unless $s-if_flags($_)  IFF_UP;
-$loopback = $_ if $s-if_flags($_)  IFF_LOOPBACK;
+   push @loopback,$_ if $s-if_flags($_)  IFF_LOOPBACK;
 }
 
-print $loopback 

commit perl-Net-Whois-RIPE for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-Whois-RIPE for 
openSUSE:Factory checked in at 2011-12-01 12:25:23

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


Package is perl-Net-Whois-RIPE, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-Whois-RIPE/perl-Net-Whois-RIPE.changes  
2011-10-27 14:37:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-Whois-RIPE.new/perl-Net-Whois-RIPE.changes 
2011-12-01 12:25:25.0 +0100
@@ -1,0 +2,7 @@
+Fri Nov 25 02:35:38 UTC 2011 - vci...@suse.com
+
+- update to 2.9
+  - bugfix
+- licence in spdx format
+
+---

Old:

  Net-Whois-RIPE-2.8.tar.gz

New:

  Net-Whois-RIPE-2.9.tar.gz



Other differences:
--
++ perl-Net-Whois-RIPE.spec ++
--- /var/tmp/diff_new_pack.2zWvDg/_old  2011-12-01 12:25:26.0 +0100
+++ /var/tmp/diff_new_pack.2zWvDg/_new  2011-12-01 12:25:26.0 +0100
@@ -18,9 +18,9 @@
 
 
 Name:   perl-Net-Whois-RIPE
-Version:2.8
+Version:2.9
 Release:1
-License:GPL+ or Artistic
+License:GPL-1.0+ or Artistic-1.0
 %define cpan_name Net-Whois-RIPE
 Summary:A pure-Perl implementation of the RIPE Database client
 Url:http://search.cpan.org/dist/Net-Whois-RIPE/

++ Net-Whois-RIPE-2.8.tar.gz - Net-Whois-RIPE-2.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-RIPE-2.8/META.json 
new/Net-Whois-RIPE-2.9/META.json
--- old/Net-Whois-RIPE-2.8/META.json2011-10-26 15:16:25.0 
+0200
+++ new/Net-Whois-RIPE-2.9/META.json2011-11-23 13:23:30.0 
+0100
@@ -40,5 +40,5 @@
   }
},
release_status : stable,
-   version : 2.8
+   version : 2.9
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-RIPE-2.8/META.yml 
new/Net-Whois-RIPE-2.9/META.yml
--- old/Net-Whois-RIPE-2.8/META.yml 2011-10-26 15:16:25.0 +0200
+++ new/Net-Whois-RIPE-2.9/META.yml 2011-11-23 13:23:30.0 +0100
@@ -22,4 +22,4 @@
   Iterator::Util: 0
   Test::More: 0
   perl: 5.006
-version: 2.8
+version: 2.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-RIPE-2.8/lib/Net/Whois/RIPE.pm 
new/Net-Whois-RIPE-2.9/lib/Net/Whois/RIPE.pm
--- old/Net-Whois-RIPE-2.8/lib/Net/Whois/RIPE.pm2011-10-26 
15:15:53.0 +0200
+++ new/Net-Whois-RIPE-2.9/lib/Net/Whois/RIPE.pm2011-11-23 
13:22:53.0 +0100
@@ -29,11 +29,11 @@
 
 =head1 VERSION
 
-Version 2.00_008 - BETA
+Version 2.00_009 - BETA
 
 =cut
 
-our $VERSION = 2.00_008;
+our $VERSION = 2.00_009;
 
 =head1 SYNOPSIS
 
@@ -469,6 +469,7 @@
 my ( $self, $query ) = @_;
 my $parameters = ;
 $parameters .= q{ } . QUERY_KEEPALIVE if $self-keepalive;
+$parameters .= q{ } . QUERY_UNFILTERED if $self-unfiltered;
 $parameters .= q{ } . QUERY_NON_RECURSIVE unless $self-recursive;
 $parameters .= q{ } . QUERY_REFERRAL if $self-referral;
 my $fullquery = $parameters . $query;

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



commit perl-Pango for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-Pango for openSUSE:Factory 
checked in at 2011-12-01 12:25:30

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


Package is perl-Pango, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Pango/perl-Pango.changes2011-09-23 
12:38:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Pango.new/perl-Pango.changes   
2011-12-01 12:25:31.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 21 02:35:39 UTC 2011 - vci...@suse.com
+
+- update to 1.223
+  Fix a test failure in t/PangoCairo.t
+
+---

Old:

  Pango-1.222.tar.gz

New:

  Pango-1.223.tar.gz



Other differences:
--
++ perl-Pango.spec ++
--- /var/tmp/diff_new_pack.4fbRub/_old  2011-12-01 12:25:32.0 +0100
+++ /var/tmp/diff_new_pack.4fbRub/_new  2011-12-01 12:25:32.0 +0100
@@ -15,36 +15,37 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %bcond_with Gtk2
 
 Name:   perl-Pango
+Version:1.223
+Release:1
+License:LGPL-2.1+
 %define cpan_name Pango
 Summary:Pango Perl module
-Version:1.222
-Release:1
-License:LGPLv2.1+
-Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Pango/
+Group:  Development/Libraries/Perl
 #Source: 
http://www.cpan.org/modules/by-module/Pango/Pango-%{version}.tar.gz
 Source: %{cpan_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  cairo-devel
-BuildRequires:  pango-devel
-BuildRequires:  update-desktop-files
-BuildRequires:  xorg-x11 xorg-x11-Xvfb xorg-x11-server
 #
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  update-desktop-files
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-Xvfb
+BuildRequires:  xorg-x11-server
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(pango)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%{perl_requires}
 %if %{with Gtk2}
 BuildRequires:  perl(Gtk2) = 1.220
 %endif
-BuildRequires:  perl(ExtUtils::MakeMaker)
 #
 BuildRequires:  perl(Cairo) = 1.000
 BuildRequires:  perl(ExtUtils::Depends) = 0.300
+BuildRequires:  perl(ExtUtils::MakeMaker)
 #BuildRequires:  perl(ExtUtils::PkgConfig) = 1.030
 BuildRequires:  perl(ExtUtils::PkgConfig) = 1.03
 BuildRequires:  perl(Glib) = 1.220
@@ -72,13 +73,12 @@
 Pango::Layout, a high level driver for laying out entire blocks of text,
 and routines to assist in editing internationalized text.
 
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
+make %{?_smp_mflags}
 
 %check
 %if %{with Gtk2}
@@ -91,9 +91,9 @@
 Xvfb -fp /usr/share/fonts/misc -extension RANDR :95 
 trap kill $! || true EXIT
 sleep 5
-DISPLAY=:95 %{__make} test
+DISPLAY=:95 make test
 %else
-%{__make} test
+make test
 %endif
 
 %install
@@ -102,7 +102,7 @@
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files -f %{name}.files
 %defattr(-,root,root,-)

++ Pango-1.222.tar.gz - Pango-1.223.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pango-1.222/MANIFEST new/Pango-1.223/MANIFEST
--- old/Pango-1.222/MANIFEST2011-08-02 21:20:18.0 +0200
+++ new/Pango-1.223/MANIFEST2011-11-19 08:57:22.0 +0100
@@ -54,5 +54,4 @@
 xs_files-1.10
 xs_files-1.16
 xs_files-1.6
-META.yml Module YAML meta-data (added by 
MakeMaker)
-META.jsonModule JSON meta-data (added by 
MakeMaker)
+META.yml Module meta-data (added by MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pango-1.222/META.json new/Pango-1.223/META.json
--- old/Pango-1.222/META.json   2011-08-02 21:20:18.0 +0200
+++ new/Pango-1.223/META.json   1970-01-01 01:00:00.0 +0100
@@ -1,64 +0,0 @@
-{
-   abstract : Layout and render international text,
-   author : [
-  unknown
-   ],
-   dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter 
version 2.110930001,
-   license : [
-  unknown
-   ],
-   meta-spec : {
-  url : http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  version : 2
-   },
-   name : Pango,
-   no_index : {
-  directory : [
- t,
- inc
-  ],
-  file : [
- xs/Pango.xs,
- 

commit python-python-memcached for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package python-python-memcached for 
openSUSE:Factory checked in at 2011-12-01 12:25:40

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


Package is python-python-memcached, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-memcached.new/python-python-memcached.changes
 2011-12-01 12:25:44.0 +0100
@@ -0,0 +1,44 @@
+---
+Fri Apr  1 11:23:28 UTC 2011 - oliver.be...@opensuse.org
+
+- added %{py_requires}
+- make use of --record-rpm from setuptools
+
+---
+Sat Feb 26 14.13.54 UTC 2011 - st...@viskjer.net
+
+- python-memcached 1.47
+  * Bug #680359: useOldServerHashFunction() is broken. It now 
+correctly switches back to the old memcache hash function.
+
+- python-memcached 1.46
+  * Bug #471727: Changed the delete() code to explicitly check for
+both NOT_FOUND and DELETED as the responses and return
+successful for both. It also logs an error if one of these two
+responses is not found. Also added a test to ensure that
+delete() works.
+  * When using set_multi and one value is too big, traceback
+TypeError: 'int' object is unsubscriptable.
+Patch by Orjan Persson
+  * Fixing Bug #529855: Server host can now be bare host without
+:port. Fix proposed by Roger Binns.
+  * Fixing Bug #491164: Typo fix, compession - compRession.
+  * Fixing Bug #509712: TypeError: 'NoneType' object is
+unsubscriptable Also fixed some other similar code to not have
+issues with that.
+  * Also related to 509712 and 628339: readline() now returns ''
+instead of None when a server dies. This should be safer.
+Patch suggested by Denis Otkidach.
+  * Fixing Bug #628339: Read from server sometimes fails.
+Patch by Jeremy Cowles.
+  * Fixing Bug #633553: Add stat arguments support to get_stats().
+Patch by Ryan Lane.
+  * Changing the license to the PSF License.
+  * Removing Evan's e-mail address at his request, changing
+authorship to Sean.
+
+---
+Fri Nov 26 23.00.00 UTC 2010 - st...@viskjer.net
+
+- python-memcached 1.45
+  * Initial specfile based on Fedora's v1.43-6

New:

  python-memcached-1.47.tar.gz
  python-python-memcached.changes
  python-python-memcached.spec



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

Name:   python-python-memcached
Version:1.47
Release:0
Url:http://www.tummy.com/Community/software/python-memcached/
Summary:Pure python memcached client
License:Python-2.0
Group:  Development/Languages/Python
Source: 
http://pypi.python.org/packages/source/p/python-memcached/python-memcached-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python-devel
BuildRequires:  python-distribute
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version}  1110
BuildArch:  noarch
%endif
%endif
Provides:   python-memcached = %{version}
#TODO: Change back to '' after next version update:
Obsoletes:  python-memcached = %{version}
%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}

%description
This package was originally written by Evan Martin of Danga.
Sean Reifschneider of tummy.com, ltd. has taken over maintenance of it.

This software is a 100% Python interface to the memcached memory cache
daemon.  It is the client side software which allows storing values in one
or more, possibly remote, memcached servers.  Search google for memcached
for more information.

%prep
%setup -q -n python-memcached-%{version}

%build
python setup.py build

%install

commit qgit for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package qgit for openSUSE:Factory checked in 
at 2011-12-01 12:25:47

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


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

Changes:

--- /work/SRC/openSUSE:Factory/qgit/qgit.changes2011-09-23 
12:43:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.qgit.new/qgit.changes   2011-12-01 
12:25:49.0 +0100
@@ -1,0 +2,8 @@
+Thu Dec  1 09:34:18 CET 2011 - dmuel...@suse.de
+
+- update to 2.4:
+  * fix functionality losses with newer git releases
+  * shortlog parsing fixes
+  * display cleanups
+
+---

Old:

  qgit-2.3.tar.bz2
  qgit.diff

New:

  qgit-2.4.tar.bz2



Other differences:
--
++ qgit.spec ++
--- /var/tmp/diff_new_pack.mqsmGv/_old  2011-12-01 12:25:50.0 +0100
+++ /var/tmp/diff_new_pack.mqsmGv/_new  2011-12-01 12:25:50.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package qgit (Version 2.3)
+# spec file for package qgit
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 
 Name:   qgit
-Version:2.3
+Version:2.4
 Release:1
 License:GPL v2 or later
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,7 +31,6 @@
 AutoReqProv:on
 BuildRequires:  libqt4-devel update-desktop-files
 Requires:   git-core = 1.4.0
-Patch:  %name.diff
 
 %description
 QGit is a git GUI viewer built on Qt/C++.
@@ -60,13 +59,8 @@
 
 
 
-Authors:
-
-Marco Costalba
-
 %prep
-%setup -q -n qgit
-%patch
+%setup -q -n redivivus
 
 %build
 qmake

++ qgit-2.3.tar.bz2 - qgit-2.4.tar.bz2 ++
 23758 lines of diff (skipped)

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



commit rpmlint-mini for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package rpmlint-mini for openSUSE:Factory 
checked in at 2011-12-01 12:26:01

Comparing /work/SRC/openSUSE:Factory/rpmlint-mini (Old)
 and  /work/SRC/openSUSE:Factory/.rpmlint-mini.new (New)


Package is rpmlint-mini, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint-mini/rpmlint-mini.changes
2011-10-24 14:02:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint-mini.new/rpmlint-mini.changes   
2011-12-01 12:26:06.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 29 12:17:48 UTC 2011 - lnus...@suse.de
+
+- install licenses.config
+
+---



Other differences:
--
++ rpmlint-mini.spec ++
--- /var/tmp/diff_new_pack.6A83PR/_old  2011-12-01 12:26:07.0 +0100
+++ /var/tmp/diff_new_pack.6A83PR/_new  2011-12-01 12:26:07.0 +0100
@@ -74,7 +74,7 @@
 cp -a /usr/share/rpmlint/*.py $RPM_BUILD_ROOT/opt/testing/share/rpmlint
 # install config files
 install -d -m 755 $RPM_BUILD_ROOT/opt/testing/share/rpmlint/mini
-for i in /etc/rpmlint/{rpmgroups,pie}.config %{SOURCE103}; do
+for i in /etc/rpmlint/{rpmgroups,pie,licenses}.config %{SOURCE103}; do
   cp $i $RPM_BUILD_ROOT/opt/testing/share/rpmlint/mini
 done
 install -m 644 -D /usr/share/rpmlint/config 
$RPM_BUILD_ROOT/opt/testing/share/rpmlint/config

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



commit webyast-network for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package webyast-network for openSUSE:Factory 
checked in at 2011-12-01 12:27:19

Comparing /work/SRC/openSUSE:Factory/webyast-network (Old)
 and  /work/SRC/openSUSE:Factory/.webyast-network.new (New)


Package is webyast-network, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.webyast-network.new/webyast-network.changes 
2011-12-01 12:27:21.0 +0100
@@ -0,0 +1,194 @@
+---
+Mon Oct 24 15:30:23 UTC 2011 - sch...@suse.com
+
+- Merging client and service
+- 0.3.0 
+
+---
+Mon May 16 10:32:06 UTC 2011 - sch...@novell.com
+
+- changed licence to the correct name GPL-2.0
+- 0.2.6 
+
+---
+Mon May  9 09:31:07 UTC 2011 - vle...@novell.com
+
+- fixed 'Undefined methode values' for routes (Network controller) 
+- 0.2.5
+
+---
+Mon May  2 12:34:35 UTC 2011 - sch...@novell.com
+
+- adapt caching to the new job handling
+- 0.2.4
+
+---
+Tue Apr 12 13:18:01 UTC 2011 - sch...@novell.com
+
+- new caching
+- 0.2.3 
+
+---
+Mon Mar 28 13:49:35 UTC 2011 - vle...@novell.com
+
+- undefined method `bootproto' for #Interface:0xb67416c8 (bnc#645231) 
+- setting DHCP mode doesn't work for interface eth1
+- 0.2.2
+
+---
+Wed Feb  9 08:16:36 UTC 2011 - sch...@novell.com
+
+- removed webyast-network-ws-rpmlintrc
+- 0.2.1 
+
+---
+Mon Aug 23 13:19:02 UTC 2010 - jreidin...@novell.com
+
+- add url to spec file (bnc#625537)
+- 0.2.0
+
+---
+Fri Jul 30 10:31:42 CEST 2010 - mzu...@suse.cz
+
+- static hostname with dhcp feature (bnc#624655)
+- 0.1.8 
+
+---
+Tue May  4 08:46:45 CEST 2010 - mvid...@suse.cz
+
+- Fixed multiple bugs in writing the confuguration introduced in
+  version 0.1.5 (bnc#600097)
+- 0.1.7
+
+---
+Fri Apr 30 13:36:15 UTC 2010 - jreidin...@novell.com
+
+- fix spec file consistency (bnc#560061)
+- 0.1.6
+
+---
+Fri Apr 23 11:49:37 UTC 2010 - jreidin...@novell.com
+
+- add license headers (bnc#586620)
+- add validations to models to prevent fuzzing service (bnc#561438)
+- 0.1.5
+
+---
+Mon Apr 12 14:16:00 UTC 2010 - jreidin...@novell.com
+
+- update summary and description of packages (bnc#588355)
+- 0.1.4
+
+---
+Mon Mar 29 13:42:15 CEST 2010 - mvid...@suse.cz
+
+- RPM-Provide WebYaST(org.opensuse.yast.modules.FOO) (bnc#583561)
+
+---
+Tue Mar 16 14:32:08 CET 2010 - mzu...@suse.cz
+
+- don't crash with empty hostname or domain (bnc#577064)
+- 0.1.3 
+
+---
+Fri Feb 12 10:02:39 UTC 2010 - kkae...@novell.com
+
+- don't send nil values via D-Bus (bnc#579115)
+- 0.1.2
+
+---
+Fri Jan 22 16:10:42 CET 2010 - mvid...@suse.cz
+
+- renamed yast2-webservice-network to webyast-network-ws
+- 0.1.1
+
+---
+Mon Nov 30 10:53:35 CET 2009 - jreidin...@suse.cz
+
+- don't hide failure of granting permissions (bnc#554946)
+
+---
+Wed Nov 18 15:40:12 CET 2009 - mvid...@suse.cz
+
+- Fixed building the REST docs (bnc#537188#c2).
+- Use the new name of policyKit-rights.rb: grantwebyastrights
+  (bnc#554946, mkudlvasr).
+- Fixed the yast2-network dependency on 11.2 (jreidinger).
+- 0.0.12
+
+---
+Tue Nov 10 16:57:56 CET 2009 - jreidin...@suse.cz
+
+- adapt requirements to SLE11 GA version of network
+- 0.0.11
+
+---
+Tue Nov  3 13:09:20 CET 2009 - kkae...@suse.de
+
+- Clarified license (GPL v2 *only*)
+- 0.0.10
+
+---
+Fri Oct 30 08:04:20 CET 2009 - lsle...@suse.cz
+
+- fixed restdoc packaging
+- 0.0.9
+

commit webyast-ntp for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package webyast-ntp for openSUSE:Factory 
checked in at 2011-12-01 12:27:26

Comparing /work/SRC/openSUSE:Factory/webyast-ntp (Old)
 and  /work/SRC/openSUSE:Factory/.webyast-ntp.new (New)


Package is webyast-ntp, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.webyast-ntp.new/webyast-ntp.changes 
2011-12-01 12:27:27.0 +0100
@@ -0,0 +1,159 @@
+---
+Mon Oct 24 15:32:35 UTC 2011 - sch...@suse.com
+
+- Merging client and service
+- 0.3.0 
+
+---
+Mon May 16 10:34:32 UTC 2011 - sch...@novell.com
+
+- changed licence to the correct name GPL-2.0
+- 0.2.5 
+
+---
+Thu May 12 13:06:46 UTC 2011 - sch...@novell.com
+
+- corrected call of sntp (bnc #685465)
+  handle sntp calls in different versions
+- 0.2.4
+
+---
+Mon May  2 12:38:17 UTC 2011 - sch...@novell.com
+
+- adapt caching to the new job handling
+- 0.2.3 
+
+---
+Tue Apr 12 13:19:36 UTC 2011 - sch...@novell.com
+
+- new caching
+- 0.2.2 
+
+---
+Wed Feb  9 09:35:05 UTC 2011 - sch...@novell.com
+
+- webyast-ntp-ws-rpmlintrc removed
+- 0.2.1 
+
+---
+Mon Aug 23 13:20:31 UTC 2010 - jreidin...@novell.com
+
+- add url to spec file (bnc#625537)
+- 0.2.0
+
+---
+Thu Jul  8 10:47:55 UTC 2010 - jreidin...@novell.com
+
+- increase number of attempts for ntp server (bnc#604629)
+- expect hwclock fail on xen host (bnc#614353)
+- 0.1.7
+
+---
+Thu May 20 12:54:36 UTC 2010 - jreidin...@novell.com
+
+- allow setting of ntp on s390 (bnc#607158) 
+
+---
+Fri Apr 30 13:38:19 UTC 2010 - jreidin...@novell.com
+
+- fix spec file consistency (bnc#560061)
+- 0.1.6
+
+---
+Fri Apr 23 11:54:44 UTC 2010 - jreidin...@novell.com
+
+- add license headers (bnc#586620)
+- 0.1.5
+
+---
+Fri Apr  9 09:04:48 UTC 2010 - jreidin...@novell.com
+
+- allow edit ntp server (bnc#591404)
+- improve package description
+- 0.1.4
+
+---
+Mon Mar 29 13:42:15 CEST 2010 - mvid...@suse.cz
+
+- RPM-Provide WebYaST(org.opensuse.yast.modules.FOO) (bnc#583561)
+- 0.1.3
+
+---
+Mon Mar 22 11:40:28 UTC 2010 - jreidin...@novell.com
+
+- update ntp configuration immediatelly (bnc#589303)
+
+---
+Thu Mar 11 12:40:23 UTC 2010 - jreidin...@novell.com
+
+- allow set ntp server if not defined (bnc#585783)
+- 0.1.2
+
+---
+Wed Feb 24 12:43:40 UTC 2010 - jreidin...@novell.com
+
+- fix syntax errors in ntp YaPI (bnc#582188)
+- 0.1.1
+
+---
+Thu Feb 18 15:26:24 UTC 2010 - jreidin...@novell.com
+
+- fix passing hardware clock settings to ntp (bnc#556467) 
+- use BaseModel and add validations
+- allow synchronize action only if ntp is available (bnc#552071)
+- 0.1.0
+
+---
+Mon Jan 25 17:22:19 CET 2010 - mvid...@suse.cz
+
+- renamed yast2-webservice-ntp to webyast-ntp-ws
+
+---
+Fri Nov 20 12:29:33 UTC 2009 - jreidin...@novell.com
+
+- fix writing ntp to hardware clock (use absolute path) (bnc#553980)
+- 0.0.8
+
+---
+Wed Nov 18 10:45:24 UTC 2009 - jreidin...@novell.com
+
+- write time from ntp to hardware clock (bnc#556467)
+- 0.0.7
+
+---
+Wed Nov 18 08:08:02 UTC 2009 - jreidin...@novell.com
+
+- don't raise exception if dbus timeout due to time move to future
+  or past (bnc#553980)
+- 0.0.6
+
+---
+Tue Nov 10 16:19:32 CET 2009 - jreidin...@suse.cz
+
+- remove deprecated provisions in spec file 
+- 0.0.5
+
+---
+Thu Nov  5 14:32:36 CET 2009 - jreidin...@suse.cz
+
+- mention in 

commit xapian-core for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package xapian-core for openSUSE:Factory 
checked in at 2011-12-01 12:27:36

Comparing /work/SRC/openSUSE:Factory/xapian-core (Old)
 and  /work/SRC/openSUSE:Factory/.xapian-core.new (New)


Package is xapian-core, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xapian-core/xapian-core.changes  2011-09-23 
12:50:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.xapian-core.new/xapian-core.changes 
2011-12-01 12:27:37.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 28 19:46:42 UTC 2011 - co...@suse.com
+
+- avoid packaging files twice
+
+---



Other differences:
--
++ xapian-core.spec ++
--- /var/tmp/diff_new_pack.5icbs0/_old  2011-12-01 12:27:38.0 +0100
+++ /var/tmp/diff_new_pack.5icbs0/_new  2011-12-01 12:27:38.0 +0100
@@ -20,7 +20,7 @@
 Name:   xapian-core
 Version:1.2.7
 Release:1
-License:GPLv2
+License:GPL-2.0
 Summary:The Xapian Probabilistic Information Retrieval Library
 Url:http://www.xapian.org/
 Group:  Productivity/Databases/Servers
@@ -38,7 +38,6 @@
 indexing and search facilities to applications
 
 %package -n libxapian22
-
 Summary:Xapian search engine libraries
 Group:  Development/Libraries/C and C++
 Provides:   xapian-core-libs
@@ -50,7 +49,6 @@
 libraries for applications using Xapian functionality
 
 %package -n libxapian-devel
-
 Summary:Files needed for building packages which use Xapian
 Group:  Development/Libraries/C and C++
 Requires:   gcc-c++
@@ -65,7 +63,6 @@
 files needed for building packages which use Xapian
 
 %package doc
-
 Summary:Documentation for Xapian-core libraries
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -77,7 +74,6 @@
 files needed for building packages which use Xapian
 
 %package examples
-
 Summary:Examples for Xapian-core libraries
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -100,18 +96,25 @@
 rm -rf 
examples/{.libs,.deps,.dirstamp,*.o,quest,delve,simplesearch,simpleexpand,simpleindex,copydatabase}
 cp -vr examples  %{buildroot}%{_docdir}/%{name}/
 find . -name \*.spec -delete
-fdupes %{buildroot}%{_defaultdocdir}/%{name}
+install -m 644 AUTHORS COPYING ChangeLog INSTALL README NEWS HACKING PLATFORMS 
ChangeLog.examples %{buildroot}%{_docdir}/%{name}
+fdupes %{buildroot}%{_docdir}/%{name}
 
 %post -n libxapian22 -p /sbin/ldconfig
 
 %postun -n libxapian22 -p /sbin/ldconfig
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-, root, root)
-%doc AUTHORS COPYING ChangeLog INSTALL README NEWS HACKING PLATFORMS 
ChangeLog.examples
+%dir %{_docdir}/%{name}
+%{_docdir}/%{name}/AUTHORS
+%{_docdir}/%{name}/COPYING
+%{_docdir}/%{name}/ChangeLog
+%{_docdir}/%{name}/INSTALL
+%{_docdir}/%{name}/README
+%{_docdir}/%{name}/NEWS
+%{_docdir}/%{name}/HACKING
+%{_docdir}/%{name}/PLATFORMS
+%{_docdir}/%{name}/ChangeLog.examples
 %{_bindir}/xapian-tcpsrv
 %{_bindir}/xapian-progsrv
 %{_bindir}/quest

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



commit xawtv for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package xawtv for openSUSE:Factory checked 
in at 2011-12-01 12:27:42

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xawtv/xawtv.changes  2011-09-23 
12:51:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.xawtv.new/xawtv.changes 2011-12-01 
12:27:44.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 14:24:53 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xawtv.spec ++
--- /var/tmp/diff_new_pack.HmcPOy/_old  2011-12-01 12:27:51.0 +0100
+++ /var/tmp/diff_new_pack.HmcPOy/_new  2011-12-01 12:27:51.0 +0100
@@ -15,14 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   xawtv
 Version:3.102
-Release:1
+Release:0
 Summary:Video4Linux TV application (Athena)
-
 License:GPL-2.0+
 Url:http://www.kraxel.org/blog/linux/xawtv/
 Group:  Hardware/TV
@@ -39,6 +35,7 @@
 
 BuildRequires:  Mesa-devel
 BuildRequires:  aalib-devel
+BuildRequires:  automake
 BuildRequires:  alsa-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libdv-devel
@@ -68,9 +65,7 @@
 the Athena widgets.
 
 %package -n motv
-License:GPL-2.0+
 Summary:Video4Linux TV application (Motif)
-Group:  Hardware/TV
 Requires:   tv-common
 Requires:   tv-fonts
 Requires:   v4l-conf
@@ -86,9 +81,7 @@
 Also includes the teletext/videotext viewer mtt.
 
 %package -n tv-common
-License:GPL-2.0+
 Summary:Frequency tables and some Tools for motv and xawtv
-Group:  Hardware/TV
 Provides:   xawtv:/usr/X11R6/lib/X11/fonts/misc/led-iso8859-1.bdf
 
 %description -n tv-common
@@ -96,9 +89,7 @@
 for xawtv and motv (xawtv-remote, for example).
 
 %package -n v4l-conf
-License:GPL-2.0+
 Summary:Video4linux Configuration Tool
-Group:  Hardware/TV
 Requires(post): permissions
 Provides:   xawtv:%{_bindir}/v4l-conf
 
@@ -107,9 +98,7 @@
 (bttv, for example). xawtv, motv, and fbtv need it.
 
 %package -n v4l-tools
-License:GPL-2.0+
 Summary:Video4linux terminal / command line utilities
-Group:  Hardware/TV
 Requires:   tv-common
 Requires:   v4l-conf
 Provides:   xawtv:%{_bindir}/v4lctl
@@ -122,7 +111,6 @@
 application, ...
 
 %package -n alevtd
-License:GPL-2.0+
 Summary:HTTP server for Teletext pages
 Group:  Productivity/Networking/Web/Servers
 
@@ -131,7 +119,6 @@
 via http, i.e. you can read the teletext pages with a web browser.
 
 %package -n pia
-License:GPL-2.0+
 Summary:Simple Movie Player
 Group:  Productivity/Multimedia/Video/Players
 Requires:   tv-common

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



commit xtermset for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package xtermset for openSUSE:Factory 
checked in at 2011-12-01 12:27:47

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xtermset/xtermset.changes2011-09-23 
12:52:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.xtermset.new/xtermset.changes   2011-12-01 
12:27:52.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:25:13 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xtermset.spec ++
--- /var/tmp/diff_new_pack.CkfY9i/_old  2011-12-01 12:27:58.0 +0100
+++ /var/tmp/diff_new_pack.CkfY9i/_new  2011-12-01 12:27:58.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xtermset (Version 0.5.2)
+# spec file for package xtermset
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,16 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   xtermset
-License:GPL v2 or later; X11/MIT
+BuildRequires:  automake
+License:GPL-2.0+; X11/MIT
 Group:  System/X11/Terminals
-AutoReqProv:on
 Summary:A program to change the settings of an xterm
 Version:0.5.2
-Release:255
+Release:0
 Url:http://sourceforge.net/projects/clts/
 Source: %{name}-%{version}.tar.bz2
 Patch0: %{name}-%{version}.dif
@@ -37,13 +36,6 @@
 from the command line. Most options have the same names as those that
 you would give an xterm at startup.
 
-
-
-Authors:
-
-Breyten Ernsting b...@dds.nl
-Decklin Foster deck...@home.com
-
 %prep
 %setup
 %patch0

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



commit libzypp for openSUSE:12.1:Update:Test

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package libzypp for 
openSUSE:12.1:Update:Test checked in at 2011-12-01 14:36:21

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/libzypp/libzypp.changes 2011-11-25 
16:22:15.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.libzypp.new/libzypp.changes
2011-12-01 14:36:23.0 +0100
@@ -1,0 +2,14 @@
+Mon Nov 28 18:08:42 CET 2011 - m...@suse.de
+
+- Fix and optimize Pathname ctor and provide testcases (bnc#721128)
+- Open all file descriptors with O_CLOEXEC to avoid leaks and races
+- Some improvements to the services documentation
+- Fix RW_pointer comparison with underlying smart pointer type.
+- version 10.3.5 (3)
+
+---
+Sun Nov 27 01:13:10 CET 2011 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---

Old:

  libzypp-10.3.4.tar.bz2

New:

  libzypp-10.3.5.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.lmFMYx/_old  2011-12-01 14:36:23.0 +0100
+++ /var/tmp/diff_new_pack.lmFMYx/_new  2011-12-01 14:36:23.0 +0100
@@ -23,7 +23,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:10.3.4
+Version:10.3.5
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ libzypp-10.3.4.tar.bz2 - libzypp-10.3.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-10.3.4/VERSION.cmake 
new/libzypp-10.3.5/VERSION.cmake
--- old/libzypp-10.3.4/VERSION.cmake2011-11-23 11:30:33.0 +0100
+++ new/libzypp-10.3.5/VERSION.cmake2011-11-29 15:09:29.0 +0100
@@ -45,24 +45,24 @@
 # ==
 
 #===
-# - Update version according to your changes,
-#   but based on 'LAST RELEASED:' below. I.e
-#   there's no need to increase LIBZYPP_MINOR
-#   if it already differs from 'LAST RELEASED:'.
-#
 # - MOST IMPORTANT:
-#   Before you submitt to autobuild, rmember the
-#   new version in 'LAST RELEASED:', and add a
-#   note in the changes file.
+#   - Before you submitt to git:
+# - Remember the new version in 'LAST RELEASED:'
+# - State the new version in the changes file by adding a line
+#   - version MAJOR.MINOR.PATCH (COMPATMINOR)
+# - Commit changes and version files together in a separate
+#   commit using -m 'changes MAJOR.MINOR.PATCH (COMPATMINOR)'
+# - Tag the above commit with 'MAJOR.MINOR.PATCH' using
+#   -m tagging MAJOR.
 #
-# - Consider calling ./mkChangelog to edit the
-#   changes file. See './mkChangelog -h' for help.
+# - Consider calling ./mkChangelog to assist you.
+#   See './mkChangelog -h' for help.
 #
 SET(LIBZYPP_MAJOR 10)
 SET(LIBZYPP_COMPATMINOR 3)
 SET(LIBZYPP_MINOR 3)
-SET(LIBZYPP_PATCH 4)
+SET(LIBZYPP_PATCH 5)
 #
-# LAST RELEASED: 10.3.4 (3)
+# LAST RELEASED: 10.3.5 (3)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-10.3.4/devel/devel.ma/Basic.cc 
new/libzypp-10.3.5/devel/devel.ma/Basic.cc
--- old/libzypp-10.3.4/devel/devel.ma/Basic.cc  2011-11-23 11:30:35.0 
+0100
+++ new/libzypp-10.3.5/devel/devel.ma/Basic.cc  2011-11-29 15:09:30.0 
+0100
@@ -11,6 +11,9 @@
 #include zypp/TmpPath.h
 #include zypp/ResPoolProxy.h
 #include zypp/repo/PackageProvider.h
+#include zypp/media/MediaManager.h
+#include zypp/MediaSetAccess.h
+#include zypp/Fetcher.h
 
 static const Pathname sysRoot( / );
 
@@ -18,6 +21,190 @@
 using namespace zypp;
 using namespace zypp::ui;
 
+
+#include zypp/ZYppCallbacks.h
+
+struct DownloadProgressReceive :  public 
callback::ReceiveReportmedia::DownloadProgressReport
+{
+  DownloadProgressReceive()
+  { connect(); }
+#if 0
+enum Action {
+  ABORT,  // abort and return error
+  RETRY,   // retry
+  IGNORE   // ignore the failure
+};
+
+enum Error {
+  NO_ERROR,
+  NOT_FOUND,   // the requested Url was not found
+  IO,  // IO error
+  ACCESS_DENIED, // user authent. failed while accessing restricted 
file
+  ERROR // other error
+};
+#endif
+virtual void start( const Url  file, Pathname localfile )
+   {
+ USR  DP +++   file   endl;

commit SuSEfirewall2 for openSUSE:12.1:Update:Test

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package SuSEfirewall2 for 
openSUSE:12.1:Update:Test checked in at 2011-12-01 15:44:55

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


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

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.SuSEfirewall2.new/SuSEfirewall2.changes
2011-12-01 15:44:55.0 +0100
@@ -0,0 +1,1180 @@
+---
+Mon Nov  7 10:56:04 UTC 2011 - lnus...@suse.de
+
+- use /sbin/rpcinfo as /usr/sbin/rpcinfo is gone (bnc#727438)
+
+---
+Wed Nov  2 15:27:04 UTC 2011 - lnus...@suse.de
+
+- set SYSTEMD_NO_WRAP for status (bnc#727445)
+
+---
+Fri Oct 14 09:46:33 UTC 2011 - lnus...@suse.de
+
+- fix manual rcSuSEfirewall2 stop with sytemd (bnc#717583)
+
+---
+Tue Oct  4 14:53:13 UTC 2011 - lnus...@suse.de
+
+- fix typo (bnc#721845)
+- atomic zone status writing
+
+---
+Sat Sep 17 10:25:23 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+
+---
+Wed Sep  7 11:38:14 UTC 2011 - lnus...@suse.de
+
+- sanitize FW_ZONE_DEFAULT (bnc#716013)
+- add warning about iptables-batch to SuSEfirewall2-custom
+- fix warning about /proc/net/ip_tables_names not readable
+- don't install input rules for interfaces in default zone
+- Add hook fw_custom_after_finished
+- update FAQ (bnc#694464)
+- clean up overrides when stopping the firewall (bnc#630961)
+- change default FW_LOG_ACCEPT_CRIT to no
+- allow redir without port specification
+- make FW_SERVICES_{REJECT,DROP}_* take precedende before ACCEPT (bnc#671997)
+- fix zonein and zoneout parameters
+- fix reverse direction of forwarding rules (bnc#679192)
+
+---
+Tue Feb  1 13:16:53 UTC 2011 - lnus...@suse.de
+
+- introduce rpcusers file to allow statd to run as non-root
+  (bnc#668553)
+
+---
+Wed Jan 19 14:04:48 UTC 2011 - lnus...@suse.de
+
+- add zonein and zoneout parameters for FW_FORWARD
+- fix typos
+
+---
+Mon Jan 10 13:15:05 UTC 2011 - lnus...@suse.de
+
+- don't start in runlevel 4 by default (bnc#656520)
+- cut off long zone names (bnc#644527)
+- fix and enhance output of log command (bnc#663262)
+
+---
+Thu Dec  2 13:33:59 UTC 2010 - lnus...@suse.de
+
+- don't unload rules when using systemd
+
+---
+Tue Nov 16 15:01:04 UTC 2010 - lnus...@suse.de
+
+- list some known rpc services as Should-Start
+- don't filter outgoing packets at all
+- fix an example (bnc#641907)
+- fix status check in SuSEfirewall2_init (bnc#628751)
+
+---
+Mon Aug 16 07:32:31 UTC 2010 - lnus...@suse.de
+
+- don't use fillup anymore as it keeps corrupting the config file
+  (bnc#340926)
+
+---
+Tue Jun 29 12:20:30 UTC 2010 - lnus...@suse.de
+
+- remove batch committing... message
+- read defaults from separate file
+- warn if highports config options are set
+- finally drop 'highports' misfeature
+- remove kernel ipv6 module detection (bnc#617033)
+- silence warning about default zone (bnc#616841)
+- SuSEfirewall2-open: don't add values multiple times
+- Use multiprotocol xt_conntrack
+
+---
+Mon May 31 08:11:54 UTC 2010 - lnus...@suse.de
+
+- only directories in /sys/class/net are real interfaces (bnc#609810)
+
+---
+Fri Mar 19 13:34:10 UTC 2010 - lnus...@suse.de
+
+- add entry about drbd to FAQ
+- update docu
+- implement FW_BOOT_FULL_INIT
+
+---
+Tue Feb 16 13:51:48 UTC 2010 - lnus...@suse.de
+
+- use new versioning scheme after switch of repo to git
+- update and rebuild docu
+- remove really old rc.config conversion code from spec file
+
+---
+Tue Sep 15 13:33:06 UTC 2009 - lnus...@suse.de
+
+- fix spelling error in sysconfig file (bnc#537427)
+- polishing of log drop policy (bnc#538053)
+  * drop 

commit SuSEfirewall2 for openSUSE:12.1:Update:Test

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package SuSEfirewall2 for 
openSUSE:12.1:Update:Test checked in at 2011-12-01 15:45:43

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/SuSEfirewall2/SuSEfirewall2.changes 
2011-12-01 15:44:55.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.SuSEfirewall2.new/SuSEfirewall2.changes
2011-12-01 15:46:10.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 29 15:00:11 UTC 2011 - lnus...@suse.de
+
+- compat syntax for negated options no longer works (bnc#660156, bnc#731088)
+
+---

New:

  SuSEfirewall2-negated-options.diff



Other differences:
--
++ SuSEfirewall2.spec ++
--- /var/tmp/diff_new_pack.8AfmYm/_old  2011-12-01 15:46:11.0 +0100
+++ /var/tmp/diff_new_pack.8AfmYm/_new  2011-12-01 15:46:11.0 +0100
@@ -28,6 +28,7 @@
 Requires:   iptables coreutils perl sysconfig
 Summary:Stateful Packet Filter Using iptables and netfilter
 Source: SuSEfirewall2-%{version}.tar.bz2
+Patch0: SuSEfirewall2-negated-options.diff
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -41,6 +42,7 @@
 
 %prep
 %setup
+%patch0 -p1
 # please send patches to lnussel for inclusion in git first
 # http://gitorious.org/opensuse/susefirewall2
 

++ SuSEfirewall2-negated-options.diff ++
From c0d28e8fd4b22b658e605bb57fc848f4c112abff Mon Sep 17 00:00:00 2001
From: Ludwig Nussel ludwig.nus...@suse.de
Date: Mon, 28 Nov 2011 16:57:25 +0100
Subject: [PATCH] compat syntax for negated options no longer works
 (bnc#660156, bnc#731088)

---
 SuSEfirewall2 |   89 +++--
 1 files changed, 55 insertions(+), 34 deletions(-)

diff --git a/SuSEfirewall2 b/SuSEfirewall2
index b9c7fc7..affb8aa 100755
--- a/SuSEfirewall2
+++ b/SuSEfirewall2
@@ -1873,10 +1873,34 @@ warn_highports()
 fi
 }
 
+# construct -s/-d pairs with correct negation
+net2srcdst()
+{
+   local name=$1
+   local value=${2#\!}
+   if [ -z $value ]; then
+   echo ${name}_src=
+   echo ${name}_dst=
+   echo ${name}_neg=
+   return
+   fi
+   local neg=
+   if [ $2 != $value ]; then
+   neg='! '
+   echo ${name}_neg=1
+   else
+   echo ${name}_neg=
+   fi
+   echo ${name}_src=\$neg-s $value\
+   echo ${name}_dst=\$neg-d $value\
+}
+
 # redirect packets from one port to another, opens ports in input_*
 redirect_rules()
 {
-local chain nets net1 net2 proto port1 port2
+local chain nets proto port1 port2
+local net1 net1_neg net1_src net1_dst
+local net2 net2_neg net2_src net2_dst
 local redirectinstalled
 for nets in $FW_REDIRECT; do
IFS=, eval set -- \$nets
@@ -1900,10 +1924,10 @@ redirect_rules()
if [ -n $port2 ]; then
port2=--to-ports $port2
fi
-   net1=${net1/\!/\! }
-   net2=${net2/\!/\! }
-   $IPTABLES -A PREROUTING -t mangle -j MARK  -p $proto -s $net1 -d 
$net2 $port1 --set-mark $mark_redir
-   $IPTABLES -A PREROUTING -t nat -j REDIRECT -p $proto -s $net1 -d 
$net2 $port1 $port2
+   eval `net2srcdst net1 $net1`
+   eval `net2srcdst net2 $net2`
+   $IPTABLES -A PREROUTING -t mangle -j MARK  -p $proto $net1_src 
$net2_dst $port1 --set-mark $mark_redir
+   $IPTABLES -A PREROUTING -t nat -j REDIRECT -p $proto $net1_src 
$net2_dst $port1 $port2
redirectinstalled=1
fi
 done
@@ -2051,7 +2075,9 @@ forwarding_rules()
 
 masquerading_rules()
 {
-local nets net1 net2 proto port dev snet2 sport
+local nets proto port dev sport
+local net1 net1_neg net1_src net1_dst
+local net2 net2_neg net2_src net2_dst
 local szone dzone sdev sdevs
 local z d
 local var='FW_NOMASQ_NETS'
@@ -2073,20 +2099,14 @@ masquerading_rules()
elif [ -z $net1 ]; then
error source network must not be empty in $var - $nets
elif check_proto_port $proto $port '' $var; then
-   net1=${net1/\!/\! }
-   net2=${net2/\!/\! }
-   snet2=
-   if [ -n $net2 ]; then
-   snet2=-s $net2
-   net2=-d $net2
-   fi
-
+   eval `net2srcdst net1 $net1`
+   eval `net2srcdst net2 $net2`
for dev in $FW_MASQ_DEV; do
d=${dev//[^A-Za-z0-9]/_}
eval z=\${iface_$d}
 
if [ $var = 

commit NetworkManager for openSUSE:12.1:Update:Test

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager for 
openSUSE:12.1:Update:Test checked in at 2011-12-01 16:54:18

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


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

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/NetworkManager/NetworkManager.changes   
2011-11-24 20:14:26.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.NetworkManager.new/NetworkManager.changes  
2011-12-01 16:54:20.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 29 11:54:14 CET 2011 - fcro...@suse.com
+
+- Update systemd-network-config.patch to handle NM_TIMEOUT value 0
+  as no timeout (bnc#730628).
+
+---



Other differences:
--
++ systemd-network-config.patch ++
--- /var/tmp/diff_new_pack.Z4Osya/_old  2011-12-01 16:54:20.0 +0100
+++ /var/tmp/diff_new_pack.Z4Osya/_new  2011-12-01 16:54:20.0 +0100
@@ -30,9 +30,9 @@
  [Service]
  Type=oneshot
 -ExecStart=@bindir@/nm-online -q --timeout=30
-+Environment=NM_ONLINE_TIMEOUT=30
++Environment=NM_ONLINE_TIMEOUT=0
 +EnvironmentFile=-/etc/sysconfig/network/config
-+ExecStart=@bindir@/nm-online -q --timeout=${NM_ONLINE_TIMEOUT}
++ExecStart=/bin/bash -c if [ ${NM_ONLINE_TIMEOUT} -gt 0 ]; then 
@bindir@/nm-online -q --timeout=${NM_ONLINE_TIMEOUT} ; else /bin/true ; fi
  
  [Install]
  WantedBy=network.target

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



commit aranym for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package aranym for openSUSE:Factory checked 
in at 2011-12-01 17:37:28

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


Package is aranym, Maintainer is sch...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/aranym/aranym.changes2011-09-23 
01:51:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.aranym.new/aranym.changes   2011-12-01 
17:37:30.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:45:02 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ aranym.spec ++
--- /var/tmp/diff_new_pack.uO1oXQ/_old  2011-12-01 17:37:31.0 +0100
+++ /var/tmp/diff_new_pack.uO1oXQ/_new  2011-12-01 17:37:31.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package aranym (Version 0.9.7beta)
+# spec file for package aranym
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 
 Name:   aranym
-BuildRequires:  Mesa-devel SDL-devel SDL_image-devel gcc-c++ unzip 
update-desktop-files
+BuildRequires:  Mesa-devel SDL-devel SDL_image-devel automake gcc-c++ unzip 
update-desktop-files
 Url:http://aranym.org/
 Summary:ARAnyM (Atari Running on Any Machine)
 Version:0.9.7beta


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



commit bluez-firmware for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package bluez-firmware for openSUSE:Factory 
checked in at 2011-12-01 17:37:36

Comparing /work/SRC/openSUSE:Factory/bluez-firmware (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-firmware.new (New)


Package is bluez-firmware, Maintainer is a...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/bluez-firmware/bluez-firmware.changes
2011-09-23 01:52:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-firmware.new/bluez-firmware.changes   
2011-12-01 17:37:38.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 09:44:40 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ bluez-firmware.spec ++
--- /var/tmp/diff_new_pack.m1g5kv/_old  2011-12-01 17:37:39.0 +0100
+++ /var/tmp/diff_new_pack.m1g5kv/_new  2011-12-01 17:37:39.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package bluez-firmware (Version 1.2)
+# spec file for package bluez-firmware
 #
-# 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
@@ -21,13 +21,13 @@
 Name:   bluez-firmware
 Url:http://bluez.sourceforge.net
 Version:1.2
-Release:125
+Release:0
 Summary:Bluetooth(TM) Firmware
-License:GPL v2 or later; GPLv2 and redistributable unmodifiable binary 
firmware
+License:GPL-2.0+; GPLv2 and redistributable unmodifiable binary 
firmware
 Group:  Hardware/Mobile
-AutoReqProv:on
 Source: http://bluez.sf.net/download/%{name}-%{version}.tar.gz
 Source1:bfusb.tar.bz2
+BuildRequires:  automake
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Obsoletes:  bluez-bluefw
 # Modules: bcm203x.ko bfusb.ko
@@ -44,13 +44,6 @@
 
 The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., USA.
 
-
-
-Authors:
-
-Max Krasnyansky m...@qualcomm.com
-Marcel Holtmann mar...@holtmann.org
-
 %prep
 %setup -b 1
 

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



commit kdesdk4 for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdesdk4 for openSUSE:Factory checked 
in at 2011-12-01 17:37:49

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk4/kdesdk4.changes  2011-11-14 
14:18:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdesdk4.new/kdesdk4.changes 2011-12-01 
17:37:51.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 12:26:42 UTC 2011 - idoen...@suse.de
+
+- Fix build with Qt 4.8 
+
+---

New:

  umbrella-virtual-qobject.patch



Other differences:
--
++ kdesdk4.spec ++
--- /var/tmp/diff_new_pack.wi2kt3/_old  2011-12-01 17:37:52.0 +0100
+++ /var/tmp/diff_new_pack.wi2kt3/_new  2011-12-01 17:37:52.0 +0100
@@ -27,6 +27,7 @@
 Source0:kdesdk-%{version}.tar.bz2
 Source100:  kdesdk4-rpmlintrc
 Patch0: desktop-files.diff
+Patch1: umbrella-virtual-qobject.patch
 BuildRequires:  antlr
 BuildRequires:  antlr-devel
 # for libiberty (used by kmtrace for cp_demangle)
@@ -36,13 +37,13 @@
 BuildRequires:  flex
 BuildRequires:  hunspell-devel
 BuildRequires:  kdebase4-workspace-devel
+BuildRequires:  libkde4-devel = %{version}
 BuildRequires:  libkdepimlibs4-devel
 BuildRequires:  libkonq-devel
 BuildRequires:  libqca2-devel
 BuildRequires:  oxygen-icon-theme
 BuildRequires:  strigi
 BuildRequires:  subversion-devel
-BuildRequires:  libkde4-devel = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 Requires(post): shared-mime-info
@@ -54,6 +55,7 @@
 %prep
 %setup -q -n kdesdk-%{version}
 %patch0
+%patch1 -p1
 
 %build
 %ifarch ppc64
@@ -104,10 +106,6 @@
 /sbin/ldconfig
 %_kde4_bindir/update-mime-database %{_datadir}/mime  /dev/null || :
 
-%clean
-  rm -rf %{buildroot}
-  rm -rf filelists
-
 %package scripts
 License:GPLv2+
 Summary:Scripts for KDE Development

++ umbrella-virtual-qobject.patch ++
Index: kdesdk-4.7.3/umbrello/umbrello/codegenerators/ownedcodeblock.h
===
--- kdesdk-4.7.3.orig/umbrello/umbrello/codegenerators/ownedcodeblock.h
+++ kdesdk-4.7.3/umbrello/umbrello/codegenerators/ownedcodeblock.h
@@ -23,7 +23,7 @@ class UMLObject;
  * Describes any codeblock which is 'owned' by a UMLobject of some sort and 
should
  * be in sync with that parent.
  */
-class OwnedCodeBlock : virtual public QObject
+class OwnedCodeBlock : public QObject
 {
 Q_OBJECT
 public:
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdesvn for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdesvn for openSUSE:Factory checked 
in at 2011-12-01 17:37:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdesvn/kdesvn.changes2011-09-23 
02:06:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesvn.new/kdesvn.changes   2011-12-01 
17:37:55.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 12:50:11 UTC 2011 - idoen...@suse.de
+
+- Fix build with Qt 4.8 
+
+---

New:

  kdesvn-virtual-inheritance.patch



Other differences:
--
++ kdesvn.spec ++
--- /var/tmp/diff_new_pack.eb8ocR/_old  2011-12-01 17:37:56.0 +0100
+++ /var/tmp/diff_new_pack.eb8ocR/_new  2011-12-01 17:37:56.0 +0100
@@ -28,6 +28,7 @@
 Source: %{name}-%{version}.tar.bz2
 Patch0: kdesvn.diff
 Patch2: remove-nl.diff
+Patch3: kdesvn-virtual-inheritance.patch
 BuildRequires:  fdupes
 BuildRequires:  libkde4-devel
 BuildRequires:  openldap2-devel
@@ -75,6 +76,7 @@
 %setup -q
 %patch0
 %patch2
+%patch3 -p1
 
 %build
   %cmake_kde4 -d build
@@ -89,9 +91,6 @@
   %fdupes -s %{buildroot}%{_datadir}
   %kde_post_install
 
-%clean
-rm -rf %{buildroot}
-
 %post -n libsvnqt6 -p /sbin/ldconfig
 
 %postun -n libsvnqt6 -p /sbin/ldconfig

++ kdesvn-virtual-inheritance.patch ++
Index: kdesvn-1.5.5/src/svnfrontend/graphtree/revgraphview.h
===
--- kdesvn-1.5.5.orig/src/svnfrontend/graphtree/revgraphview.h
+++ kdesvn-1.5.5/src/svnfrontend/graphtree/revgraphview.h
@@ -49,7 +49,7 @@ typedef svn::SharedPointerKTemporaryFil
 /**
@author Rajko Albrecht r...@alwins-world.de
 */
-class RevGraphView : virtual public QGraphicsView
+class RevGraphView : public QGraphicsView
 {
 Q_OBJECT
 public:
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kmymoney for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package kmymoney for openSUSE:Factory 
checked in at 2011-12-01 17:37:57

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kmymoney/kmymoney.changes2011-11-10 
15:49:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.kmymoney.new/kmymoney.changes   2011-12-01 
17:37:59.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 12:55:52 UTC 2011 - idoen...@suse.de
+
+- Fix build with Qt 4.8 
+
+---

New:

  kmymoney-qdebug.patch



Other differences:
--
++ kmymoney.spec ++
--- /var/tmp/diff_new_pack.kmDfCa/_old  2011-12-01 17:38:00.0 +0100
+++ /var/tmp/diff_new_pack.kmDfCa/_new  2011-12-01 17:38:00.0 +0100
@@ -25,6 +25,7 @@
 Url:http://kmymoney2.sourceforge.net/
 Group:  Productivity/Office/Finance
 Source0:
http://downloads.sourceforge.net/kmymoney2/%{name}-%{version}.tar.bz2
+Patch1: kmymoney-qdebug.patch
 BuildRequires:  aqbanking-devel
 BuildRequires:  boost-devel
 BuildRequires:  fdupes
@@ -73,6 +74,7 @@
 %lang_package
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 %cmake_kde4 -d build

++ kmymoney-qdebug.patch ++
Index: kmymoney-4.6.0/libkdchart/src/KDChartBackgroundAttributes.cpp
===
--- kmymoney-4.6.0.orig/libkdchart/src/KDChartBackgroundAttributes.cpp
+++ kmymoney-4.6.0/libkdchart/src/KDChartBackgroundAttributes.cpp
@@ -22,6 +22,7 @@
 
 #include KDChartBackgroundAttributes.h
 #include QPixmap
+#include QVariant
 
 #include KDABLibFakes
 
@@ -150,7 +151,7 @@ QDebug operator(QDebug dbg, const KDCh
 visible=ba.isVisible()
 brush=ba.brush()
 pixmapmode=ba.pixmapMode()
-pixmap=ba.pixmap()
+pixmap= QVariant(ba.pixmap())
 );
 return dbg;
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libHX for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package libHX for openSUSE:Factory checked 
in at 2011-12-01 17:38:01

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libHX/libHX.changes  2011-09-23 
02:07:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.libHX.new/libHX.changes 2011-12-01 
17:38:04.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec  1 10:24:53 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ libHX.spec ++
--- /var/tmp/diff_new_pack.iEK4I5/_old  2011-12-01 17:38:05.0 +0100
+++ /var/tmp/diff_new_pack.iEK4I5/_new  2011-12-01 17:38:05.0 +0100
@@ -15,21 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   libHX
 %define lname   libHX27
 Summary:Useful collection of routines for C and C++ programming
 Version:3.11
-Release:3
+Release:0
 License:LGPL v2+
 Group:  System/Libraries
 Source: http://downloads.sf.net/libhx/libHX-%version.tar.xz
 Source3:http://downloads.sf.net/libhx/libHX-%version.tar.xz.asc
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  gcc-c++ pkg-config xz
+BuildRequires:  automake
+BuildRequires:  gcc-c++
+BuildRequires:  pkg-config
+BuildRequires:  xz
 %define debug_package_requires %lname = %version-%release
 Url:http://libhx.sf.net/
 
@@ -53,9 +53,7 @@
 
 %package -n %lname
 
-License:LGPL v2+
 Summary:Useful collection of routines for C and C++ programming
-Group:  System/Libraries
 
 %description -n %lname
 libHX is a C library (with some C++ bindings available) that provides
@@ -76,7 +74,6 @@
Jan Engelhardt jengelh [at] medozas de
 
 %package devel
-License:LGPL v2+
 Summary:Useful collection of routines for C and C++ programming
 Group:  Development/Libraries/C and C++
 Requires:   %lname = %version



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



commit numlockx for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package numlockx for openSUSE:Factory 
checked in at 2011-12-01 17:38:13

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


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

Changes:

--- /work/SRC/openSUSE:Factory/numlockx/numlockx.changes2011-09-23 
02:14:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.numlockx.new/numlockx.changes   2011-12-01 
17:38:14.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:35:32 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ numlockx.spec ++
--- /var/tmp/diff_new_pack.uO2j7e/_old  2011-12-01 17:38:15.0 +0100
+++ /var/tmp/diff_new_pack.uO2j7e/_new  2011-12-01 17:38:15.0 +0100
@@ -15,15 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   numlockx
 Url:http://ktown.kde.org/~seli/numlockx
-BuildRequires:  xorg-x11-devel
+BuildRequires:  automake xorg-x11-devel
 Version:1.2
-Release:1
-License:X11/MIT
+Release:0
+License:MIT
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  System/YaST
 Provides:   x11-tools:/usr/X11R6/bin/numlock

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



commit perl-IO-Socket-INET6 for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-IO-Socket-INET6 for 
openSUSE:Factory checked in at 2011-12-01 17:38:19

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


Package is perl-IO-Socket-INET6, Maintainer is vci...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-IO-Socket-INET6/perl-IO-Socket-INET6.changes
2011-11-21 12:41:35.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-IO-Socket-INET6.new/perl-IO-Socket-INET6.changes
   2011-12-01 17:38:20.0 +0100
@@ -1,0 +2,10 @@
+Wed Nov 30 11:05:12 UTC 2011 - vci...@suse.com
+
+- update to 2.69
+  * Fix the imports on t/io_multihomed6.t .
+- Fixes https://rt.cpan.org/Ticket/Display.html?id=72769 again.
+  * Update the link to the repository in Build.PL.
+  * Solved symbol clashes in t/io_multihomed6.t .
+- Fixes https://rt.cpan.org/Ticket/Display.html?id=72769
+
+---

Old:

  IO-Socket-INET6-2.67.tar.gz

New:

  IO-Socket-INET6-2.69.tar.gz



Other differences:
--
++ perl-IO-Socket-INET6.spec ++
--- /var/tmp/diff_new_pack.VnXBof/_old  2011-12-01 17:38:21.0 +0100
+++ /var/tmp/diff_new_pack.VnXBof/_new  2011-12-01 17:38:21.0 +0100
@@ -15,26 +15,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %bcond_with test
 
 Name:   perl-IO-Socket-INET6
+Version:2.69
+Release:1
+License:GPL-1.0+ or Artistic-1.0
 %define cpan_name IO-Socket-INET6
 Summary:Object interface for AF_INET|AF_INET6 domain sockets
-Version:2.67
-Release:1
-License:GPL+ or Artistic
-Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/IO-Socket-INET6/
+Group:  Development/Libraries/Perl
 #Source: 
http://www.cpan.org/modules/by-module/IO/IO-Socket-INET6-%{version}.tar.gz
 Source: %{cpan_name}-%{version}.tar.gz
-BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
+%{perl_requires}
 %if %{with test}
 BuildRequires:  perl(Test::Pod) = 1.14
 BuildRequires:  perl(Test::Pod::Coverage) = 1.04
@@ -61,15 +60,11 @@
sockets in either AF_INET or AF_INET6 domains. It is built upon the
IO::Socket interface and inherits all the methods defined by IO::Socket.
 
-Authors:
-
-Rafael Martinez Torres rafael.marti...@novagnet.com
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor
+perl Build.PL installdirs=vendor
 ./Build
 #exclude this test as it needs IPv6 network
 mv t/io_sock6.t t/io_sock6.tt
@@ -83,11 +78,11 @@
 %endif
 
 %install
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+./Build install destdir=%{buildroot} create_packlist=0
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files -f %{name}.files
 %defattr(-,root,root,-)

++ IO-Socket-INET6-2.67.tar.gz - IO-Socket-INET6-2.69.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-INET6-2.67/Build.PL 
new/IO-Socket-INET6-2.69/Build.PL
--- old/IO-Socket-INET6-2.67/Build.PL   2011-01-21 13:59:20.0 +0100
+++ new/IO-Socket-INET6-2.69/Build.PL   2011-11-28 13:57:54.0 +0100
@@ -32,7 +32,7 @@
 {
 resources =
 {
-repository = 
http://svn.berlios.de/svnroot/repos/web-cpan/IO-Socket-INET6/;,
+repository = https://bitbucket.org/shlomif/perl-io-socket-inet6;,
 },
 keywords =
 [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-INET6-2.67/ChangeLog 
new/IO-Socket-INET6-2.69/ChangeLog
--- old/IO-Socket-INET6-2.67/ChangeLog  2011-01-21 13:59:20.0 +0100
+++ new/IO-Socket-INET6-2.69/ChangeLog  2011-11-28 13:57:54.0 +0100
@@ -1,8 +1,19 @@
+2011-11-28 Shlomi Fish shlo...@shlomifish.org
+   * Fix the imports on t/io_multihomed6.t .
+   - Fixes https://rt.cpan.org/Ticket/Display.html?id=72769 again.
+   * Update the link to the repository in Build.PL.
+   * New Release IO-Socket-INET6-2.69
+
+2011-11-28 Shlomi Fish shlo...@shlomifish.org
+   * Solved symbol clashes in t/io_multihomed6.t .
+   - Fixes https://rt.cpan.org/Ticket/Display.html?id=72769
+   * New Release IO-Socket-INET6-2.68
+
 2011-01-21 Shlomi Fish shlo...@iglu.org.il
* IO-Socket is doing 

commit perl-PAR-Dist for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package perl-PAR-Dist for openSUSE:Factory 
checked in at 2011-12-01 17:38:23

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


Package is perl-PAR-Dist, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-PAR-Dist/perl-PAR-Dist.changes  
2011-09-23 12:38:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-PAR-Dist.new/perl-PAR-Dist.changes 
2011-12-01 17:38:25.0 +0100
@@ -1,0 +2,7 @@
+Tue Nov 29 20:31:39 UTC 2011 - co...@suse.com
+
+- update to 0.48
+   * Prefer MYMETA.yml over META.yml if possible.
+   * Try YAML implementations in different order (XS first).
+
+---

Old:

  PAR-Dist-0.47.tar.bz2

New:

  PAR-Dist-0.48.tar.gz



Other differences:
--
++ perl-PAR-Dist.spec ++
--- /var/tmp/diff_new_pack.Hz8Gi9/_old  2011-12-01 17:38:27.0 +0100
+++ /var/tmp/diff_new_pack.Hz8Gi9/_new  2011-12-01 17:38:27.0 +0100
@@ -15,43 +15,38 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-PAR-Dist
-%define cpan_name PAR-Dist
-Summary:Create and manipulate PAR distributions
-Version:0.47
+Version:0.48
 Release:1
 License:GPL+ or Artistic
-Group:  Development/Libraries/Perl
+%define cpan_name PAR-Dist
+Summary:Create and manipulate PAR distributions
 Url:http://search.cpan.org/dist/PAR-Dist/
-Source: %{cpan_name}-%{version}.tar.bz2
+Group:  Development/Libraries/Perl
+Source: 
http://www.cpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(File::Find)
-BuildRequires:  perl(File::Path)
-BuildRequires:  perl(File::Spec)
-BuildRequires:  perl(File::Temp)
-Requires:   perl(File::Find)
-Requires:   perl(File::Path)
-Requires:   perl(File::Spec)
-Requires:   perl(File::Temp)
+%{perl_requires}
 
 %description
-This module creates and manipulates PAR distributions. They are architecture-
-specific PAR files, containing everything under blib/ of CPAN distributions
-after their make or Build stage, a META.yml describing metadata of the
-original CPAN distribution, and a MANIFEST detailing all files within it.
-Digitally signed PAR distributions will also contain a SIGNATURE file.
-
-Authors:
-
-Audrey Tang c...@audreyt.org
-Steffen Mueller smuel...@cpan.org
+This module creates and manipulates _PAR distributions_. They are
+architecture-specific *PAR* files, containing everything under _blib/_ of
+CPAN distributions after their 'make' or 'Build' stage, a _META.yml_
+describing metadata of the original CPAN distribution, and a _MANIFEST_
+detailing all files within it. Digitally signed PAR distributions will also
+contain a _SIGNATURE_ file.
+
+The naming convention for such distributions is:
+
+$NAME-$VERSION-$ARCH-$PERL_VERSION.par
+
+For example, 'PAR-Dist-0.01-i386-freebsd-5.8.0.par' corresponds to the 0.01
+release of 'PAR-Dist' on CPAN, built for perl 5.8.0 running on
+'i386-freebsd'.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -65,18 +60,11 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog

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



commit polkit-default-privs for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:Factory checked in at 2011-12-01 17:38:28

Comparing /work/SRC/openSUSE:Factory/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:Factory/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is lnus...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/polkit-default-privs/polkit-default-privs.changes
2011-10-28 20:09:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.polkit-default-privs.new/polkit-default-privs.changes
   2011-12-01 17:38:34.0 +0100
@@ -1,0 +2,18 @@
+Thu Dec  1 12:39:26 UTC 2011 - lnus...@suse.de
+
+- add org.opensuse.yast.system.terminal.read
+
+---
+Wed Nov 23 14:55:45 UTC 2011 - lnus...@suse.de
+
+- set version to 12.2
+- remove obsolete moblin privileges
+- allow org.freedesktop.ModemManager.Device.Control (bnc#732358)
+- allow setting the system's time zone (bnc#731812)
+
+---
+Wed Nov 23 08:51:30 UTC 2011 - lnus...@suse.de
+
+- change NetworkManager policies (bnc#716291)
+
+---

Old:

  polkit-default-privs-12.1.tar.bz2

New:

  polkit-default-privs-12.2.tar.bz2



Other differences:
--
++ polkit-default-privs.spec ++
--- /var/tmp/diff_new_pack.u41VPh/_old  2011-12-01 17:38:35.0 +0100
+++ /var/tmp/diff_new_pack.u41VPh/_new  2011-12-01 17:38:35.0 +0100
@@ -22,8 +22,8 @@
 Name:   polkit-default-privs
 License:GPLv2+
 Group:  Productivity/Security
-Version:12.1
-Release:8
+Version:12.2
+Release:1
 Summary:SUSE PolicyKit default permissions
 Source: polkit-default-privs-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ polkit-default-privs-12.1.tar.bz2 - polkit-default-privs-12.2.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polkit-default-privs-12.1/obs/mktar 
new/polkit-default-privs-12.2/obs/mktar
--- old/polkit-default-privs-12.1/obs/mktar 2011-10-28 09:19:58.0 
+0200
+++ new/polkit-default-privs-12.2/obs/mktar 2011-12-01 13:39:18.0 
+0100
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 NAME=polkit-default-privs
-VERSION=12.1
+VERSION=12.2
 #datefmt=%Y.%m.%d.%H%M
 #LAST_COMMIT=(`git rev-list --timestamp HEAD^..HEAD`)
 #DATE=`date +$datefmt -d 1970-01-01 00:00 UTC $LAST_COMMIT seconds`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.1/polkit-default-privs.restrictive 
new/polkit-default-privs-12.2/polkit-default-privs.restrictive
--- old/polkit-default-privs-12.1/polkit-default-privs.restrictive  
2011-10-28 09:19:58.0 +0200
+++ new/polkit-default-privs-12.2/polkit-default-privs.restrictive  
2011-12-01 13:39:18.0 +0100
@@ -230,6 +230,7 @@
 org.opensuse.yast.modules.yapi.users.userdelete no
 org.opensuse.yast.modules.yapi.network.read no
 org.opensuse.yast.modules.yapi.network.writeno
+org.opensuse.yast.system.terminal.read  no
 # bnc#687807
 org.opensuse.yast.system.power-management.rebootno
 org.opensuse.yast.system.power-management.shutdown  no
@@ -258,12 +259,6 @@
 # kdepim4/kalarm (bnc#707723)
 org.kde.kalarmrtcwake.settimer  auth_admin_keep
 
-# moblin
-
-org.moblin.clockapplet.mechanism.settimezoneauth_admin
-org.moblin.clockapplet.mechanism.settimeauth_admin
-org.moblin.clockapplet.mechanism.configurehwclock   auth_admin
-
 # systemd (bnc#641924)
 org.freedesktop.hostname1.set-hostname  auth_admin
 org.freedesktop.hostname1.set-static-hostname   auth_admin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.1/polkit-default-privs.standard 
new/polkit-default-privs-12.2/polkit-default-privs.standard
--- old/polkit-default-privs-12.1/polkit-default-privs.standard 2011-10-28 
09:19:58.0 +0200
+++ new/polkit-default-privs-12.2/polkit-default-privs.standard 2011-12-01 
13:39:18.0 +0100
@@ -19,13 +19,14 @@
 org.freedesktop.NetworkManager.enable-disable-wifi  
auth_admin:auth_admin:yes
 org.freedesktop.NetworkManager.enable-disable-wwan  
auth_admin:auth_admin:yes
 org.freedesktop.NetworkManager.use-user-connections 
auth_admin:auth_admin:yes

commit sax2 for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package sax2 for openSUSE:Factory checked in 
at 2011-12-01 17:38:36

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


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

Changes:

--- /work/SRC/openSUSE:Factory/sax2/sax2.changes2011-10-13 
16:22:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.sax2.new/sax2.changes   2011-12-01 
17:38:40.0 +0100
@@ -1,0 +2,11 @@
+Wed Nov 30 10:39:08 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---
+Tue Nov 29 12:32:23 CET 2011 - r...@suse.de
+
+- dots: fix Makefile.am for AS_NEEDED
+  (properly use LDADD instead of LDFLAGS)
+
+---

New:

  sax2-dots_as_needed.diff



Other differences:
--
++ sax2.spec ++
--- /var/tmp/diff_new_pack.5xBwMr/_old  2011-12-01 17:38:41.0 +0100
+++ /var/tmp/diff_new_pack.5xBwMr/_new  2011-12-01 17:38:41.0 +0100
@@ -15,12 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   sax2
 Version:8.1
-Release:603
-License:GPLv2+
+Release:0
+License:GPL-2.0+
 Summary:SuSE advanced X Window System-configuration
 Url:http://sax.berlios.de
 Group:  System/X11/Utilities
@@ -29,7 +27,9 @@
 Source2:sax2-rpmlintrc
 Patch1: sax2-tools-only.diff
 Patch2: nohal.diff
+Patch3: sax2-dots_as_needed.diff
 BuildRequires:  antlr
+BuildRequires:  automake
 BuildRequires:  bison
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -67,7 +67,6 @@
 This package contains the SuSE Advanced X-Configuration
 
 %package -n sax2-tools
-License:GPLv2+
 Summary:X Window System tools for SaX2
 Group:  System/X11/Utilities
 Requires:   coreutils
@@ -93,6 +92,7 @@
 %setup -n sax
 %patch1 -p0
 %patch2 -p0
+%patch3
 
 %build
 # disable as-needed to fix build

++ sax2-dots_as_needed.diff ++
--- tools/dots/Makefile.am
+++ tools/dots/Makefile.am
@@ -6,5 +6,5 @@
 dots_SOURCES = \
dots.c
 
-dots_LDFLAGS = \
+dots_LDADD = \
-lncurses
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sisctrl for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package sisctrl for openSUSE:Factory checked 
in at 2011-12-01 17:38:42

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


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

Changes:

--- /work/SRC/openSUSE:Factory/sisctrl/sisctrl.changes  2011-09-26 
17:06:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.sisctrl.new/sisctrl.changes 2011-12-01 
17:38:44.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:40:30 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ sisctrl.spec ++
--- /var/tmp/diff_new_pack.xzn9mD/_old  2011-12-01 17:38:45.0 +0100
+++ /var/tmp/diff_new_pack.xzn9mD/_new  2011-12-01 17:38:45.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   sisctrl
 Version:0.0.20051202
-Release:231
+Release:0
 # src/sisctrlext.c is licensed under the GPL-2.0 only. Hence the below 
license
 License:GPL-2.0
 Summary:SiS Display Control Panel
@@ -28,7 +28,7 @@
 Source: %{name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE sisctrl.diff bnc#218755 bnc#483401 -- Add missing return 
value - Define functions, which don't return anything, as void - Fix build by 
linking with libm - Fix rpmlint warning no-return-in-nonvoid-function
 Patch0: sisctrl.diff
-BuildRequires:  pkgconfig
+BuildRequires:  automake pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-devel
 BuildRequires:  pkgconfig(gtk+-2.0)

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



commit smartmontools for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package smartmontools for openSUSE:Factory 
checked in at 2011-12-01 17:38:46

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


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

Changes:

--- /work/SRC/openSUSE:Factory/smartmontools/smartmontools.changes  
2011-11-24 11:37:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.smartmontools.new/smartmontools.changes 
2011-12-01 17:38:48.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:23:56 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ smartmontools.spec ++
--- /var/tmp/diff_new_pack.DTR6nn/_old  2011-12-01 17:38:49.0 +0100
+++ /var/tmp/diff_new_pack.DTR6nn/_new  2011-12-01 17:38:49.0 +0100
@@ -20,7 +20,7 @@
 Name:   smartmontools
 Version:5.42
 Release:0
-License:GPLv2+
+License:GPL-2+
 Group:  Hardware/Other
 Source: %{name}-%{version}.tar.bz2
 Source2:smartmontools.sysconfig
@@ -46,7 +46,7 @@
 %endif
 %{?systemd_requires}
 Url:http://smartmontools.sourceforge.net/
-BuildRequires:  gcc-c++
+BuildRequires:  automake gcc-c++
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} = 1110
 BuildRequires:  libselinux-devel

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



commit xournal for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package xournal for openSUSE:Factory checked 
in at 2011-12-01 17:39:28

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xournal/xournal.changes  2011-09-23 
12:52:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.xournal.new/xournal.changes 2011-12-01 
17:39:30.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:26:04 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xournal.spec ++
--- /var/tmp/diff_new_pack.HEYeJj/_old  2011-12-01 17:39:31.0 +0100
+++ /var/tmp/diff_new_pack.HEYeJj/_new  2011-12-01 17:39:31.0 +0100
@@ -20,9 +20,9 @@
 Name:   xournal
 Url:http://math.mit.edu/~auroux/software/xournal/
 Version:0.4.5
-Release:7
+Release:0
 Summary:An application for notetaking, sketching, and keeping a 
journal using a stylus
-License:GPLv2+
+License:GPL-2.0+
 Group:  Productivity/Office/Other
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}.desktop
@@ -33,6 +33,7 @@
 # PATCH-FIX-UPSTREAM xournal-poppler-0.18.patch vu...@opensuse.org -- Fix 
build with poppler 0.17/0.18, taken from CVS
 Patch2: xournal-poppler-0.18.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  automake
 BuildRequires:  gtk2-devel
 BuildRequires:  libgnomecanvas-devel
 BuildRequires:  libgnomeprintui-devel


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



commit xteddy for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package xteddy for openSUSE:Factory checked 
in at 2011-12-01 17:39:32

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xteddy/xteddy.changes2011-10-29 
00:19:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.xteddy.new/xteddy.changes   2011-12-01 
17:39:35.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 30 10:23:24 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ xteddy.spec ++
--- /var/tmp/diff_new_pack.wBWiAi/_old  2011-12-01 17:39:36.0 +0100
+++ /var/tmp/diff_new_pack.wBWiAi/_new  2011-12-01 17:39:36.0 +0100
@@ -15,18 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   xteddy
-BuildRequires:  giflib-devel imlib2-devel libpng-devel libtiff-devel pkgconfig 
xorg-x11 xorg-x11-devel
-License:GPLv2+
+BuildRequires:  automake giflib-devel imlib2-devel libpng-devel libtiff-devel 
pkgconfig xorg-x11 xorg-x11-devel
+License:GPL-2.0+
 Group:  Amusements/Toys/Graphics
 Provides:   xteddy10
-AutoReqProv:on
 Summary:A cuddly teddy bear for your X Window desktop
 Version:2.2
-Release:9
+Release:0
 Source: xteddy_2.2.orig.tar.bz2
 Patch:  teddy-2.2-as-needed.patch
 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 zsh for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package zsh for openSUSE:Factory checked in 
at 2011-12-01 17:39:37

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


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

Changes:

--- /work/SRC/openSUSE:Factory/zsh/zsh.changes  2011-11-25 10:22:04.0 
+0100
+++ /work/SRC/openSUSE:Factory/.zsh.new/zsh.changes 2011-12-01 
17:39:40.0 +0100
@@ -1,0 +2,24 @@
+Wed Nov 30 21:49:26 UTC 2011 - idoen...@suse.de
+
+- Update to zsh 4.3.13
+  * There are no significant feature changes to the shell itself, 
+although many bug fixes and improvements to functions.
+  * See included ChangeLog for details
+- Drop zsh-4.3.12-ksh-emulation-syntax-checking.patch, 
+  fixed upstream
+
+---
+Tue Nov 29 14:19:04 UTC 2011 - idoen...@suse.de
+
+- Cleanup spec file
+- Make /bin/zsh a symlink to /usr/bin/zsh
+
+---
+Mon Nov 28 08:36:51 UTC 2011 - idoen...@suse.de
+
+- Update to 4.3.12-test3
+  * See included ChangeLog for details
+- Drop zsh-findproc.patch and zsh-kill-suspended-job.patch, fixed
+  upstream.
+
+---

Old:

  zsh-4.3.12-ksh-emulation-syntax-checking.patch
  zsh-4.3.12.tar.bz2
  zsh-findproc.patch
  zsh-kill-suspended-job.patch

New:

  zsh-4.3.13.tar.bz2



Other differences:
--
++ zsh.spec ++
--- /var/tmp/diff_new_pack.rWWd7C/_old  2011-12-01 17:39:42.0 +0100
+++ /var/tmp/diff_new_pack.rWWd7C/_new  2011-12-01 17:39:42.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   zsh
-Version:4.3.12
+Version:4.3.13
 Release:4
 License:BSD
 Summary:Shell with comprehensive completion
@@ -28,8 +28,7 @@
 %else
 Group:  System Environment/Shells
 %endif
-#Source0:ftp://ftp.fu-berlin.de/pub/unix/shells/zsh/zsh-4.3.12.tar.bz2
-Source0:%{name}-%{version}.tar.bz2
+Source0:ftp://ftp.zsh.org/pub/zsh-%{version}.tar.bz2
 Source1:zshrc
 Source2:zshenv
 Source3:zprofile
@@ -42,22 +41,18 @@
 Source16:   dotzshrc.rh
 Source17:   zshprompt.pl
 %endif
-Patch1: %{name}-%{version}-disable-c02cond-test.patch
-# PATCH-FIX-UPSTREAM zsh-findproc.patch idoen...@suse.de -- Upstream commit 
21c39600ef2d74c3e7474c4e5b89805656c6fe4e
-Patch2: %{name}-findproc.patch
-# PATCH-FIX-UPSTREAM zsh-kill-suspended-job.patch idoen...@suse.de -- Upstream 
commit 98b29d02ca17068779f4b8fa2d43c9753386478f 
-Patch3: %{name}-kill-suspended-job.patch
-# PATCH-FIX ksh-emulation-syntax-checking.patch -- Import and rework from RHEL 
(zsh-4.2.6)
-Patch4: %{name}-4.3.12-ksh-emulation-syntax-checking.patch
+Patch1: %{name}-4.3.12-disable-c02cond-test.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
-PreReq: %{install_info_prereq}
+Requires(pre):  %{install_info_prereq}
 %if 0%{?suse_version} = 1110
 BuildRequires:  fdupes
 BuildRequires:  yodl
 %endif
 %else
-PreReq: fileutils grep /sbin/install-info
+Requires(pre):  /sbin/install-info
+Requires(pre):  fileutils
+Requires(pre):  grep
 %endif
 
 BuildRequires:  libcap-devel
@@ -65,9 +60,9 @@
 BuildRequires:  pcre-devel
 %if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
 BuildRequires:  libtermcap-devel
+BuildRequires:  tetex
 BuildRequires:  texi2html
 BuildRequires:  texinfo
-BuildRequires:  tetex
 %endif
 
 %description
@@ -99,14 +94,10 @@
 This package contains the Zsh manual in html format.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{version}
 %patch1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
 
-##rpmlint
-# spurious-executable-perm
+# Remove executable bit
 chmod 0644 Etc/changelog2html.pl
 
 %if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
@@ -120,7 +111,6 @@
 Util/reporter
 
 %build
-# readd the site-* dir.
 %configure \
 --enable-site-scriptdir=%{_datadir}/%{name}/site/scripts/ \
 --enable-site-fndir=%{_datadir}/%{name}/site/scripts/ \
@@ -176,7 +166,7 @@
 install -m 0644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{buildroot}%{_sysconfdir}
 
 # Create custom completion directory
-mkdir %{buildroot}/etc/zsh_completion.d
+mkdir %{buildroot}%{_sysconfdir}/zsh_completion.d
 %endif
 
 %if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
@@ -192,8 +182,7 @@
 install -m 0644 Help/* %{buildroot}%{_datadir}/%{name}/%{version}/help/
 
 # link zsh binary
-mv %{buildroot}%{_bindir}/zsh %{buildroot}/bin/zsh
-ln -s -f ../../bin/zsh %{buildroot}%{_bindir}/zsh
+ln -sf %{_bindir}/zsh %{buildroot}/bin/zsh
 
 # Remove versioned 

commit post-build-checks for openSUSE:Factory

2011-12-01 Thread h_root
Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2011-12-01 17:39:51

Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and  /work/SRC/openSUSE:Factory/.post-build-checks.new (New)


Package is post-build-checks, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes  
2011-11-28 13:37:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2011-12-01 17:39:52.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec  1 16:36:29 UTC 2011 - co...@suse.com
+
+- fix usage of perl's index()
+
+---



Other differences:
--
++ post-build-checks.spec ++
--- /var/tmp/diff_new_pack.NXfhUB/_old  2011-12-01 17:39:53.0 +0100
+++ /var/tmp/diff_new_pack.NXfhUB/_new  2011-12-01 17:39:53.0 +0100
@@ -15,16 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   post-build-checks
-License:GPLv2+
+License:GPL-2.0+
 Group:  Development/Tools/Building
-AutoReqProv:on
 Summary:post checks for build after rpms have been created
 Version:1.0
-Release:95
+Release:0
 PreReq: aaa_base permissions sed
 Url:http://gitorious.org/opensuse/post-build-checks
 #

++ new.diff ++
--- /var/tmp/diff_new_pack.NXfhUB/_old  2011-12-01 17:39:53.0 +0100
+++ /var/tmp/diff_new_pack.NXfhUB/_new  2011-12-01 17:39:53.0 +0100
@@ -1,7 +1,7 @@
 Index: post-build-checks-1.0/checks/09-check-packaged-twice
 ===
 --- post-build-checks-1.0.orig/checks/09-check-packaged-twice  2011-10-20 
11:57:54.0 +0200
-+++ post-build-checks-1.0/checks/09-check-packaged-twice   2011-11-28 
12:46:09.048680204 +0100
 post-build-checks-1.0/checks/09-check-packaged-twice   2011-12-01 
17:36:22.894836849 +0100
 @@ -1,61 +1,74 @@
 -#!/usr/bin/perl
 +#!/usr/bin/perl -w
@@ -48,7 +48,8 @@
  
 -if ( $#RPMS  1 ) {
 -exit 0;
-+open (ALL_RPMS, find $build_root$TOPDIR/RPMS -name \*.rpm\ |);
++print chroot $build_root find $TOPDIR/RPMS -name \*.rpm\\n;
++open (ALL_RPMS, chroot $build_root find $TOPDIR/RPMS/ -name \*.rpm\ |);
 +my @rpms = ALL_RPMS;
 +chomp @rpms;
 +close ALL_RPMS;
@@ -59,7 +60,6 @@
 +my %pkg2rpm;
 +
 +for my $rpm (@rpms) {
-+$rpm =~ s/^$build_root//;
 +open (FILES, chroot $build_root rpm -qp --qf '[%{FILEMODES:perms} 
F:%{FILEFLAGS:fflags} %{NAME} %{FILENAMES}\n]' $rpm|);
 +my @files = FILES;
 +chomp @files;
@@ -108,7 +108,7 @@
 +while (@pkgs) {
 +my $p1 = shift @pkgs;
 +  for my $p2 (@pkgs) {
-+  next if (index('g', $allfiles{$file}-{$p1}) != -1)  (index('g', 
$allfiles{$file}-{$p2}) != -1);
++  next if (index($allfiles{$file}-{$p1}, 'g') != -1)  
(index($allfiles{$file}-{$p2}, 'g') != -1);
 +  next if conflicts($pkg2rpm{$p1}, $pkg2rpm{$p2}) || 
conflicts($pkg2rpm{$p2}, $pkg2rpm{$p1});
 +  print ERROR: $file is packaged in both $p1 and $p2, and the 
packages do not conflict\n;
 +  $had_errors = 1;

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



commit nspluginwrapper for openSUSE:11.3

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package nspluginwrapper for openSUSE:11.3
checked in at Fri Dec 2 00:17:17 CET 2011.




--- old-versions/11.3/all/nspluginwrapper/nspluginwrapper.changes   
2010-04-22 15:48:14.0 +0200
+++ 11.3/nspluginwrapper/nspluginwrapper.changes2011-11-23 
18:55:46.0 +0100
@@ -1,0 +2,42 @@
+Wed Nov 23 18:48:11 CET 2011 - sbra...@suse.cz
+
+- Update to the latest git snapshot:
+  * New home page.
+  * Fixes possible parallel build issues.
+  * Fixes possible curl threading crashes.
+  * Fix possible crashes on close.
+  * Support for the latest NPAPI SDK.
+  * Link with libdl correctly.
+
+---
+Fri Jul  1 18:58:02 CEST 2011 - sbra...@suse.cz
+
+- Update to the version 1.4.4 from the new upstream:
+  * Fix the private mode plugin escape (bnc#702034, CVE-2011-2486).
+  * Crash fixes.
+  * Fix compatibility with WebKit/GTK and Konqueror.
+  * Report capabilities over RPC to fix logic based on NULL
+plugin/browser hooks.
+  * Fix initialization bug that causes Flash 10.3 to report a
+version of 0.
+  * Implement ClearSiteData NPAPI extension for managing
+Flash LSOs.
+  * Work around lack of client-side windows in Flash.
+  * Fix race condition when NPP_Destroy was called while viewer is
+busy.
+  * Support NPAPI 0.24, in particular, Flash can now query for
+private browsing.
+  * Support XEmbeding npplayer into another application.
+  * Fix initializing two wrapped plugins with the same name in the
+same process.
+  * Release implicit grabs before forwarding events to fix Flash
+context menu hang.
+  * Work around Firefox quirk that broke windowless Flash in
+Firefox 4.
+  * Bind wrapper and viewer event loops together to avoid many many
+race conditions.
+  * Redesign NPRuntime bridge to avoid leaking proxy objects.
+  * Incorporate release number into ident string so update works on
+distro patches.
+
+---

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


Old:

  nspluginwrapper-1.3.0.tar.bz2
  nspluginwrapper-20090625-fix-npident-array-sending.patch
  nspluginwrapper-native-windows.patch
  nspluginwrapper-offsetof.patch
  nspluginwrapper-recv_chk.patch
  nspluginwrapper-silence.patch

New:

  nspluginwrapper-git6bd99e4.tar.bz2



Other differences:
--
++ nspluginwrapper.spec ++
--- /var/tmp/diff_new_pack.CVTwlQ/_old  2011-12-02 00:13:27.0 +0100
+++ /var/tmp/diff_new_pack.CVTwlQ/_new  2011-12-02 00:13:27.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package nspluginwrapper (Version 1.3.0)
+# spec file for package nspluginwrapper
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,21 +19,14 @@
 
 
 Name:   nspluginwrapper
-Version:1.3.0
-Release:1
+Version:1.4.4.0.15
+Release:0.RELEASE2
 Group:  Productivity/Networking/Web/Utilities
 Summary:Compatibility Layer for Netscape 4 Plug-Ins
 License:GPLv2+
-Url:http://gwenole.beauchesne.info/projects/nspluginwrapper/
-Source: %{name}-%{version}.tar.bz2
-# Suppress error messages when trying to wrap native plugin (bnc#400194):
-# (Now it's done differently, but still only a work-around.)
-Patch:  nspluginwrapper-silence.patch
-# PATCH-FIX-OPENSUSE nspluginwrapper-native-windows.patch bnc537788 
sbra...@suse.cz -- Return to native X windows in GTK+.
-Patch1: nspluginwrapper-native-windows.patch
-Patch2: nspluginwrapper-20090625-fix-npident-array-sending.patch
-Patch3: nspluginwrapper-offsetof.patch
-Patch4: nspluginwrapper-recv_chk.patch
+Url:http://nspluginwrapper.org/
+#Source: %{name}-%{version}.tar.bz2
+Source: %{name}-git6bd99e4.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  curl-devel glib2-devel gtk2-devel
 BuildRequires:  gcc-c++
@@ -66,14 +59,11 @@
 Authors:
 
 Gwenole Beauchesne gb.pub...@free.fr
+David Benjamin david...@mit.edu
 
 %prep
-%setup -q
-#%patch
-%patch1
-%patch2
-%patch3
-%patch4
+#%setup -q
+%setup -q -n %{name}
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.
@@ -93,14 +83,10 @@
 # lsb-build/stub_libs/libc_main.c
 export CFLAGS_32=-m32 ${RPM_OPT_FLAGS/-fstack-protector}
 %endif
-%configure\
-   --with-viewer\
-%ifarch x86_64
-   --with-biarch
-%else
-   

commit nspluginwrapper for openSUSE:11.4

2011-12-01 Thread h_root

Hello community,

here is the log from the commit of package nspluginwrapper for openSUSE:11.4
checked in at Fri Dec 2 00:19:29 CET 2011.




--- old-versions/11.4/all/nspluginwrapper/nspluginwrapper.changes   
2010-04-22 15:48:14.0 +0200
+++ 11.4/nspluginwrapper/nspluginwrapper.changes2011-11-23 
18:51:29.0 +0100
@@ -1,0 +2,42 @@
+Wed Nov 23 18:48:11 CET 2011 - sbra...@suse.cz
+
+- Update to the latest git snapshot:
+  * New home page.
+  * Fixes possible parallel build issues.
+  * Fixes possible curl threading crashes.
+  * Fix possible crashes on close.
+  * Support for the latest NPAPI SDK.
+  * Link with libdl correctly.
+
+---
+Fri Jul  1 18:58:02 CEST 2011 - sbra...@suse.cz
+
+- Update to the version 1.4.4 from the new upstream:
+  * Fix the private mode plugin escape (bnc#702034, CVE-2011-2486).
+  * Crash fixes.
+  * Fix compatibility with WebKit/GTK and Konqueror.
+  * Report capabilities over RPC to fix logic based on NULL
+plugin/browser hooks.
+  * Fix initialization bug that causes Flash 10.3 to report a
+version of 0.
+  * Implement ClearSiteData NPAPI extension for managing
+Flash LSOs.
+  * Work around lack of client-side windows in Flash.
+  * Fix race condition when NPP_Destroy was called while viewer is
+busy.
+  * Support NPAPI 0.24, in particular, Flash can now query for
+private browsing.
+  * Support XEmbeding npplayer into another application.
+  * Fix initializing two wrapped plugins with the same name in the
+same process.
+  * Release implicit grabs before forwarding events to fix Flash
+context menu hang.
+  * Work around Firefox quirk that broke windowless Flash in
+Firefox 4.
+  * Bind wrapper and viewer event loops together to avoid many many
+race conditions.
+  * Redesign NPRuntime bridge to avoid leaking proxy objects.
+  * Incorporate release number into ident string so update works on
+distro patches.
+
+---

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


Old:

  nspluginwrapper-1.3.0.tar.bz2
  nspluginwrapper-20090625-fix-npident-array-sending.patch
  nspluginwrapper-native-windows.patch
  nspluginwrapper-offsetof.patch
  nspluginwrapper-recv_chk.patch
  nspluginwrapper-silence.patch

New:

  nspluginwrapper-git6bd99e4.tar.bz2



Other differences:
--
++ nspluginwrapper.spec ++
--- /var/tmp/diff_new_pack.9q7bUR/_old  2011-12-02 00:17:21.0 +0100
+++ /var/tmp/diff_new_pack.9q7bUR/_new  2011-12-02 00:17:21.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package nspluginwrapper (Version 1.3.0)
+# spec file for package nspluginwrapper
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,21 +19,14 @@
 
 
 Name:   nspluginwrapper
-Version:1.3.0
-Release:1
+Version:1.4.4.0.15
+Release:0.RELEASE2
 Group:  Productivity/Networking/Web/Utilities
 Summary:Compatibility Layer for Netscape 4 Plug-Ins
 License:GPLv2+
-Url:http://gwenole.beauchesne.info/projects/nspluginwrapper/
-Source: %{name}-%{version}.tar.bz2
-# Suppress error messages when trying to wrap native plugin (bnc#400194):
-# (Now it's done differently, but still only a work-around.)
-Patch:  nspluginwrapper-silence.patch
-# PATCH-FIX-OPENSUSE nspluginwrapper-native-windows.patch bnc537788 
sbra...@suse.cz -- Return to native X windows in GTK+.
-Patch1: nspluginwrapper-native-windows.patch
-Patch2: nspluginwrapper-20090625-fix-npident-array-sending.patch
-Patch3: nspluginwrapper-offsetof.patch
-Patch4: nspluginwrapper-recv_chk.patch
+Url:http://nspluginwrapper.org/
+#Source: %{name}-%{version}.tar.bz2
+Source: %{name}-git6bd99e4.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  curl-devel glib2-devel gtk2-devel
 BuildRequires:  gcc-c++
@@ -66,14 +59,11 @@
 Authors:
 
 Gwenole Beauchesne gb.pub...@free.fr
+David Benjamin david...@mit.edu
 
 %prep
-%setup -q
-#%patch
-%patch1
-%patch2
-%patch3
-%patch4
+#%setup -q
+%setup -q -n %{name}
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.
@@ -93,14 +83,10 @@
 # lsb-build/stub_libs/libc_main.c
 export CFLAGS_32=-m32 ${RPM_OPT_FLAGS/-fstack-protector}
 %endif
-%configure\
-   --with-viewer\
-%ifarch x86_64
-   --with-biarch
-%else
-