commit libyui-qt for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libyui-qt for openSUSE:Factory 
checked in at 2015-02-10 10:46:11

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


Package is libyui-qt

Changes:

libyui-qt.changes: same change

Old:

  libyui-qt-2.46.16.tar.bz2

New:

  libyui-qt-2.46.15.tar.bz2



Other differences:
--
++ libyui-qt-doc.spec ++
--- /var/tmp/diff_new_pack.JSES0F/_old  2015-02-10 10:46:15.0 +0100
+++ /var/tmp/diff_new_pack.JSES0F/_new  2015-02-10 10:46:15.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libyui-qt-doc
-Version:2.46.16
+Version:2.46.15
 Release:0
 Source: libyui-qt-%{version}.tar.bz2
 

++ libyui-qt.spec ++
--- /var/tmp/diff_new_pack.JSES0F/_old  2015-02-10 10:46:15.0 +0100
+++ /var/tmp/diff_new_pack.JSES0F/_new  2015-02-10 10:46:15.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libyui-qt
-Version:2.46.16
+Version:2.46.15
 Release:0
 Source: libyui-qt-%{version}.tar.bz2
 

++ libyui-qt-2.46.16.tar.bz2 - libyui-qt-2.46.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-2.46.16/ChangeLog 
new/libyui-qt-2.46.15/ChangeLog
--- old/libyui-qt-2.46.16/ChangeLog 2015-02-04 12:49:12.0 +0100
+++ new/libyui-qt-2.46.15/ChangeLog 2015-01-30 14:34:12.0 +0100
@@ -1,11 +1,4 @@
 ---
-Tue Feb  3 12:38:23 UTC 2015 - jsr...@suse.cz
-
-- include Help and Release notes buttons in keyboard shortcut
-  resolution (bsc#880983)
-- 2.46.16
-

 Fri Jan 30 13:52:57 UTC 2015 - jsr...@suse.cz
 
 - added keyboard shortcuts to Help and Release Notes buttons 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-2.46.16/VERSION.cmake 
new/libyui-qt-2.46.15/VERSION.cmake
--- old/libyui-qt-2.46.16/VERSION.cmake 2015-02-04 12:49:12.0 +0100
+++ new/libyui-qt-2.46.15/VERSION.cmake 2015-01-30 14:34:12.0 +0100
@@ -1,6 +1,6 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 46)
-SET(VERSION_PATCH 16)
+SET(VERSION_PATCH 15)
 SET( VERSION 
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-2.46.16/src/YQGenericButton.cc 
new/libyui-qt-2.46.15/src/YQGenericButton.cc
--- old/libyui-qt-2.46.16/src/YQGenericButton.cc2015-02-04 
12:49:12.0 +0100
+++ new/libyui-qt-2.46.15/src/YQGenericButton.cc2014-02-21 
15:05:58.0 +0100
@@ -233,9 +233,5 @@
 return true;
 }
 
-void YQGenericButton::setShortcut ( const QKeySequence  key )
-{
-   _qPushButton-setShortcut (key );
-}
 
 #include YQGenericButton.moc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-2.46.16/src/YQGenericButton.h 
new/libyui-qt-2.46.15/src/YQGenericButton.h
--- old/libyui-qt-2.46.16/src/YQGenericButton.h 2015-02-04 12:49:12.0 
+0100
+++ new/libyui-qt-2.46.15/src/YQGenericButton.h 2014-02-21 15:05:58.0 
+0100
@@ -128,10 +128,6 @@
  **/
 YQDialog * yQDialog() const { return _dialog; }
 
-/**
- * Set the keyboard shortcut (e.g. F1 for help)
- */
-void setShortcut ( const QKeySequence  key );
 
 public slots:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-2.46.16/src/YQWizard.cc 
new/libyui-qt-2.46.15/src/YQWizard.cc
--- old/libyui-qt-2.46.16/src/YQWizard.cc   2015-02-04 12:49:12.0 
+0100
+++ new/libyui-qt-2.46.15/src/YQWizard.cc   2015-01-30 14:34:12.0 
+0100
@@ -854,7 +854,7 @@
 
 // Help button
 // QT handles duplicate shortcuts, it can be kept (bnc#880983)
-_helpButton = new YQWizardButton( this, parent, _( Help 
).toStdString());
+_helpButton = new QPushButton( _( Help ), parent );
 YUI_CHECK_NEW( _helpButton );
 _helpButton-setShortcut( Qt::Key_F1 );
 
@@ -871,7 +871,7 @@
 
 // Release Notes button
 // QT handles duplicate shortcuts, it can be kept (bnc#880983)
-_releaseNotesButton = new YQWizardButton( this, parent, _( Release 
Notes ).toStdString ());
+_releaseNotesButton = new QPushButton( _( Release Notes ), parent );
 YUI_CHECK_NEW( _releaseNotesButton );
 hbox-addWidget( _releaseNotesButton );
 connect( _releaseNotesButton,  pclass(_releaseNotesButton)::clicked,
@@ -1311,7 +1311,7 @@
 }
 
 // QT handles 

commit kernel-source for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2015-02-10 10:47:02

Comparing /work/SRC/openSUSE:Factory/kernel-source (Old)
 and  /work/SRC/openSUSE:Factory/.kernel-source.new (New)


Package is kernel-source

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/kernel-debug.changes   
2015-02-06 12:32:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-debug.changes  
2015-02-10 10:47:06.0 +0100
@@ -2,30 +1,0 @@
-Fri Jan 30 08:59:03 CET 2015 - ti...@suse.de
-
-- vm: make stack guard page errors return VM_FAULT_SIGSEGV rather
-  than SIGBUS.
-- vm: add VM_FAULT_SIGSEGV handling support.
-- commit fe77e87
-

-Fri Jan 30 08:44:42 CET 2015 - jsl...@suse.cz
-
-- Linux 3.18.5.
-- Refresh patches.xen/xen3-auto-xen-kconfig.diff.
-- Refresh patches.xen/xen3-patch-3.15.
-- Update config files.
-- commit f378da4
-

-Tue Jan 27 18:19:54 CET 2015 - jsl...@suse.cz
-
-- Linux 3.18.4 (bnc#897736 bnc#905329 bnc#911356 bnc#911835).
-- Delete
-  patches.drivers/drm-i915-Don-t-call-intel_prepare_page_flip-multiple.
-- Delete patches.drivers/drm-radeon-fix-sad_count-check-for-dce3.
-- Delete patches.drivers/hp_accel-Add-support-for-HP-ZBook-15.
-- Delete
-  patches.fixes/media-uvc-Fix-destruction-order-in-uvc_delete.
-- Update config files.
-- commit abfc700
-

kernel-default.changes: same change
kernel-desktop.changes: same change
kernel-docs.changes: same change
kernel-ec2.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa-xen.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change
kernel-xen.changes: same change



Other differences:
--
++ kernel-debug.spec ++
--- /var/tmp/diff_new_pack.gOAFkV/_old  2015-02-10 10:47:10.0 +0100
+++ /var/tmp/diff_new_pack.gOAFkV/_new  2015-02-10 10:47:10.0 +0100
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 3.18
-%define patchversion 3.18.5
+%define patchversion 3.18.3
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -59,9 +59,9 @@
 Summary:A Debug Version of the Kernel
 License:GPL-2.0
 Group:  System/Kernel
-Version:3.18.5
+Version:3.18.3
 %if 0%{?is_kotd}
-Release:RELEASE.gf378da4
+Release:RELEASE.gc3e148f
 %else
 Release:0
 %endif

kernel-default.spec: same change
kernel-desktop.spec: same change
++ kernel-docs.spec ++
--- /var/tmp/diff_new_pack.gOAFkV/_old  2015-02-10 10:47:10.0 +0100
+++ /var/tmp/diff_new_pack.gOAFkV/_new  2015-02-10 10:47:10.0 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define patchversion 3.18.5
+%define patchversion 3.18.3
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -27,9 +27,9 @@
 Summary:Kernel Documentation (man pages)
 License:GPL-2.0
 Group:  Documentation/Man
-Version:3.18.5
+Version:3.18.3
 %if 0%{?is_kotd}
-Release:RELEASE.gf378da4
+Release:RELEASE.gc3e148f
 %else
 Release:0
 %endif

++ kernel-ec2.spec ++
--- /var/tmp/diff_new_pack.gOAFkV/_old  2015-02-10 10:47:10.0 +0100
+++ /var/tmp/diff_new_pack.gOAFkV/_new  2015-02-10 10:47:10.0 +0100
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 3.18
-%define patchversion 3.18.5
+%define patchversion 3.18.3
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -59,9 +59,9 @@
 Summary:The Amazon EC2 Xen Kernel
 License:GPL-2.0
 Group:  System/Kernel
-Version:3.18.5
+Version:3.18.3
 %if 0%{?is_kotd}
-Release:RELEASE.gf378da4
+Release:RELEASE.gc3e148f
 %else
 Release:0
 %endif

kernel-lpae.spec: same change
++ kernel-obs-build.spec ++
--- /var/tmp/diff_new_pack.gOAFkV/_old  2015-02-10 10:47:10.0 +0100
+++ /var/tmp/diff_new_pack.gOAFkV/_new  2015-02-10 10:47:10.0 +0100
@@ -19,7 +19,7 @@
 
 #!BuildIgnore: post-build-checks
 
-%define patchversion 3.18.5
+%define patchversion 3.18.3
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -45,9 +45,9 @@
 Summary:package kernel and initrd for OBS VM builds
 License:GPL-2.0
 Group:  SLES
-Version:3.18.5
+Version:3.18.3
 %if 0%{?is_kotd}
-Release:RELEASE.gf378da4
+Release:RELEASE.gc3e148f
 %else
 Release:0
 %endif

++ 

commit libe-book for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libe-book for openSUSE:Factory 
checked in at 2015-02-10 20:15:26

Comparing /work/SRC/openSUSE:Factory/libe-book (Old)
 and  /work/SRC/openSUSE:Factory/.libe-book.new (New)


Package is libe-book

Changes:

--- /work/SRC/openSUSE:Factory/libe-book/libe-book.changes  2014-07-27 
18:46:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libe-book.new/libe-book.changes 2015-02-10 
20:15:28.0 +0100
@@ -1,0 +2,27 @@
+Thu Feb  5 15:10:34 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.1.2
+  * Check arguments of public functions. Passing NULL no longer causes
+cash.   
+  * Use symbol visibility on Linux. The library only exports the two
+public functions now. 
+  * Fix handling of   *  *enable  *experimental configure option. 
+  * Fix various crashes and hangs when reading broken files, found 
+with the help of american  *fuzzy  *lop. 
+  * Fix incorrect mime type for JPEG images that occurs occasionally 
+in FB2 files. 
+  * Handle zipped files that contain more than one file. 
+  * Add support for headings. 
+  * Add support for text language. 
+  * Convert dimensions and font sizes correctly. This makes the 
+output actually usable 
+  * Parse basic paragraph and character properties. 
+  * Add initial support for images. Only Plot tag is supported, as 
+Canvas is much more complex and can contain other objects too, 
+not just a single image.   
+  * Recognize GIF images too. 
+  * Parse important page properties, like dimensions and margins. 
+  * Substitute the default fonts embedded on the devices for Liberation fonts. 
+  * Try to reconstruct headings from table of contents.
+
+---

Old:

  libe-book-0.1.1.tar.xz

New:

  libe-book-0.1.2.tar.xz



Other differences:
--
++ libe-book.spec ++
--- /var/tmp/diff_new_pack.L0cBAo/_old  2015-02-10 20:15:29.0 +0100
+++ /var/tmp/diff_new_pack.L0cBAo/_new  2015-02-10 20:15:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libe-book
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   libe-book
-Version:0.1.1
+Version:0.1.2
 Release:0
 Summary:A library for import of non-HTML reflowable e-book formats
 License:MPL-2.0

++ libe-book-0.1.1.tar.xz - libe-book-0.1.2.tar.xz ++
 6905 lines of diff (skipped)

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



commit xf86-video-cirrus for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-cirrus for 
openSUSE:Factory checked in at 2015-02-10 20:16:13

Comparing /work/SRC/openSUSE:Factory/xf86-video-cirrus (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-cirrus.new (New)


Package is xf86-video-cirrus

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-cirrus/xf86-video-cirrus.changes  
2014-02-21 19:43:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-cirrus.new/xf86-video-cirrus.changes 
2015-02-10 20:16:14.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:09:49 UTC 2015 - sndir...@suse.com
+
+- U_cirrus-don-t-use-pciTag.patch
+  * fixes build against xorg-server 1.17
+
+---

New:

  U_cirrus-don-t-use-pciTag.patch



Other differences:
--
++ xf86-video-cirrus.spec ++
--- /var/tmp/diff_new_pack.giaa3W/_old  2015-02-10 20:16:15.0 +0100
+++ /var/tmp/diff_new_pack.giaa3W/_new  2015-02-10 20:16:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-cirrus
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Patch0: u_cirrus-qemu.patch
 # PATCH-FIX-UPSTREAM cirrus-1.3.2-virt-16bpp.patch fcro...@suse.com -- Use 
16bpp when running in virt (Fedora)
 Patch1: u_cirrus-virt-16bpp.patch
+Patch2: U_cirrus-don-t-use-pciTag.patch
 
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -53,6 +54,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 %configure

++ U_cirrus-don-t-use-pciTag.patch ++
From df389885adf71ed3b045c2fde9fd3ba4329e1a58 Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@gmail.com
Date: Sat, 20 Sep 2014 18:51:17 +1000
Subject: [PATCH] cirrus: don't use pciTag

Signed-off-by: Dave Airlie airl...@redhat.com
---
 src/alp_driver.c | 2 ++
 src/cir.h| 2 ++
 src/lg_driver.c  | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/src/alp_driver.c b/src/alp_driver.c
index 36f2039..bd5e52f 100644
--- a/src/alp_driver.c
+++ b/src/alp_driver.c
@@ -519,9 +519,11 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags)
pCir-Chipset = pCir-pEnt-chipset;
/* Find the PCI info for this screen */
pCir-PciInfo = xf86GetPciInfoForEntity(pCir-pEnt-index);
+#ifndef XSERVER_LIBPCIACCESS
pCir-PciTag = pciTag(PCI_DEV_BUS(pCir-PciInfo),
  PCI_DEV_DEV(pCir-PciInfo),
  PCI_DEV_FUNC(pCir-PciInfo));
+#endif
 
 #if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION)  12
 if (!xf86IsPc98())
diff --git a/src/cir.h b/src/cir.h
index 0a5d403..84f64b5 100644
--- a/src/cir.h
+++ b/src/cir.h
@@ -23,7 +23,9 @@ typedef struct {
ScrnInfoPtr pScrn;
CARD32  properties;
pciVideoPtr PciInfo;
+#ifndef XSERVER_LIBPCIACCESS
PCITAG  PciTag;
+#endif
unsigned long   PIOReg;
 union {
struct lgRec*lg;
diff --git a/src/lg_driver.c b/src/lg_driver.c
index c20bbd0..589d14e 100644
--- a/src/lg_driver.c
+++ b/src/lg_driver.c
@@ -382,9 +382,11 @@ LgPreInit(ScrnInfoPtr pScrn, int flags)
 
/* Find the PCI info for this screen */
pCir-PciInfo = xf86GetPciInfoForEntity(pCir-pEnt-index);
+#ifndef XSERVER_LIBPCIACCESS
pCir-PciTag = pciTag(PCI_DEV_BUS(pCir-PciInfo),
  PCI_DEV_DEV(pCir-PciInfo),
  PCI_DEV_FUNC(pCir-PciInfo));
+#endif
 
if (xf86LoadSubModule(pScrn, int10)) {
xf86Int10InfoPtr int10InfoPtr;
-- 
1.8.4.5

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



commit re2c for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package re2c for openSUSE:Factory checked in 
at 2015-02-10 20:15:19

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


Package is re2c

Changes:

--- /work/SRC/openSUSE:Factory/re2c/re2c.changes2014-12-16 
14:46:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.re2c.new/re2c.changes   2015-02-10 
20:15:20.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  3 11:35:34 UTC 2015 - crrodrig...@opensuse.org
+
+- re2c-nogenerationdatedefault.patch: Default to 
+  --no-generation-date to avoid build-compare problems [BNC#915937]
+
+---

New:

  re2c-nogenerationdatedefault.patch



Other differences:
--
++ re2c.spec ++
--- /var/tmp/diff_new_pack.NdE9cL/_old  2015-02-10 20:15:23.0 +0100
+++ /var/tmp/diff_new_pack.NdE9cL/_new  2015-02-10 20:15:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package re2c
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 Source: %{name}-%{version}.tar.gz
 BuildRequires:  gcc-c++
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch0: re2c-nogenerationdatedefault.patch
 
 %description
 re2c is a tool for writing fast and flexible lexers. Unlike other such
@@ -36,6 +37,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 find lessons examples -type f -print0 \
 | xargs -r0 chmod -v a-x
 

++ re2c-nogenerationdatedefault.patch ++
--- re2c-0.13.7.5.orig/main.cc
+++ re2c-0.13.7.5/main.cc
@@ -35,7 +35,7 @@ bool rFlag = false;
 bool sFlag = false;
 bool tFlag = false;
 
-bool bNoGenerationDate = false;
+bool bNoGenerationDate = true;
 
 bool bSinglePass = false;
 bool bFirstPass  = true;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xf86-video-chips for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-chips for 
openSUSE:Factory checked in at 2015-02-10 20:16:20

Comparing /work/SRC/openSUSE:Factory/xf86-video-chips (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-chips.new (New)


Package is xf86-video-chips

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-chips/xf86-video-chips.changes
2013-08-23 11:09:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-chips.new/xf86-video-chips.changes   
2015-02-10 20:16:21.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:20:55 UTC 2015 - sndir...@suse.com
+
+- U_Update-for-xserver-1.17.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_Update-for-xserver-1.17.patch



Other differences:
--
++ xf86-video-chips.spec ++
--- /var/tmp/diff_new_pack.vC4WEB/_old  2015-02-10 20:16:22.0 +0100
+++ /var/tmp/diff_new_pack.vC4WEB/_new  2015-02-10 20:16:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-chips
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,7 @@
 Source0:%{name}-%{version}_bde6593.tar.bz2
 #PATCH-FIX-UPSTREAM U_mibstore.patch -- removes obsolete include
 Patch0: U_mibstore.patch
+Patch1: U_Update-for-xserver-1.17.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
 BuildRequires:  pkgconfig(pciaccess) = 0.8.0
@@ -59,6 +60,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure

++ U_Update-for-xserver-1.17.patch ++
From 9187d76bd4f8d500fc3403b6d4a7bef55508bf2b Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Fri, 17 Oct 2014 09:49:26 -0400
Subject: [PATCH] Update for xserver 1.17

Signed-off-by: Adam Jackson a...@redhat.com
---
 src/ct_driver.c | 26 --
 1 file changed, 4 insertions(+), 22 deletions(-)

diff --git a/src/ct_driver.c b/src/ct_driver.c
index effbc60..378a23c 100644
--- a/src/ct_driver.c
+++ b/src/ct_driver.c
@@ -2098,13 +2098,7 @@ chipsPreInitHiQV(ScrnInfoPtr pScrn, int flags)
 pScrn-progClock = TRUE;
 cPtr-ClockType = HiQV_STYLE | TYPE_PROGRAMMABLE;
 
-if (cPtr-pEnt-device-textClockFreq  0) {
-   SaveClk-Clock = cPtr-pEnt-device-textClockFreq;
-   xf86DrvMsg(pScrn-scrnIndex, X_CONFIG,
-  Using textclock freq: %7.3f.\n,
-  SaveClk-Clock/1000.0);
-} else
-   SaveClk-Clock = 0;
+SaveClk-Clock = 0;
 
 xf86DrvMsg(pScrn-scrnIndex, X_PROBED, Using programmable clocks\n);
 
@@ -2807,13 +2801,7 @@ chipsPreInitWingine(ScrnInfoPtr pScrn, int flags)
 
 if (cPtr-ClockType  TYPE_PROGRAMMABLE) {
pScrn-numClocks = NoClocks;
-   if(cPtr-pEnt-device-textClockFreq  0) {
-   SaveClk-Clock = cPtr-pEnt-device-textClockFreq;
-   xf86DrvMsg(pScrn-scrnIndex, X_CONFIG,
-  Using textclock freq: %7.3f.\n,
-  SaveClk-Clock/1000.0);
-   } else
-  SaveClk-Clock = CRT_TEXT_CLK_FREQ;
+   SaveClk-Clock = CRT_TEXT_CLK_FREQ;
xf86DrvMsg(pScrn-scrnIndex, X_PROBED, Using programmable clocks\n);
 } else {  /* TYPE_PROGRAMMABLE */
SaveClk-Clock = chipsGetHWClock(pScrn);
@@ -3500,14 +3488,8 @@ chipsPreInit655xx(ScrnInfoPtr pScrn, int flags)
 
 if (cPtr-ClockType  TYPE_PROGRAMMABLE) {
pScrn-numClocks = NoClocks;
-   if (cPtr-pEnt-device-textClockFreq  0) {
-   SaveClk-Clock = cPtr-pEnt-device-textClockFreq;
-   xf86DrvMsg(pScrn-scrnIndex, X_CONFIG,
-  Using textclock freq: %7.3f.\n,
-  SaveClk-Clock/1000.0);
-   } else
-  SaveClk-Clock = ((cPtr-PanelType  ChipsLCDProbed) ? 
-LCD_TEXT_CLK_FREQ : CRT_TEXT_CLK_FREQ);
+SaveClk-Clock = ((cPtr-PanelType  ChipsLCDProbed) ? 
+ LCD_TEXT_CLK_FREQ : CRT_TEXT_CLK_FREQ);
xf86DrvMsg(pScrn-scrnIndex, X_PROBED, Using programmable clocks\n);
 } else {  /* TYPE_PROGRAMMABLE */
SaveClk-Clock = chipsGetHWClock(pScrn);
-- 
1.8.4.5

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



commit doxygen for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2015-02-10 20:15:55

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


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2014-09-03 
19:41:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2015-02-10 
20:15:58.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb  6 06:45:26 UTC 2015 - mplus...@suse.com
+
+- Update to 1.8.9.1:
+  * bugfix releas, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+
+---
doxywizard.changes: same change

Old:

  doxygen-1.8.8-html.tar.bz2
  doxygen-1.8.8.src.tar.gz
  doxygen_manual-1.8.8.pdf.zip

New:

  doxygen-1.8.9.1-html.tar.bz2
  doxygen-1.8.9.1.src.tar.gz
  doxygen_manual-1.8.9.1.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.zdvA4n/_old  2015-02-10 20:15:59.0 +0100
+++ /var/tmp/diff_new_pack.zdvA4n/_new  2015-02-10 20:15:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 BuildRequires:  python-base
 BuildRequires:  python-xml
 BuildRequires:  unzip
-Version:1.8.8
+Version:1.8.9.1
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.zdvA4n/_old  2015-02-10 20:15:59.0 +0100
+++ /var/tmp/diff_new_pack.zdvA4n/_new  2015-02-10 20:15:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.8
+Version:1.8.9.1
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.8.8-html.tar.bz2 - doxygen-1.8.9.1-html.tar.bz2 ++
 3480 lines of diff (skipped)

++ doxygen-1.8.8.src.tar.gz - doxygen-1.8.9.1.src.tar.gz ++
 62177 lines of diff (skipped)

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



commit bluez for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package bluez for openSUSE:Factory checked 
in at 2015-02-10 20:15:35

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


Package is bluez

Changes:

--- /work/SRC/openSUSE:Factory/bluez/bluez.changes  2015-01-22 
21:48:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez.new/bluez.changes 2015-02-10 
20:15:38.0 +0100
@@ -1,0 +2,20 @@
+Tue Feb  3 10:45:20 UTC 2015 - seife+...@b1-systems.com
+
+- update to version 5.28
+  Here’s the first BlueZ release in 2015. Most of the changes since
+  the last one are bug fixes, but there’s actually quite many of
+  them this time, including:
+  * Fixes to GATT service discovery  probing
+  * Fix for bearer selection with dual-mode devices
+  * Fix potential crash when removing devices
+  * Fix issue with incomplete names in EIR data
+  * Fix parsing GATT name characteristics
+  * Fix AVCTP long press  key repetition handling
+  * Fixes for GATT notification handling
+  Besides bug fixes we’ve now also got more extensive unit tests
+  for new GATT code as well as better HCI decoders in btmon for
+  some less used 4.1 and 4.2 features. The hid2hci tool gained
+  support for CSR 8510 A10 devices and the hex2hcd tool received a
+  complete rewrite with better command handling.
+
+---

Old:

  bluez-5.27.tar.xz

New:

  bluez-5.28.tar.xz



Other differences:
--
++ bluez.spec ++
--- /var/tmp/diff_new_pack.0fqpiN/_old  2015-02-10 20:15:39.0 +0100
+++ /var/tmp/diff_new_pack.0fqpiN/_new  2015-02-10 20:15:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010-2014 B1 Systems GmbH, Vohburg, Germany
 #
 # All modifications and additions to the file contributed by third parties
@@ -24,7 +24,7 @@
 BuildRequires:  systemd-devel
 BuildRequires:  pkgconfig(dbus-1) = 1.4
 %{?systemd_requires}
-Version:5.27
+Version:5.28
 Release:0
 Summary:Bluetooth Stack for Linux
 License:GPL-2.0+
@@ -194,6 +194,7 @@
 %{_bindir}/ciptool
 %{_bindir}/hciattach
 %{_bindir}/hciconfig
+%{_bindir}/hex2hcd
 %{_bindir}/mpris-proxy
 %dir /usr/lib/bluetooth
 /usr/lib/bluetooth/bluetoothd
@@ -245,7 +246,6 @@
 #{_bindir}/hciemu
 %{_bindir}/l2test
 %{_bindir}/rctest
-%{_bindir}/mcaptest
 %dir %{_libdir}/bluez
 %{_libdir}/bluez/test
 

++ bluez-5.27.tar.xz - bluez-5.28.tar.xz ++
 13363 lines of diff (skipped)

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



commit perl-XML-Stream for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-Stream for openSUSE:Factory 
checked in at 2015-02-10 20:21:39

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


Package is perl-XML-Stream

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-Stream/perl-XML-Stream.changes  
2011-11-21 12:50:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-Stream.new/perl-XML-Stream.changes 
2015-02-10 20:21:40.0 +0100
@@ -1,0 +2,46 @@
+Fri Feb  6 13:13:04 UTC 2015 - co...@suse.com
+
+- updated to 1.24
+   - Update bug tracker location
+ 
+ 1.23_07 2014-12-17
+ 
+   - Correct incorrectly tagged 1.23_06 (errantly tagged as 1.24_06)
+ 
+ 1.23_06 2011-07-19
+ 
+   - Eliminate another set of cyclic references (szabgab)
+   - Stylistic improvements in tests (szabgab)
+   - Refactor debug output to separate module (szabgab)
+   - Weaken scalar references to address additional memory leak (szabgab)
+   - Add additional tests for scalar references (szabgab)
+   - Documentation format corrections (szabgab)
+ 
+ 
+ 1.23_05 2011-06-23
+ 
+   - RT#8834 unindented POD so that it reformats properly (szabgab)
+   - Weaken cyclic references in XML::Stream to eliminate memory leak (szabgab)
+   - Increase use of warnings and strictures in tests and code (szabgab)
+   - Replace indirect object notation with direct invocation notation (szabgab)
+   - Replace manual TAP output with Test::More (szabgab)
+ 
+ 1.23_04 2010-09-22
+ 
+   - RT#57649 Set default value for _tls flag
+   - Module metadata changes
+ 
+ 1.23_03 2010-09-20
+ 
+   - RT#57649 Prepare cert verification params when TLS connection is requested
+ 
+ 1.23_02 2010-09-18
+ 
+   - Convert project to Module::Build, with ExtUtils::MakeMaker compatibility
+   - RT#57649 SSL cert verification, enabled by default
+   - RT#53315 Remove old, bundled Test::* libraries, now core
+   - RT#54880 Clarify license terms
+   - RT#54151 Disable network-based tests via environment variable (for Debian)
+   - RT#56574 Fix object construction causing problems on Perl 5.12.0
+
+---

Old:

  XML-Stream-1.23.tar.gz

New:

  XML-Stream-1.24.tar.gz



Other differences:
--
++ perl-XML-Stream.spec ++
--- /var/tmp/diff_new_pack.yFRAeI/_old  2015-02-10 20:21:41.0 +0100
+++ /var/tmp/diff_new_pack.yFRAeI/_new  2015-02-10 20:21:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-XML-Stream
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,80 +15,67 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-XML-Stream
+Version:1.24
+Release:0
 %define cpan_name XML-Stream
 Summary:Creates an XML Stream connection and parses return data
-Version:1.23
-Release:7
 License:LGPL-2.1+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/XML-Stream/
-#Source: 
http://www.cpan.org/modules/by-module/XML/XML-Stream-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/D/DA/DAPATRICK/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Authen::SASL)
-BuildRequires:  perl(Carp)
-BuildRequires:  perl(FileHandle)
-BuildRequires:  perl(IO::Select)
-BuildRequires:  perl(IO::Socket)
-BuildRequires:  perl(IO::Socket::SSL) = 0.81
-BuildRequires:  perl(POSIX)
-BuildRequires:  perl(utf8)
-#
+BuildRequires:  perl(Module::Build) = 0.3603
+BuildRequires:  perl(Test::More) = 0.92
 Requires:   perl(Authen::SASL)
-Requires:   perl(Carp)
-Requires:   perl(FileHandle)
-Requires:   perl(IO::Select)
-Requires:   perl(IO::Socket)
-Requires:   perl(POSIX)
-Requires:   perl(utf8)
-Recommends: perl(IO::Socket::SSL) = 0.81
-Recommends: perl(Net::DNS)
+%{perl_requires}
 
 %description
 This module provides the user with methods to connect to a remote  server,
 send a stream of XML to the server, and receive/parse an XML  stream from
-the server.  It is primarily based work for the Etherx XML  router
-developed by the Jabber Development Team.  For more information  about this
-project visit http://xmpp.org/protocols/streams/.
-
-Authors:
-

commit kiwi for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2015-02-10 20:20:44

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


Package is kiwi

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2015-01-25 
21:14:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2015-02-10 
20:20:46.0 +0100
@@ -1,0 +2,209 @@
+Mon Feb  9 11:43:29 CET 2015 - m...@suse.de
+
+- v7.02.25 released
+  
+---
+Mon Feb  2 09:44:42 CET 2015 - m...@suse.de
+  
+- DB: rebuild documentation
+  
+---
+Mon Feb  2 09:43:48 CET 2015 - m...@suse.de
+  
+- DB: man page clarify use of images.sh/config.sh
+  
+---
+Sat Jan 31 15:07:37 CET 2015 - dmuel...@suse.de
+  
+- aarch64: Load full EFI emulation size
+  
+-boot-load-size 1 is not a recommended option. First of all
+  a loader size that is not divideable by 4 is rejected by
+  most EFI firmwares. In addition we need to load all of the
+  EFI code into memory. When the option is not set, genisoimage
+  uses the full length by default, which is what we want.
+  
+---
+Fri Jan 30 11:04:09 CET 2015 - m...@suse.de
+  
+- v7.02.24 released
+  
+---
+Fri Jan 30 10:45:04 CET 2015 - m...@suse.de
+  
+- Fixed callPartitioner
+  
+  Instead of making the decision for the correct partition tool
+  by the name of the device use a method which knows better about
+  the type of the storage device. This applies to s390 only were
+  a dasd device could be a real dasd with 4k blocksize or an
+  emulated dasd with 512byte blocksize. In the first case fdasd
+  is used and in the other case parted must be used. The decision
+  for the tool is now based on the result if isDASDDevice()
+  which returns false for emulated dasd devices because we
+  only distinguish a different handling if the blocksize of the
+  device is _not_ 512byte
+  
+---
+Fri Jan 30 10:43:19 CET 2015 - m...@suse.de
+  
+- Fixed critic testing via perlcritic
+  
+  perlcritic on 13.2 reports a module to not end with a true value
+  which is wrong and older versions of perlcritic do not complain
+  about the same code. As I don't want to dig into what perlcritic
+  does I decided to move the module in question to be not level 4
+  clean
+  
+---
+Fri Jan 30 09:37:09 CET 2015 - m...@suse.de
+  
+- Fixed handling of zipl options
+  
+  For some reason it was not possible to provide the
+  information as commandline arguments. Thus we wrote
+  it into the menu section. In addition the verbose
+  zipl installation information is now part of the
+  kiwi build log file
+  
+---
+Fri Jan 30 09:07:00 CET 2015 - m...@suse.de
+  
+- Fixed import of emulated dasd device
+  
+  dasd_configure is required to be called but kiwi
+  skipped that step for emulated dasd devices and
+  thus they did not exist on boot
+  
+---
+Fri Jan 30 08:57:24 CET 2015 - m...@suse.de
+  
+- Added support for emulated DASD devices on s390
+  
+  an emulated dasd is a dasd device in FBA mode using
+  512byte blocksize. kiwi did not properly install zipl
+  to allow to boot from such devices
+  
+---
+Thu Jan 29 16:03:33 CET 2015 - guillaume.gar...@suse.de
+  
+- Fix ARM build
+  
+---
+Thu Jan 29 15:37:59 CET 2015 - adr...@suse.de
+  
+- collecting of -debuginfo packages from special suffixed packages
+  
+---
+Thu Jan 29 12:13:26 CET 2015 - m...@suse.de
+  
+- Fixed importHostPackageKeys
+  
+  Import on systems which doesn't have a
+  /usr/lib/rpm/gnupg/keys structure failed
+  
+---
+Thu Jan 29 11:36:18 CET 2015 - m...@suse.de
+  
+- Fixed exception handling if device type is unknown
+  
+---
+Thu Jan 29 11:29:41 CET 2015 - m...@suse.de
+  
+- Added support for s390 emulated DASD devices
+  
+  An emulated DASD device is a disk with 512byte blocksize
+  like it is the case for real zFCP (scsi) devices. Therefore
+  kiwi handles an emulated DASD like a zFCP device but does
+  not configure host and 

commit perl-Compress-Bzip2 for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Compress-Bzip2 for 
openSUSE:Factory checked in at 2015-02-10 20:21:30

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


Package is perl-Compress-Bzip2

Changes:

--- /work/SRC/openSUSE:Factory/perl-Compress-Bzip2/perl-Compress-Bzip2.changes  
2014-09-17 17:25:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Compress-Bzip2.new/perl-Compress-Bzip2.changes 
2015-02-10 20:21:31.0 +0100
@@ -1,0 +2,10 @@
+Fri Feb  6 13:13:05 UTC 2015 - co...@suse.com
+
+- updated to 2.20
+- fixed generated SIGNATURE (EUMM parallel make issue)
+ 
+ 2.20 2015-01-15 rurban
+- Convert README to markdown, mention the preferred IO::Compress::Bzip2 in
+  the docs (done by Pattarawat Chormai, GH PR #2)
+
+---

Old:

  Compress-Bzip2-2.18.tar.gz

New:

  Compress-Bzip2-2.20.tar.gz



Other differences:
--
++ perl-Compress-Bzip2.spec ++
--- /var/tmp/diff_new_pack.eeHxfB/_old  2015-02-10 20:21:33.0 +0100
+++ /var/tmp/diff_new_pack.eeHxfB/_new  2015-02-10 20:21:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Compress-Bzip2
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Compress-Bzip2
-Version:2.18
+Version:2.20
 Release:0
 %define cpan_name Compress-Bzip2
 Summary:Interface to Bzip2 compression library
@@ -37,9 +37,9 @@
 Requires:   bzip2
 
 %description
-The _Compress::Bzip2_ module provides a Perl interface to the _Bzip2_
+The _Compress::Bzip2_ module provides a Perl interface to the *bzip2*
 compression library (see the /AUTHOR manpage for details about where to get
-_Bzip2_). A relevant subset of the functionality provided by _Bzip2_ is
+_Bzip2_). A relevant subset of the functionality provided by _bzip2_ is
 available in _Compress::Bzip2_.
 
 All string parameters can either be a scalar or a scalar reference.
@@ -48,6 +48,12 @@
 in-memory compression/decompression and read/write access to _bzip2_ files.
 Each of these areas will be discussed separately below.
 
+*NOTE*
+
+_Compress::Bzip2_ is just a simple _bzip2_ binding, comparable to the old
+the Compress::Zlib manpage library. It is not well integrated into PerlIO,
+use the preferred the IO::Compress::Bzip2 manpage instead.
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
 find . -type f -print0 | xargs -0 chmod 644
@@ -66,6 +72,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc ANNOUNCE Changes COPYING NEWS README
+%doc ANNOUNCE Changes COPYING NEWS README.md
 
 %changelog

++ Compress-Bzip2-2.18.tar.gz - Compress-Bzip2-2.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Compress-Bzip2-2.18/Changes 
new/Compress-Bzip2-2.20/Changes
--- old/Compress-Bzip2-2.18/Changes 2014-08-07 01:53:14.0 +0200
+++ new/Compress-Bzip2-2.20/Changes 2015-01-15 10:44:41.0 +0100
@@ -159,4 +159,11 @@
- [cpan #68572] add ccdlflags for show_bzversion missing -R also, similar 
to the
  fix in 2.11. Not a EUMM bug.
- require constant 1.04 (since 5.8) to accept hashrefs.
-   - add META to MANIFEST
\ No newline at end of file
+   - add META to MANIFEST
+
+2.19 2015-10-24 rurban
+   - fixed generated SIGNATURE (EUMM parallel make issue)
+
+2.20 2015-01-15 rurban
+   - Convert README to markdown, mention the preferred IO::Compress::Bzip2 in
+ the docs (done by Pattarawat Chormai, GH PR #2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Compress-Bzip2-2.18/MANIFEST 
new/Compress-Bzip2-2.20/MANIFEST
--- old/Compress-Bzip2-2.18/MANIFEST2014-08-07 01:53:30.0 +0200
+++ new/Compress-Bzip2-2.20/MANIFEST2015-01-15 10:46:24.0 +0100
@@ -1,12 +1,10 @@
-README
+README.md
 Changes
 MANIFEST
 COPYING
 INSTALL
 ANNOUNCE
 NEWS
-META.json
-META.yml
 Makefile.PL
 config.in
 ppport.h
@@ -109,4 +107,6 @@
 t/900_perl_minimum_version.t
 t/900_pod-coverage.t
 t/900_pod.t
+META.yml Module YAML meta-data (added by 
MakeMaker)
+META.jsonModule JSON meta-data (added by 
MakeMaker)
 SIGNATUREPublic-key signature (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit mathgl for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package mathgl for openSUSE:Factory checked 
in at 2015-02-10 20:21:09

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


Package is mathgl

Changes:

--- /work/SRC/openSUSE:Factory/mathgl/mathgl.changes2015-02-01 
12:30:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.mathgl.new/mathgl.changes   2015-02-10 
20:21:12.0 +0100
@@ -1,0 +2,19 @@
+Mon Feb  2 19:15:03 UTC 2015 - dmitr...@opensuse.org
+
+- Update to version 2.3.2
+  * Update mgltex.
+  * Add reading files with complex numbers by 'read' command.
+  * Parallelize reading textual data files.
+  * Add 'i','j','k' variables for data filling.
+  * Add saving images in QMathGL even if corresponding format
+support is disabled.
+  * Add cmake option MGL_DEF_FONT to change default font name
+or use built-in one (if MGL_DEF_FONT is empty).
+  * Compatibility changes and bugfixes.
+  * Update mathgl-fix-python-module-path.patch
+- Add mathgl-tex subpackage
+- Set correct path to texmf directory
+  * mathgl-texmf-dir.patch
+- Fix package descriptions
+
+---
@@ -5 +24,23 @@
-  * See included ChangeLog.txt file for details
+  * Add MGL command 'load' for loading MGL commands from external
+.so module.
+  * Add Logo() function to draw bitmap (logo), which is stretched
+along whole axis range
+  * Add MGL command 'reset' which restore default settings and
+clear image (i.e. call DefaultPlotParam()).
+  * Change y coordinate at x-z projection.
+  * Improve projection of 'unrotatable' objects (like legend, title, ...).
+  * Add projection (Ternary8) which is the same as usual (Ternary4)
+but don't print text on projections
+  * Improve orientation of axis ticks and labels.
+  * Add mglWnd::SetDrawFunc().
+  * Add mgl_set_global_warn() and mgl_get_global_warn() for set/get
+messages of global scope.
+  * Make copying private of mglGraph and derived.
+  * Add virtual destructors.
+  * Add some static functions for mglGraph.
+  * Add option -n to mglconv to disable automatic saving of the image.
+  * Add option -s to mglview and mglconv to run setup script before
+the main one.
+  * Add light scaling at MGLD import.
+  * Add scaling of frames at Adjust().
+  * Update docs.

Old:

  mathgl-2.3.1.tar.gz

New:

  mathgl-2.3.2.tar.gz
  mathgl-texmf-dir.patch



Other differences:
--
++ mathgl.spec ++
--- /var/tmp/diff_new_pack.FZHqnt/_old  2015-02-10 20:21:13.0 +0100
+++ /var/tmp/diff_new_pack.FZHqnt/_new  2015-02-10 20:21:13.0 +0100
@@ -20,10 +20,10 @@
 
 Name:   mathgl
 %define libname libmgl
-Version:2.3.1
+Version:2.3.2
 Release:0
 # oct_version must be x.y.z
-%define oct_version 2.3.1
+%define oct_version %{version}
 %define somajor 7.4.0
 %define libversion 7_4_0
 Summary:Cross-platform library for making high-quality scientific 
graphics
@@ -39,7 +39,9 @@
 Patch3: mathgl-doc-path.patch
 # PATCH-FIX-OPENSUSE udav-help-path.patch -- fix path to documentation 
directory
 Patch4: udav-help-path.patch
-BuildRequires:  cmake
+# PATCH-FIX-OPENSUSE mathgl-texmf-dir.patch -- set correct path to texmf 
directory
+Patch5: mathgl-texmf-dir.patch
+BuildRequires:  cmake = 2.8.12
 BuildRequires:  fltk-devel
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-c++
@@ -65,6 +67,7 @@
 BuildRequires:  python-numpy-devel
 BuildRequires:  swig
 BuildRequires:  texinfo
+BuildRequires:  texlive-filesystem
 BuildRequires:  texlive-latex
 %if 0%{?suse_version} = 1320
 BuildRequires:  wxWidgets-devel = 3
@@ -85,99 +88,99 @@
 %endif
 
 %description
-Mathgl is a cross-platform library for making high-quality scientific
+MathGL is a cross-platform library for making high-quality scientific
 graphics. It provides fast data plotting and handling of large data
 arrays, as well as  window and console modes and for easy embedding
-into other programs. Mathgl integrates into fltk, qt and
-opengl applications.
+into other programs. MathGL integrates into FLTK, Qt and
+OpenGL applications.
 
 %package -n %{libname}%{libversion}
-Summary:Mathgl is a cross-platform library for making high-quality 
scientific graphics
+Summary:MathGL is a cross-platform library for making high-quality 
scientific graphics
 Group:  System/Libraries
 Requires:   %{name}-fonts = %{version}
 
 %description -n %{libname}%{libversion}
-Mathgl is a cross-platform library for making high-quality scientific
+MathGL is a cross-platform library for making high-quality scientific
 graphics. It provides fast data plotting and handling of large data
 

commit perl-Curses for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Curses for openSUSE:Factory 
checked in at 2015-02-10 20:21:33

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


Package is perl-Curses

Changes:

--- /work/SRC/openSUSE:Factory/perl-Curses/perl-Curses.changes  2011-11-21 
12:38:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Curses.new/perl-Curses.changes 
2015-02-10 20:21:35.0 +0100
@@ -1,0 +2,49 @@
+Fri Feb  6 13:13:01 UTC 2015 - co...@suse.com
+
+- updated to 1.32
+   Makefile.PL: if /usr/include/ncurses/ncurses.h exists, use Ncurses 
regardless
+   of what the $guess_cfg table says for the OS at hand.  This fixes the former
+   hybrid approach which didn't work for a Solaris 11 system that has both
+   Ncurses and BSD curses.
+ 
+   Typographical error in documentation fixed.
+ 
+ New in 1.31 (Released April 26, 2014)
+ 
+   Fix compile failure with some Curses libraries, introduced in
+   1.29 - undefined KEY_CODE_YES.
+ 
+   Fix documentation: wide character functions exist back to Perl 5.6,
+   not 5.16.
+ 
+ New in 1.30 (Released April 19, 2014)
+ 
+   Fix build failure: Use older substitutes if Perl is too old to have
+   the 'utf8_to_uvchr_buf' function they use; don't include the wide character
+   functions if Perl is even too old to have the substitutes.  Broken in 1.29.
+ 
+   Fix constant not provided by your vendor message when you refer to a
+   function that does not exist in the Curses module.
+ 
+   Minor fixes to documentation of new wide character functions.
+ 
+   Fix warning about extra argument to c_setmevent .
+ 
+   Fix documentation for not defined in your Curses library errors.
+   (broken in 1.28).
+ 
+   Fix demo programs' recognition of not defined in your Curses library
+   errors (broken in 1.28).
+ 
+ New in 1.29 (Released April 6, 2014)
+ 
+   Add an alternate set of functions (getchar, ungetchar, getstring,
+   instring, addstring, insstring) providing a more Perl-like interface,
+   converting from and to Perl strings (instead of passing data to the C
+   library verbatim) and using wide character functions if available in the
+   underlying curses library.
+ 
+   Written by Edgar Fu201337, Mathematisches Institut der Uni Bonn,
+   e...@math.uni-bonn.de
+
+---

Old:

  Curses-1.28.tgz

New:

  Curses-1.32.tgz



Other differences:
--
++ perl-Curses.spec ++
--- /var/tmp/diff_new_pack.Md7gsy/_old  2015-02-10 20:21:36.0 +0100
+++ /var/tmp/diff_new_pack.Md7gsy/_new  2015-02-10 20:21:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Curses
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,21 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Curses
-BuildRequires:  ncurses-devel perl
+BuildRequires:  ncurses-devel
+BuildRequires:  perl
 BuildRequires:  perl-macros
-Version:1.28
-Release:7
-Provides:   perl_cur Curses
+Version:1.32
+Release:0
+Provides:   Curses
+Provides:   perl_cur
 Obsoletes:  perl_cur
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0
 Url:http://cpan.org/modules/by-module/Curses/
 Summary:Terminal screen handling and optimization
+License:Artistic-1.0
+Group:  Development/Libraries/Perl
 Source: Curses-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

++ Curses-1.28.tgz - Curses-1.32.tgz ++
 8514 lines of diff (skipped)

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



commit installation-images-openSUSE for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2015-02-10 20:20:58

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


Package is installation-images-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2015-02-05 10:59:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2015-02-10 20:20:59.0 +0100
@@ -1,0 +2,14 @@
+Tue Feb 10 13:56:13 CET 2015 - snw...@suse.com
+
+- align to new xorg packages
+- update README
+- fix zenworks boot theme
+- zenworks adjustments
+- 14.162
+
+---
+Mon Feb  9 10:38:56 UTC 2015 - sch...@suse.de
+
+- libsmbios2 only exists on ia64 and x86
+
+---

Old:

  installation-images-14.161.tar.xz

New:

  installation-images-14.162.tar.xz



Other differences:
--
++ installation-images-openSUSE.spec ++
--- /var/tmp/diff_new_pack.XdsJDs/_old  2015-02-10 20:21:00.0 +0100
+++ /var/tmp/diff_new_pack.XdsJDs/_new  2015-02-10 20:21:00.0 +0100
@@ -47,6 +47,9 @@
 BuildRequires:  openSUSE-release
 BuildRequires:  openSUSE-release-mini
 %endif
+%ifarch ia64 %ix86 x86_64
+BuildRequires:  libsmbios2
+%endif
 BuildRequires:  Mesa
 BuildRequires:  Mesa-libEGL1
 BuildRequires:  SuSEfirewall2
@@ -360,7 +363,7 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.161
+Version:14.162
 Release:0
 Provides:   installation-images = %version-%release
 Source: installation-images-%{version}.tar.xz

++ installation-images-14.161.tar.xz - installation-images-14.162.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.161/README 
new/installation-images-14.162/README
--- old/installation-images-14.161/README   2015-02-03 11:09:11.0 
+0100
+++ new/installation-images-14.162/README   2015-02-10 13:52:22.0 
+0100
@@ -4,104 +4,20 @@
 To build a new image, you have to:
 
  - be root
- - put the installation-images dir on a *local* file system (non-NFS)
- - on ia32 systems: linuxrc  syslinux installed
+ - put the installation-images directory on a *local* file system (ie. not NFS)
 
-Then you can do:
+Then you can run 'make' to build all parts.
 
-  make initrd
-- build an initial ramdisk
+The images are stored in the 'image' directory, the contents of the images
+is in the 'tmp' directory.
 
-  initrd=small make initrd
-- build a 'small' test initrd, suitable for 1.44MB boot images (for ia32)
-- *** This is not suitable for release on our CDs! ***
+'make install' will gather the images an put them into the 'instsys' dir.
 
-  make boot
-- build an boot image (for ia32)
+For testing purposes there is a make target 'cd1' that builds a complete
+tree as it's used on our media.
 
-  make root
-- build a root image
 
-  demo=live make demo
-  demo=eval make demo
-- build a root image for a Live/LiveEval CD
-
-  make boot
-- build a (2.88MB) boot image (for ia32)
-
-  demo=live make boot
-  demo=eval make boot
-- build a (2.88MB) Live/LiveEval boot image (for ia32)
-- add 'boot=small initrd=small' to get a 1.44MB *test* image
-
-The images are stored in the image directory, the contents of the
-images (except for the boot image) in the tmp directory.
-
-There is some special magic built into the scripts that make sure that the
-initrd fits on the boot disk by removing/adding some of the modules. See the
-description of the *.file_list format for details.
-
-You can select the SuSE release to build for, e.g:
-
-  suserelease=6.4 make initrd
-
-but note:
-  - This is ignored in an autobuild environment (for obvious reasons).
-  - You cannot sensibly test for 'suserelease' in the various *.file_list files
-using the 'ifenv' construct.
-Use 'suse_major_release', 'suse_minor_release' or 'suse_release' instead.
-
-
-2. How to make boot disks
-=
-
-The various boot disks differ only slightly from the installation-images stuff
-(different kernel, module lists and syslinux.cfg file) and are derived from
-the installation-images directory using the bin/ci_boot* scripts.
-
-o 'boot' (*the* boot image (2.88MB, 1st CD, ia32 only)
-
-  Whithin the installation-images directory, do a
-
-make boot
-
-o 'yast2' boot disk (== boot image for 

commit python3-ecdsa for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python3-ecdsa for openSUSE:Factory 
checked in at 2015-02-10 20:22:33

Comparing /work/SRC/openSUSE:Factory/python3-ecdsa (Old)
 and  /work/SRC/openSUSE:Factory/.python3-ecdsa.new (New)


Package is python3-ecdsa

Changes:

--- /work/SRC/openSUSE:Factory/python3-ecdsa/python3-ecdsa.changes  
2014-11-02 16:46:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-ecdsa.new/python3-ecdsa.changes 
2015-02-10 20:22:34.0 +0100
@@ -1,0 +2,18 @@
+Mon Feb  9 06:33:51 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 0.13:
+  * Fix the argument order for Curve constructor (put openssl_name= at
+the end, with a default value) to unbreak compatibility with
+external callers who used the 0.11 convention.
+
+- changes from version 0.12:
+  * Switch to Versioneer for version-string management (fixing the
+broken `ecdsa.__version__` attribute). Add Curve.openssl_name
+property. Mention secp256k1 in README, test against
+OpenSSL. Produce wheel distributions. Add py3.4 and pypy3
+compatibility testing. Other minor fixes.
+
+---

Old:

  ecdsa-0.11.tar.gz

New:

  ecdsa-0.13.tar.gz



Other differences:
--
++ python3-ecdsa.spec ++
--- /var/tmp/diff_new_pack.mMZKXh/_old  2015-02-10 20:22:35.0 +0100
+++ /var/tmp/diff_new_pack.mMZKXh/_new  2015-02-10 20:22:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-ecdsa
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-ecdsa
-Version:0.11
+Version:0.13
 Release:0
 Summary:ECDSA cryptographic signature library (pure python)
 License:MIT

++ ecdsa-0.11.tar.gz - ecdsa-0.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.11/MANIFEST.in new/ecdsa-0.13/MANIFEST.in
--- old/ecdsa-0.11/MANIFEST.in  2013-10-02 01:50:50.0 +0200
+++ new/ecdsa-0.13/MANIFEST.in  2015-02-04 11:02:21.0 +0100
@@ -1,2 +1,3 @@
 # basic metadata
-include MANIFEST.in LICENSE NEWS README.md
+include MANIFEST.in LICENSE NEWS README.md versioneer.py
+include ecdsa/_version.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.11/NEWS new/ecdsa-0.13/NEWS
--- old/ecdsa-0.11/NEWS 2014-03-10 23:49:39.0 +0100
+++ new/ecdsa-0.13/NEWS 2015-02-07 19:18:55.0 +0100
@@ -1,3 +1,16 @@
+* Release 0.13 (07 Feb 2015)
+
+Fix the argument order for Curve constructor (put openssl_name= at the end,
+with a default value) to unbreak compatibility with external callers who used
+the 0.11 convention.
+
+* Release 0.12 (06 Feb 2015)
+
+Switch to Versioneer for version-string management (fixing the broken
+`ecdsa.__version__` attribute). Add Curve.openssl_name property. Mention
+secp256k1 in README, test against OpenSSL. Produce wheel distributions. Add
+py3.4 and pypy3 compatibility testing. Other minor fixes.
+
 * Release 0.11 (10 Mar 2014)
 
 Add signature-encoding functions sigencode_{strings,string,der}_canonize
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.11/PKG-INFO new/ecdsa-0.13/PKG-INFO
--- old/ecdsa-0.11/PKG-INFO 2014-03-10 23:54:24.0 +0100
+++ new/ecdsa-0.13/PKG-INFO 2015-02-07 19:26:16.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ecdsa
-Version: 0.11
+Version: 0.13
 Summary: ECDSA cryptographic signature library (pure python)
 Home-page: http://github.com/warner/python-ecdsa
 Author: Brian Warner
@@ -15,3 +15,4 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.11/README.md new/ecdsa-0.13/README.md
--- old/ecdsa-0.11/README.md2014-02-17 21:48:01.0 +0100
+++ new/ecdsa-0.13/README.md2015-02-06 22:14:49.0 +0100
@@ -1,6 +1,8 @@
 # Pure-Python ECDSA
 
 [![build 
status](https://travis-ci.org/warner/python-ecdsa.png)](http://travis-ci.org/warner/python-ecdsa)
+[![Coverage 
Status](https://coveralls.io/repos/warner/python-ecdsa/badge.svg)](https://coveralls.io/r/warner/python-ecdsa)
+[![Latest 

commit python3-Pygments for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python3-Pygments for 
openSUSE:Factory checked in at 2015-02-10 20:21:59

Comparing /work/SRC/openSUSE:Factory/python3-Pygments (Old)
 and  /work/SRC/openSUSE:Factory/.python3-Pygments.new (New)


Package is python3-Pygments

Changes:

--- /work/SRC/openSUSE:Factory/python3-Pygments/python3-Pygments.changes
2015-01-03 22:01:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-Pygments.new/python3-Pygments.changes   
2015-02-10 20:22:02.0 +0100
@@ -1,0 +2,18 @@
+Sun Feb  8 15:35:13 UTC 2015 - p.drou...@gmail.com
+
+- Revert documentation building; avoid a build cycle with python3-Sphinx
+- Remove python3 build requires; useless
+
+---
+Sun Jan 25 04:13:47 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * add rules to make doc/build
+  * add Sphings as requirement
+  * remove 2to3 as requirement
+
+- update to version 2.0.2:
+  * Fix Python tracebacks getting duplicated in the console lexer (#1068).
+  * Backquote-delimited identifiers are now recognized in F# (#1062).
+
+---

Old:

  Pygments-2.0.1.tar.gz

New:

  Pygments-2.0.2.tar.gz



Other differences:
--
++ python3-Pygments.spec ++
--- /var/tmp/diff_new_pack.ge0YhJ/_old  2015-02-10 20:22:03.0 +0100
+++ /var/tmp/diff_new_pack.ge0YhJ/_new  2015-02-10 20:22:03.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-Pygments
-Version:2.0.1
+Version:2.0.2
 Release:0
 Url:http://pygments.org
 Summary:Pygments is a syntax highlighting package written in Python
@@ -25,8 +25,6 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python3
-BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
 BuildRequires:  python3-nose
 BuildRequires:  python3-setuptools
@@ -64,7 +62,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc LICENSE AUTHORS CHANGES TODO doc/_build
+%doc LICENSE AUTHORS CHANGES TODO
 %{_bindir}/pygmentize-%{py3_ver}
 %{_mandir}/man1/pygmentize-%{py3_ver}.1.gz
 %{python3_sitelib}/pygments/

++ Pygments-2.0.1.tar.gz - Pygments-2.0.2.tar.gz ++
 190254 lines of diff (skipped)

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



commit python3-pep8 for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python3-pep8 for openSUSE:Factory 
checked in at 2015-02-10 20:22:36

Comparing /work/SRC/openSUSE:Factory/python3-pep8 (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pep8.new (New)


Package is python3-pep8

Changes:

--- /work/SRC/openSUSE:Factory/python3-pep8/python3-pep8.changes
2015-01-23 15:46:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pep8.new/python3-pep8.changes   
2015-02-10 20:22:37.0 +0100
@@ -1,0 +2,35 @@
+Mon Feb  9 06:45:13 UTC 2015 - a...@gmx.de
+
+- update to version 1.6.1:
+  * Assign variables before referenced. (Issue #287)
+  * Exception thrown due to unassigned local_dir variable. (Issue
+#377)
+
+- changes from version 1.6.0:
+  * Report E731 for lambda assignment. (Issue #277)
+  * Report E704 for one-liner def instead of E701.
+Do not report this error in the default configuration. (Issue #277)
+  * Replace codes E111, E112 and E113 with codes E114, E115 and E116
+for bad indentation of comments. (Issue #274)
+  * Report E266 instead of E265 when the block comment starts with
+multiple #. (Issue #270)
+  * Report E402 for import statements not at the top of the file. (Issue #264)
+  * Do not enforce whitespaces around ** operator. (Issue #292)
+  * Strip whitespace from around paths during normalization. (Issue #339 / 
#343)
+  * Update --format documentation. (Issue #198 / Pull Request #310)
+  * Add .tox/ to default excludes. (Issue #335)
+  * Do not report E121 or E126 in the default configuration. (Issues #256 / 
#316)
+  * Allow spaces around the equals sign in an annotated function. (Issue #357)
+  * Allow trailing backslash if in an inline comment. (Issue #374)
+  * If --config is used, only that configuration is processed. Otherwise,
+merge the user and local configurations are merged. (Issue #368 / #369)
+  * Don't crash if Checker.build_tokens_line() returns None. (Issue #306)
+  * Don't crash if os.path.expanduser() throws an ImportError. (Issue #297)
+  * Missing space around keyword parameter equal not always reported, E251.
+(Issue #323)
+  * Fix false positive E711/E712/E713. (Issues #330 and #336)
+  * Do not skip physical checks if the newline is escaped. (Issue #319)
+  * Flush sys.stdout to avoid race conditions with printing. See flake8 bug:
+https://gitlab.com/pycqa/flake8/issues/17 for more details. (Issue #363)
+
+---

Old:

  pep8-1.5.7.tar.gz

New:

  pep8-1.6.1.tar.gz



Other differences:
--
++ python3-pep8.spec ++
--- /var/tmp/diff_new_pack.V0TZBg/_old  2015-02-10 20:22:38.0 +0100
+++ /var/tmp/diff_new_pack.V0TZBg/_new  2015-02-10 20:22:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pep8
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pep8
-Version:1.5.7
+Version:1.6.1
 Release:0
 Url:http://github.com/jcrocholl/pep8
 Summary:Python style guide checker

++ pep8-1.5.7.tar.gz - pep8-1.6.1.tar.gz ++
 1603 lines of diff (skipped)

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



commit perl-Exporter-Tidy for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Exporter-Tidy for 
openSUSE:Factory checked in at 2015-02-10 20:22:45

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


Package is perl-Exporter-Tidy

Changes:

--- /work/SRC/openSUSE:Factory/perl-Exporter-Tidy/perl-Exporter-Tidy.changes
2011-12-09 09:32:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Exporter-Tidy.new/perl-Exporter-Tidy.changes   
2015-02-10 20:22:46.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb  7 07:21:43 UTC 2015 - co...@suse.com
+
+- updated to 0.08
+  - README updated to reflect license change.
+
+---

Old:

  Exporter-Tidy-0.07.tar.gz

New:

  Exporter-Tidy-0.08.tar.gz



Other differences:
--
++ perl-Exporter-Tidy.spec ++
--- /var/tmp/diff_new_pack.KbGs0Z/_old  2015-02-10 20:22:47.0 +0100
+++ /var/tmp/diff_new_pack.KbGs0Z/_new  2015-02-10 20:22:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Exporter-Tidy
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,48 +17,45 @@
 
 
 Name:   perl-Exporter-Tidy
-Version:0.07
+Version:0.08
 Release:0
+%define cpan_name Exporter-Tidy
 Summary:Another way of exporting symbols
 License:SUSE-Public-Domain
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Exporter-Tidy/
-Source0:
http://www.cpan.org/authors/id/J/JU/JUERD/Exporter-Tidy-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/J/JU/JUERD/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
+%{perl_requires}
 
 %description
 This module serves as an easy, clean alternative to Exporter. Unlike
 Exporter, it is not subclassed, but it simply exports a custom import()
 into your namespace.
 
+With Exporter::Tidy, you don't need to use any package global in your
+module. Even the subs you export can be lexically scoped.
+
 %prep
-%setup -q -n Exporter-Tidy-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL
-make %{?_smp_mflags}
-
-%install
-make install DESTDIR=$RPM_BUILD_ROOT INSTALLDIRS=vendor
-%perl_process_packlist
-%{_fixperms} $RPM_BUILD_ROOT/*
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
-make test
+%{__make} test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%install
+%perl_make_install
+%perl_process_packlist
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root,-)
+%files -f %{name}.files
+%defattr(-,root,root,755)
 %doc Changes README
-%dir %{perl_vendorarch}/auto/Exporter
-%{perl_vendorarch}/auto/Exporter/Tidy
-%dir %{perl_vendorlib}/Exporter
-%{perl_vendorlib}/Exporter/Tidy.pm
-%{_mandir}/man3/Exporter::Tidy.3*
 
 %changelog

++ Exporter-Tidy-0.07.tar.gz - Exporter-Tidy-0.08.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exporter-Tidy-0.07/Changes 
new/Exporter-Tidy-0.08/Changes
--- old/Exporter-Tidy-0.07/Changes  2007-09-14 13:02:47.0 +0200
+++ new/Exporter-Tidy-0.08/Changes  2015-01-06 12:24:49.0 +0100
@@ -1,5 +1,8 @@
 Revision history for Perl extension Exporter::Tidy.
 
+0.08  Thu Jan 6 12:23 2014
+- README updated to reflect license change.
+
 0.07  Fri Sep 14 13:02 2007
 - Now any-OSI licensed.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exporter-Tidy-0.07/MANIFEST 
new/Exporter-Tidy-0.08/MANIFEST
--- old/Exporter-Tidy-0.07/MANIFEST 2007-09-14 13:03:07.0 +0200
+++ new/Exporter-Tidy-0.08/MANIFEST 2015-01-06 12:26:23.0 +0100
@@ -6,4 +6,5 @@
 t/1.t
 t/lib/Test/More.pm
 t/lib/Test/Builder.pm
-META.yml Module meta-data (added by MakeMaker)
+META.yml Module YAML meta-data (added by 
MakeMaker)
+META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exporter-Tidy-0.07/META.json 
new/Exporter-Tidy-0.08/META.json
--- old/Exporter-Tidy-0.07/META.json1970-01-01 01:00:00.0 +0100
+++ new/Exporter-Tidy-0.08/META.json2015-01-06 12:26:23.0 +0100
@@ -0,0 +1,39 @@
+{
+   abstract : Another way 

commit perl-strictures for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-strictures for openSUSE:Factory 
checked in at 2015-02-10 20:22:51

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


Package is perl-strictures

Changes:

--- /work/SRC/openSUSE:Factory/perl-strictures/perl-strictures.changes  
2014-09-17 17:26:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-strictures.new/perl-strictures.changes 
2015-02-10 20:22:52.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb  7 07:21:44 UTC 2015 - co...@suse.com
+
+- updated to 1.005006
+   - fix extra checks triggering on paths starting with t, xt, lib, or blib,
+ rather than only triggering on those directories.
+   - avoid stat checks for VCS directories until we are in an appropriately
+ named file
+   - various cleanups in test files
+
+---

Old:

  strictures-1.005005.tar.gz

New:

  strictures-1.005006.tar.gz



Other differences:
--
++ perl-strictures.spec ++
--- /var/tmp/diff_new_pack.8cW6RB/_old  2015-02-10 20:22:52.0 +0100
+++ /var/tmp/diff_new_pack.8cW6RB/_new  2015-02-10 20:22:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-strictures
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-strictures
-Version:1.005005
+Version:1.005006
 Release:0
 %define cpan_name strictures
 Summary:Turn on strict and make all warnings fatal
@@ -81,7 +81,6 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ strictures-1.005005.tar.gz - strictures-1.005006.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/strictures-1.005005/Changes 
new/strictures-1.005006/Changes
--- old/strictures-1.005005/Changes 2014-08-16 03:16:45.0 +0200
+++ new/strictures-1.005006/Changes 2015-01-30 14:01:25.0 +0100
@@ -1,5 +1,12 @@
 Release history for strictures
 
+1.005006 - 2015-01-30
+  - fix extra checks triggering on paths starting with t, xt, lib, or blib,
+rather than only triggering on those directories.
+  - avoid stat checks for VCS directories until we are in an appropriately
+named file
+  - various cleanups in test files
+
 1.005005 - 2014-08-16
   - include minimum perl version in metadata
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/strictures-1.005005/MANIFEST 
new/strictures-1.005006/MANIFEST
--- old/strictures-1.005005/MANIFEST2014-08-16 03:16:54.0 +0200
+++ new/strictures-1.005006/MANIFEST2015-01-30 14:01:44.0 +0100
@@ -1,18 +1,10 @@
 Changes
 lib/strictures.pm
-maint/bump-version
-maint/Makefile.include
 maint/Makefile.PL.include
 Makefile.PL
 MANIFEST   This list of files
 t/crash.t
-t/dep_constellations/broken/bareword/filehandles.pm
-t/dep_constellations/broken/indirect.pm
-t/dep_constellations/broken/multidimensional.pm
-t/smells-of-vcs/.exists
-t/smells-of-vcs/lib/one.pm
-t/smells-of-vcs/other/one.pl
-t/smells-of-vcs/t/one.faket
+t/extras.t
 t/strictures.t
 xt/pod.t
 META.yml Module YAML meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/strictures-1.005005/META.json 
new/strictures-1.005006/META.json
--- old/strictures-1.005005/META.json   2014-08-16 03:16:54.0 +0200
+++ new/strictures-1.005006/META.json   2015-01-30 14:01:44.0 +0100
@@ -4,7 +4,7 @@
   mst - Matt S. Trout (cpan:MSTROUT) m...@shadowcat.co.uk
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.141520,
+   generated_by : ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.142690,
license : [
   perl_5
],
@@ -28,6 +28,9 @@
   },
   develop : {
  requires : {
+Pod::Coverage::CountParents : 0,
+Test::Pod : 0,
+Test::Pod::Coverage : 0,
 bareword::filehandles : 0,
 indirect : 0,
 multidimensional : 0
@@ -64,5 +67,5 @@
  web : 
http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git;
   }
},
-   version : 1.005005
+   version : 1.005006
 }
diff -urN '--exclude=CVS' 

commit libhdhomerun for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libhdhomerun for openSUSE:Factory 
checked in at 2015-02-10 20:23:42

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


Package is libhdhomerun

Changes:

--- /work/SRC/openSUSE:Factory/libhdhomerun/libhdhomerun.changes
2014-07-12 17:14:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libhdhomerun.new/libhdhomerun.changes   
2015-02-10 20:23:43.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  9 16:56:50 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 20141210
+  * Fix problem where libhdhomerun could interrupt http stream.
+
+---

Old:

  hdhomerun_config_gui_20140604.tgz
  libhdhomerun_20140604.tgz

New:

  hdhomerun_config_gui_20141210.tgz
  libhdhomerun_20141210.tgz



Other differences:
--
++ libhdhomerun.spec ++
--- /var/tmp/diff_new_pack.paGOOu/_old  2015-02-10 20:23:44.0 +0100
+++ /var/tmp/diff_new_pack.paGOOu/_new  2015-02-10 20:23:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libhdhomerun
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 BuildRequires:  gtk2-devel
 BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
-Version:20140604
+Version:20141210
 Release:0
 Source0:
http://download.silicondust.com/hdhomerun/libhdhomerun_%version.tgz
 Source1:
http://download.silicondust.com/hdhomerun/hdhomerun_config_gui_%version.tgz


++ hdhomerun_config_gui_20140604.tgz - hdhomerun_config_gui_20141210.tgz 
++
 3113 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/hdhomerun_config_gui/configure.in new/hdhomerun_config_gui/configure.in
--- old/hdhomerun_config_gui/configure.in   2014-05-20 00:41:10.0 
+0200
+++ new/hdhomerun_config_gui/configure.in   2014-10-18 00:18:42.0 
+0200
@@ -7,7 +7,7 @@
 
 case ${OSTYPE} in
 darwin*)
-   LIBS=${LIBS} -framework CoreFoundation -framework CoreServices
+   LIBS=${LIBS} -framework CoreFoundation -framework CoreServices 
-lgtkmacintegration
;;
 esac
 
@@ -17,7 +17,7 @@
 AC_HEADER_STDC
 AC_PROG_CXX
 
-pkg_modules=gtk+-2.0 = 2.0.0 gthread-2.0
+pkg_modules=gtk+-2.0 = 2.0.0
 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
 AC_SUBST(PACKAGE_CFLAGS)
 AC_SUBST(PACKAGE_LIBS)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/hdhomerun_config_gui/src/AppInclude.h 
new/hdhomerun_config_gui/src/AppInclude.h
--- old/hdhomerun_config_gui/src/AppInclude.h   2013-05-03 23:14:06.0 
+0200
+++ new/hdhomerun_config_gui/src/AppInclude.h   2014-06-14 22:10:10.0 
+0200
@@ -13,6 +13,7 @@
 #  include ApplicationServices/ApplicationServices.h
 #  include CoreServices/CoreServices.h
 #  include CoreFoundation/CoreFoundation.h
+#  include gtkmacintegration/gtkosxapplication.h
 #endif
 
 #include hdhomerun.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/hdhomerun_config_gui/src/Devices.cpp 
new/hdhomerun_config_gui/src/Devices.cpp
--- old/hdhomerun_config_gui/src/Devices.cpp2013-05-03 23:14:06.0 
+0200
+++ new/hdhomerun_config_gui/src/Devices.cpp2014-10-18 00:18:42.0 
+0200
@@ -44,7 +44,7 @@
 
 THDHomeRunDeviceList::THDHomeRunDeviceList()
 {
-   g_static_rw_lock_init(Lock);
+   g_rw_lock_init(Lock);
DeviceList = NULL;
FFoundErrorCode = 0;
 }
@@ -55,9 +55,9 @@
 
 uint16_t THDHomeRunDeviceList::FoundErrorCode()
 {
-   g_static_rw_lock_reader_lock(Lock);
+   g_rw_lock_reader_lock(Lock);
uint16_t Result = FFoundErrorCode;
-   g_static_rw_lock_reader_unlock(Lock);
+   

commit perl-Modern-Perl for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Modern-Perl for 
openSUSE:Factory checked in at 2015-02-10 20:23:37

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


Package is perl-Modern-Perl

Changes:

--- /work/SRC/openSUSE:Factory/perl-Modern-Perl/perl-Modern-Perl.changes
2014-02-12 07:05:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Modern-Perl.new/perl-Modern-Perl.changes   
2015-02-10 20:23:39.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  7 16:23:00 UTC 2015 - co...@suse.com
+
+- updated to 1.20150127
+- updated for 2015 release (Elmer Quintanilla)
+- added support for 5.20
+
+---

Old:

  Modern-Perl-1.20140107.tar.gz

New:

  Modern-Perl-1.20150127.tar.gz



Other differences:
--
++ perl-Modern-Perl.spec ++
--- /var/tmp/diff_new_pack.nqPhga/_old  2015-02-10 20:23:40.0 +0100
+++ /var/tmp/diff_new_pack.nqPhga/_new  2015-02-10 20:23:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Modern-Perl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Modern-Perl
-Version:1.20140107
+Version:1.20150127
 Release:0
 %define cpan_name Modern-Perl
 Summary:enable all of the features of Modern Perl with one import
@@ -29,7 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Build) = 0.3601
+BuildRequires:  perl(Module::Build) = 0.2800
 BuildRequires:  perl(Test::More) = 0.98
 BuildRequires:  perl(autodie) = 2.22
 BuildRequires:  perl(feature)

++ Modern-Perl-1.20140107.tar.gz - Modern-Perl-1.20150127.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Modern-Perl-1.20140107/Build.PL 
new/Modern-Perl-1.20150127/Build.PL
--- old/Modern-Perl-1.20140107/Build.PL 2014-01-08 00:35:44.0 +0100
+++ new/Modern-Perl-1.20150127/Build.PL 2015-01-27 08:21:54.0 +0100
@@ -1,24 +1,25 @@
 
+# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild 
v5.020.
 use strict;
 use warnings;
 
-use Module::Build 0.3601;
+use Module::Build 0.28;
 
 
 my %module_build_args = (
   build_requires = {
-Module::Build = 0.3601
+Module::Build = 0.28
   },
   configure_requires = {
-ExtUtils::MakeMaker = 6.30,
-Module::Build = 0.3601
+ExtUtils::MakeMaker = 0,
+Module::Build = 0.28
   },
   dist_abstract = enable all of the features of Modern Perl with one 
import,
   dist_author = [
 chromatic
   ],
   dist_name = Modern-Perl,
-  dist_version = 1.20140107,
+  dist_version = 1.20150127,
   license = perl,
   module_name = Modern::Perl,
   recommends = {},
@@ -41,7 +42,7 @@
 
 
 my %fallback_build_requires = (
-  Module::Build = 0.3601,
+  Module::Build = 0.28,
   Test::More = 0.98
 );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Modern-Perl-1.20140107/Changes 
new/Modern-Perl-1.20150127/Changes
--- old/Modern-Perl-1.20140107/Changes  2014-01-08 00:35:44.0 +0100
+++ new/Modern-Perl-1.20150127/Changes  2015-01-27 08:21:54.0 +0100
@@ -1,5 +1,9 @@
 Revision history for Modern::Perl
 
+1.20150127 2015-01-26 23:21:44-08:00 America/Los_Angeles
+- updated for 2015 release (Elmer Quintanilla)
+- added support for 5.20
+
 1.20140107 2014-01-07 15:35:42 America/Los_Angeles
 - updated for 2014 release
 - added support for 5.18
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Modern-Perl-1.20140107/LICENSE 
new/Modern-Perl-1.20150127/LICENSE
--- old/Modern-Perl-1.20140107/LICENSE  2014-01-08 00:35:44.0 +0100
+++ new/Modern-Perl-1.20150127/LICENSE  2015-01-27 08:21:54.0 +0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2014 by chroma...@wgz.org.
+This software is copyright (c) 2015 by chroma...@wgz.org.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2014 by chroma...@wgz.org.
+This software is Copyright (c) 2015 by chroma...@wgz.org.
 
 This is free software, licensed under:
 
@@ -22,7 +22,7 @@
  Version 1, February 1989

commit perl-Apache-LogFormat-Compiler for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Apache-LogFormat-Compiler for 
openSUSE:Factory checked in at 2015-02-10 20:23:32

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


Package is perl-Apache-LogFormat-Compiler

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Apache-LogFormat-Compiler/perl-Apache-LogFormat-Compiler.changes
2014-03-21 12:15:20.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Apache-LogFormat-Compiler.new/perl-Apache-LogFormat-Compiler.changes
   2015-02-10 20:23:33.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb  7 16:23:04 UTC 2015 - co...@suse.com
+
+- updated to 0.32
+  - change perl version requirements to 5.8.1
+
+---

Old:

  Apache-LogFormat-Compiler-0.30.tar.gz

New:

  Apache-LogFormat-Compiler-0.32.tar.gz



Other differences:
--
++ perl-Apache-LogFormat-Compiler.spec ++
--- /var/tmp/diff_new_pack.1DAbbF/_old  2015-02-10 20:23:34.0 +0100
+++ /var/tmp/diff_new_pack.1DAbbF/_new  2015-02-10 20:23:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Apache-LogFormat-Compiler
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Apache-LogFormat-Compiler
-Version:0.30
+Version:0.32
 Release:0
 %define cpan_name Apache-LogFormat-Compiler
 Summary:Compile a log format string to perl-code
@@ -64,6 +64,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes cpanfile LICENSE README.md
+%doc Changes cpanfile LICENSE minil.toml README.md
 
 %changelog

++ Apache-LogFormat-Compiler-0.30.tar.gz - 
Apache-LogFormat-Compiler-0.32.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-LogFormat-Compiler-0.30/Build.PL 
new/Apache-LogFormat-Compiler-0.32/Build.PL
--- old/Apache-LogFormat-Compiler-0.30/Build.PL 2014-01-28 08:59:10.0 
+0100
+++ new/Apache-LogFormat-Compiler-0.32/Build.PL 2014-06-09 04:00:33.0 
+0200
@@ -34,7 +34,7 @@
 test_files   = ((-d '.git' || $ENV{RELEASE_TESTING})  -d 'xt') 
? 't/ xt/' : 't/',
 recursive_test_files = 1,
 
-
+
 );
 if (-d 'share') {
 $args{share_dir} = 'share';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-LogFormat-Compiler-0.30/Changes 
new/Apache-LogFormat-Compiler-0.32/Changes
--- old/Apache-LogFormat-Compiler-0.30/Changes  2014-01-28 08:59:10.0 
+0100
+++ new/Apache-LogFormat-Compiler-0.32/Changes  2014-06-09 04:00:33.0 
+0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension Apache::LogFormat::Compiler
 
+0.32 2014-06-09T02:00:15Z
+
+   - change perl version requirements to 5.8.1
+
 0.30 2014-01-28T07:59:07Z
 
- add docs abount POSIX::strftime::Compiler
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-LogFormat-Compiler-0.30/MANIFEST 
new/Apache-LogFormat-Compiler-0.32/MANIFEST
--- old/Apache-LogFormat-Compiler-0.30/MANIFEST 2014-01-28 08:59:10.0 
+0100
+++ new/Apache-LogFormat-Compiler-0.32/MANIFEST 2014-06-09 04:00:33.0 
+0200
@@ -6,6 +6,7 @@
 cpanfile
 eg/logbench.pl
 lib/Apache/LogFormat/Compiler.pm
+minil.toml
 t/00_compile.t
 t/01_basic.t
 t/02_custom.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-LogFormat-Compiler-0.30/META.json 
new/Apache-LogFormat-Compiler-0.32/META.json
--- old/Apache-LogFormat-Compiler-0.30/META.json2014-01-28 
08:59:10.0 +0100
+++ new/Apache-LogFormat-Compiler-0.32/META.json2014-06-09 
04:00:33.0 +0200
@@ -4,7 +4,7 @@
   Masahiro Nagano kazeb...@gmail.com
],
dynamic_config : 0,
-   generated_by : Minilla/v0.11.0,
+   generated_by : Minilla/v1.1.0,
license : [
   perl_5
],
@@ -36,7 +36,8 @@
   develop : {
  requires : {
 Test::CPAN::Meta : 0,
-Test::MinimumVersion : 0.10108,
+Test::MinimumVersion::Fast : 0.04,
+Test::PAUSE::Permissions : 0.04,
 Test::Pod : 1.41,
 Test::Spellunker : v0.2.7
  }
@@ -46,7 +47,7 @@
 POSIX : 0,
 POSIX::strftime::Compiler : 0.30,
 Time::Local : 0,
-perl : 5.008004
+perl : 5.008001
  }
   },
 

commit fence-agents for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package fence-agents for openSUSE:Factory 
checked in at 2015-02-10 20:23:21

Comparing /work/SRC/openSUSE:Factory/fence-agents (Old)
 and  /work/SRC/openSUSE:Factory/.fence-agents.new (New)


Package is fence-agents

Changes:

--- /work/SRC/openSUSE:Factory/fence-agents/fence-agents.changes
2015-01-08 23:02:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.fence-agents.new/fence-agents.changes   
2015-02-10 20:23:22.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb  9 15:23:23 UTC 2015 - kgronl...@suse.com
+
+- Update to 4.0.15:
+  * Tripp Lite PDUs are now supported by fence_tripplite_snmp (symlink to 
+fence_apc_snmp)
+  * Default values in metadata sometimes differ to those actually used, 
+this is fixed now
+  * improvements in testing
+- Remove patch: 0001-Avoid-problem-with-broken-make-variable-expansion.patch
+
+---

Old:

  0001-Avoid-problem-with-broken-make-variable-expansion.patch
  fence-agents-4.0.14.tar.xz

New:

  fence-agents-4.0.15.tar.xz



Other differences:
--
++ fence-agents.spec ++
--- /var/tmp/diff_new_pack.GkMxGk/_old  2015-02-10 20:23:23.0 +0100
+++ /var/tmp/diff_new_pack.GkMxGk/_new  2015-02-10 20:23:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fence-agents
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,12 +22,10 @@
 Summary:Fence Agents for Pacemaker from RHCS
 License:GPL-2.0 and LGPL-2.1
 Group:  Productivity/Clustering/HA
-Version:4.0.14
+Version:4.0.15
 Release:0
 Url:http://git.fedorahosted.org/git/fence-agents.git
 Source0:%{name}-%{version}.tar.xz
-# PATCH-FIX-OPENSUSE: Avoid problem with broken make variable expansion
-Patch1: 0001-Avoid-problem-with-broken-make-variable-expansion.patch
 
 Requires:   python-curl
 Requires:   python-openssl
@@ -157,7 +155,6 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%patch1 -p1
 
 %build
 CFLAGS=${CFLAGS} ${RPM_OPT_FLAGS}

++ fence-agents-4.0.14.tar.xz - fence-agents-4.0.15.tar.xz ++
 1980 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fence-agents-4.0.14/.tarball-version 
new/fence-agents-4.0.15/.tarball-version
--- old/fence-agents-4.0.14/.tarball-version2015-01-07 14:53:02.0 
+0100
+++ new/fence-agents-4.0.15/.tarball-version2015-02-09 12:36:30.0 
+0100
@@ -1 +1 @@
-4.0.14
+4.0.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fence-agents-4.0.14/.version new/fence-agents-4.0.15/.version
--- old/fence-agents-4.0.14/.version2015-01-07 14:53:00.0 +0100
+++ new/fence-agents-4.0.15/.version2015-02-09 12:36:28.0 +0100
@@ -1 +1 @@
-4.0.14
+4.0.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fence-agents-4.0.14/ChangeLog new/fence-agents-4.0.15/ChangeLog
--- old/fence-agents-4.0.14/ChangeLog   2015-01-07 14:53:02.0 +0100
+++ new/fence-agents-4.0.15/ChangeLog   2015-02-09 12:36:30.0 +0100
@@ -1,3 +1,33 @@
+2015-02-09  Marek 'marx' Grac  mg...@redhat.com
+
+   fencing: Default values of ipport in metadata
+   Default values were correctly set but they were not used in metadata 
after
+   previous patches.
+
+2015-01-14  Marek 'marx' Grac  mg...@redhat.com
+
+   fencing: default values for ipport #2 (--ssl-insecure, SNMP agents)
+   Previous patch of this problem:
+   * did not solve problem was --ssl-insecure
+   * did not work correctly with minimalist SNMP agent where 
snmp_version can not be set
+
+   Problem found using unit-tests.
+
+   [test] First attempt 

commit python-PasteDeploy for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python-PasteDeploy for 
openSUSE:Factory checked in at 2015-02-10 20:23:13

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


Package is python-PasteDeploy

Changes:

--- /work/SRC/openSUSE:Factory/python-PasteDeploy/python-PasteDeploy.changes
2013-10-25 11:25:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-PasteDeploy.new/python-PasteDeploy.changes   
2015-02-10 20:23:15.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 10:54:44 UTC 2015 - h...@urpla.net
+
+- update to version 1.5.2
+  * Fixed Python 3 issue in paste.deploy.util.fix_type_error()
+
+---

Old:

  PasteDeploy-1.5.0.tar.gz

New:

  PasteDeploy-1.5.2.tar.gz



Other differences:
--
++ python-PasteDeploy.spec ++
--- /var/tmp/diff_new_pack.PGxOrK/_old  2015-02-10 20:23:16.0 +0100
+++ /var/tmp/diff_new_pack.PGxOrK/_new  2015-02-10 20:23:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-PasteDeploy
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-PasteDeploy
-Version:1.5.0
+Version:1.5.2
 Release:0
 Url:http://pythonpaste.org/deploy/
 Summary:Load, configure, and compose WSGI applications and servers

++ PasteDeploy-1.5.0.tar.gz - PasteDeploy-1.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PasteDeploy-1.5.0/PKG-INFO 
new/PasteDeploy-1.5.2/PKG-INFO
--- old/PasteDeploy-1.5.0/PKG-INFO  2011-05-24 22:52:40.0 +0200
+++ new/PasteDeploy-1.5.2/PKG-INFO  2013-12-27 18:40:45.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: PasteDeploy
-Version: 1.5.0
+Version: 1.5.2
 Summary: Load, configure, and compose WSGI applications and servers
 Home-page: http://pythonpaste.org/deploy/
 Author: Alex Gronholm
@@ -17,10 +17,9 @@
 
 For the latest changes see the `news file
 http://pythonpaste.org/deploy/news.html`_.
-
 Keywords: web wsgi application server
 Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
+Classifier: Development Status :: 6 - Mature
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Programming Language :: Python
@@ -30,6 +29,7 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.1
 Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
 Classifier: Topic :: Internet :: WWW/HTTP
 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PasteDeploy-1.5.0/PasteDeploy.egg-info/PKG-INFO 
new/PasteDeploy-1.5.2/PasteDeploy.egg-info/PKG-INFO
--- old/PasteDeploy-1.5.0/PasteDeploy.egg-info/PKG-INFO 2011-05-24 
22:52:38.0 +0200
+++ new/PasteDeploy-1.5.2/PasteDeploy.egg-info/PKG-INFO 2013-12-27 
18:40:45.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: PasteDeploy
-Version: 1.5.0
+Version: 1.5.2
 Summary: Load, configure, and compose WSGI applications and servers
 Home-page: http://pythonpaste.org/deploy/
 Author: Alex Gronholm
@@ -17,10 +17,9 @@
 
 For the latest changes see the `news file
 http://pythonpaste.org/deploy/news.html`_.
-
 Keywords: web wsgi application server
 Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
+Classifier: Development Status :: 6 - Mature
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Programming Language :: Python
@@ -30,6 +29,7 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.1
 Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
 Classifier: Topic :: Internet :: WWW/HTTP
 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PasteDeploy-1.5.0/PasteDeploy.egg-info/SOURCES.txt 
new/PasteDeploy-1.5.2/PasteDeploy.egg-info/SOURCES.txt
--- 

commit youtube-dl for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package youtube-dl for openSUSE:Factory 
checked in at 2015-02-10 20:23:51

Comparing /work/SRC/openSUSE:Factory/youtube-dl (Old)
 and  /work/SRC/openSUSE:Factory/.youtube-dl.new (New)


Package is youtube-dl

Changes:

--- /work/SRC/openSUSE:Factory/youtube-dl/youtube-dl.changes2015-01-24 
22:21:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.youtube-dl.new/youtube-dl.changes   
2015-02-10 20:23:52.0 +0100
@@ -1,0 +2,19 @@
+Mon Feb  9 19:32:38 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to new upstream release 2015.02.09.3:
+  * various fixes
+  * new and updated handlers for Abc7News, Aftenposten,
+AlphaPorno, AppleDailyAnimationNews, AppleDailyRealtimeNews,
+AtresPlayer, ATTTechChannel, audiomack:album, CNNArticle,
+CollegeRama, CtsNews, DctpTv, DRBonanza, EchoMsk, EroProfile,
+Giga, HearThisAt, HellPorno, HistoricFilms, hitbox, Karaoketv,
+LnkGo, n-tv.de, Nerdist, Netzkino, NextMedia,
+NextMediaActionNews, nhl.com:news, : NHL newsnpo.nl:live,
+ntv.ru, OpenFilm, orf:fm4, : radio FM4radiobremen, Rte, RTL2,
+rutube:embed, SRMediathek, StreetVoice, SVTPlay, TeleTask,
+TestTube, tvp.pl:Series, Tweakers, Twitch, vier, vier:videos,
+WebOfStories, WSJ, Xuite, XXXYMovies
+- call 'make clean' to avoid packaging a prebuild binary
+- add pandoc as buildRequires to generate the manpage
+
+---

Old:

  youtube-dl-2015.01.23.4.tar.gz
  youtube-dl-2015.01.23.4.tar.gz.sig

New:

  youtube-dl-2015.02.09.3.tar.gz
  youtube-dl-2015.02.09.3.tar.gz.sig



Other differences:
--
++ youtube-dl.spec ++
--- /var/tmp/diff_new_pack.tauwdM/_old  2015-02-10 20:23:53.0 +0100
+++ /var/tmp/diff_new_pack.tauwdM/_new  2015-02-10 20:23:53.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   youtube-dl
-Version:2015.01.23.4
+Version:2015.02.09.3
 Release:0
 Summary:A tool for downloading from Youtube
 License:SUSE-Public-Domain and CC-BY-SA-3.0
@@ -28,6 +28,7 @@
 Source: http://youtube-dl.org/downloads/%version/%name-%version.tar.gz
 Source2:
http://youtube-dl.org/downloads/%version/%name-%version.tar.gz.sig
 Source3:%name.keyring
+BuildRequires:  pandoc
 BuildRequires:  python-devel
 BuildRequires:  python-xml
 BuildRequires:  zip
@@ -40,6 +41,7 @@
 
 %prep
 %setup -qn %name
+make clean
 
 %build
 perl -i -pe '

++ youtube-dl-2015.01.23.4.tar.gz - youtube-dl-2015.02.09.3.tar.gz ++
 8057 lines of diff (skipped)

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



commit plasma5-openSUSE for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package plasma5-openSUSE for 
openSUSE:Factory checked in at 2015-02-10 20:23:58

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


Package is plasma5-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-openSUSE/plasma5-openSUSE.changes
2015-01-29 13:18:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma5-openSUSE.new/plasma5-openSUSE.changes   
2015-02-10 20:23:59.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  9 21:24:12 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Make sure greeter is only started within KDE sessions, boo#911205
+
+---



Other differences:
--
++ plasma5-openSUSE.spec ++
--- /var/tmp/diff_new_pack.Ao6WN3/_old  2015-02-10 20:24:00.0 +0100
+++ /var/tmp/diff_new_pack.Ao6WN3/_new  2015-02-10 20:24:00.0 +0100
@@ -77,6 +77,7 @@
 
 %prep
 %setup -q -n %{name}
+echo OnlyShowIn=KDE;greeter/SUSEgreeter.desktop
 
 %build
   pushd greeter

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



commit perl-DateTime for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-DateTime for openSUSE:Factory 
checked in at 2015-02-10 20:23:35

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


Package is perl-DateTime

Changes:

--- /work/SRC/openSUSE:Factory/perl-DateTime/perl-DateTime.changes  
2014-09-19 13:56:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DateTime.new/perl-DateTime.changes 
2015-02-10 20:23:36.0 +0100
@@ -1,0 +2,32 @@
+Sat Feb  7 16:23:08 UTC 2015 - co...@suse.com
+
+- updated to 1.18
+ - There will be a new leap second on June 30, 2015.
+ 
+ 
+ 1.17   2015-01-04
+ 
+ - No code changes from the 1.16 release.
+ 
+ 
+ 1.16   2015-01-04 (TRIAL RELEASE)
+ 
+ - Test fix for systems where IVs are 4 bytes long.
+ 
+ 
+ 1.15   2015-01-03 (TRIAL RELEASE)
+ 
+ - Trying this again ... Experimental fix for adding very large numbers of
+   days. Previously, trying to add more than around 2^28 days could cause
+   errors if the result ended up in a leap year. This is being released as a
+   trial release because I'm not sure how this change will behave on a 32-bit
+   Perl. Reported by KMX. RT #97046.
+ 
+ 
+ 1.14   2015-01-03
+ 
+ - Accidentally released 1.13 as a non-TRIAL release. Releasing 1.13 minus the
+   integer change so there's a known-safe stable release on CPAN for people to
+   install.
+ 
+---

Old:

  DateTime-1.12.tar.gz

New:

  DateTime-1.18.tar.gz



Other differences:
--
++ perl-DateTime.spec ++
--- /var/tmp/diff_new_pack.1gDfK1/_old  2015-02-10 20:23:37.0 +0100
+++ /var/tmp/diff_new_pack.1gDfK1/_new  2015-02-10 20:23:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DateTime
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DateTime
-Version:1.12
+Version:1.18
 Release:0
 %define cpan_name DateTime
 Summary:A date and time object for Perl
@@ -76,6 +76,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CREDITS leaptab.txt LICENSE README.md TODO
+%doc Changes cpanfile CREDITS leaptab.txt LICENSE README.md TODO weaver.ini
 
 %changelog

++ DateTime-1.12.tar.gz - DateTime-1.18.tar.gz ++
 6822 lines of diff (skipped)

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



commit rubygem-sprockets-rails for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sprockets-rails for 
openSUSE:Factory checked in at 2015-02-10 20:23:10

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


Package is rubygem-sprockets-rails

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-sprockets-rails/rubygem-sprockets-rails.changes
  2014-11-12 00:22:04.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-sprockets-rails.new/rubygem-sprockets-rails.changes
 2015-02-10 20:23:11.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  9 13:17:58 UTC 2015 - tboer...@suse.com
+
+- Updated to 2.2.4
+  For changelog look at 
https://github.com/rails/sprockets-rails/blob/master/CHANGELOG.md
+
+---

Old:

  sprockets-rails-2.1.3.gem

New:

  sprockets-rails-2.2.4.gem



Other differences:
--
++ rubygem-sprockets-rails.spec ++
--- /var/tmp/diff_new_pack.zgAlxs/_old  2015-02-10 20:23:11.0 +0100
+++ /var/tmp/diff_new_pack.zgAlxs/_new  2015-02-10 20:23:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sprockets-rails
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-sprockets-rails
-Version:2.1.3
+Version:2.2.4
 Release:0
 %define mod_name sprockets-rails
 %define mod_full_name %{mod_name}-%{version}

++ sprockets-rails-2.1.3.gem - sprockets-rails-2.2.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/LICENSE new/LICENSE
--- old/LICENSE 2014-04-11 22:07:18.0 +0200
+++ new/LICENSE 2015-01-22 20:04:24.0 +0100
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2014 Joshua Peek
+Copyright (c) 2014 Joshua Peek
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2014-04-11 22:07:18.0 +0200
+++ new/README.md   2015-01-22 20:04:24.0 +0100
@@ -51,7 +51,7 @@
 
 Each asset task will invoke `assets:environment` first. By default this loads 
the Rails environment. You can override this task to add or remove dependencies 
for your specific compilation environment.
 
-Also see 
[Sprockets::Rails::Task](https://github.com/josh/sprockets-rails/blob/master/lib/sprockets/rails/task.rb)
 and 
[Rake::SprocketsTask](https://github.com/sstephenson/sprockets/blob/master/lib/rake/sprocketstask.rb).
+Also see 
[Sprockets::Rails::Task](https://github.com/rails/sprockets-rails/blob/master/lib/sprockets/rails/task.rb)
 and 
[Rake::SprocketsTask](https://github.com/sstephenson/sprockets/blob/master/lib/rake/sprocketstask.rb).
 
 
 ### Initializer options
@@ -85,7 +85,7 @@
 
 **`config.assets.manifest`**
 
-Defines the full path to be used for the asset precompiler's manifest file. 
Defaults to using the `config.assets.prefix` directory within the public folder.
+Defines the full path to be used for the asset precompiler's manifest file. 
Defaults to a randomly-generated filename in the `config.assets.prefix` 
directory within the public folder.
 
 **`config.assets.digest`**
 
@@ -134,6 +134,7 @@
 * Unmanaged asset paths and urls fallback to linking to public/. This should 
make it easier to work with both compiled assets and simple static assets. As a 
side effect, there will never be any asset not precompiled errors when 
linking to missing assets. They will just link to a public file which may or 
may not exist.
 * JS and CSS compressors must be explicitly set. Magic detection has been 
removed to avoid loading compressors in environments where you want to avoid 
loading any of the asset libraries. Assign `config.assets.js_compressor = 
:uglify` or `config.assets.css_compressor = :sass` for the standard compressors.
 * The manifest file is now in a JSON format. Since it lives in public/ by 
default, the initial filename is also randomized to obfuscate public access to 
the resource.
+* `config.assets.manifest` (if used) must now include the manifest filename, 
e.g. `Rails.root.join('config/manifest.json')`. It cannot be a directory.
 * Two cleanup tasks. `rake assets:clean` is now a safe cleanup that only 
removes older assets that are no longer used. While `rake assets:clobber` nukes 
the entire `public/assets` 

commit perl-Digest-CRC for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Digest-CRC for openSUSE:Factory 
checked in at 2015-02-10 20:23:06

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


Package is perl-Digest-CRC

Changes:

--- /work/SRC/openSUSE:Factory/perl-Digest-CRC/perl-Digest-CRC.changes  
2012-02-16 14:59:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Digest-CRC.new/perl-Digest-CRC.changes 
2015-02-10 20:23:07.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  9 09:16:47 UTC 2015 - opens...@dstoecker.de
+
+- update to version 0.20 bug-fix release
+
+---

Old:

  Digest-CRC-0.18.tar.gz

New:

  Digest-CRC-0.20.tar.gz



Other differences:
--
++ perl-Digest-CRC.spec ++
--- /var/tmp/diff_new_pack.Ml1RZv/_old  2015-02-10 20:23:08.0 +0100
+++ /var/tmp/diff_new_pack.Ml1RZv/_new  2015-02-10 20:23:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Digest-CRC
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -16,16 +16,14 @@
 #
 
 
-
 Name:   perl-Digest-CRC
-Version:0.18
-Release:1
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:SUSE-Public-Domain
+Version:0.20
+Release:0
 Url:http://search.cpan.org/dist/Digest-CRC/
 Summary:Generic CRC functions for Perl
-Source: Digest-CRC-%{version}.tar.gz
+License:SUSE-Public-Domain
+Group:  Development/Libraries/Perl
+Source: 
http://search.cpan.org/CPAN/authors/id/O/OL/OLIMAUL/Digest-CRC-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 BuildRequires:  perl

++ Digest-CRC-0.18.tar.gz - Digest-CRC-0.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/Build.PL new/Digest-CRC-0.20/Build.PL
--- old/Digest-CRC-0.18/Build.PL2006-07-09 19:07:44.0 +0200
+++ new/Digest-CRC-0.20/Build.PL1970-01-01 01:00:00.0 +0100
@@ -1,8 +0,0 @@
-use Module::Build;
-my $build = Module::Build-new
-   (
-  module_name = 'Digest::CRC',
- license = 'perl',
- PL_FILES = {},
-);
-$build-create_build_script;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/Changes new/Digest-CRC-0.20/Changes
--- old/Digest-CRC-0.18/Changes 2011-11-12 23:19:55.0 +0100
+++ new/Digest-CRC-0.20/Changes 2015-02-08 17:58:39.0 +0100
@@ -58,3 +58,10 @@
 - added convenience wrappers for 'cont', #70672
 - fixed few issues in xs code, #70674
 - added openpgparmor support, #72387
+
+0.19  Sun Feb  8 11:30:09 2015
+- fixed issue with OO crc64, #101999
+- remove Build.PL as it seems to have some issues with the XS support
+
+0.20  Sun Feb  8 16:45:13 2015
+  - removed debug code
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/MANIFEST new/Digest-CRC-0.20/MANIFEST
--- old/Digest-CRC-0.18/MANIFEST2006-07-09 19:07:44.0 +0200
+++ new/Digest-CRC-0.20/MANIFEST2015-02-08 17:26:55.0 +0100
@@ -1,6 +1,5 @@
-Build.PL
-CRC.xs
 Changes
+CRC.xs
 MANIFEST
 META.yml
 Makefile.PL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/META.yml new/Digest-CRC-0.20/META.yml
--- old/Digest-CRC-0.18/META.yml2007-10-31 20:33:28.0 +0100
+++ new/Digest-CRC-0.20/META.yml2015-02-08 17:58:49.0 +0100
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXX This is a prototype!!!  It will change in the future!!! X#
 name: Digest-CRC
-version:  0.11
+version:  0.20
 version_from: lib/Digest/CRC.pm
 installdirs:  site
 requires:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/README new/Digest-CRC-0.20/README
--- old/Digest-CRC-0.18/README  2011-11-12 23:08:26.0 +0100
+++ new/Digest-CRC-0.20/README  2015-02-08 12:20:49.0 +0100
@@ -1,4 +1,4 @@
-Digest::CRC version 0.18
+Digest::CRC version 0.19
 
 
 NAME
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-CRC-0.18/lib/Digest/CRC.pm 
new/Digest-CRC-0.20/lib/Digest/CRC.pm
--- 

commit konkretcmpi for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package konkretcmpi for openSUSE:Factory 
checked in at 2015-02-10 20:23:29

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


Package is konkretcmpi

Changes:

--- /work/SRC/openSUSE:Factory/konkretcmpi/konkretcmpi.changes  2014-05-02 
13:58:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.konkretcmpi.new/konkretcmpi.changes 
2015-02-10 20:23:30.0 +0100
@@ -1,0 +2,14 @@
+Mon Feb  9 16:57:04 UTC 2015 - kkae...@suse.com
+
+- add upstream patch
+  konkretcmpi-0.9.2-fix-returning-instance-from-method.patch
+- fix konkretmof.so name (SUSE cmake bug)
+- fix konkretcmpi-python file path
+- apply sle10.patch on SLE10 only
+
+---
+Mon Feb  2 10:58:11 UTC 2015 - kkae...@suse.com
+
+- fix rhel6 build
+
+---

New:

  konkretcmpi-0.9.2-fix-returning-instance-from-method.patch



Other differences:
--
++ konkretcmpi.spec ++
--- /var/tmp/diff_new_pack.1Fay8z/_old  2015-02-10 20:23:31.0 +0100
+++ /var/tmp/diff_new_pack.1Fay8z/_new  2015-02-10 20:23:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package konkretcmpi
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -46,6 +46,8 @@
 # Fix for cim-schema 2.40.0 compatiblity
 # See https://github.com/rnovacek/konkretcmpi/issues/3
 Patch2: 0001-Honor-that-string-properties-with-EmbeddedInstance-q.patch
+# PATCH-FIX-UPSTREAM
+Patch3: konkretcmpi-0.9.2-fix-returning-instance-from-method.patch
 
 %description
 An open-source tool for rapidly developing CMPI providers in the C
@@ -57,8 +59,8 @@
 %package -n %{libsoname}
 Summary:Shared library of konkretcmpi
 Group:  System/Libraries
-Provides:   %{name} = %{version}
-Obsoletes:  %{name} = %{version}
+Provides:   %{name} = %{version}
+Obsoletes:  %{name}  %{version}
 
 %description -n %{libsoname}
 This package contains the shared libkonkrekcmpi library.
@@ -96,10 +98,11 @@
 %prep
 # Untar the sources.
 %setup -n konkretcmpi-%{version}
-%if 0%{?suse_version}  0%{?suse_version}  1120
+%if 0%{?suse_version}  0  0%{?suse_version}  1020
 %patch1 -p1
 %endif
 %patch2 -p1
+%patch3 -p1
 
 %build
 rm -rf build
@@ -123,6 +126,10 @@
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install/fast -C build
+# Argh, Fedora cmake and SUSE cmake differ :-/
+%if 0%{?suse_version}
+mv %{buildroot}%{python_sitearch}/__konkretmof.so 
%{buildroot}%{python_sitearch}/_konkretmof.so
+%endif
 # Don't package .la object
 rm -rf $RPM_BUILD_ROOT/usr/lib*/libkonkret.la
 
@@ -152,6 +159,10 @@
 %files python
 %defattr(-,root,root)
 %{python_sitearch}/*.so
+%if 0%{?suse_version}  0  0%{?suse_version}  1020
+%{python_sitelib}/*.py*
+%else
 %{python_sitearch}/*.py*
+%endif
 
 %changelog

++ konkretcmpi-0.9.2-fix-returning-instance-from-method.patch ++
commit aca6c7f910ffe9930b5789969f0adfadd668bb46
Author: Michal Minar mimi...@redhat.com
Date:   Fri Jun 20 10:50:45 2014 +0200

Fix returning instance as an output argument from method

Submitted By: Radek Novacek rnova...@redhat.com

diff --git a/src/program/main.cpp b/src/program/main.cpp
index 885dc12..9e7108a 100644
--- a/src/program/main.cpp
+++ b/src/program/main.cpp
@@ -506,7 +506,11 @@ static void gen_feature_decls(
 
 // Add sig entry [type][length][name][zero-terminator]
 
-KTag tag = _ktag(pd-data_type, pd-array_index, key, false, 
false);
+KTag tag;
+if (pd-qualifiers-has_key(EmbeddedInstance))
+tag = _ktag(TOK_INSTANCE, pd-array_index, key, false, false);
+else
+tag = _ktag(pd-data_type, pd-array_index, key, false, false);
 pack_tag(sig, tag);
 pack_name(sig, pd-name);
 count++;
@@ -640,6 +644,7 @@ static void gen_param(FILE* os, MOF_Parameter* p, 
vectorunsigned char sig)
 const char* ktn = _ktype_name(p-data_type);
 
 if (p-qualifiers-has_key(EmbeddedInstance)) {
+tag = _ktag(TOK_INSTANCE, p-array_index, false, in, out);
 if (p-array_index)
 put(os, KInstanceA $0;\n, p-name, NULL);
 else
++ sle10.patch ++
--- /var/tmp/diff_new_pack.1Fay8z/_old  2015-02-10 20:23:31.0 +0100
+++ /var/tmp/diff_new_pack.1Fay8z/_new  2015-02-10 20:23:31.0 +0100
@@ -10,7 +10,7 @@
 

commit rubygem-json_pure for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-json_pure for 
openSUSE:Factory checked in at 2015-02-10 20:22:56

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


Package is rubygem-json_pure

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json_pure/rubygem-json_pure.changes  
2014-10-05 20:33:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-json_pure.new/rubygem-json_pure.changes 
2015-02-10 20:22:58.0 +0100
@@ -1,0 +2,13 @@
+Sat Feb  7 07:21:17 UTC 2015 - co...@suse.com
+
+- updated to version 1.8.2
+   * Some performance improvements by Vipul A M vipulnsw...@gmail.com.
+   * Fix by Jason R. Clark jcl...@newrelic.com to avoid mutation of
+ JSON.dump_default_options.
+   * More tests by Michael Mac-Vicar mmacvi...@gmail.com and fixing
+ space_before accessor in generator.
+   * Performance on Jruby improvemed by Ben Browning bbrow...@redhat.com.
+   * Some fixes to be compatible with the new Ruby 2.2 by Zachary Scott 
e...@zzak.io
+ and SHIBATA Hiroshi h...@ruby-lang.org.
+
+---

Old:

  json_pure-1.8.1.gem

New:

  json_pure-1.8.2.gem



Other differences:
--
++ rubygem-json_pure.spec ++
--- /var/tmp/diff_new_pack.r3j4ce/_old  2015-02-10 20:22:59.0 +0100
+++ /var/tmp/diff_new_pack.r3j4ce/_new  2015-02-10 20:22:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-json_pure
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -14,6 +14,8 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 #
 # This file was generated with a gem2rpm.yml and not just plain gem2rpm.
 # All sections marked as MANUAL, license headers, summaries and descriptions
@@ -22,15 +24,15 @@
 #
 
 Name:   rubygem-json_pure
-Version:1.8.1
+Version:1.8.2
 Release:0
 %define mod_name json_pure
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc  3.10}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros = 5
 Url:http://flori.github.com/json
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:   gem2rpm.yml

++ json_pure-1.8.1.gem - json_pure-1.8.2.gem ++
 1711 lines of diff (skipped)

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



commit python3-Bottleneck for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python3-Bottleneck for 
openSUSE:Factory checked in at 2015-02-10 20:23:23

Comparing /work/SRC/openSUSE:Factory/python3-Bottleneck (Old)
 and  /work/SRC/openSUSE:Factory/.python3-Bottleneck.new (New)


Package is python3-Bottleneck

Changes:

--- /work/SRC/openSUSE:Factory/python3-Bottleneck/python3-Bottleneck.changes
2014-07-17 17:31:39.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-Bottleneck.new/python3-Bottleneck.changes   
2015-02-10 20:23:24.0 +0100
@@ -1,0 +2,50 @@
+Mon Feb  9 06:21:29 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * removed modname variable
+
+- update to version 1.0.0:
+  * Faster
++ “python setup.py build” is 18.7 times faster
++ Function-call overhead cut in half—a big speed up for small
+  input arrays
++ Arbitrary ndim input arrays accelerated; previously only 1d, 2d,
+  and 3d
++ bn.nanrankdata is twice as fast for float input arrays
++ bn.move_max, bn.move_min are faster for int input arrays
++ No speed penalty for reducing along all axes when input is
+  Fortran ordered
+  * Smaller
++ Compiled binaries 14.1 times smaller
++ Source tarball 4.7 times smaller
++ 9.8 times less C code
++ 4.3 times less Cython code
++ 3.7 times less Python code
+  * Beware
++ Requires numpy 1.9.1
++ Single API, e.g.: bn.nansum instead of bn.nansum and
+  nansum_2d_float64_axis0
++ On 64-bit systems bn.nansum(int32) returns int32 instead of
+  int64
++ bn.nansum now returns 0 for all NaN slices (as does numpy 1.9.1)
++ Reducing over all axes returns, e.g., 6.0; previously
+  np.float64(6.0)
++ bn.ss() now has default axis=None instead of axis=0
++ bn.nn() is no longer in bottleneck
+  * min_count
++ Previous releases had moving window function pairs: move_sum,
+  move_nansum
++ This release only has half of the pairs: move_sum
++ Instead a new input parameter, min_count, has been added
++ min_count=None same as old move_sum; min_count=1 same as old
+  move_nansum
++ If # non-NaN values in window  min_count, then NaN assigned to
+  the window
++ Exception: move_median does not take min_count as input
+  * Bug Fixes
++ Can now install bottleneck with pip even if numpy is not already
+  installed
++ bn.move_max, bn.move_min now return float32 for float32 input
+
+---

Old:

  Bottleneck-0.8.0.tar.gz

New:

  Bottleneck-1.0.0.tar.gz



Other differences:
--
++ python3-Bottleneck.spec ++
--- /var/tmp/diff_new_pack.1T9Plf/_old  2015-02-10 20:23:25.0 +0100
+++ /var/tmp/diff_new_pack.1T9Plf/_new  2015-02-10 20:23:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-Bottleneck
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,26 +16,25 @@
 #
 
 
-%define modname Bottleneck
-Name:   python3-%{modname}
-Version:0.8.0
+Name:   python3-Bottleneck
+Version:1.0.0
 Release:0
 Summary:A collection of fast NumPy array functions
 License:BSD-2-Clause and BSD-3-Clause
 Group:  Development/Libraries/Python
 Url:http://berkeleyanalytics.com/bottleneck/
-Source0:
http://pypi.python.org/packages/source/B/Bottleneck/%{modname}-%{version}.tar.gz
+Source0:
http://pypi.python.org/packages/source/B/Bottleneck/Bottleneck-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python3-devel
-BuildRequires:  python3-numpy-devel = 1.8
+BuildRequires:  python3-numpy-devel = 1.9.1
 BuildRequires:  python3-setuptools
-Requires:   python3-numpy = 1.8
+Requires:   python3-numpy = 1.9.1
 
 %description
 Bottleneck is a collection of fast NumPy array functions written in Cython.
 
 %prep
-%setup -q -n %{modname}-%{version}
+%setup -q -n Bottleneck-%{version}
 
 %build
 CFLAGS=%{optflags} -fno-strict-aliasing python3 setup.py build
@@ -47,6 +46,6 @@
 %defattr(-,root,root)
 %doc README.rst RELEASE.rst LICENSE
 %{python3_sitearch}/bottleneck/
-%{python3_sitearch}/%{modname}-%{version}-py*.egg-info
+%{python3_sitearch}/Bottleneck-%{version}-py*.egg-info
 
 %changelog

++ Bottleneck-0.8.0.tar.gz - Bottleneck-1.0.0.tar.gz ++
 703886 lines of diff (skipped)

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

commit perl-SQL-Translator for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-SQL-Translator for 
openSUSE:Factory checked in at 2015-02-10 20:23:49

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


Package is perl-SQL-Translator

Changes:

--- /work/SRC/openSUSE:Factory/perl-SQL-Translator/perl-SQL-Translator.changes  
2014-12-03 22:48:43.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-SQL-Translator.new/perl-SQL-Translator.changes 
2015-02-10 20:23:50.0 +0100
@@ -1,0 +2,22 @@
+Sat Feb  7 16:23:26 UTC 2015 - co...@suse.com
+
+- updated to 0.11021
+  * Fix Oracle producer generating an unnecessary / at the end in case there
+are no triggers
+  * Skip HTML tests if CGI is not installed (RT#98027)
+  * Fix JSON and YAML tests if the defaults have been tweaked (RT#98824)
+  * Fixes for parsing and producing identifiers and values that need
+quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
+Oracle (RT#90700, RT#31034)
+  * Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
+  * Add trigger support to Oracle parser (RT#62927)
+  * Fix erroneous PostgreSQL floating point type translations (RT#99725)
+  * Remove executable bit from Parser/JSON.pm (RT#100532)
+  * Update the Free Software Foundation's address (RT#100531)
+  * Provide default index names for SQLite (GH#45)
+  * Fix SQLite diffing on perl 5.8.1
+  * Fix multi-column indexes in Parser::DBI::PostgreSQL
+  * Fix array data types in Parser::PostgreSQL (GH#49)
+  * Fix multidimensional sizes in Parser::PostgreSQL
+
+---

Old:

  SQL-Translator-0.11020.tar.gz

New:

  SQL-Translator-0.11021.tar.gz



Other differences:
--
++ perl-SQL-Translator.spec ++
--- /var/tmp/diff_new_pack.5OrT2c/_old  2015-02-10 20:23:50.0 +0100
+++ /var/tmp/diff_new_pack.5OrT2c/_new  2015-02-10 20:23:51.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-SQL-Translator
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-SQL-Translator
-Version:0.11020
+Version:0.11021
 Release:0
 %define cpan_name SQL-Translator
 Summary:Manipulate structured data definitions (SQL and more)

++ SQL-Translator-0.11020.tar.gz - SQL-Translator-0.11021.tar.gz ++
 3744 lines of diff (skipped)

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



commit happy for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package happy for openSUSE:Factory checked 
in at 2015-02-10 20:23:45

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


Package is happy

Changes:

--- /work/SRC/openSUSE:Factory/happy/happy.changes  2014-11-26 
20:55:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.happy.new/happy.changes 2015-02-10 
20:23:46.0 +0100
@@ -1,0 +2,36 @@
+Mon Feb  2 19:11:21 UTC 2015 - peter.tromm...@ohm-hochschule.de
+
+- downgrade to 1.19.4
+* strict version requirement by Haskell Platform 
+
+---
+Mon Feb  2 12:02:42 UTC 2015 - mimi...@gmail.com
+
+- change line endings from dos to unix in examples
+
+---
+Sun Jan 18 20:18:58 UTC 2015 - mimi...@gmail.com
+
+- update to 1.19.5
+- remove rpmlintrc
+* fixes for GHC 7.10
+* Code cleanups (thanks Index Int vlad.z.4...@gmail.com) 
+
+---
+Mon Nov 24 08:29:34 UTC 2014 - mimi...@gmail.com
+
+- change licence to BSD-2-Clause 
+
+---
+Sun Nov 23 19:02:58 UTC 2014 - mimi...@gmail.com
+
+- typo in Summary
+
+---
+Sun Nov 23 18:20:06 UTC 2014 - mimi...@gmail.com
+
+- add tests
+- suppres warnings with rpmlintrc
+- spec file cleanup with cabal-rpm and spec-cleaner
+
+---



Other differences:
--
++ happy.spec ++
--- /var/tmp/diff_new_pack.lb6Z3q/_old  2015-02-10 20:23:47.0 +0100
+++ /var/tmp/diff_new_pack.lb6Z3q/_new  2015-02-10 20:23:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package happy
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -16,12 +16,17 @@
 #
 
 
+# no useful debuginfo for Haskell packages without C sources
+%global debug_package %{nil}
+%bcond_without tests
 Name:   happy
 Version:1.19.4
 Release:0
-# BEGIN cabal2spec
+Summary:The LALR(1) Parser Generator for Haskell
+License:BSD-2-Clause
+Group:  Development/Languages/Other
 Url:http://hackage.haskell.org/package/%{name}
-Source0:
http://hackage.haskell.org/packages/archive/%{name}/%{version}/%{name}-%{version}.tar.gz
+Source0:
http://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  docbook-dtd
 BuildRequires:  docbook-xsl-stylesheets
@@ -33,41 +38,35 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  libxml2
 BuildRequires:  libxslt
-# END cabal2spec
-
-Summary:The LALR(1) Parser Generator for Haskell
-License:BSD-2-Clause
-Group:  Development/Languages/Other
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with tests}
+BuildRequires:  ghc-process-devel
+%endif
 
 %description
-Parser generator system for Haskell, similar to the tool
-`yacc' for C. Like `yacc', it takes a file containing an annotated BNF
-specification of a grammar and produces a Haskell module containing a
-parser for the grammar.
-
-Happy is flexible: you can have several Happy parsers in the same
-program, and several entry points to a single grammar. Happy can work
-in conjunction with a lexical analyser supplied by the user (either
-hand-written or generated by another program), or it can parse a
-stream of characters directly (but this isn't practical in most
-cases).
+Happy is a parser generator for Haskell. Given a grammar specification in BNF,
+Happy generates Haskell code to parse the grammar. Happy works in a similar way
+to the 'yacc' tool for C.
 
 %prep
 %setup -q
+find  ./examples/glr/ -type f -exec sed -i 's/\r//' {} +
 
 %build
-%ghc_bin_build
+%{ghc_bin_build}
 cd doc
-test -f configure || autoreconf
-./configure
-make html
+autoreconf
+%configure
+make %{?_smp_mflags} html
+
+%check
+%if %{with tests}
+%{cabal} test
+%endif
 
 %install
-%ghc_bin_install
-mkdir -p %{buildroot}/%{_mandir}/man1
-cp doc/%{name}.1 %{buildroot}/%{_mandir}/man1
+%{ghc_bin_install}
+install -D --mode=444 doc/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
 
 %files
 %defattr(-,root,root)

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



commit perl-Test-Differences for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Differences for 
openSUSE:Factory checked in at 2015-02-10 20:23:40

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


Package is perl-Test-Differences

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Test-Differences/perl-Test-Differences.changes  
2014-09-17 17:25:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Differences.new/perl-Test-Differences.changes
 2015-02-10 20:23:40.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb  7 16:23:02 UTC 2015 - co...@suse.com
+
+- updated to 0.63
+- Minor doco-fixes
+- Remove use of flatten, always use Data::Dumper for saner, more readable
+  output, fixes RT #95446 (David Precious (bigpresh))
+
+---

Old:

  Test-Differences-0.62.tar.gz

New:

  Test-Differences-0.63.tar.gz



Other differences:
--
++ perl-Test-Differences.spec ++
--- /var/tmp/diff_new_pack.0nJtqX/_old  2015-02-10 20:23:41.0 +0100
+++ /var/tmp/diff_new_pack.0nJtqX/_new  2015-02-10 20:23:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Differences
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Test-Differences
-Version:0.62
+Version:0.63
 Release:0
 %define cpan_name Test-Differences
 Summary:Test strings and data structures and show differences if not ok

++ Test-Differences-0.62.tar.gz - Test-Differences-0.63.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Differences-0.62/Changes 
new/Test-Differences-0.63/Changes
--- old/Test-Differences-0.62/Changes   2014-06-25 18:44:06.0 +0200
+++ new/Test-Differences-0.63/Changes   2014-11-20 22:43:47.0 +0100
@@ -1,5 +1,10 @@
 Changes file for Test::Differences
 
+0.63 Thu November 20, 2014
+- Minor doco-fixes
+- Remove use of flatten, always use Data::Dumper for saner, more readable
+  output, fixes RT #95446 (David Precious (bigpresh))
+
 0.62 Wed June 25, 2014
 - Production release
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Differences-0.62/MANIFEST 
new/Test-Differences-0.63/MANIFEST
--- old/Test-Differences-0.62/MANIFEST  2014-06-25 18:50:12.0 +0200
+++ new/Test-Differences-0.63/MANIFEST  2014-11-20 22:48:37.0 +0100
@@ -5,7 +5,6 @@
 MANIFEST
 README
 t/00-load.t
-t/flatten.t
 t/text_vs_data.t
 t/pass.t
 t/struct.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Differences-0.62/META.json 
new/Test-Differences-0.63/META.json
--- old/Test-Differences-0.62/META.json 2014-06-25 18:50:12.0 +0200
+++ new/Test-Differences-0.63/META.json 2014-11-20 22:48:37.0 +0100
@@ -4,7 +4,7 @@
   David Cantrell da...@cantrell.org.uk
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter 
version 2.112150,
+   generated_by : ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter 
version 2.120921,
license : [
   unknown
],
@@ -22,28 +22,24 @@
prereqs : {
   build : {
  requires : {
-ExtUtils::MakeMaker : 0
+ExtUtils::MakeMaker : 0
  }
   },
   configure : {
  requires : {
-ExtUtils::MakeMaker : 0
+ExtUtils::MakeMaker : 0
  }
   },
   runtime : {
  requires : {
 Capture::Tiny : 0.24,
 Data::Dumper : 2.126,
-Test::More : 0,
+Test::More : 0,
 Text::Diff : 0.35
  }
   }
},
release_status : stable,
-   resources : {
-  repository : {
- url : https://github.com/Ovid/Test-Differences;
-  }
-   },
-   version : 0.62
+   resources : {},
+   version : 0.63
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Differences-0.62/META.yml 
new/Test-Differences-0.63/META.yml
--- old/Test-Differences-0.62/META.yml  2014-06-25 18:50:12.0 +0200
+++ new/Test-Differences-0.63/META.yml  2014-11-20 22:48:37.0 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 
2.112150'
+generated_by: 

commit python-Pillow for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package python-Pillow for openSUSE:Factory 
checked in at 2015-02-10 20:23:17

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


Package is python-Pillow

Changes:

--- /work/SRC/openSUSE:Factory/python-Pillow/python-Pillow.changes  
2015-01-08 23:03:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Pillow.new/python-Pillow.changes 
2015-02-10 20:23:18.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 08:25:34 UTC 2015 - h...@urpla.net
+
+- fix test for lossy webp alpha deviation of earlier lib versions
+  * Add Pillow-fixtests.patch 
+
+---

New:

  Pillow-fixtests.patch



Other differences:
--
++ python-Pillow.spec ++
--- /var/tmp/diff_new_pack.gfXeho/_old  2015-02-10 20:23:19.0 +0100
+++ /var/tmp/diff_new_pack.gfXeho/_new  2015-02-10 20:23:19.0 +0100
@@ -24,6 +24,7 @@
 Group:  Development/Languages/Python
 Url:http://python-imaging.github.io/
 Source: 
https://pypi.python.org/packages/source/P/Pillow/Pillow-%{version}.tar.gz
+Patch:  Pillow-fixtests.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  python-tk
@@ -85,6 +86,7 @@
 
 %prep
 %setup -q -n Pillow-%{version}
+%patch -p1
 
 %build
 python setup.py build

++ Pillow-fixtests.patch ++
diff --git a/Tests/test_file_webp_alpha.py b/Tests/test_file_webp_alpha.py
index 22c5c09..f316b71 100644
--- a/Tests/test_file_webp_alpha.py
+++ b/Tests/test_file_webp_alpha.py
@@ -83,7 +83,11 @@ class TestFileWebpAlpha(PillowTestCase):
 image.load()
 image.getdata()
 
-self.assert_image_similar(image, pil_image, 1.0)
+# early versions of webp are known to produce higher deviations: deal 
with it
+if _webp.WebPDecoderVersion(self) = 0x201:
+self.assert_image_similar(image, pil_image, 3.0)
+else:
+self.assert_image_similar(image, pil_image, 1.0)
 
 
 if __name__ == '__main__':
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libevtlog for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libevtlog for openSUSE:Factory 
checked in at 2015-02-10 20:23:19

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


Package is libevtlog

Changes:

--- /work/SRC/openSUSE:Factory/libevtlog/libevtlog.changes  2012-11-13 
09:53:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtlog.new/libevtlog.changes 2015-02-10 
20:23:20.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb  7 14:06:07 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.2.13
+  * Changelog has not been updated
+- Use download Url as source
+- Clean up specfile
+- Install library in /usr/lib because of #UsrMove
+- Remove obsolete AUTHORS and %clean sections
+
+---

Old:

  eventlog_0.2.12.tar.bz2

New:

  eventlog_0.2.13.tar.gz



Other differences:
--
++ libevtlog.spec ++
--- /var/tmp/diff_new_pack.VF4Yud/_old  2015-02-10 20:23:21.0 +0100
+++ /var/tmp/diff_new_pack.VF4Yud/_new  2015-02-10 20:23:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtlog
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,17 +17,14 @@
 
 
 Name:   libevtlog
-Version:0.2.12
+Version:0.2.13
 Release:0
 Summary:Syslog-ng event logger library source
 License:BSD-3-Clause
 Group:  Development/Libraries/C and C++
 Url:http://www.balabit.com/products/syslog_ng/
-#Source0:
http://www.balabit.com/downloads/files/syslog-ng/sources/2.0/src/eventlog-%{version}.tar.gz
-#Source1:
http://www.balabit.com/downloads/files/syslog-ng/sources/2.0/src/eventlog-%{version}.tar.gz.asc
-Source0:eventlog_%{version}.tar.bz2
+Source0:
http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/3.4.4/source/eventlog_%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%define debug_package_requires libevtlog0 = %{version}-%{release}
 BuildRequires:  bison
 BuildRequires:  flex
 BuildRequires:  gcc-c++
@@ -53,13 +50,6 @@
 The official home page of syslog-ng is:
 http://www.balabit.com/network-security/syslog-ng/
 
-
-
-Authors:
-
-Bal�zs Scheidler ba...@balabit.hu
-BalaBit IT Ltd. i...@balabit.hu
-
 %package -n libevtlog0
 Summary:Syslog-ng event logger library runtime
 Group:  Development/Libraries/C and C++
@@ -82,13 +72,6 @@
 The official home page of syslog-ng is:
 http://www.balabit.com/network-security/syslog-ng/
 
-
-
-Authors:
-
-Bal�zs Scheidler ba...@balabit.hu
-BalaBit IT Ltd. i...@balabit.hu
-
 %package devel
 Summary:Syslog-ng event logger library development files
 Group:  Development/Libraries/C and C++
@@ -112,54 +95,19 @@
 The official home page of syslog-ng is:
 http://www.balabit.com/network-security/syslog-ng/
 
-
-
-Authors:
-
-Bal�zs Scheidler ba...@balabit.hu
-BalaBit IT Ltd. i...@balabit.hu
-
 %prep
 %setup -q -n eventlog-%{version}
 
 %build
-##
-## build 
-##
-#
-# - update configure scripts  tools:
-#
-#aclocal --force
-#libtoolize -f
-#automake --foreign --add-missing --copy --force-missing
-#autoheader
-#autoconf
-##
-%configure --libdir=/%{_lib} --disable-static --with-pic
-%{__make} %{?jobs:-j%jobs}
+%configure --disable-static --with-pic
+%{__make} %{?_smp_mflags}
 
 %check
-##
-## check   ##
-##
 make check
 
 %install
-##
-## install ##
-##
-make DESTDIR=${RPM_BUILD_ROOT} install
-rm -vf %{buildroot}/%{_lib}/%{name}.la
-%{__install} -d -m 0755 %{buildroot}%{_libdir}/pkgconfig
-%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/%{name}.so) 
%{buildroot}%{_libdir}/%{name}.so
-%{__rm} -v %{buildroot}/%{_lib}/%{name}.so
-%{__mv} -v %{buildroot}/%{_lib}/pkgconfig/eventlog.pc 
%{buildroot}%{_libdir}/pkgconfig
-
-%clean
-##
-## clean build root #
-##
-rm -rf $RPM_BUILD_ROOT
+make DESTDIR=%{buildroot} install
+rm -vf %{buildroot}/%{_libdir}/%{name}.la
 
 %post -n libevtlog0 -p /sbin/ldconfig
 
@@ -167,7 +115,7 @@
 
 %files -n libevtlog0
 %defattr(-,root,root)
-/%_lib/libevtlog*.so.0*
+%{_libdir}/libevtlog*.so.0*
 
 %files devel
 %defattr(-,root,root)

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

commit rubygem-mysql2 for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mysql2 for openSUSE:Factory 
checked in at 2015-02-10 20:22:20

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


Package is rubygem-mysql2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-mysql2/rubygem-mysql2.changes
2014-10-23 14:20:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-mysql2.new/rubygem-mysql2.changes   
2015-02-10 20:22:22.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  9 06:46:39 UTC 2015 - co...@suse.com
+
+- updated to version 0.3.17, no changelog
+
+---

Old:

  mysql2-0.3.16.gem

New:

  mysql2-0.3.17.gem



Other differences:
--
++ rubygem-mysql2.spec ++
--- /var/tmp/diff_new_pack.thHPEf/_old  2015-02-10 20:22:23.0 +0100
+++ /var/tmp/diff_new_pack.thHPEf/_new  2015-02-10 20:22:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mysql2
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-mysql2
-Version:0.3.16
+Version:0.3.17
 Release:0
 %define mod_name mysql2
 %define mod_full_name %{mod_name}-%{version}

++ mysql2-0.3.16.gem - mysql2-0.3.17.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   1970-01-01 01:00:00.0 +0100
+++ new/README.md   1970-01-01 01:00:00.0 +0100
@@ -1,16 +1,16 @@
-# Mysql2 - A modern, simple and very fast Mysql library for Ruby - binding to 
libmysql
+# Mysql2 - A modern, simple and very fast MySQL library for Ruby - binding to 
libmysql
 
 [![Build 
Status](https://travis-ci.org/brianmario/mysql2.png)](https://travis-ci.org/brianmario/mysql2)
 
 The Mysql2 gem is meant to serve the extremely common use-case of connecting, 
querying and iterating on results.
-Some database libraries out there serve as direct 1:1 mappings of the already 
complex C API's available.
+Some database libraries out there serve as direct 1:1 mappings of the already 
complex C APIs available.
 This one is not.
 
 It also forces the use of UTF-8 [or binary] for the connection [and all 
strings in 1.9, unless Encoding.default_internal is set then it'll convert from 
UTF-8 to that encoding] and uses encoding-aware MySQL API calls where it can.
 
 The API consists of two classes:
 
-`Mysql2::Client` - your connection to the database
+`Mysql2::Client` - your connection to the database.
 
 `Mysql2::Result` - returned from issuing a #query on the connection. It 
includes Enumerable.
 
@@ -26,7 +26,7 @@
 
 * Option `--with-mysql-dir`, if provided (see below).
 * Option `--with-mysql-config`, if provided (see below).
-* Several typical paths for `msyql_config` (default for the majority of users).
+* Several typical paths for `mysql_config` (default for the majority of users).
 * The directory `/usr/local`.
 
 ### Configuration options
@@ -104,7 +104,10 @@
   # conveniently, row is a hash
   # the keys are the fields, as you'd expect
   # the values are pre-built ruby primitives mapped from their corresponding 
field types in MySQL
-  # Here's an otter: 
http://farm1.static.flickr.com/130/398077070_b8795d0ef3_b.jpg
+  puts row[id] # row[id].class == Fixnum
+  if row[dne]  # non-existant hash entry is nil
+puts row[dne]
+  end
 end
 ```
 
@@ -335,7 +338,7 @@
 
 ### Skipping casting
 
-Mysql2 casting is fast, but not as fast as not casting data.  In rare cases 
where typecasting is not needed, it will be faster to disable it by providing 
:cast = false.
+Mysql2 casting is fast, but not as fast as not casting data.  In rare cases 
where typecasting is not needed, it will be faster to disable it by providing 
:cast = false. (Note that :cast = false overrides :cast_booleans = true.)
 
 ``` ruby
 client = Mysql2::Client.new
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/mysql2/client.c new/ext/mysql2/client.c
--- old/ext/mysql2/client.c 1970-01-01 01:00:00.0 +0100
+++ new/ext/mysql2/client.c 1970-01-01 

commit ghc-zip-archive for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package ghc-zip-archive for openSUSE:Factory 
checked in at 2015-02-10 20:22:04

Comparing /work/SRC/openSUSE:Factory/ghc-zip-archive (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-zip-archive.new (New)


Package is ghc-zip-archive

Changes:

--- /work/SRC/openSUSE:Factory/ghc-zip-archive/ghc-zip-archive.changes  
2014-04-02 17:18:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-zip-archive.new/ghc-zip-archive.changes 
2015-02-10 20:22:06.0 +0100
@@ -1,0 +2,36 @@
+Sun Feb  1 08:54:40 UTC 2015 - mplus...@suse.com
+
+- Update to 0.2.3.7:
+  * Declared test suite's dependency on 'zip' using custom Setup.lhs (#21,#22).
+  * Removed hard-coded path to zip in test suite (#21).
+  * Removed misplaced build-depends in cabal file.
+  * Allow compilation with binary = 0.5.  Note that toArchiveOrFail
+is not safe when compiled against binary  0.7; it will never
+return a Left value, and will raise an error if parsing fails,
+just like toArchive.  This is documented in the haddocks.
+This is ugly, but justified by the need to have a version
+of zip-archive that compiles against older versions of binary.
+  * Make sure all path comparisons compare normalized paths.
+So, findEntryByPath foo will find something stored as ./foo
+in the zip container.
+  * Better normalization of file paths:  ./foo/bar and foo/./bar
+are now treated the same, for example.  Note that we do not
+yet treat foo/../bar and bar as the same.
+  * Removed lower bound on directory (= 1.2), which caused build
+failures with GHC 7.4 and 7.6.
+  * Added travis script for automatic testing on 3 GHC versions.
+  * Require binary = 0.7 and directory = 1.2.  The newer binary
+is needed to provide toArchiveOrFail.  The other change is
+mainly for convenience, to avoid lots of ugly conditional
+compilation.
+  * Export new function `toArchiveOrFail`.  Closes #17.
+  * Set general purpose bit flag to use UTF8 in local file header.
+Otherwise we get a mismatch between the flag in the central
+directory and the flag in the local file header, which causes some
+programs not to be able to extract the files.  Closes #19.
+  * Fix a stack overflow in getWordsTillSig (Tristan Ravitch).
+recognize UTF-8 encoded file names (Tobias Brandt).
+  * Added OptLocation, to specify the path to which a file
+is to be added when readEntry is used (Stephen McIntosh).
+
+---

Old:

  zip-archive-0.2.tar.gz

New:

  zip-archive-0.2.3.7.tar.gz



Other differences:
--
++ ghc-zip-archive.spec ++
--- /var/tmp/diff_new_pack.J9FlZf/_old  2015-02-10 20:22:07.0 +0100
+++ /var/tmp/diff_new_pack.J9FlZf/_new  2015-02-10 20:22:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-zip-archive
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name zip-archive
 
 Name:   ghc-zip-archive
-Version:0.2
+Version:0.2.3.7
 Release:0
 Summary:Library for creating and modifying zip archives
 License:BSD-3-Clause

++ zip-archive-0.2.tar.gz - zip-archive-0.2.3.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zip-archive-0.2/README.markdown 
new/zip-archive-0.2.3.7/README.markdown
--- old/zip-archive-0.2/README.markdown 1970-01-01 01:00:00.0 +0100
+++ new/zip-archive-0.2.3.7/README.markdown 2015-01-21 20:09:49.0 
+0100
@@ -0,0 +1,6 @@
+zip-archive
+===
+
+The zip-archive library provides functions for creating, modifying, and
+extracting files from zip archives.
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zip-archive-0.2/Setup.lhs 
new/zip-archive-0.2.3.7/Setup.lhs
--- old/zip-archive-0.2/Setup.lhs   2013-12-10 18:50:20.0 +0100
+++ new/zip-archive-0.2.3.7/Setup.lhs   2015-01-21 20:09:49.0 +0100
@@ -1,3 +1,11 @@
 #!/usr/bin/env runhaskell
+
+ module Main ( main ) where
+
  import Distribution.Simple
- main = defaultMain
+ import Distribution.Simple.Program
+
+ main :: IO ()
+ main = defaultMainWithHooks simpleUserHooks
+{ hookedPrograms = [ simpleProgram zip ]
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zip-archive-0.2/changelog 
new/zip-archive-0.2.3.7/changelog
--- 

commit rubygem-commander for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-commander for 
openSUSE:Factory checked in at 2015-02-10 20:22:06

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


Package is rubygem-commander

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-commander/rubygem-commander.changes  
2014-10-14 07:12:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-commander.new/rubygem-commander.changes 
2015-02-10 20:22:07.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 18:18:13 UTC 2015 - co...@suse.com
+
+- updated to version 4.2.1
+  * Improve `choose` compatibility with HighLine's version (#79)
+
+---

Old:

  commander-4.2.0.gem

New:

  commander-4.2.1.gem



Other differences:
--
++ rubygem-commander.spec ++
--- /var/tmp/diff_new_pack.SAPPAV/_old  2015-02-10 20:22:08.0 +0100
+++ /var/tmp/diff_new_pack.SAPPAV/_new  2015-02-10 20:22:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-commander
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-commander
-Version:4.2.0
+Version:4.2.1
 Release:0
 %define mod_name commander
 %define mod_full_name %{mod_name}-%{version}

++ commander-4.2.0.gem - commander-4.2.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2014-04-30 07:05:19.0 +0200
+++ new/.travis.yml 2014-09-29 07:04:44.0 +0200
@@ -7,4 +7,4 @@
   - 2.1.0
   - jruby-18mode
   - jruby-19mode
-  - rbx
+  - rbx-2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc2014-04-30 07:05:19.0 +0200
+++ new/History.rdoc2014-09-29 07:04:44.0 +0200
@@ -1,3 +1,7 @@
+=== 4.2.1 / 2014-09-28
+
+* Improve `choose` compatibility with HighLine's version (#79)
+
 === 4.2.0 / 2014-04-29
 
 * Add ability to use commander without importing into the global namespace 
(#61) (@krissi)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2014-04-30 07:05:19.0 +0200
+++ new/README.md   2014-09-29 07:04:44.0 +0200
@@ -1,5 +1,5 @@
 [img src=https://secure.travis-ci.org/ggilder/commander.png?branch=master; 
alt=Build Status /](http://travis-ci.org/ggilder/commander)
-[![Inline 
docs](http://inch-pages.github.io/github/visionmedia/commander.png)](http://inch-pages.github.io/github/visionmedia/commander)
+[![Inline 
docs](http://inch-ci.org/github/visionmedia/commander.png)](http://inch-ci.org/github/visionmedia/commander)
 
 # Commander
 
@@ -96,7 +96,15 @@
 program :version, '1.0.0'
 program :description, 'Stupid command that prints foo or bar.'
 
-# see classic style example for options
+command :foo do |c|
+  c.syntax = 'foobar foo'
+  c.description = 'Displays foo'
+  c.action do |args, options|
+say 'foo'
+  end
+end
+
+run!
   end
 end
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/commander/user_interaction.rb 
new/lib/commander/user_interaction.rb
--- old/lib/commander/user_interaction.rb   2014-04-30 07:05:20.0 
+0200
+++ new/lib/commander/user_interaction.rb   2014-09-29 07:04:44.0 
+0200
@@ -40,9 +40,9 @@
 ##
 # Choose from a set array of _choices_.
 
-def choose message, *choices
-  say message
-  super(*choices)
+def choose message = nil, *choices, block
+  say message if message
+  super(*choices, block)
 end
 
 ##
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/commander/version.rb new/lib/commander/version.rb
--- old/lib/commander/version.rb2014-04-30 07:05:20.0 +0200
+++ new/lib/commander/version.rb2014-09-29 07:04:44.0 +0200
@@ -1,3 +1,3 @@
 module Commander
-  VERSION 

commit rubygem-hoe for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hoe for openSUSE:Factory 
checked in at 2015-02-10 20:22:53

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


Package is rubygem-hoe

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes  2014-10-16 
18:16:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new/rubygem-hoe.changes 
2015-02-10 20:22:55.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  7 07:21:17 UTC 2015 - co...@suse.com
+
+- updated to version 3.13.1
+ * 1 bug fix:
+   * Remove deprecated test_files from spec. (igas)
+
+---

Old:

  hoe-3.13.0.gem

New:

  gem2rpm.yml
  hoe-3.13.1.gem



Other differences:
--
++ rubygem-hoe.spec ++
--- /var/tmp/diff_new_pack.FzQ0zS/_old  2015-02-10 20:22:56.0 +0100
+++ /var/tmp/diff_new_pack.FzQ0zS/_new  2015-02-10 20:22:56.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-hoe
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-hoe
-Version:3.13.0
+Version:3.13.1
 Release:0
 %define mod_name hoe
 %define mod_full_name %{mod_name}-%{version}
@@ -29,6 +36,7 @@
 BuildRequires:  update-alternatives
 Url:http://www.zenspider.com/projects/hoe.html
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Hoe is a rake/rubygems helper for project Rakefiles
 License:MIT
 Group:  Development/Languages/Ruby

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
:sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV=no
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name}  rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
# /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
# Requires: util-linux
# Recommends: pwgen
#   :filelist: |-
# /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom:
#   apache:
# :preamble: |-
#   Requires: .
# :filelist: |-
#   /etc/apache2/conf.d/passenger.conf
# :summary: Custom summary is optional
# :description: |-
#   Custom description is optional
#
#   bar
# :post: |-
#   /bin/echo foo
#
++ hoe-3.13.0.gem - hoe-3.13.1.gem ++
 1878 lines of diff (skipped)

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



commit cmpi-pywbem-software for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package cmpi-pywbem-software for 
openSUSE:Factory checked in at 2015-02-10 20:23:03

Comparing /work/SRC/openSUSE:Factory/cmpi-pywbem-software (Old)
 and  /work/SRC/openSUSE:Factory/.cmpi-pywbem-software.new (New)


Package is cmpi-pywbem-software

Changes:

--- 
/work/SRC/openSUSE:Factory/cmpi-pywbem-software/cmpi-pywbem-software.changes
2011-09-23 01:53:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.cmpi-pywbem-software.new/cmpi-pywbem-software.changes
   2015-02-10 20:23:05.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb  2 09:02:12 UTC 2015 - kkae...@suse.com
+
+- fix buildrequires for opensuse  13.1 (python-M2Crypto, python-xml)
+
+---
+Mon Apr  8 11:43:26 UTC 2013 - kkae...@suse.com
+
+- require dbus-1-python and python-gobject2
+
+---



Other differences:
--
++ cmpi-pywbem-software.spec ++
--- /var/tmp/diff_new_pack.zz2INB/_old  2015-02-10 20:23:06.0 +0100
+++ /var/tmp/diff_new_pack.zz2INB/_new  2015-02-10 20:23:06.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package cmpi-pywbem-software (Version 0.1.2)
+# spec file for package cmpi-pywbem-software
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,20 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   cmpi-pywbem-software
 Url:http://en.opensuse.org/Software_Management/CIM
-License:LGPL-2.1+
-Group:  System/Management
-AutoReqProv:on
 Version:0.1.2
-Release:3
+Release:0
 Summary:CIM provider for packagekit
+License:LGPL-2.1+
+Group:  System/Management
 Source0:%{name}-%{version}.tar.gz
-Requires:   python-pywbem cmpi-bindings-pywbem PackageKit sblim-sfcb
-PreReq: cmpi-provider-register
+Requires:   PackageKit
+Requires:   cmpi-bindings-pywbem
+Requires:   dbus-1-python
+Requires:   python-gobject2
+Requires:   python-pywbem
+Requires:   sblim-sfcb
+Requires(pre):  cmpi-provider-register
+%if 0%{?suse_version}  1310
+BuildRequires:  python-M2Crypto
+BuildRequires:  python-xml
+%endif
 BuildRequires:  sblim-sfcb
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define mofdir /usr/share/mof/cmpi-pywbem-software
@@ -38,12 +44,6 @@
 This is a tech preview for a CIM instrumentation for the software
 profiles based on PackageKit.
 
-
-
-Authors:
-
-Stefan Haas sh...@novell.com
-
 %prep
 %setup -n %{name}-%{version}
 
@@ -70,10 +70,10 @@
 
 %files
 %defattr(-,root,root)
-/usr/lib/pycim/pkclient.py
-/usr/lib/pycim/PackageKit_PackageProvider.py
-/usr/lib/pycim/PackageKit_UpdateProvider.py
-/usr/lib/pycim/PackageKit_RepositoryProvider.py
+/usr/lib/pycim/pkclient.py*
+/usr/lib/pycim/PackageKit_PackageProvider.py*
+/usr/lib/pycim/PackageKit_UpdateProvider.py*
+/usr/lib/pycim/PackageKit_RepositoryProvider.py*
 %{mofdir}/PackageKit_Package.mof
 %{mofdir}/PackageKit_PackageProvider.peg.reg
 %{mofdir}/PackageKit_PackageProvider.sfcb.reg

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



commit mkdud for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package mkdud for openSUSE:Factory checked 
in at 2015-02-10 20:23:08

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


Package is mkdud

Changes:

--- /work/SRC/openSUSE:Factory/mkdud/mkdud.changes  2015-01-27 
09:09:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.mkdud.new/mkdud.changes 2015-02-10 
20:23:09.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  9 14:16:09 CET 2015 - snw...@suse.com
+
+- support creating signed driver updates
+- 1.14
+
+---

Old:

  mkdud-1.13.tar.xz

New:

  mkdud-1.14.tar.xz



Other differences:
--
++ mkdud.spec ++
--- /var/tmp/diff_new_pack.4N8q8v/_old  2015-02-10 20:23:10.0 +0100
+++ /var/tmp/diff_new_pack.4N8q8v/_new  2015-02-10 20:23:10.0 +0100
@@ -19,10 +19,11 @@
 
 Name:   mkdud
 BuildRequires:  xz
+Requires:   gpg2
 Summary:Create driver update from rpms
 License:GPL-3.0+
 Group:  Hardware/Other
-Version:1.13
+Version:1.14
 Release:0
 Source: %{name}-%{version}.tar.xz
 Url:https://github.com/wfeldt/mkdud

++ mkdud-1.13.tar.xz - mkdud-1.14.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.13/README new/mkdud-1.14/README
--- old/mkdud-1.13/README   2015-01-26 16:35:56.0 +0100
+++ new/mkdud-1.14/README   2015-02-09 14:13:17.0 +0100
@@ -120,3 +120,14 @@
 boot medium to apply it (literally: 'cat my.dud  initrd'). No need for a
 'dud' boot option in this case.
 
+
+5. Signature
+
+
+When downloading a driver update the installer will verify the integrity of
+the update by checking the (detached) signature.
+
+Note that for sle11 due to a limitation in the installer you can only sign
+an uncompressed update. sle12/openSUSE 13.2 and later don't have this
+limitation.
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.13/VERSION new/mkdud-1.14/VERSION
--- old/mkdud-1.13/VERSION  2015-01-26 16:35:56.0 +0100
+++ new/mkdud-1.14/VERSION  2015-02-09 14:13:17.0 +0100
@@ -1 +1 @@
-1.13
+1.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.13/changelog new/mkdud-1.14/changelog
--- old/mkdud-1.13/changelog2015-01-26 16:35:56.0 +0100
+++ new/mkdud-1.14/changelog2015-02-09 14:13:17.0 +0100
@@ -1,4 +1,7 @@
-2015-01-26:8bc57e17bc620def784a8130c98d349054c6823d-1.13
+2015-02-09:1.14
+   - support creating signed driver updates
+
+2015-01-26:1.13
- fix git2log script
 
 2015-01-26:1.12
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.13/git2log new/mkdud-1.14/git2log
--- old/mkdud-1.13/git2log  2015-01-26 16:35:56.0 +0100
+++ new/mkdud-1.14/git2log  2015-02-09 14:13:17.0 +0100
@@ -64,10 +64,16 @@
 @tags = get_branch_tags;
 die no tags at all?\n unless @tags;
 
-if(!grep { /^$branch\-/ } @tags) {
-  $branch = get_parent_branch;
-  die sorry, can't determine branch\n unless $branch;
+if($branch ne 'master') {
+  if(!grep { /^$branch\-/ } @tags) {
+$branch = get_parent_branch;
+die sorry, can't determine branch\n unless $branch;
 
+@tags = get_branch_tags;
+die no tags at all?\n unless @tags;
+  }
+}
+else {
   @tags = get_branch_tags;
   die no tags at all?\n unless @tags;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.13/mkdud new/mkdud-1.14/mkdud
--- old/mkdud-1.13/mkdud2015-01-26 16:35:56.0 +0100
+++ new/mkdud-1.14/mkdud2015-02-09 14:13:17.0 +0100
@@ -111,7 +111,10 @@
 sub show_single_dir;
 sub get_service_pack;
 sub set_format;
+sub import_sign_key;
+sub sign_file;
 
+my %config;
 my $opt_create;
 my $opt_show;
 my @opt_dist;
@@ -126,6 +129,8 @@
 my @opt_config;
 my @opt_condition;
 my $opt_format;
+my $opt_sign;
+my $opt_sign_key;
 
 # global variables
 my $dud;
@@ -136,6 +141,7 @@
 my $use_all_archs = 0;
 my $format_archive = cpio;
 my $format_compr = gz;
+my $sign_key_dir;
 
 # linuxrc versions in service packs
 my $servicepack;
@@ -161,6 +167,8 @@
   'may-replace-yast' = \$opt_force,
   'no-docs'  = \$opt_no_docs,
   'keep-docs'= sub { $opt_no_docs = 0 },
+  'sign' = \$opt_sign,
+  'sign-key=s'   = \$opt_sign_key,
   'force'= \$opt_force,
   'format=s' = \$opt_format,
   'save-temp'= \$opt_save_temp,
@@ -182,6 +190,21 @@
 
 @opt_arch = map { 

commit fprintd for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package fprintd for openSUSE:Factory checked 
in at 2015-02-10 20:22:01

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


Package is fprintd

Changes:

--- /work/SRC/openSUSE:Factory/fprintd/fprintd.changes  2014-11-14 
09:18:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.fprintd.new/fprintd.changes 2015-02-10 
20:22:04.0 +0100
@@ -1,0 +2,13 @@
+Sun Feb  8 17:07:18 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.6.0:
+  + Fix warning in fprintd.pod file.
+  + Reduce logging during normal operation.
+  + Fix eventfd leak in PAM module.
+  + List possible values for finger when enrolling.
+  + Fix possible crash in fprintd-verify.
+  + Fix listing and deleting fingerprints when there's more than
+one reader available.
+- Drop fprintd.pod-syntax.patch: fixed upstream.
+
+---

Old:

  fprintd-0.5.1.tar.xz
  fprintd.pod-syntax.patch

New:

  fprintd-0.6.0.tar.xz



Other differences:
--
++ fprintd.spec ++
--- /var/tmp/diff_new_pack.zdyEiO/_old  2015-02-10 20:22:06.0 +0100
+++ /var/tmp/diff_new_pack.zdyEiO/_new  2015-02-10 20:22:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fprintd
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   fprintd
-Version:0.5.1
+Version:0.6.0
 Release:0
 Summary:D-Bus service for Fingerprint reader access
 License:GPL-2.0+
@@ -25,8 +25,6 @@
 Url:http://www.reactivated.net/fprint/wiki/Fprintd
 Source0:http://freedesktop.org/~hadess/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM 
http://cgit.freedesktop.org/libfprint/fprintd/patch/?id=7710040ea723def69dde485d6f497fac87f215fa
-Patch0: fprintd.pod-syntax.patch
 BuildRequires:  gtk-doc = 1.3
 BuildRequires:  intltool
 BuildRequires:  pam-devel
@@ -91,7 +89,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure \

++ fprintd-0.5.1.tar.xz - fprintd-0.6.0.tar.xz ++
 3184 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fprintd-0.5.1/NEWS new/fprintd-0.6.0/NEWS
--- old/fprintd-0.5.1/NEWS  2013-08-11 17:58:34.0 +0200
+++ new/fprintd-0.6.0/NEWS  2015-02-03 17:07:15.0 +0100
@@ -1,6 +1,15 @@
 This file lists notable changes in each release. For the full history of all
 changes, see ChangeLog.
 
+version 0.6.0:
+- Fix warning in fprintd.pod file
+- Reduce logging during normal operation
+- Fix eventfd leak in PAM module
+- List possible values for finger when enrolling
+- Fix possible crash in fprintd-verify
+- Fix listing and deleting fingerprints when there's more than
+  one reader available
+
 version 0.5.1:
 - Add max_tries and timeout arguments to PAM module
 - Add ability to require the fingerprint for enrolled users
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fprintd-0.5.1/README new/fprintd-0.6.0/README
--- old/fprintd-0.5.1/README2013-06-26 13:09:41.0 +0200
+++ new/fprintd-0.6.0/README2013-09-30 09:43:41.0 +0200
@@ -4,14 +4,13 @@
 http://www.reactivated.net/fprint/wiki/Fprintd
 
 Daemon to offer libfprint functionality over D-Bus
-Currently in early stages. Might eat your kangaroo.
+Might eat your kangaroo.
 
-Written in C. Requires bleeding edge libfprint (libusb-1.0 port).
+Written in C.
 
 Licensed under the GPL version 2 or any later version (see COPYING).
 
-An experimental PAM login module is included in the 'pam' directory.
-This will be moved to a separate package once the system has matured.
+A PAM login module is included in the 'pam' directory.
 
 API use cases
 =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess 

commit perl-Task-Kensho-Dates for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-Dates for 
openSUSE:Factory checked in at 2015-02-10 20:22:47

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


Package is perl-Task-Kensho-Dates

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-Dates/perl-Task-Kensho-Dates.changes
2014-02-24 15:51:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-Dates.new/perl-Task-Kensho-Dates.changes
   2015-02-10 20:22:49.0 +0100
@@ -1,0 +2,23 @@
+Sat Feb  7 07:21:42 UTC 2015 - co...@suse.com
+
+- updated to 0.38
+   - WebDev: Template::Toolkit is not indexed (see RT#92588) -
+ refer to Template instead
+   - subtask distributions now just use regular prereqs on their
+ component modules, rather than using optional_features metadata
+   - Task-Kensho now once again prompts at install time for each
+ subtask to be optionally installed
+
+ 0.37  2014-08-16
+   - ModuleDev: Switch Carp::Always over to Devel::Confess (per mst)
+   - ModuleDev: Add Data::Printer (per Sawyer X)
+   - ModuleDev: Add Devel::Dwarn (per mst)
+   - Toolchain: Add Pinto (per Sawyer X)
+   - Toolchain: Add App::FatPacker (per perigrin)
+ 
+ 0.36  2014-03-08
+   - fix pod markup error in main Task::Kensho distribution
+   - module list revisions to CLI, Dates, Toolchain, WebCrawling,
+ WebDev
+
+---

Old:

  Task-Kensho-Dates-0.35.tar.gz

New:

  Task-Kensho-Dates-0.38.tar.gz



Other differences:
--
++ perl-Task-Kensho-Dates.spec ++
--- /var/tmp/diff_new_pack.jetqwo/_old  2015-02-10 20:22:50.0 +0100
+++ /var/tmp/diff_new_pack.jetqwo/_new  2015-02-10 20:22:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Task-Kensho-Dates
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Task-Kensho-Dates
-Version:0.35
+Version:0.38
 Release:0
 %define cpan_name Task-Kensho-Dates
 Summary:A Glimpse at an Enlightened Perl: Date Modules
@@ -32,13 +32,12 @@
 BuildRequires:  perl(Date::Tiny)
 BuildRequires:  perl(DateTime)
 BuildRequires:  perl(DateTime::Tiny)
-BuildRequires:  perl(Module::Build::Tiny) = 0.034
+BuildRequires:  perl(Module::Build::Tiny) = 0.038
 BuildRequires:  perl(Time::ParseDate)
 BuildRequires:  perl(Time::Tiny)
-BuildRequires:  perl(version)
+Recommends: perl(Date::Tiny)
 Recommends: perl(DateTime)
 Recommends: perl(DateTime::Tiny)
-Recommends: perl(Date::Tiny)
 Recommends: perl(Time::ParseDate)
 Recommends: perl(Time::Tiny)
 %{perl_requires}
@@ -51,10 +50,9 @@
 meaning seeing one's nature[1] or true self.[2] It generally
 refers to the realization of nonduality of subject and object.[3]
 
-the Task::Kensho manpage is a first cut at building a list of recommended
-modules for Enlightened Perl development. CPAN is wonderful, but there are
-too many wheels and you have to pick and choose amongst the various
-competing technologies.
+the Task::Kensho manpage is a list of recommended modules for Enlightened
+Perl development. CPAN is wonderful, but there are too many wheels and you
+have to pick and choose amongst the various competing technologies.
 
 The plan is for the Task::Kensho manpage to be a rough testing ground for
 ideas that go into among other things the Enlightened Perl Organisation
@@ -93,6 +91,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README README.md
+%doc Changes LICENSE README weaver.ini
 
 %changelog

++ Task-Kensho-Dates-0.35.tar.gz - Task-Kensho-Dates-0.38.tar.gz ++
 2597 lines of diff (skipped)

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



commit rubygem-rake-compiler for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rake-compiler for 
openSUSE:Factory checked in at 2015-02-10 20:22:08

Comparing /work/SRC/openSUSE:Factory/rubygem-rake-compiler (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rake-compiler.new (New)


Package is rubygem-rake-compiler

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-rake-compiler/rubygem-rake-compiler.changes  
2014-10-14 07:12:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rake-compiler.new/rubygem-rake-compiler.changes
 2015-02-10 20:22:09.0 +0100
@@ -1,0 +2,26 @@
+Fri Feb  6 18:18:14 UTC 2015 - co...@suse.com
+
+- updated to version 0.9.5
+ * Enhancements
+   * Support adding bundled files in cross_compiling block.
+ Closes #100 [Patch by Aaron Stone]
+ 
+ === 0.9.4 / 2014-12-28
+ 
+ * Notes:
+   * Change maintainer to Kouhei Sutou from Luis Lavena.
+ Thanks Luis Lavena for your great works!
+   * Change repository to https://github.com/rake-compiler/rake-compiler
+ from https://github.com/luislavena/rake-compiler .
+ 
+ * Bugfixes:
+   * Loose RubyGems dependency a little bit to ease old Debian/Ubuntu.
+ Closes #93
+ 
+ === 0.9.3 / 2014-08-03
+ 
+ * Bugfixes:
+   * Fix specs to run (and pass) on Ruby 2.1 and beyond.
+ Pull #94 [hggh]
+
+---

Old:

  rake-compiler-0.9.2.gem

New:

  gem2rpm.yml
  rake-compiler-0.9.5.gem



Other differences:
--
++ rubygem-rake-compiler.spec ++
--- /var/tmp/diff_new_pack.02KeWv/_old  2015-02-10 20:22:10.0 +0100
+++ /var/tmp/diff_new_pack.02KeWv/_new  2015-02-10 20:22:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rake-compiler
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,20 +16,27 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-rake-compiler
-Version:0.9.2
+Version:0.9.5
 Release:0
 %define mod_name rake-compiler
 %define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 902
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby = 1.8.7}
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc  3.10}
 BuildRequires:  ruby-macros = 5
 BuildRequires:  update-alternatives
-BuildRequires:  rubygem(rdoc)  3.10
-Url:http://github.com/luislavena/rake-compiler
+Url:https://github.com/rake-compiler/rake-compiler
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Rake-based Ruby Extension (C, Java) task generator
 License:MIT
 Group:  Development/Languages/Ruby

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
:sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV=no
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name}  rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
# /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
# Requires: util-linux
# Recommends: pwgen
#   :filelist: |-
# /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom:
#   apache:
# :preamble: |-
#   Requires: .
# :filelist: |-
#   /etc/apache2/conf.d/passenger.conf
# :summary: Custom summary is optional
# :description: |-
#   Custom description is 

commit plzip for openSUSE:Factory

2015-02-10 Thread h_root


bin7hK09DTy5x.bin
Description: Binary data


commit perl-Catalyst-Manual for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Catalyst-Manual for 
openSUSE:Factory checked in at 2015-02-10 20:22:38

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


Package is perl-Catalyst-Manual

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Catalyst-Manual/perl-Catalyst-Manual.changes
2013-06-05 17:48:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Catalyst-Manual.new/perl-Catalyst-Manual.changes
   2015-02-10 20:22:40.0 +0100
@@ -1,0 +2,12 @@
+Sat Feb  7 07:21:44 UTC 2015 - co...@suse.com
+
+- updated to 5.9009
+ - fixed a new error in the manual regarding component - components
+   (RT#99131, RT#100597, RT#100767)
+ 
+ 5.9008 - 2014-07-26
+ - misc small documentation tweaks (thanks Karen Etheridge, Matthew
+   Horsfall, Andreas Marienborg, Dagfinn Ilmari Mannsåker, David
+   Steinbrunner, Gerda Shank, Jesse)
+
+---

Old:

  Catalyst-Manual-5.9007.tar.gz

New:

  Catalyst-Manual-5.9009.tar.gz



Other differences:
--
++ perl-Catalyst-Manual.spec ++
--- /var/tmp/diff_new_pack.QYN8Vk/_old  2015-02-10 20:22:41.0 +0100
+++ /var/tmp/diff_new_pack.QYN8Vk/_new  2015-02-10 20:22:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Catalyst-Manual
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Catalyst-Manual
-Version:5.9007
+Version:5.9009
 Release:0
 %define cpan_name Catalyst-Manual
 Summary:The Catalyst developer's manual
@@ -29,19 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(CPANPLUS::Backend)
-#BuildRequires: perl(inc::Module::Install) = 0.87
-#BuildRequires: perl(JSON)
-#BuildRequires: perl(LWP::Simple)
-#BuildRequires: perl(Module::AutoInstall)
-#BuildRequires: perl(Module::Build)
-#BuildRequires: perl(Module::Install::AuthorRequires)
-#BuildRequires: perl(Module::Install::AuthorTests)
-#BuildRequires: perl(Module::Install::Base)
-#BuildRequires: perl(Parse::CPAN::Meta)
-#BuildRequires: perl(Test::Pod) = 1.14
-#BuildRequires: perl(Test::Pod::Coverage) = 1.04
-#BuildRequires: perl(YAML::Tiny)
+BuildRequires:  perl(Test::More) = 0.88
 %{perl_requires}
 
 %description
@@ -49,6 +37,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -64,6 +53,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes README TODO
+%doc Changes README
 
 %changelog

++ Catalyst-Manual-5.9007.tar.gz - Catalyst-Manual-5.9009.tar.gz ++
 4187 lines of diff (skipped)

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



commit perl-Class-Tiny for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-Tiny for openSUSE:Factory 
checked in at 2015-02-10 20:22:40

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


Package is perl-Class-Tiny

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-Tiny/perl-Class-Tiny.changes  
2014-08-25 11:05:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Class-Tiny.new/perl-Class-Tiny.changes 
2015-02-10 20:22:42.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb  7 07:21:44 UTC 2015 - co...@suse.com
+
+- updated to 1.001
+[ADDED]
+- Added support for BUILDARGS for Moo(se) compatibility
+
+[INTERNAL]
+- Implements BUILDALL via method (was inline) for Moo(se) compatibility
+
+---

Old:

  Class-Tiny-1.000.tar.gz

New:

  Class-Tiny-1.001.tar.gz



Other differences:
--
++ perl-Class-Tiny.spec ++
--- /var/tmp/diff_new_pack.366q8R/_old  2015-02-10 20:22:43.0 +0100
+++ /var/tmp/diff_new_pack.366q8R/_new  2015-02-10 20:22:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Tiny
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,42 +17,24 @@
 
 
 Name:   perl-Class-Tiny
-Version:1.000
+Version:1.001
 Release:0
 %define cpan_name Class-Tiny
 Summary:Minimalist class construction
 License:Apache-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Class-Tiny/
-Source: Class-Tiny-1.000.tar.gz
+Source: 
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::More) = 0.96
-BuildRequires:  perl(version)
 %{perl_requires}
 
 %description
 This module offers a minimalist class construction kit in around 120 lines
-of code. Here is a list of features:
-
-*  defines attributes via import arguments
-*  generates read-write accessors
-*  supports lazy attribute defaults
-*  supports custom accessors
-*  superclass provides a standard 'new' constructor
-*  'new' takes a hash reference or list of key/value pairs
-*  'new' calls 'BUILD' for each class from parent to child
-*  superclass provides a 'DESTROY' method
-*  'DESTROY' calls 'DEMOLISH' for each class from child to parent
-
-Multiple-inheritance is possible, with superclass order determined via
-mro/Functions.
-
-It uses no non-core modules for any recent Perl. On Perls older than v5.10
-it requires the MRO::Compat manpage. On Perls older than v5.14, it requires
-the Devel::GlobalDestruction manpage.
+of code.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -71,6 +53,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING cpanfile LICENSE perlcritic.rc README tidyall.ini
+%doc Changes CONTRIBUTING.mkdn cpanfile LICENSE perlcritic.rc README 
tidyall.ini
 
 %changelog

++ Class-Tiny-1.000.tar.gz - Class-Tiny-1.001.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Tiny-1.000/CONTRIBUTING 
new/Class-Tiny-1.001/CONTRIBUTING
--- old/Class-Tiny-1.000/CONTRIBUTING   2014-07-16 15:55:35.0 +0200
+++ new/Class-Tiny-1.001/CONTRIBUTING   1970-01-01 01:00:00.0 +0100
@@ -1,70 +0,0 @@
-## HOW TO CONTRIBUTE
-
-Thank you for considering contributing to this distribution.  This file
-contains instructions that will help you work with the source code.
-
-The distribution is managed with Dist::Zilla.  This means than many of the
-usual files you might expect are not in the repository, but are generated
-at release time (e.g. Makefile.PL).
-
-### Getting dependencies
-
-See the included `cpanfile` file for a list of dependencies.  If you have
-App::cpanminus 1.6 or later installed, you can use `cpanm` to satisfy
-dependencies like this:
-
-$ cpanm --installdeps .
-
-Otherwise, you can install Module::CPANfile 1.0002 or later and then satisfy
-dependencies with the regular `cpan` client and `cpanfile-dump`:
-
-$ cpan `cpanfile-dump`
-
-### Running tests
-
-You can run tests directly using the `prove` tool:
-
-$ prove -l
-$ prove -lv t/some_test_file.t
-
-For most distributions, `prove` is entirely sufficent for you to test any
-patches you have.
-
-### Code style and tidying
-
-Please try to match any existing 

commit rubygem-mime-types for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mime-types for 
openSUSE:Factory checked in at 2015-02-10 20:22:26

Comparing /work/SRC/openSUSE:Factory/rubygem-mime-types (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-mime-types.new (New)


Package is rubygem-mime-types

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-mime-types/rubygem-mime-types.changes
2014-10-18 09:09:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mime-types.new/rubygem-mime-types.changes   
2015-02-10 20:22:29.0 +0100
@@ -1,0 +2,23 @@
+Mon Feb  9 06:58:25 UTC 2015 - co...@suse.com
+
+- updated to version 2.4.3
+ * Bugs:
+   * Restored Ruby 1.9.2 support by using +private_constant+ conditionally.
+ Fixes {#77}[https://github.com/halostatue/mime-types/issues/77] found by
+ Kris Leech (@krisleech). The conditional use of +private_constant+ here
+ will be removed for mime-types 3.0, when Ruby 1.9.2 support will be
+ unconditionally removed.
+ 
+ == 2.4.2 / 2014-10-15
+ 
+ * Bugs:
+   * Aaron Patterson (@tenderlove) found a loading bug and provided a fix that
+ nearly doubled registry load performance
+ ({#74}[https://github.com/halostatue/mime-types/pull/74]).
+   * Godfrey Chan (@chancancode) provided a prophylactic security fix to use
+ ttJSON.parse/tt instead of ttJSON.load/tt in
+ {#75}[https://github.com/halostatue/mime-types/pull/75]. This provides a
+ 20% improvement over the already improved result, resulting in a total 55%
+ performance boost.
+
+---

Old:

  mime-types-2.4.1.gem

New:

  mime-types-2.4.3.gem



Other differences:
--
++ rubygem-mime-types.spec ++
--- /var/tmp/diff_new_pack.v5OrYo/_old  2015-02-10 20:22:30.0 +0100
+++ /var/tmp/diff_new_pack.v5OrYo/_new  2015-02-10 20:22:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mime-types
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mime-types
-Version:2.4.1
+Version:2.4.3
 Release:0
 %define mod_name mime-types
 %define mod_full_name %{mod_name}-%{version}
@@ -55,8 +55,12 @@
 add additional type definitions (see Contributing.rdoc). The primary sources
 for MIME type definitions found in mime-types is the IANA collection of
 registrations (see below for the link), RFCs, and W3C recommendations.
-This is release 2.4.1 (2.4 was pulled), fixing a bug in observed use of the
-mime-types library where extensions were not previously sorted, such that
+This is release 2.4.3, restoring full compatibility with Ruby 1.9.2 (which
+will
+be dropped in mime-types 3.0). It also includes the performance improvements
+from mime-types 2.4.2 (since yanked because of the broken Ruby 1.9.2 support)
+and the 2.4.1 fix of a bug in observed use of the mime-types library where
+extensions were not previously sorted, such that
 MIME::Types.of('image.jpg').first.extensions.first
 returned a value of +jpeg+ in mime-types 1, but +jpe+ in mime-types 2. This
 was

++ mime-types-2.4.1.gem - mime-types-2.4.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Contributing.rdoc new/Contributing.rdoc
--- old/Contributing.rdoc   2014-10-07 19:49:23.0 +0200
+++ new/Contributing.rdoc   2014-10-21 16:36:25.0 +0200
@@ -109,3 +109,5 @@
 * Greg Brockman
 * Łukasz Śliwa (for the friendly names)
 * Keerthi Siva
+* Aaron Patterson
+* Godfrey Chan
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History-Types.rdoc new/History-Types.rdoc
--- old/History-Types.rdoc  2014-10-07 19:49:23.0 +0200
+++ new/History-Types.rdoc  2014-10-21 16:36:25.0 +0200
@@ -1,6 +1,11 @@
 = MIME Types Changes by Version
 
-== 2.4 / 2014-10-07
+== 2.4.2 / 2014-10-15
+* Added application/vnd.ms-outlook as an unregistered MIME type with the
+  extension +msg+. Provided by @keerthisiv in
+  {#72}[https://github.com/halostatue/mime-types/pull/72].
+
+== 2.4.1 / 2014-10-07
 
 * Changed the sort order of many of the extensions to restore behaviour
   from mime-types 1.25.1.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc2014-10-07 19:49:23.0 +0200
+++ new/History.rdoc2014-10-21 16:36:25.0 +0200
@@ -1,4 +1,27 @@
-== 2.4 / 2014-10-07
+== 2.4.3 

commit rubygem-addressable for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-addressable for 
openSUSE:Factory checked in at 2015-02-10 20:21:45

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


Package is rubygem-addressable

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-addressable/rubygem-addressable.changes  
2014-10-14 07:12:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-addressable.new/rubygem-addressable.changes 
2015-02-10 20:21:47.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb  6 13:12:46 UTC 2015 - co...@suse.com
+
+- updated to version 2.3.7
+ - fix scenario in which invalid URIs don't get an exception until inspected
+ - handle hostnames with two adjacent periods correctly
+ - upgrade of RSpec
+
+---

Old:

  addressable-2.3.6.gem

New:

  addressable-2.3.7.gem
  gem2rpm.yml



Other differences:
--
++ rubygem-addressable.spec ++
--- /var/tmp/diff_new_pack.6wvHn3/_old  2015-02-10 20:21:48.0 +0100
+++ /var/tmp/diff_new_pack.6wvHn3/_new  2015-02-10 20:21:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-addressable
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-addressable
-Version:2.3.6
+Version:2.3.7
 Release:0
 %define mod_name addressable
 %define mod_full_name %{mod_name}-%{version}
@@ -28,6 +35,7 @@
 BuildRequires:  ruby-macros = 5
 Url:http://addressable.rubyforge.org/
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:URI Implementation
 License:Apache-2.0
 Group:  Development/Languages/Ruby

++ addressable-2.3.6.gem - addressable-2.3.7.gem ++
 8016 lines of diff (skipped)

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
:sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV=no
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name}  rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
# /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
# Requires: util-linux
# Recommends: pwgen
#   :filelist: |-
# /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom:
#   apache:
# :preamble: |-
#   Requires: .
# :filelist: |-
#   /etc/apache2/conf.d/passenger.conf
# :summary: Custom summary is optional
# :description: |-
#   Custom description is optional
#
#   bar
# :post: |-
#   /bin/echo foo
#
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-rack for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rack for openSUSE:Factory 
checked in at 2015-02-10 20:22:12

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


Package is rubygem-rack

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rack/rubygem-rack.changes
2014-11-24 11:13:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-rack.new/rubygem-rack.changes   
2015-02-10 20:22:13.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb  6 18:18:15 UTC 2015 - co...@suse.com
+
+- updated to version 1.6.0
+
+---

Old:

  rack-1.5.2.gem

New:

  rack-1.6.0.gem



Other differences:
--
++ rubygem-rack.spec ++
--- /var/tmp/diff_new_pack.XrXxze/_old  2015-02-10 20:22:14.0 +0100
+++ /var/tmp/diff_new_pack.XrXxze/_new  2015-02-10 20:22:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rack
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rack
-Version:1.5.2
+Version:1.6.0
 Release:0
 %define mod_name rack
 %define mod_full_name %{mod_name}-%{version}
@@ -36,7 +36,7 @@
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros = 5
 BuildRequires:  update-alternatives
-Url:http://rack.github.com/
+Url:http://rack.github.io/
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:rubygem-rack-rpmlintrc
 Source2:gem2rpm.yml
@@ -51,7 +51,7 @@
 the simplest way possible, it unifies and distills the API for web
 servers, web frameworks, and software in between (the so-called
 middleware) into a single method call.
-Also see http://rack.github.com/.
+Also see http://rack.github.io/.
 
 %prep
 

++ rack-1.5.2.gem - rack-1.6.0.gem ++
 5746 lines of diff (skipped)

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



commit rubygem-pg for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-pg for openSUSE:Factory 
checked in at 2015-02-10 20:21:50

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


Package is rubygem-pg

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-pg/rubygem-pg.changes2014-11-15 
12:27:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-pg.new/rubygem-pg.changes   
2015-02-10 20:21:51.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb  6 13:12:48 UTC 2015 - co...@suse.com
+
+- updated to version 0.18.1, huge Changelog
+
+---

Old:

  pg-0.17.1.gem

New:

  pg-0.18.1.gem



Other differences:
--
++ rubygem-pg.spec ++
--- /var/tmp/diff_new_pack.w41Bdj/_old  2015-02-10 20:21:52.0 +0100
+++ /var/tmp/diff_new_pack.w41Bdj/_new  2015-02-10 20:21:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-pg
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-pg
-Version:0.17.1
+Version:0.18.1
 Release:0
 %define mod_name pg
 %define mod_full_name %{mod_name}-%{version}
@@ -33,7 +33,7 @@
 BuildRequires:  postgresql-devel
 # /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  %{rubydevel = 1.8.7}
+BuildRequires:  %{rubydevel = 1.9.3}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc  3.10}
 BuildRequires:  ruby-macros = 5

++ pg-0.17.1.gem - pg-0.18.1.gem ++
 15773 lines of diff (skipped)

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



commit perl-HTTP-Body for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-HTTP-Body for openSUSE:Factory 
checked in at 2015-02-10 20:21:36

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


Package is perl-HTTP-Body

Changes:

--- /work/SRC/openSUSE:Factory/perl-HTTP-Body/perl-HTTP-Body.changes
2014-03-15 07:47:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-HTTP-Body.new/perl-HTTP-Body.changes   
2015-02-10 20:21:37.0 +0100
@@ -1,0 +2,19 @@
+Fri Feb  6 13:13:02 UTC 2015 - co...@suse.com
+
+- updated to 1.22
+ 1.22  2015-01-29 04:51:51+01:00 Europe/Berlin
+ - Fix for the fix. don't ask
+ 
+ 1.21  2015-01-29 04:48:58+01:00 Europe/Berlin
+- Fix for failing test if Plack is not installed
+ 
+ 1.20  2015-01-28 16:20:59+01:00 Europe/Berlin
+ -new method 'part_data' which preserves multipart meta information 
just in cause
+   you have a form upload with unexpected charsets, etc.
+ 
+ 1.19
+ - Release for cleanup of dzil
+
+- obsolete CVE-2013-4407.patch
+
+---

Old:

  CVE-2013-4407.patch
  HTTP-Body-1.19.tar.gz

New:

  HTTP-Body-1.22.tar.gz



Other differences:
--
++ perl-HTTP-Body.spec ++
--- /var/tmp/diff_new_pack.8sJmeC/_old  2015-02-10 20:21:38.0 +0100
+++ /var/tmp/diff_new_pack.8sJmeC/_new  2015-02-10 20:21:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTTP-Body
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-HTTP-Body
-Version:1.19
+Version:1.22
 Release:0
 %define cpan_name HTTP-Body
 Summary:HTTP Body Parser
@@ -25,26 +25,15 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/HTTP-Body/
 Source: 
http://www.cpan.org/authors/id/G/GE/GETTY/%{cpan_name}-%{version}.tar.gz
-## originally taken from debian: Allow only word characters in filename 
suffixes
-# correct fix was already mention in code, but not used. :(
-Patch0: CVE-2013-4407.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(HTTP::Headers)
+BuildRequires:  perl(HTTP::Request::Common)
 BuildRequires:  perl(IO::File) = 1.14
 BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::More) = 0.86
-#BuildRequires: perl(HTTP::Body)
-#BuildRequires: perl(HTTP::Body::MultiPart)
-#BuildRequires: perl(HTTP::Body::OctetStream)
-#BuildRequires: perl(HTTP::Body::UrlEncoded)
-#BuildRequires: perl(HTTP::Body::XForms)
-#BuildRequires: perl(HTTP::Body::XFormsMultipart)
-#BuildRequires: perl(HTTP::Message)
-#BuildRequires: perl(PAML)
-#BuildRequires: perl(Test::Perl::Critic)
 Requires:   perl(HTTP::Headers)
 Requires:   perl(IO::File) = 1.14
 %{perl_requires}
@@ -60,7 +49,6 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-%patch0
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ HTTP-Body-1.19.tar.gz - HTTP-Body-1.22.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Body-1.19/Changes new/HTTP-Body-1.22/Changes
--- old/HTTP-Body-1.19/Changes  2013-12-06 16:07:25.0 +0100
+++ new/HTTP-Body-1.22/Changes  2015-01-29 04:51:53.0 +0100
@@ -1,7 +1,17 @@
 This file documents the revision history for Perl extension HTTP::Body.
 
-1.19  2013-12-06 10:07:24 America/New_York
-   - Release for cleanup of dzil
+1.22  2015-01-29 04:51:51+01:00 Europe/Berlin
+- Fix for the fix. don't ask
+
+1.21  2015-01-29 04:48:58+01:00 Europe/Berlin
+   - Fix for failing test if Plack is not installed
+
+1.20  2015-01-28 16:20:59+01:00 Europe/Berlin
+-new method 'part_data' which preserves multipart meta information 
just in cause
+  you have a form upload with unexpected charsets, etc.
+
+1.19
+- Release for cleanup of dzil
 
 1.18  2013-12-06 10:05:33 America/New_York
 - Added configurable basename regexp, test added with fixed regexp for 
next release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-Body-1.19/LICENSE new/HTTP-Body-1.22/LICENSE
--- old/HTTP-Body-1.19/LICENSE  2013-12-06 16:07:25.0 +0100
+++ new/HTTP-Body-1.22/LICENSE  2015-01-29 04:51:53.0 +0100
@@ -1,4 +1,4 @@
-This software is 

commit perl-Algorithm-Combinatorics for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Algorithm-Combinatorics for 
openSUSE:Factory checked in at 2015-02-10 20:21:18

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


Package is perl-Algorithm-Combinatorics

Changes:

New Changes file:

--- /dev/null   2014-12-25 22:38:16.200041506 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Algorithm-Combinatorics.new/perl-Algorithm-Combinatorics.changes
   2015-02-10 20:21:19.0 +0100
@@ -0,0 +1,6 @@
+---
+Fri Mar  2 15:37:17 UTC 2012 - co...@suse.com
+
+- initial package 0.27
+* created by cpanspec 1.78.06
+

New:

  Algorithm-Combinatorics-0.27.tar.gz
  perl-Algorithm-Combinatorics.changes
  perl-Algorithm-Combinatorics.spec



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

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


Name:   perl-Algorithm-Combinatorics
Version:0.27
Release:0
%define cpan_name Algorithm-Combinatorics
Summary:Efficient generation of combinatorial sequences
License:GPL-1.0+ or Artistic-1.0
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Algorithm-Combinatorics/
Source: 
http://www.cpan.org/authors/id/F/FX/FXN/%{cpan_name}-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
%{perl_requires}

%description
Algorithm::Combinatorics is an efficient generator of combinatorial
sequences. Algorithms are selected from the literature (work in progress,
see the /REFERENCES manpage). Iterators do not use recursion, nor stacks,
and are written in C.

Tuples are generated in lexicographic order, except in 'subsets()'.

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

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

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%files -f %{name}.files
%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 perl-File-Tail for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-File-Tail for openSUSE:Factory 
checked in at 2015-02-10 20:21:25

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


Package is perl-File-Tail

Changes:

--- /work/SRC/openSUSE:Factory/perl-File-Tail/perl-File-Tail.changes
2011-11-21 12:40:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-File-Tail.new/perl-File-Tail.changes   
2015-02-10 20:21:26.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb  6 13:13:01 UTC 2015 - co...@suse.com
+
+- updated to 1.0
+ *   Actually just two minor bug fixes (one of them in a test), but I no
+ longer see a point in not having a 1.0 version.
+
+---

Old:

  File-Tail-0.99.3.tar.gz

New:

  File-Tail-1.0.tar.gz



Other differences:
--
++ perl-File-Tail.spec ++
--- /var/tmp/diff_new_pack.rxOdTh/_old  2015-02-10 20:21:27.0 +0100
+++ /var/tmp/diff_new_pack.rxOdTh/_new  2015-02-10 20:21:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-File-Tail
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,54 +15,69 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-File-Tail
-Url:http://search.cpan.org/search?module=File::Tail
-License:Artistic-1.0
+Version:1.0
+Release:0
+%define cpan_name File-Tail
+Summary:Perl extension for reading from continuously updated files
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
-AutoReqProv:on
-Summary:Reading files which are continuously appended
-Version:0.99.3
-Release:143
-Source: File-Tail-%{version}.tar.gz
+Url:http://search.cpan.org/dist/File-Tail/
+Source: 
http://www.cpan.org/authors/id/M/MG/MGRABNAR/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
+%{perl_requires}
 
 %description
-The File::Tail module is designed for reading files which are
-continously appended to (the name comes from the tail -f directive).
-Usually such files are logfiles of some description.
+The primary purpose of File::Tail is reading and analysing log files while
+they are being written, which is especialy useful if you are monitoring the
+logging process with a tool like Tobias Oetiker's MRTG.
+
+The module tries very hard NOT to busy-wait on a file that has little
+traffic. Any time it reads new data from the file, it counts the number of
+new lines, and divides that number by the time that passed since data were
+last written to the file before that. That is considered the average time
+before new data will be written. When there is no new data to read,
+'File::Tail' sleeps for that number of seconds. Thereafter, the waiting
+time is recomputed dynamicaly. Note that 'File::Tail' never sleeps for more
+than the number of seconds set by 'maxinterval'.
+
+If the file does not get altered for a while, 'File::Tail' gets suspicious
+and startschecking if the file was truncated, or moved and recreated. If
+anything like that had happened, 'File::Tail' will quietly reopen the file,
+and continue reading. The only way to affect what happens on reopen is by
+setting the reset_tail parameter (see below). The effect of this is that
+the scripts need not be aware when the logfiles were rotated, they will
+just quietly work on.
+
+Note that the sleep and time used are from Time::HiRes, so this module
+should do the right thing even if the time to sleep is less than one
+second.
 
-
-
-Authors:
-
-Matija Grabnar
+The logwatch script (also included) demonstrates several ways of calling
+the methods.
 
 %prep
-%setup -n File-Tail-%{version}
+%setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
-perl Makefile.PL
-make %{?_smp_mflags}
-make test
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
+
+%check
+%{__make} test
 
 %install
-rm -rf $RPM_BUILD_ROOT;
-make DESTDIR=$RPM_BUILD_ROOT install_vendor
+%perl_make_install
 %perl_process_packlist
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
-%doc Changes MANIFEST README
-%dir %{perl_vendorarch}/auto/File
-%{perl_vendorarch}/auto/File/Tail
-%dir %{perl_vendorlib}/File
-%{perl_vendorlib}/File/Tail.pm

commit perl-MooseX-ArrayRef for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-ArrayRef for 
openSUSE:Factory checked in at 2015-02-10 20:21:22

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


Package is perl-MooseX-ArrayRef

Changes:

New Changes file:

--- /dev/null   2014-12-25 22:38:16.200041506 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-ArrayRef.new/perl-MooseX-ArrayRef.changes
   2015-02-10 20:21:23.0 +0100
@@ -0,0 +1,6 @@
+---
+Sat Feb  7 07:52:44 UTC 2015 - co...@suse.com
+
+- initial package 0.005
+* created by cpanspec 1.78.08
+

New:

  MooseX-ArrayRef-0.005.tar.gz
  perl-MooseX-ArrayRef.changes
  perl-MooseX-ArrayRef.spec



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

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


Name:   perl-MooseX-ArrayRef
Version:0.005
Release:0
%define cpan_name MooseX-ArrayRef
Summary:blessed arrayrefs with Moose
License:Artistic-1.0 or GPL-1.0+
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/MooseX-ArrayRef/
Source: 
http://www.cpan.org/authors/id/T/TO/TOBYINK/%{cpan_name}-%{version}.tar.gz
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Moose) = 2.00
Requires:   perl(Moose) = 2.00
%{perl_requires}

%description
Objects implemented with arrayrefs rather than hashrefs are often faster
than those implemented with hashrefs. Moose's default object implementation
is hashref based. Can we go faster?

Simply 'use MooseX::ArrayRef' instead of 'use Moose', but note the
limitations in the section below.

The current implementation is mostly a proof of concept, but it does mostly
seem to work.

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

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

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes CONTRIBUTING COPYRIGHT CREDITS doap.ttl examples LICENSE README

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



commit perl-namespace-autoclean for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package perl-namespace-autoclean for 
openSUSE:Factory checked in at 2015-02-10 20:21:41

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


Package is perl-namespace-autoclean

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-namespace-autoclean/perl-namespace-autoclean.changes
2014-07-21 22:34:26.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-namespace-autoclean.new/perl-namespace-autoclean.changes
   2015-02-10 20:21:42.0 +0100
@@ -1,0 +2,21 @@
+Fri Feb  6 13:13:02 UTC 2015 - co...@suse.com
+
+- updated to 0.24
+   - re-release to fix problematic $VERSION declaration (RT#101095)
+ 
+ 0.23  2014-12-27 04:07:03Z
+   - be more lenient in optional Mouse tests to handle edge cases in older and
+ pure perl versions
+ 
+ 0.22  2014-11-04 06:19:54Z
+   - fix an erroneous change in 0.21
+ 
+ 0.21  2014-11-04 05:24:36Z
+   - drop testing of MooseX::MarkAsMethods, now that Moose 2.1400 has better
+ overload handling
+ 
+ 0.20  2014-09-06 23:04:12Z
+   - Moose earlier than 2.0300 had a broken -does method, which called methods
+ on a class's meta when it might not be initialized (RT#98424)
+
+---

Old:

  namespace-autoclean-0.19.tar.gz

New:

  namespace-autoclean-0.24.tar.gz



Other differences:
--
++ perl-namespace-autoclean.spec ++
--- /var/tmp/diff_new_pack.APQE84/_old  2015-02-10 20:21:43.0 +0100
+++ /var/tmp/diff_new_pack.APQE84/_new  2015-02-10 20:21:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-namespace-autoclean
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-namespace-autoclean
-Version:0.19
+Version:0.24
 Release:0
 %define cpan_name namespace-autoclean
 Summary:Keep imports out of your namespace
@@ -29,26 +29,13 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
-BuildRequires:  perl(Module::Build::Tiny) = 0.036
-# for Test
-BuildRequires:  perl(Carp)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(File::Basename)
-BuildRequires:  perl(File::Spec::Functions)
-BuildRequires:  perl(Scalar::Util)
-BuildRequires:  perl(Test::More) = 0.88
-BuildRequires:  perl(Test::Requires)
-BuildRequires:  perl(constant)
-BuildRequires:  perl(overload)
-BuildRequires:  perl(version)
-#
 BuildRequires:  perl(B::Hooks::EndOfScope) = 0.12
-BuildRequires:  perl(List::Util)
+BuildRequires:  perl(Module::Build::Tiny) = 0.039
 BuildRequires:  perl(Sub::Identify)
+BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(namespace::clean) = 0.20
 Requires:   perl(B::Hooks::EndOfScope) = 0.12
-Requires:   perl(List::Util)
 Requires:   perl(Sub::Identify)
 Requires:   perl(namespace::clean) = 0.20
 %{perl_requires}
@@ -65,7 +52,7 @@
 This module is very similar to namespace::clean, except it will clean all
 imported functions, no matter if you imported them before or after you
 'use'd the pragma. It will also not touch anything that looks like a
-method, according to 'Class::MOP::Class::get_method_list'.
+method.
 
 If you're writing an exporter and you want to clean up after yourself (and
 your peers), you can use the '-cleanee' switch to specify what package to
@@ -98,6 +85,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
+%doc Changes CONTRIBUTING LICENSE README weaver.ini
 
 %changelog

++ namespace-autoclean-0.19.tar.gz - namespace-autoclean-0.24.tar.gz ++
 3715 lines of diff (skipped)

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



commit rubygem-puma for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-puma for openSUSE:Factory 
checked in at 2015-02-10 20:21:52

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


Package is rubygem-puma

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-puma/rubygem-puma.changes
2014-05-21 16:29:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-puma.new/rubygem-puma.changes   
2015-02-10 20:21:54.0 +0100
@@ -1,0 +2,43 @@
+Fri Feb  6 13:12:46 UTC 2015 - co...@suse.com
+
+- updated to version 2.11.0
+ * 9 bug fixes:
+   * Add mode as an additional bind option to unix sockets. Fixes #630
+   * Advertise HTTPS properly after a hot restart
+   * Don't write lowlevel_error_handler to state
+   * Fix phased restart with stuck requests
+   * Handle spaces in the path properly. Fixes #622
+   * Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes 
#583
+   * Skip device number checking on jruby. Fixes #586
+   * Update extconf.rb to compile correctly on OS X
+   * redirect io right after daemonizing so startup errors are shown. Fixes 
#359
+ 
+ * 6 minor features:
+   * Add a configuration option that prevents puma from queueing requests.
+   * Add reload_worker_directory
+   * Add the ability to pass environment variables to the init script (for 
Jungle).
+   * Add the proctitle tag to the worker. Fixes #633
+   * Infer a proctitle tag based on the directory
+   * Update lowlevel error message to be more meaningful.
+ 
+ * 10 PRs merged:
+   * Merge pull request #478 from rubencaro/master
+   * Merge pull request #610 from kwilczynski/master
+   * Merge pull request #611 from jasonl/better-lowlevel-message
+   * Merge pull request #616 from jc00ke/master
+   * Merge pull request #623 from raldred/patch-1
+   * Merge pull request #628 from rdpoor/master
+   * Merge pull request #634 from deepj/master
+   * Merge pull request #637 from raskhadafi/patch-1
+   * Merge pull request #639 from ebeigarts/fix-phased-restarts
+   * Merge pull request #640 from 
codehotter/issue-612-dependent-requests-deadlock
+ 
+ === 2.10.2 / 2014-11-26
+ 
+ * 1 bug fix:
+   * Conditionalize thread local cleaning, fixes perf degradation fix
+ The code to clean out all Thread locals adds pretty significant
+ overhead to a each request, so it has to be turned on explicitly
+ if a user needs it.
+
+---

Old:

  puma-2.8.2.gem

New:

  gem2rpm.yml
  puma-2.11.0.gem



Other differences:
--
++ rubygem-puma.spec ++
--- /var/tmp/diff_new_pack.WkIxus/_old  2015-02-10 20:21:55.0 +0100
+++ /var/tmp/diff_new_pack.WkIxus/_new  2015-02-10 20:21:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-puma
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,29 +16,34 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-puma
-Version:2.8.2
+Version:2.11.0
 Release:0
 %define mod_name puma
 %define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 20802
-
+# MANUAL
+BuildRequires:  openssl-devel
+# /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 3
-Requires:   ruby = 1.8.7
-BuildRequires:  ruby = 1.8.7
-BuildRequires:  ruby-devel
+BuildRequires:  %{rubydevel = 1.8.7}
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc  3.10}
+BuildRequires:  ruby-macros = 5
 BuildRequires:  update-alternatives
-BuildRequires:  rubygem(rdoc)  3.10
 Url:http://puma.io
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Puma is a simple, fast, threaded, and highly concurrent HTTP 
1.1
 License:BSD-3-Clause
 Group:  Development/Languages/Ruby
 PreReq: update-alternatives
-# MANUAL
-BuildRequires:  openssl-devel
 
 %description
 Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for
@@ -47,83 +52,17 @@
 recommended that you use a  Ruby implementation with real threads like
 Rubinius or JRuby.
 
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby

commit rubygem-pkg-config for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-pkg-config for 
openSUSE:Factory checked in at 2015-02-10 20:22:23

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


Package is rubygem-pkg-config

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-pkg-config/rubygem-pkg-config.changes
2014-10-18 09:09:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-pkg-config.new/rubygem-pkg-config.changes   
2015-02-10 20:22:26.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  9 06:47:33 UTC 2015 - co...@suse.com
+
+- updated to version 1.1.6
+  * Supported Ruby 2.1.
+
+---

Old:

  pkg-config-1.1.5.gem

New:

  pkg-config-1.1.6.gem



Other differences:
--
++ rubygem-pkg-config.spec ++
--- /var/tmp/diff_new_pack.C0LCul/_old  2015-02-10 20:22:27.0 +0100
+++ /var/tmp/diff_new_pack.C0LCul/_new  2015-02-10 20:22:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-pkg-config
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-pkg-config
-Version:1.1.5
+Version:1.1.6
 Release:0
 %define mod_name pkg-config
 %define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros = 5
-Url:https://github.com/rcairo/pkg-config
+Url:https://github.com/ruby-gnome2/pkg-config
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:A pkg-config implementation for Ruby

++ pkg-config-1.1.5.gem - pkg-config-1.1.6.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 1970-01-01 01:00:00.0 +0100
+++ new/Gemfile 2014-11-12 08:29:58.0 +0100
@@ -1,6 +1,6 @@
 # -*- mode: ruby; coding: utf-8 -*-
 #
-# Copyright (C) 2011  Kouhei Sutou k...@clear-code.com
+# Copyright (C) 2011-2013  Kouhei Sutou k...@clear-code.com
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -13,8 +13,8 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
 
-source :rubygems
+source https://rubygems.org/;
 
 gemspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NEWS new/NEWS
--- old/NEWS1970-01-01 01:00:00.0 +0100
+++ new/NEWS2014-11-12 08:29:58.0 +0100
@@ -1,5 +1,23 @@
 = NEWS
 
+== 1.1.6 - 2014/11/12
+
+  * Supported Ruby 2.1.
+[GitHub:ruby-gnome2/ruby-gnome2#262][Reported by Steve Wills]
+
+=== Thanks
+
+  * Steve Wills
+
+== 1.1.5 - 2013/12/29
+
+  * Supported XQuartz.
+[GitHub:#10][Patch by Masafumi Yokoyama]
+
+=== Thanks
+
+  * Masafumi Yokoyama
+
 == 1.1.4 - 2012/08/02
 
   * Supported mswin64 as MSVC environment.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.rdoc new/README.rdoc
--- old/README.rdoc 1970-01-01 01:00:00.0 +0100
+++ new/README.rdoc 2014-11-12 08:29:58.0 +0100
@@ -47,7 +47,7 @@
 
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 See LGPL-2.1 file for details.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile1970-01-01 01:00:00.0 +0100
+++ new/Rakefile2014-11-12 08:29:58.0 +0100
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
 
 task :default = :test
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' 

commit liberation-fonts for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package liberation-fonts for 
openSUSE:Factory checked in at 2015-02-10 20:15:47

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


Package is liberation-fonts

Changes:

--- /work/SRC/openSUSE:Factory/liberation-fonts/liberation-fonts.changes
2014-04-05 16:50:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.liberation-fonts.new/liberation-fonts.changes   
2015-02-10 20:15:49.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb  5 16:45:15 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.07.4
+  * Restored Liberation Sans Bold 'u' instructions
+  * Resolved #1009650, renames serbian shapes as per AGL
+  * Added new glyph for imacron and g
+  * Added Correct shape for uni266B in all Liberation variants #1014357
+  * Resolved Problematic shapes for macedonian alphabet #1013949
+
+---

Old:

  liberation-fonts-ttf-1.07.3.tar.gz

New:

  liberation-fonts-ttf-1.07.4.tar.gz



Other differences:
--
++ liberation-fonts.spec ++
--- /var/tmp/diff_new_pack.lEgFLy/_old  2015-02-10 20:15:50.0 +0100
+++ /var/tmp/diff_new_pack.lEgFLy/_new  2015-02-10 20:15:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package liberation-fonts
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   liberation-fonts
-Version:1.07.3
+Version:1.07.4
 Release:0
 Summary:Liberation Fonts
 License:SUSE-Liberation

++ liberation-fonts-ttf-1.07.3.tar.gz - liberation-fonts-ttf-1.07.4.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/liberation-fonts-ttf-1.07.3/ChangeLog 
new/liberation-fonts-ttf-1.07.4/ChangeLog
--- old/liberation-fonts-ttf-1.07.3/ChangeLog   2013-08-23 08:23:52.0 
+0200
+++ new/liberation-fonts-ttf-1.07.4/ChangeLog   2014-04-21 12:56:06.0 
+0200
@@ -1,3 +1,11 @@
+* Fri 18 2014 Pravin Satpute psatp...@redhat.com 1.07.4
+- Restored Liberation Sans Bold 'u' instructions
+- Resolved #1009650, renames serbian shapes as per AGL
+- Added new glyph for imacron and g
+- Added Correct shape for uni266B in all Liberation variants #1014357
+- Resolved Problematic shapes for macedonian alphabet #1013949
+
+
 * Fri Aug 23 2013 Pravin Satpute psatp...@redhat.com 1.07.3
 - Corrected U+2588 shape to match with Dejavu fonts in Mono
 - Resolved Serbian bug #984428
Files old/liberation-fonts-ttf-1.07.3/LiberationMono-Bold.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationMono-Bold.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationMono-BoldItalic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationMono-BoldItalic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationMono-Italic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationMono-Italic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationMono-Regular.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationMono-Regular.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSans-Bold.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSans-Bold.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSans-BoldItalic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSans-BoldItalic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSans-Italic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSans-Italic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSans-Regular.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSans-Regular.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSansNarrow-Bold.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSansNarrow-Bold.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSansNarrow-BoldItalic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSansNarrow-BoldItalic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSansNarrow-Italic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSansNarrow-Italic.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSansNarrow-Regular.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSansNarrow-Regular.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSerif-Bold.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSerif-Bold.ttf differ
Files old/liberation-fonts-ttf-1.07.3/LiberationSerif-BoldItalic.ttf and 
new/liberation-fonts-ttf-1.07.4/LiberationSerif-BoldItalic.ttf differ
Files 

commit libgsf for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libgsf for openSUSE:Factory checked 
in at 2015-02-10 20:16:04

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


Package is libgsf

Changes:

--- /work/SRC/openSUSE:Factory/libgsf/libgsf.changes2014-04-02 
17:23:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgsf.new/libgsf.changes   2015-02-10 
20:16:05.0 +0100
@@ -1,0 +2,21 @@
+Thu Feb  5 11:02:52 UTC 2015 - dims...@opensuse.org
+
+- Update to version 1.14.31:
+  + Add two new localc name spaces to gsf-opendoc-utils
+  + Add support for non-default zip compression level (bgo#722470).
+  + Plug leaks.
+  + Dead kittens.
+  + Reduce number of CRITICALs for corrupted files.
+  + Read zip files with 64k+ members (Part of bgo#732209).
+  + Read zip files members larger than 4G (Part of bgo#732209).
+  + Speed up zip file reading for lots of members.
+  + Speed up stdio directory handling with large number of files.
+  + Fix various issues with files larger than 4G.
+  + Fix minor zip file issues.
+  + Write zip archives with more than 64k+ members.
+  + Store unix modtime in zip (Until that overflows).
+  + Fix seekability checks in GsfOutputIOChannel.
+  + Avoid implementation defined behaviour of shifts.
+  + Start a test suite.
+
+---

Old:

  libgsf-1.14.30.tar.xz

New:

  libgsf-1.14.31.tar.xz



Other differences:
--
++ libgsf.spec ++
--- /var/tmp/diff_new_pack.xbZ2h8/_old  2015-02-10 20:16:06.0 +0100
+++ /var/tmp/diff_new_pack.xbZ2h8/_new  2015-02-10 20:16:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libgsf
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   libgsf
-Version:1.14.30
+Version:1.14.31
 Release:0
 Summary:Extensible I/O abstraction library for dealing with structured 
file formats
 License:GPL-2.0+ and LGPL-2.1+

++ libgsf-1.14.30.tar.xz - libgsf-1.14.31.tar.xz ++
 39909 lines of diff (skipped)

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



commit xf86-video-savage for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2015-02-10 20:16:58

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is xf86-video-savage

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-12-11 17:45:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2015-02-10 20:16:59.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 13:07:58 UTC 2015 - sndir...@suse.com
+
+- U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.1sZ07L/_old  2015-02-10 20:17:00.0 +0100
+++ /var/tmp/diff_new_pack.1sZ07L/_new  2015-02-10 20:17:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
 Patch3: u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
+Patch4: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -57,6 +58,7 @@
 %setup -q
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure

++ U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++
From d28cd83c7b0b4a943efbe5ddf257c8ee2646ea73 Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Tue, 29 Jul 2014 09:15:26 -0400
Subject: [PATCH] dri: Stop (uselessly) initializing the ValidateTree hooks

Signed-off-by: Adam Jackson a...@redhat.com
---
 src/savage_dri.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/savage_dri.c b/src/savage_dri.c
index bdb78e4..0842821 100644
--- a/src/savage_dri.c
+++ b/src/savage_dri.c
@@ -875,9 +875,6 @@ Bool SAVAGEDRIScreenInit( ScreenPtr pScreen )
psav-coreWakeupHandler = pDRIInfo-wrap.WakeupHandler;
pDRIInfo-wrap.WakeupHandler = SAVAGEWakeupHandler;
 
-   pDRIInfo-wrap.ValidateTree = NULL;
-   pDRIInfo-wrap.PostValidateTree = NULL;
-
pDRIInfo-createDummyCtx = TRUE;
pDRIInfo-createDummyCtxPriv = FALSE;
 
-- 
1.8.4.5

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



commit xf86-video-neomagic for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-neomagic for 
openSUSE:Factory checked in at 2015-02-10 20:16:43

Comparing /work/SRC/openSUSE:Factory/xf86-video-neomagic (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-neomagic.new (New)


Package is xf86-video-neomagic

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-neomagic/xf86-video-neomagic.changes  
2013-08-19 10:52:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-neomagic.new/xf86-video-neomagic.changes 
2015-02-10 20:16:44.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:55:07 UTC 2015 - sndir...@suse.com
+
+- U_neomagic-fix-build-against-master-X-server.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_neomagic-fix-build-against-master-X-server.patch



Other differences:
--
++ xf86-video-neomagic.spec ++
--- /var/tmp/diff_new_pack.8gxjc9/_old  2015-02-10 20:16:45.0 +0100
+++ /var/tmp/diff_new_pack.8gxjc9/_new  2015-02-10 20:16:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-neomagic
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Patch0: U_neomagic-fix-build-against-master-X-server.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(xorg-macros) = 1.8
 BuildRequires:  pkgconfig(xorg-server) = 1.0.99.901
@@ -40,6 +41,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ U_neomagic-fix-build-against-master-X-server.patch ++
From 6661bdd4551e4e63e983685464a277845aed3012 Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@gmail.com
Date: Sun, 21 Sep 2014 09:51:37 +1000
Subject: [PATCH] neomagic: fix build against master X server.

Signed-off-by: Dave Airlie airl...@redhat.com
---
 src/neo_driver.c | 4 
 1 file changed, 4 insertions(+)

diff --git a/src/neo_driver.c b/src/neo_driver.c
index 1b0da34..da01962 100644
--- a/src/neo_driver.c
+++ b/src/neo_driver.c
@@ -1994,10 +1994,12 @@ neoMapMem(ScrnInfoPtr pScrn)
 }
 #endif
 } else
+#ifdef VIDMEM_MMIO
 nPtr-NeoMMIOBase =
 xf86MapVidMem(pScrn-scrnIndex,
   VIDMEM_MMIO, nPtr-NeoMMIOAddr,
   0x20L);
+#endif
 if (nPtr-NeoMMIOBase == NULL)
 return FALSE;
 }
@@ -2024,10 +2026,12 @@ neoMapMem(ScrnInfoPtr pScrn)
 }
 #endif
 else
+#ifdef VIDMEM_FRAMEBUFFER
 nPtr-NeoFbBase =
 xf86MapVidMem(pScrn-scrnIndex, VIDMEM_FRAMEBUFFER,
   (unsigned long)nPtr-NeoLinearAddr,
   nPtr-NeoFbMapSize);
+#endif
 if (nPtr-NeoFbBase == NULL)
 return FALSE;
 return TRUE;
-- 
1.8.4.5

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



commit xf86-video-mga for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-mga for openSUSE:Factory 
checked in at 2015-02-10 20:16:32

Comparing /work/SRC/openSUSE:Factory/xf86-video-mga (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-mga.new (New)


Package is xf86-video-mga

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-mga/xf86-video-mga.changes
2014-05-13 20:49:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-mga.new/xf86-video-mga.changes   
2015-02-10 20:16:33.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:49:08 UTC 2015 - sndir...@suse.com
+
+- U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch



Other differences:
--
++ xf86-video-mga.spec ++
--- /var/tmp/diff_new_pack.kTqomi/_old  2015-02-10 20:16:34.0 +0100
+++ /var/tmp/diff_new_pack.kTqomi/_new  2015-02-10 20:16:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-mga
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Patch1: u_Fix-compiler-warnings.patch
 Patch2: u_Fix-crash-when-EXA-accel-mode-is-enabled.patch
 Patch3: u_EXA-Fix-UploadToScreen.patch
+Patch4: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -70,6 +71,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure

++ U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++
From cf46b1017a2663c59f07abd417573b9580f0145f Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Tue, 29 Jul 2014 09:14:15 -0400
Subject: [PATCH] dri: Stop (uselessly) initializing the ValidateTree hooks

Signed-off-by: Adam Jackson a...@redhat.com
---
 src/mga_dri.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/mga_dri.c b/src/mga_dri.c
index a1c39f3..b957028 100644
--- a/src/mga_dri.c
+++ b/src/mga_dri.c
@@ -1165,9 +1165,6 @@ Bool MGADRIScreenInit( ScreenPtr pScreen )
pDRIInfo-frameBufferStride = pScrn-displayWidth*(pScrn-bitsPerPixel/8);
pDRIInfo-ddxDrawableTableEntry = MGA_MAX_DRAWABLES;
 
-   pDRIInfo-wrap.ValidateTree = NULL;
-   pDRIInfo-wrap.PostValidateTree = NULL;
-
pDRIInfo-createDummyCtx = TRUE;
pDRIInfo-createDummyCtxPriv = FALSE;
 
-- 
1.8.4.5

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



commit xf86-video-sis for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-sis for openSUSE:Factory 
checked in at 2015-02-10 20:17:06

Comparing /work/SRC/openSUSE:Factory/xf86-video-sis (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-sis.new (New)


Package is xf86-video-sis

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-sis/xf86-video-sis.changes
2013-08-23 11:09:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-sis.new/xf86-video-sis.changes   
2015-02-10 20:17:07.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb  6 13:27:22 UTC 2015 - sndir...@suse.com
+
+- U_sis-fix-build-against-latest-xserver.patch/
+  U_sis-more-build-fixes-against-master-X-server.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_sis-fix-build-against-latest-xserver.patch
  U_sis-more-build-fixes-against-master-X-server.patch



Other differences:
--
++ xf86-video-sis.spec ++
--- /var/tmp/diff_new_pack.x6N0TT/_old  2015-02-10 20:17:08.0 +0100
+++ /var/tmp/diff_new_pack.x6N0TT/_new  2015-02-10 20:17:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-sis
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,8 @@
 Patch1: U_Remove-mibstore.h.patch
 Patch2: U_Stop-including-xf86Priv.h.patch
 Patch3: u_Fixed-build-with-INPUT_API-19.patch
+Patch4: U_sis-fix-build-against-latest-xserver.patch
+Patch5: U_sis-more-build-fixes-against-master-X-server.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -63,6 +65,8 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
 %configure

++ U_sis-fix-build-against-latest-xserver.patch ++
From d0550de19cacab3e591641ba358a72fbc798b231 Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@redhat.com
Date: Mon, 22 Sep 2014 12:45:02 +1000
Subject: [PATCH] sis: fix build against latest xserver

---
 src/sis.h | 2 ++
 src/vstruct.h | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/sis.h b/src/sis.h
index 20e6134..385b784 100644
--- a/src/sis.h
+++ b/src/sis.h
@@ -1004,7 +1004,9 @@ typedef struct {
 ScrnInfoPtrpScrn;
 pciVideoPtrPciInfo;
 intPciBus, PciDevice, PciFunc;
+#ifndef XSERVER_LIBPCIACCESS
 PCITAG PciTag;
+#endif
 EntityInfoPtr  pEnt;
 intChipset;
 unsigned char  ChipType;
diff --git a/src/vstruct.h b/src/vstruct.h
index 88f7eb6..5d7a98d 100644
--- a/src/vstruct.h
+++ b/src/vstruct.h
@@ -237,8 +237,10 @@ struct SiS_Private
unsigned char   ChipType;
unsigned char   ChipRevision;
 #ifdef SIS_XORG_XF86
+#ifndef XSERVER_LIBPCIACCESS
PCITAG  PciTag;
 #endif
+#endif
 #ifdef SIS_LINUX_KERNEL
void*ivideo;
 #endif
-- 
1.8.4.5

++ U_sis-more-build-fixes-against-master-X-server.patch ++
From d2597696ba81862d80ec17b978d8370c58572e27 Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@redhat.com
Date: Wed, 12 Nov 2014 08:04:21 +1000
Subject: [PATCH] sis: more build fixes against master X server.

---
 src/sis_driver.c | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/src/sis_driver.c b/src/sis_driver.c
index bd9c4e1..125eee7 100644
--- a/src/sis_driver.c
+++ b/src/sis_driver.c
@@ -3279,9 +3279,11 @@ SISPreInit(ScrnInfoPtr pScrn, int flags)
 pSiS-PciDevice = PCI_CFG_DEV(pSiS-PciInfo); 
/*SIS_PCI_DEVICE(pSiS-PciInfo);*/
 pSiS-PciFunc = PCI_CFG_FUNC(pSiS-PciInfo);  
/*SIS_PCI_FUNC(pSiS-PciInfo);*/
 
+#ifndef XSERVER_LIBPCIACCESS
 pSiS-PciTag = pciTag(PCI_DEV_BUS(pSiS-PciInfo),
  PCI_DEV_DEV(pSiS-PciInfo),
  PCI_DEV_FUNC(pSiS-PciInfo));
+#endif
 
 #ifdef SIS_NEED_MAP_IOP
 //
@@ -3905,7 +3907,9 @@ SISPreInit(ScrnInfoPtr pScrn, int flags)
if(pSiSEnt) pSiSEnt-SiS_Pr = pSiS-SiS_Pr;
 #endif
memset(pSiS-SiS_Pr, 0, sizeof(struct SiS_Private));
+#ifndef XSERVER_LIBPCIACCESS
pSiS-SiS_Pr-PciTag = pSiS-PciTag;
+#endif
pSiS-SiS_Pr-ChipType = pSiS-ChipType;
pSiS-SiS_Pr-ChipRevision = pSiS-ChipRev;
pSiS-SiS_Pr-SiS_Backup70xx = 0xff;
@@ -7134,7 +7138,9 @@ static Bool
 SISMapMem(ScrnInfoPtr pScrn)
 {
 SISPtr pSiS = SISPTR(pScrn);
+#ifndef XSERVER_LIBPCIACCESS
 

commit xf86-video-tdfx for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-tdfx for openSUSE:Factory 
checked in at 2015-02-10 20:17:13

Comparing /work/SRC/openSUSE:Factory/xf86-video-tdfx (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-tdfx.new (New)


Package is xf86-video-tdfx

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-tdfx/xf86-video-tdfx.changes  
2013-08-23 11:09:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-tdfx.new/xf86-video-tdfx.changes 
2015-02-10 20:17:14.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb  6 13:35:15 UTC 2015 - sndir...@suse.com
+
+- U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch/
+  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch
  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch



Other differences:
--
++ xf86-video-tdfx.spec ++
--- /var/tmp/diff_new_pack.Glr4jR/_old  2015-02-10 20:17:15.0 +0100
+++ /var/tmp/diff_new_pack.Glr4jR/_new  2015-02-10 20:17:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-tdfx
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,8 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch0: U_Remove-mibstore.h.patch
+Patch1: U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch
+Patch2: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -51,6 +53,8 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 %configure

++ U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch ++
From 646137de571a9df950d3a3edb454803268fd5f98 Mon Sep 17 00:00:00 2001
From: Guillem Jover guil...@hadrons.org
Date: Fri, 27 Sep 2013 19:06:31 +0200
Subject: [PATCH] Rename XSERVER_PCIACCESS to XSERVER_LIBPCIACCESS

Using the wrong macro name means that the code uses an obsolete typedef
that issues warnings.

Signed-off-by: Guillem Jover guil...@hadrons.org
Reviewed-by: Adam Jackson a...@redhat.com
---
 src/tdfx.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tdfx.h b/src/tdfx.h
index 7e3be81..d8a72db 100644
--- a/src/tdfx.h
+++ b/src/tdfx.h
@@ -226,7 +226,7 @@ typedef struct _TDFXRec {
   unsigned long MMIOAddr[MAXCHIPS];
   EntityInfoPtr pEnt;
   int numChips;
-#ifndef XSERVER_PCIACCESS
+#ifndef XSERVER_LIBPCIACCESS
   PCITAG PciTag[MAXCHIPS];
 #endif
   Bool Primary;
-- 
1.8.4.5

++ U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++
From 2f71b05e29ae13a0fb6fbc74f4f76c78b6ddb0d7 Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Tue, 29 Jul 2014 09:15:49 -0400
Subject: [PATCH] dri: Stop (uselessly) initializing the ValidateTree hooks

Signed-off-by: Adam Jackson a...@redhat.com
---
 src/tdfx_dri.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/tdfx_dri.c b/src/tdfx_dri.c
index 87ec0e8..981867a 100644
--- a/src/tdfx_dri.c
+++ b/src/tdfx_dri.c
@@ -361,8 +361,6 @@ Bool TDFXDRIScreenInit(ScreenPtr pScreen)
   pDRIInfo-frameBufferStride = pTDFX-stride;
   pDRIInfo-ddxDrawableTableEntry = TDFX_MAX_DRAWABLES;
 
-  pDRIInfo-wrap.ValidateTree = 0;
-  pDRIInfo-wrap.PostValidateTree = 0;
   pTDFX-coreBlockHandler = pDRIInfo-wrap.BlockHandler;
   pDRIInfo-wrap.BlockHandler = TDFXDoBlockHandler;
   pTDFX-coreWakeupHandler = pDRIInfo-wrap.WakeupHandler;
-- 
1.8.4.5

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



commit xf86-video-voodoo for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-voodoo for 
openSUSE:Factory checked in at 2015-02-10 20:17:29

Comparing /work/SRC/openSUSE:Factory/xf86-video-voodoo (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-voodoo.new (New)


Package is xf86-video-voodoo

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-voodoo/xf86-video-voodoo.changes  
2013-08-23 11:10:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-voodoo.new/xf86-video-voodoo.changes 
2015-02-10 20:17:30.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 15:03:35 UTC 2015 - sndir...@suse.com
+
+- U_don-t-use-PCITAG-in-struct-anymore.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_don-t-use-PCITAG-in-struct-anymore.patch



Other differences:
--
++ xf86-video-voodoo.spec ++
--- /var/tmp/diff_new_pack.XWECrS/_old  2015-02-10 20:17:30.0 +0100
+++ /var/tmp/diff_new_pack.XWECrS/_new  2015-02-10 20:17:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-voodoo
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Patch0: U_don-t-use-PCITAG-in-struct-anymore.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
 BuildRequires:  pkgconfig(pciaccess) = 0.8.0
@@ -77,6 +78,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ U_don-t-use-PCITAG-in-struct-anymore.patch ++
From 9172ae566a0e85313fc80ab62b4455393eefe593 Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@redhat.com
Date: Mon, 22 Sep 2014 10:56:02 +1000
Subject: [PATCH] don't use PCITAG in struct anymore

---
 src/voodoo.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/voodoo.h b/src/voodoo.h
index bfed497..c3eb64e 100644
--- a/src/voodoo.h
+++ b/src/voodoo.h
@@ -23,7 +23,9 @@ typedef struct {
   
   Bool   Voodoo2;  /* Set if Voodoo2 */
   pciVideoPtrPciInfo;  /* PCI data */
+#ifndef XSERVER_LIBPCIACCESS
   PCITAG PciTag;
+#endif
   CARD32 PhysBase;
   
   CARD32 Width;/* Current width */
-- 
1.8.4.5

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



commit xf86-video-r128 for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-r128 for openSUSE:Factory 
checked in at 2015-02-10 20:16:53

Comparing /work/SRC/openSUSE:Factory/xf86-video-r128 (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-r128.new (New)


Package is xf86-video-r128

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-r128/xf86-video-r128.changes  
2013-10-25 18:55:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-r128.new/xf86-video-r128.changes 
2015-02-10 20:16:54.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:59:43 UTC 2015 - sndir...@suse.com
+
+- U_Only-declare-PCITAG-if-we-need-it.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_Only-declare-PCITAG-if-we-need-it.patch



Other differences:
--
++ xf86-video-r128.spec ++
--- /var/tmp/diff_new_pack.3cncQB/_old  2015-02-10 20:16:54.0 +0100
+++ /var/tmp/diff_new_pack.3cncQB/_new  2015-02-10 20:16:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-r128
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Patch0: U_Only-declare-PCITAG-if-we-need-it.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -58,6 +59,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ U_Only-declare-PCITAG-if-we-need-it.patch ++
From 9eb693640136bc8bcbe706d642519b4eb23286d4 Mon Sep 17 00:00:00 2001
From: Connor Behan connor.be...@gmail.com
Date: Wed, 27 Nov 2013 18:14:43 -0800
Subject: [PATCH] Only declare PCITAG if we need it

If libpciaccess is available, we do not need to declare the deprecated
PciTag member because it will not be used.

Signed-off-by: Connor Behan connor.be...@gmail.com
Reviewed-by: Alex Deucher alexander.deuc...@amd.com
---
 src/r128.h| 2 ++
 src/r128_driver.c | 7 ---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/r128.h b/src/r128.h
index 90071b4..ee0b1d4 100644
--- a/src/r128.h
+++ b/src/r128.h
@@ -301,7 +301,9 @@ struct r128_2d_state {
 typedef struct {
 EntityInfoPtr pEnt;
 pciVideoPtr   PciInfo;
+#ifndef XSERVER_LIBPCIACCESS
 PCITAGPciTag;
+#endif
 int   Chipset;
 Bool  Primary;
 
diff --git a/src/r128_driver.c b/src/r128_driver.c
index 04a4537..0a0b82b 100644
--- a/src/r128_driver.c
+++ b/src/r128_driver.c
@@ -1957,9 +1957,6 @@ Bool R128PreInit(ScrnInfoPtr pScrn, int flags)
 }
 
 info-PciInfo  = xf86GetPciInfoForEntity(info-pEnt-index);
-info-PciTag   = pciTag(PCI_DEV_BUS(info-PciInfo),
-   PCI_DEV_DEV(info-PciInfo),
-   PCI_DEV_FUNC(info-PciInfo));
 
 xf86DrvMsg(pScrn-scrnIndex, X_INFO,
   PCI bus %d card %d func %d\n,
@@ -1968,6 +1965,10 @@ Bool R128PreInit(ScrnInfoPtr pScrn, int flags)
   PCI_DEV_FUNC(info-PciInfo));
 
 #ifndef XSERVER_LIBPCIACCESS
+info-PciTag   = pciTag(PCI_DEV_BUS(info-PciInfo),
+   PCI_DEV_DEV(info-PciInfo),
+   PCI_DEV_FUNC(info-PciInfo));
+
 if (xf86RegisterResources(info-pEnt-index, 0, ResNone)) goto fail;
 if (xf86SetOperatingState(resVga, info-pEnt-index, ResUnusedOpr)) goto 
fail;
 
-- 
1.8.4.5

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



commit xf86-video-mach64 for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-mach64 for 
openSUSE:Factory checked in at 2015-02-10 20:16:26

Comparing /work/SRC/openSUSE:Factory/xf86-video-mach64 (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-mach64.new (New)


Package is xf86-video-mach64

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-mach64/xf86-video-mach64.changes  
2014-02-28 07:25:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-mach64.new/xf86-video-mach64.changes 
2015-02-10 20:16:28.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 11:34:11 UTC 2015 - sndir...@suse.com
+
+- U_mach64-fix-build-probably-not-required-with-pci-acce.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_mach64-fix-build-probably-not-required-with-pci-acce.patch



Other differences:
--
++ xf86-video-mach64.spec ++
--- /var/tmp/diff_new_pack.WIRuXv/_old  2015-02-10 20:16:29.0 +0100
+++ /var/tmp/diff_new_pack.WIRuXv/_new  2015-02-10 20:16:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-mach64
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,8 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM 
U_Deal-with-pPict-pDrawable-NULL-for-source-only-pictures.patch bnc#865607 -- 
fixes crash in mach64 driver
-Patch:  U_Deal-with-pPict-pDrawable-NULL-for-source-only-pictures.patch
+Patch0: U_Deal-with-pPict-pDrawable-NULL-for-source-only-pictures.patch
+Patch1: U_mach64-fix-build-probably-not-required-with-pci-acce.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -51,7 +52,8 @@
 
 %prep
 %setup -q
-%patch -p1
+%patch0 -p1
+%patch1 -p1
 
 %build
 %configure

++ U_mach64-fix-build-probably-not-required-with-pci-acce.patch ++
From 810572536e153ac9e4615a35e2ab99dc266806da Mon Sep 17 00:00:00 2001
From: Dave Airlie airl...@redhat.com
Date: Sat, 15 Nov 2014 11:29:54 +1000
Subject: [PATCH] mach64: fix build probably not required with pci access
 anyways

---
 src/atipreinit.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/atipreinit.c b/src/atipreinit.c
index e3048d2..dbcd9fd 100644
--- a/src/atipreinit.c
+++ b/src/atipreinit.c
@@ -1079,12 +1079,14 @@ ATIPreInit
 }
 }
 
+#ifndef XSERVER_LIBPCIACCESS
 if (!xf86LinearVidMem())
 {
 xf86DrvMsg(pScreenInfo-scrnIndex, X_ERROR,
 A linear aperture is not available.\n);
 goto bail;
 }
+#endif
 
 /*
  * Set colour weights.
-- 
1.8.4.5

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



commit ntl for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package ntl for openSUSE:Factory checked in 
at 2015-02-10 20:24:02

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


Package is ntl

Changes:

--- /work/SRC/openSUSE:Factory/ntl/ntl.changes  2014-04-26 10:09:17.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ntl.new/ntl.changes 2015-02-10 
20:24:05.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb  3 00:06:14 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 8.1.2
+* Added support for user defined FFT primes for zz_p.
+* Added explicit constructors corresponding to promotions.
+* Thread safety, requires C++11 concurrency.
+
+---

Old:

  ntl-6.1.0.tar.gz

New:

  ntl-8.1.2.tar.gz



Other differences:
--
++ ntl.spec ++
--- /var/tmp/diff_new_pack.D2q8ly/_old  2015-02-10 20:24:06.0 +0100
+++ /var/tmp/diff_new_pack.D2q8ly/_new  2015-02-10 20:24:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ntl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,8 +17,8 @@
 
 
 Name:   ntl
-%define lname  libntl3
-Version:6.1.0
+%define lname  libntl9
+Version:8.1.2
 Release:0
 Summary:Library for Number Theory
 License:GPL-2.0+
@@ -71,12 +71,6 @@
 for i in *.c; do
mv $i ${i%.c}.cpp;
 done;
-for i in GetTime*.cpp MakeDesc*.cpp; do
-   mv $i ${i%.cpp}.c;
-done;
-for i in ctools gen_gmp_aux gen_lip_gmp_aux lip; do
-   mv $i.cpp $i.c;
-done;
 rm -f makefile;
 popd;
 
@@ -84,22 +78,22 @@
 mkdir -p m4;
 autoreconf -fi;
 %configure --disable-static
-make %{?_smp_mflags};
+make %{?_smp_mflags}
 # Ensure we have all source files in Makefile.am
-ldd -r src/.libs/libntl.so
+if ldd -r src/.libs/libntl.so | grep undefined; then
+   exit 1
+fi
 
 %install
-b=%buildroot;
-make install DESTDIR=$b;
-rm -f $b/%_libdir/*.la;
+%make_install
+rm -f %buildroot/%_libdir/*.la
 
 %post -n %lname -p /sbin/ldconfig
-
 %postun -n %lname -p /sbin/ldconfig
 
 %files -n %lname
 %defattr(-,root,root)
-%_libdir/libntl.so.3*
+%_libdir/libntl.so.9*
 
 %files devel
 %defattr(-,root,root)

++ ntl-6.1.0.tar.gz - ntl-8.1.2.tar.gz ++
 67860 lines of diff (skipped)

++ ntl-automake.diff ++
--- /var/tmp/diff_new_pack.D2q8ly/_old  2015-02-10 20:24:06.0 +0100
+++ /var/tmp/diff_new_pack.D2q8ly/_new  2015-02-10 20:24:06.0 +0100
@@ -1,20 +1,21 @@
 From: Jan Engelhardt jeng...@medozas.de
-Date: 2011-09-15 16:30:59.937789147 +0200
-Upstream: not-sent-yet
+Date: 2011-09-15 16:30:59.937789147 +0200 (initial production)
+Upstream: sent 2012-12-06 04:02:00 +0100 (initial send)
+Date: 2015-02-03 01:46:19.087083498 +0100 (update for ntl 8)
 
 ---
- Makefile.am |   13 ++
+ Makefile.am |   13 +
  autogen.sh  |5 ++
- configure.ac|   50 +++
- include/Makefile.am |   90 +
+ configure.ac|   51 +++
+ include/Makefile.am |   94 +++
  include/NTL/g_lip.h |1 
- src/Makefile.am |  112 

- 6 files changed, 270 insertions(+), 1 deletion(-)
+ src/Makefile.am |  113 

+ 6 files changed, 276 insertions(+), 1 deletion(-)
 
-Index: ntl-6.1.0/Makefile.am
+Index: ntl-8.1.2/Makefile.am
 ===
 --- /dev/null
-+++ ntl-6.1.0/Makefile.am
 ntl-8.1.2/Makefile.am
 @@ -0,0 +1,13 @@
 +# -*- Makefile -*-
 +
@@ -29,21 +30,21 @@
 +
 +include/NTL/config.h: config.h
 +  grep 'define NTL_' $ $@
-Index: ntl-6.1.0/autogen.sh
+Index: ntl-8.1.2/autogen.sh
 ===
 --- /dev/null
-+++ ntl-6.1.0/autogen.sh
 ntl-8.1.2/autogen.sh
 @@ -0,0 +1,5 @@
 +#!/bin/sh -e
 +
 +mkdir -p m4;
 +autoreconf -fi;
 +rm -Rf autom4te.cache;
-Index: ntl-6.1.0/configure.ac
+Index: ntl-8.1.2/configure.ac
 ===
 --- /dev/null
-+++ ntl-6.1.0/configure.ac
-@@ -0,0 +1,50 @@
 ntl-8.1.2/configure.ac
+@@ -0,0 +1,51 @@
 +AC_INIT([ntl], [5.5.2])
 +AC_CONFIG_HEADERS([config.h])
 +AC_CONFIG_MACRO_DIR([m4])
@@ -52,6 +53,7 @@
 +AC_PROG_CC
 +AM_PROG_CC_C_O
 +AC_PROG_CXX
++m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
 +LT_INIT
 

commit idzebra for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package idzebra for openSUSE:Factory checked 
in at 2015-02-10 20:24:07

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


Package is idzebra

Changes:

--- /work/SRC/openSUSE:Factory/idzebra/idzebra.changes  2014-06-04 
18:40:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.idzebra.new/idzebra.changes 2015-02-10 
20:24:08.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb  9 10:16:26 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.0.60:
+  + Fix ICU phrase searches for terms split by ICU ZEB-664.
+  + Update Visual Studio nmake file for VS 2013.
+- Update Url and Source to new location.
+
+---

Old:

  idzebra-2.0.59.tar.gz

New:

  idzebra-2.0.60.tar.gz



Other differences:
--
++ idzebra.spec ++
--- /var/tmp/diff_new_pack.TA9tbE/_old  2015-02-10 20:24:09.0 +0100
+++ /var/tmp/diff_new_pack.TA9tbE/_new  2015-02-10 20:24:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package idzebra
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   idzebra
-Version:2.0.59
+Version:2.0.60
 Release:0
 Summary:Fielded Free Text Engine with a Z39.50 Frontend
 License:GPL-2.0+
 Group:  Productivity/Databases/Servers
-Url:http://www.indexdata.dk/zebra/
-Source: http://ftp.indexdata.dk/pub/zebra/%{name}-%{version}.tar.gz
+Url:http://www.indexdata.com/zebra/
+Source: http://ftp.indexdata.com/pub/zebra/%{name}-%{version}.tar.gz
 #PATCH-FIX-UPSTREAM marguer...@opensuse.org - tcl_interp-errorline/result is 
depreciated in tcl 8.5
 Patch:  idzebra-2.0.55-tcl-8.5-abuild.patch
 BuildRequires:  libexpat-devel

++ idzebra-2.0.59.tar.gz - idzebra-2.0.60.tar.gz ++
 19887 lines of diff (skipped)

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



commit spec-cleaner for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package spec-cleaner for openSUSE:Factory 
checked in at 2015-02-10 20:24:20

Comparing /work/SRC/openSUSE:Factory/spec-cleaner (Old)
 and  /work/SRC/openSUSE:Factory/.spec-cleaner.new (New)


Package is spec-cleaner

Changes:

--- /work/SRC/openSUSE:Factory/spec-cleaner/spec-cleaner.changes
2014-12-08 16:56:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.spec-cleaner.new/spec-cleaner.changes   
2015-02-10 20:24:22.0 +0100
@@ -1,0 +2,21 @@
+Tue Feb 10 14:50:34 UTC 2015 - tchva...@suse.com
+
+- Version bump to 0.6.8:
+  * The copyright line broke test, so update again to fix that
+
+---
+Tue Feb 10 14:41:40 UTC 2015 - tchva...@suse.com
+
+- Version bump to 0.6.7:
+  * Update copyright line to match current SUSE one
+
+---
+Tue Feb 10 14:34:43 UTC 2015 - tchva...@suse.com
+
+- Version bump to 0.6.6:
+  * Excludes for java qmake gem_ and kde macros
+  * Cleanup conflicts lines properly
+  * Cleanup kernel subpkgs properly
+  * Work with spaces in version string
+
+---

Old:

  spec-cleaner-0.6.5.tar.gz

New:

  spec-cleaner-0.6.8.tar.gz



Other differences:
--
++ spec-cleaner.spec ++
--- /var/tmp/diff_new_pack.YdXJAh/_old  2015-02-10 20:24:22.0 +0100
+++ /var/tmp/diff_new_pack.YdXJAh/_new  2015-02-10 20:24:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package spec-cleaner
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Vincent Untz vu...@opensuse.org
 #
 # All modifications and additions to the file contributed by third parties
@@ -20,7 +20,7 @@
 # This is used for Fedora, we need to sync this
 %{!?py3_ver: %define py3_ver %{python3_version}}
 Name:   spec-cleaner
-Version:0.6.5
+Version:0.6.8
 Release:0
 Summary:.spec file cleaner
 License:BSD-3-Clause

++ spec-cleaner-0.6.5.tar.gz - spec-cleaner-0.6.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/spec-cleaner-spec-cleaner-0.6.5/data/excludes-bracketing.txt 
new/spec-cleaner-spec-cleaner-0.6.8/data/excludes-bracketing.txt
--- old/spec-cleaner-spec-cleaner-0.6.5/data/excludes-bracketing.txt
2014-11-20 13:42:26.0 +0100
+++ new/spec-cleaner-spec-cleaner-0.6.8/data/excludes-bracketing.txt
2015-02-10 15:48:51.0 +0100
@@ -1,4 +1,6 @@
+aarch64
 add_maven_depmap
+arm
 attr
 bcond_with[^\s]*
 build
@@ -6,6 +8,7 @@
 cmake_[^\s]*
 configure
 config
+create_exclude_filelist
 defattr
 define
 defined
@@ -21,6 +24,8 @@
 files
 fillup_[^\s]*
 find_lang
+gem_install
+gem_packages
 ghost
 global
 gpg_verify
@@ -35,8 +40,13 @@
 install
 install_info
 install_info_delete
+jar
+java
+javac
 jpackage_script
 ix86
+kde4_makeinstall
+kde_post_install
 kf5_makeinstall
 lang
 lang_package
@@ -57,6 +67,8 @@
 pretrans
 preun
 py_compile
+qmake
+qmake5
 requires_[^\s]*
 restart_on_update
 run_permissions
@@ -64,6 +76,7 @@
 setup
 set_permissions
 stop_on_removal
+suse_kernel_module_package
 suse_update_desktop_file
 systemd_requires
 triggerin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/spec-cleaner-spec-cleaner-0.6.5/spec_cleaner/__init__.py 
new/spec-cleaner-spec-cleaner-0.6.8/spec_cleaner/__init__.py
--- old/spec-cleaner-spec-cleaner-0.6.5/spec_cleaner/__init__.py
2014-11-20 13:42:26.0 +0100
+++ new/spec-cleaner-spec-cleaner-0.6.8/spec_cleaner/__init__.py
2015-02-10 15:48:51.0 +0100
@@ -4,7 +4,7 @@
 # All rights reserved.
 # See COPYING for details.
 
-__version__ = '0.6.5'
+__version__ = '0.6.8'
 
 import os
 import sys
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/spec-cleaner-spec-cleaner-0.6.5/spec_cleaner/rpmcopyright.py 
new/spec-cleaner-spec-cleaner-0.6.8/spec_cleaner/rpmcopyright.py
--- old/spec-cleaner-spec-cleaner-0.6.5/spec_cleaner/rpmcopyright.py
2014-11-20 13:42:26.0 +0100
+++ new/spec-cleaner-spec-cleaner-0.6.8/spec_cleaner/rpmcopyright.py
2015-02-10 15:48:51.0 +0100
@@ -27,7 +27,7 @@
 
 def _create_default_copyright(self):
 year = datetime.datetime.now().year
-return '# Copyright (c) {0} SUSE LINUX Products GmbH, Nuernberg, 
Germany.'.format(year)
+return '# Copyright (c) {0} SUSE LINUX GmbH, Nuernberg, 
Germany.'.format(year)
 
 
 def _add_copyright(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit libfplll for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package libfplll for openSUSE:Factory 
checked in at 2015-02-10 20:24:00

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


Package is libfplll

Changes:

--- /work/SRC/openSUSE:Factory/libfplll/libfplll.changes2014-02-05 
16:19:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.libfplll.new/libfplll.changes   2015-02-10 
20:24:02.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  2 22:54:51 UTC 2015 - jeng...@inai.de
+
+- Add git repository metadata
+
+---



Other differences:
--
++ libfplll.spec ++
--- /var/tmp/diff_new_pack.bSJ5oK/_old  2015-02-10 20:24:02.0 +0100
+++ /var/tmp/diff_new_pack.bSJ5oK/_new  2015-02-10 20:24:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libfplll
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -25,6 +25,8 @@
 Group:  Productivity/Scientific/Math
 Url:http://xpujol.net/fplll/
 
+#Git-Clone:git://github.com/dstehle/fplll
+#Git-Web:  https://github.com/dstehle/fplll
 Source: 
http://perso.ens-lyon.fr/damien.stehle/fplll/libfplll-%version.tar.gz
 BuildRequires:  gcc-c++
 BuildRequires:  gmp-devel

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



commit dapl for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package dapl for openSUSE:Factory checked in 
at 2015-02-10 20:24:05

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


Package is dapl

Changes:

--- /work/SRC/openSUSE:Factory/dapl/dapl-debug.changes  2014-08-11 
10:07:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.dapl.new/dapl-debug.changes 2015-02-10 
20:24:06.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb  4 14:33:06 UTC 2015 - dims...@opensuse.org
+
+- Also have dapl-utils conflict with dapl-debug-utils.
+- Fix baselibs.conf to build libdat2-2-32bit.
+
+---
+Mon Sep  8 07:46:08 UTC 2014 - co...@suse.com
+
+- dapl-debug can't obsolete dapl or zypper will switch between the versions
+  all the time. They do conflict though
+
+---
dapl.changes: same change



Other differences:
--
++ dapl-debug.spec ++
--- /var/tmp/diff_new_pack.KD3o3B/_old  2015-02-10 20:24:08.0 +0100
+++ /var/tmp/diff_new_pack.KD3o3B/_new  2015-02-10 20:24:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dapl-debug
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -41,14 +41,8 @@
 BuildRequires:  librdmacm-devel
 BuildRequires:  libtool
 
-%if %name == dapl
-Provides:   dapl-debug
-Obsoletes:  dapl-debug
-%endif
-
 %if %name == dapl-debug
-Provides:   dapl
-Obsoletes:  dapl
+Conflicts:  dapl
 %endif
 
 # bug437293
@@ -101,12 +95,10 @@
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
 Requires:   glibc-devel
-%if %{name} == dapl-debug
-Obsoletes:  dapl-devel
-Provides:   dapl-devel
+%if %{name} == dapl
+Conflicts:  dapl-debug-devel
 %else
-Obsoletes:  dapl-debug-devel
-Provides:   dapl-debug-devel
+Provides:   dapl-devel
 %endif
 
 %descriptiondevel
@@ -132,6 +124,9 @@
 Summary:Test suites for the uDAPL library
 Group:  Productivity/Networking/System
 Requires:   %{name} = %{version}-%{release}
+%if %{name} == dapl
+Conflicts:  dapl-debug-utils
+%endif
 
 %description utils
 Useful test suites to validate the uDAPL library APIs.

++ dapl.spec ++
--- /var/tmp/diff_new_pack.KD3o3B/_old  2015-02-10 20:24:08.0 +0100
+++ /var/tmp/diff_new_pack.KD3o3B/_new  2015-02-10 20:24:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dapl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -41,14 +41,8 @@
 BuildRequires:  librdmacm-devel
 BuildRequires:  libtool
 
-%if %name == dapl
-Provides:   dapl-debug
-Obsoletes:  dapl-debug
-%endif
-
 %if %name == dapl-debug
-Provides:   dapl
-Obsoletes:  dapl
+Conflicts:  dapl
 %endif
 
 # bug437293
@@ -101,12 +95,10 @@
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
 Requires:   glibc-devel
-%if %{name} == dapl-debug
-Obsoletes:  dapl-devel
-Provides:   dapl-devel
+%if %{name} == dapl
+Conflicts:  dapl-debug-devel
 %else
-Obsoletes:  dapl-debug-devel
-Provides:   dapl-debug-devel
+Provides:   dapl-devel
 %endif
 
 %descriptiondevel
@@ -132,6 +124,9 @@
 Summary:Test suites for the uDAPL library
 Group:  Productivity/Networking/System
 Requires:   %{name} = %{version}-%{release}
+%if %{name} == dapl
+Conflicts:  dapl-debug-utils
+%endif
 
 %description utils
 Useful test suites to validate the uDAPL library APIs.

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.KD3o3B/_old  2015-02-10 20:24:08.0 +0100
+++ /var/tmp/diff_new_pack.KD3o3B/_new  2015-02-10 20:24:08.0 +0100
@@ -1,2 +1,2 @@
-libdat2
+libdat2-2
 dapl-devel

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



commit vdr-plugin-satip for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package vdr-plugin-satip for 
openSUSE:Factory checked in at 2015-02-10 20:24:17

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


Package is vdr-plugin-satip

Changes:

--- /work/SRC/openSUSE:Factory/vdr-plugin-satip/vdr-plugin-satip.changes
2015-01-08 23:02:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.vdr-plugin-satip.new/vdr-plugin-satip.changes   
2015-02-10 20:24:18.0 +0100
@@ -1,0 +2,19 @@
+Fri Jan 23 10:33:57 UTC 2015 - seife+...@b1-systems.com
+
+- update to version 1.0.2 (2015-01-18)
+  * 2015-01-10: Version 1.0.1
+- Updated the command-line help and README.
+- Fixed the server teardown.
+- Removed the unnecessary config directory definition.
+- Added a fallback for older glibc libraries.
+- Improved pid selection performance.
+- Added support for Digital Devices CI extension.
+  * 2015-01-18: Version 1.0.2
+- Added configurable CI slots.
+- Fixed parsing of the setup values.
+- Added an option to disable sources via sources.conf.
+- Added a command-line option to disable all the
+  SATIP server quirks.
+- Updated translations
+
+---

Old:

  vdr-satip-1.0.0.tgz

New:

  vdr-satip-1.0.2.tgz



Other differences:
--
++ vdr-plugin-satip.spec ++
--- /var/tmp/diff_new_pack.dcePIl/_old  2015-02-10 20:24:19.0 +0100
+++ /var/tmp/diff_new_pack.dcePIl/_new  2015-02-10 20:24:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vdr-plugin-satip
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 B1 Systems GmbH, Vohburg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,18 +18,18 @@
 
 
 Name:   vdr-plugin-satip
-Version:1.0.0
+Version:1.0.2
 Release:0
 Summary:SATIP Input Plugin for the Video Disc Recorder VDR
 License:GPL-2.0
 Group:  Productivity/Multimedia/Other
 Url:http://www.saunalahti.fi/~rahrenbe/vdr/satip/
 Source0:
http://www.saunalahti.fi/~rahrenbe/vdr/satip/files/vdr-satip-%{version}.tgz
-BuildRequires:  vdr-devel = 2.0.0
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
-BuildRequires:  pkgconfig(libcurl)
 BuildRequires:  tinyxml-devel
+BuildRequires:  vdr-devel = 2.0.0
+BuildRequires:  pkgconfig(libcurl)
 Requires(pre):  %{vdr_prereq}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ vdr-satip-1.0.0.tgz - vdr-satip-1.0.2.tgz ++
 1791 lines of diff (skipped)

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



commit mksusecd for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2015-02-10 20:24:10

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


Package is mksusecd

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2015-02-06 
22:38:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2015-02-10 
20:24:11.0 +0100
@@ -1,0 +2,12 @@
+Tue Feb 10 10:06:07 CET 2015 - snw...@suse.com
+
+- simplify key handling
+- 1.12
+
+---
+Mon Feb  9 12:06:10 CET 2015 - snw...@suse.com
+
+- allow to use a user-supplied signing key
+- 1.11
+
+---

Old:

  mksusecd-1.10.tar.xz

New:

  mksusecd-1.12.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.GlNg1t/_old  2015-02-10 20:24:11.0 +0100
+++ /var/tmp/diff_new_pack.GlNg1t/_new  2015-02-10 20:24:11.0 +0100
@@ -29,7 +29,7 @@
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+
 Group:  Hardware/Other
-Version:1.10
+Version:1.12
 Release:0
 Source: %{name}-%{version}.tar.xz
 Url:https://github.com/wfeldt/mksusecd

++ mksusecd-1.10.tar.xz - mksusecd-1.12.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.10/VERSION new/mksusecd-1.12/VERSION
--- old/mksusecd-1.10/VERSION   2015-02-06 15:13:24.0 +0100
+++ new/mksusecd-1.12/VERSION   2015-02-10 10:02:57.0 +0100
@@ -1 +1 @@
-1.10
+1.12
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.10/changelog new/mksusecd-1.12/changelog
--- old/mksusecd-1.10/changelog 2015-02-06 15:13:24.0 +0100
+++ new/mksusecd-1.12/changelog 2015-02-10 10:02:57.0 +0100
@@ -1,3 +1,9 @@
+2015-02-10:1.12
+   - simplify key handling
+
+2015-02-09:1.11
+   - allow to use a user-supplied signing key
+
 2015-02-06:1.10
- re-sign '/content' if necessary
- fix git2log script
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.10/mksusecd new/mksusecd-1.12/mksusecd
--- old/mksusecd-1.10/mksusecd  2015-02-06 15:13:24.0 +0100
+++ new/mksusecd-1.12/mksusecd  2015-02-10 10:02:57.0 +0100
@@ -138,10 +138,12 @@
 
 sub usage;
 sub check_root;
+sub show_progress;
 sub susystem;
 sub fname;
 sub analyze_boot;
 sub build_todo;
+sub copy_file;
 sub prepare_mkisofs;
 sub build_filelist;
 sub run_mkisofs;
@@ -196,6 +198,7 @@
 my $opt_no_docs = 1;
 my $opt_loader;
 my $opt_sign = 1;
+my $opt_sign_key;
 
 GetOptions(
   'create|c=s'   = sub { $opt_create = 1; $opt_dst = $_[1] },
@@ -211,6 +214,7 @@
   'no-digest'= sub { $opt_digest = undef },
   'sign' = \$opt_sign,
   'no-sign'  = sub { $opt_sign = 0 },
+  'sign-key=s'   = \$opt_sign_key,
   'gpt'  = sub { $opt_hybrid = 1; $opt_hybrid_gpt = 1 },
   'mbr'  = sub { $opt_hybrid = 1; $opt_hybrid_mbr = 1 },
   'hybrid'   = \$opt_hybrid,
@@ -241,8 +245,12 @@
 
 if(open my $f, $ENV{HOME}/.mksusecdrc) {
   while($f) {
-if(/^(\S+?)=\(.*)\\s*$/) {
-  $config{$1} = $2;
+next if /^\s*#/;
+if(/^\s*(\S+?)\s*=\s*(.*?)\s*$/) {
+  my $key = $1;
+  my $val = $2;
+  $val =~ s/^\|\$//g;
+  $config{$key} = $val;
 }
   }
   close $f;
@@ -253,6 +261,8 @@
   $sudo =~ s/\s*$/ /;
 }
 
+$opt_sign_key ||= $config{'sign-key'};
+
 my $tmp = Tmp::new($opt_save_temp);
 
 # my $tmp_mnt = $tmp-mnt('mnt');
@@ -402,9 +412,11 @@
   --no-checkDon't tag ISO (default).
   --digest DIGEST   Use DIGEST to verify ISO integrity (default: 
SHA1).
   --no-digest   Don't calculate any digest.
-  --signRe-sign '/content' with a generated transient 
key if it has
-changed. The public key is added to the 
initrd. (default)
+  --signRe-sign '/content' if it has changed. The 
public part of
+the sign key is added to the initrd. (default)
   --no-sign Don't re-sign '/content'.
+  --sign-key KEY_FILE   Use this key instead of generating a transient 
key.
+See Signing notes below.
   --gpt Add GPT when in isohybrid mode.
   --mbr Add MBR when in isohybrid mode (default).
 Note that 

commit rsync for openSUSE:13.1:Update

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package rsync for openSUSE:13.1:Update 
checked in at 2015-02-10 15:05:46

Comparing /work/SRC/openSUSE:13.1:Update/rsync (Old)
 and  /work/SRC/openSUSE:13.1:Update/.rsync.new (New)


Package is rsync

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.oH7blk/_old  2015-02-10 15:05:47.0 +0100
+++ /var/tmp/diff_new_pack.oH7blk/_new  2015-02-10 15:05:47.0 +0100
@@ -1 +1 @@
-link package='rsync.2753' cicount='copy' /
+link package='rsync.3485' cicount='copy' /

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



commit curl for openSUSE:13.1:Update

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package curl for openSUSE:13.1:Update 
checked in at 2015-02-10 15:05:58

Comparing /work/SRC/openSUSE:13.1:Update/curl (Old)
 and  /work/SRC/openSUSE:13.1:Update/.curl.new (New)


Package is curl

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.8uz75j/_old  2015-02-10 15:06:00.0 +0100
+++ /var/tmp/diff_new_pack.8uz75j/_new  2015-02-10 15:06:00.0 +0100
@@ -1 +1 @@
-link package='curl.3033' cicount='copy' /
+link package='curl.3486' cicount='copy' /

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



commit curl.3486 for openSUSE:13.1:Update

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package curl.3486 for openSUSE:13.1:Update 
checked in at 2015-02-10 15:05:56

Comparing /work/SRC/openSUSE:13.1:Update/curl.3486 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.curl.3486.new (New)


Package is curl.3486

Changes:

New Changes file:

--- /dev/null   2014-12-25 22:38:16.200041506 +0100
+++ /work/SRC/openSUSE:13.1:Update/.curl.3486.new/curl.changes  2015-02-10 
15:05:58.0 +0100
@@ -0,0 +1,1211 @@
+---
+Thu Jan  8 09:55:11 UTC 2015 - vci...@suse.com
+
+- update to 7.40.0:
+  * fixes CVE-2014-8150 (bnc#911363)
+  * fixes CVE-2014-3707 (bnc#901924)
+  * Changes:
+http_digest: Added support for Windows SSPI based authentication
+version info: Added Kerberos V5 to the supported features
+Makefile: Added VC targets for WinIDN
+config-win32: Introduce build targets for VS2012+
+SSL: Add PEM format support for public key pinning
+smtp: Added support for the conversion of Unix newlines during mail send
+smb: Added initial support for the SMB/CIFS protocol
+Added support for HTTP over unix domain sockets,
+via CURLOPT_UNIX_SOCKET_PATH and --unix-socket
+sasl: Added support for GSS-API based Kerberos V5 authentication
+- dropped patches (upstream):
+  * curl-CVE-2014-0015-NTLM_connection_reuse.patch
+  * curl-CVE-2014-0138.patch
+  * curl-CVE-2014-0139.patch
+  * curl-CVE-2014-3613.patch
+  * curl-allow_multiple_handle_removes.patch
+  * curl-test172_cookie_expiration.patch
+- refresh remaining patches
+
+---
+Tue Sep 30 13:42:26 UTC 2014 - vci...@suse.com
+
+- fix a crash in libcurl when removing an already removed handle
+  (bnc#897816)
+  * added curl-allow_multiple_handle_removes.patch
+
+---
+Tue Sep  2 15:56:05 UTC 2014 - vci...@suse.com
+
+- fix for CVE-2014-3613 (bnc#894575) and CVE-2014-3620 (bnc#895991)
+  * libcurl cookie leaks
+  * added curl-CVE-2014-3613.patch
+
+---
+Wed Apr  2 10:43:38 UTC 2014 - vci...@suse.com
+
+- fixes for two security vulnerabilities:
+  * CVE-2014-0138 (bnc#868627)
+- curl: wrong re-use of connections
+- added: curl-CVE-2014-0138.patch
+- removed: curl-CVE-2014-138-bad-reuse.patch
+  * CVE-2014-0139 (bnc#868629)
+- curl: IP address wildcard certificate validation
+- added: curl-CVE-2014-0139.patch
+- removed curl-CVE-2014-139-reject-cert-ip-wildcards.patch
+
+---
+Mon Mar 17 11:16:10 UTC 2014 - vci...@suse.com
+
+- fixes for two security vulnerabilities:
+  * CVE-2014-138 (bnc#868627)
+- curl: wrong re-use of connections
+- added curl-CVE-2014-138-bad-reuse.patch
+  * CVE-2014-139 (bnc#868629)
+- curl: IP address wildcard certificate validation
+- curl-CVE-2014-139-reject-cert-ip-wildcards.patch
+
+---
+Tue Jan 14 12:33:28 UTC 2014 - vci...@suse.com
+
+- fix for CVE-2014-0015 (bnc#858673)
+  * re-use of wrong HTTP NTLM connection in libcurl
+  * added curl-CVE-2014-0015-NTLM_connection_reuse.patch
+- fix test failure because of an expired cookie (bnc#862144)
+  * added curl-test172_cookie_expiration.patch
+
+---
+Mon Dec  2 11:26:06 UTC 2013 - vci...@suse.com
+
+- fix CVE-2013-4545 (bnc#849596)
+  = acknowledge VERIFYHOST without VERIFYPEER
+
+---
+Mon Aug 12 05:29:34 UTC 2013 - crrodrig...@opensuse.org
+
+- curl 7.32.0 
+* curl: allow timeouts to accept decimal values 
+* CURLOPT_XFERINFOFUNCTION: introducing a new progress callback 
+* SIGPIPE: ignored while inside the library
+* OpenSSL: check for read errors
+* configure: automake 1.14 compatibility tweak 
+* curl_multi_wait: set revents for extra fds 
+* global dns cache: didn't work (regression) 
+* mk-ca-bundle.1: don't install on make install
+
+
+---
+Mon Jul  1 18:56:33 UTC 2013 - co...@suse.com
+
+- avoid cycle between curl and krb5 by using krb5-mini-devel
+
+---
+Mon Jun 24 14:00:11 UTC 2013 - vci...@suse.com
+
+- update to 7.31.0
+  * includes fix for CVE-2013-2174 (bnc#824517)
+  * SECURITY VULNERABILITY: curl_easy_unescape() may parse data
+beyond the end of the input buffer [26]
+  * Changes:
+darwinssl: add TLS session resumption
+darwinssl: add TLS crypto authentication
+imap/pop3/smtp: Added support for ;auth= in the URL
+imap/pop3/smtp: Added support for