commit xorg-x11-server for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2013-06-09 17:06:49

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


Package is "xorg-x11-server"

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2013-05-27 10:13:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2013-06-09 17:06:50.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun  6 15:21:18 UTC 2013 - m...@suse.com
+
+- u_xserver_xvfb-randr.patch
+  * Add randr support to Xvfb (bnc#823410)
+
+---

New:

  u_xserver_xvfb-randr.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.xmEVTS/_old  2013-06-09 17:06:51.0 +0200
+++ /var/tmp/diff_new_pack.xmEVTS/_new  2013-06-09 17:06:51.0 +0200
@@ -181,6 +181,7 @@
 Patch227:   u_init_framebuffer_base.patch
 Patch228:   u_aarch64-support.patch
 Patch229:   u_disable-acpi-code.patch
+Patch230:   u_xserver_xvfb-randr.patch
 
 %description
 This package contains the X.Org Server.
@@ -301,6 +302,7 @@
 %patch227 -p1
 %patch228 -p1
 %patch229 -p1
+%patch230 -p1
 
 %build
 autoreconf -fi

++ u_xserver_xvfb-randr.patch ++
Author: Lambros Lambrou 
Subject: xvfb: add randr support
Patch-Mainline: To be upstreamed
References: bnc#823410 fdo#26391
Signed-off-by: Michal Srb 

--- a/hw/vfb/InitOutput.c
+++ b/hw/vfb/InitOutput.c
@@ -66,6 +66,7 @@
 #include "dix.h"
 #include "miline.h"
 #include "glx_extinit.h"
+#include "randrstr.h"
 
 #define VFB_DEFAULT_WIDTH  1280
 #define VFB_DEFAULT_HEIGHT 1024
@@ -812,6 +813,165 @@
 }
 
 static Bool
+vfbRROutputValidateMode(ScreenPtr   pScreen,
+RROutputPtr output,
+RRModePtr   mode)
+{
+rrScrPriv(pScreen);
+
+if (pScrPriv->minWidth <= mode->mode.width &&
+pScrPriv->maxWidth >= mode->mode.width &&
+pScrPriv->minHeight <= mode->mode.height &&
+pScrPriv->maxHeight >= mode->mode.height)
+return TRUE;
+else
+return FALSE;
+}
+
+static Bool
+vfbRRScreenSetSize(ScreenPtr  pScreen,
+   CARD16 width,
+   CARD16 height,
+   CARD32 mmWidth,
+   CARD32 mmHeight)
+{
+WindowPtr root = pScreen->root;
+WindowPtr layer;
+WindowPtr child;
+BoxRec box;
+
+pScreen->width = width;
+pScreen->height = height;
+pScreen->mmWidth = mmWidth;
+pScreen->mmHeight = mmHeight;
+
+// Resize the root window & adjust its clipping
+box.x1 = 0;
+box.y1 = 0;
+box.x2 = pScreen->width;
+box.y2 = pScreen->height;
+REGION_INIT(pScreen, &root->winSize, &box, 1);
+REGION_INIT(pScreen, &root->borderSize, &box, 1);
+REGION_RESET(pScreen, &root->borderClip, &box);
+root->drawable.width = pScreen->width;
+root->drawable.height = pScreen->height;
+REGION_BREAK (pScreen, &root->clipList);
+
+// Update the clipping regions of all windows
+for (child = root->firstChild; child; child = child->nextSib)
+(*pScreen->MarkOverlappedWindows)(child, child, &layer);
+
+if (root->firstChild)
+{
+(*pScreen->MarkOverlappedWindows)(root->firstChild,
+  root->firstChild,
+  (WindowPtr *)NULL);
+}
+else
+{
+(*pScreen->MarkWindow) (root);
+}
+
+(*pScreen->ValidateTree)(root, NullWindow, VTOther);
+(*pScreen->HandleExposures)(root);
+
+// Reposition top-level windows to fit new root size
+// XXX I assume this is what it does, but I'm not sure
+ResizeChildrenWinSize (root, 0, 0, 0, 0);
+
+
+// Check the pointer position
+WindowsRestructured ();
+
+RRScreenSizeNotify (pScreen);
+RRTellChanged(pScreen);
+
+// Flush resulting events, etc to clients
+FlushAllOutput ();
+
+return TRUE;
+}
+
+static Bool
+vfbRRCrtcSet(ScreenPtr pScreen,
+ RRCrtcPtr crtc,
+ RRModePtr mode,
+ int   x,
+ int   y,
+ Rotation  rotation,
+ int   numOutput,
+ RROutputPtr *outputs)
+{
+  return RRCrtcNotify(crtc, mode, x, y, rotation, NULL, numOutput, outputs);
+}
+
+static Bool
+vfbRRGetInfo(ScreenPtr pScreen, Rotation *rotations)
+{
+return TRUE;
+}
+
+static Bool
+vfbRandRInit(ScreenPtr pScreen)
+{
+rrScrPrivPtr pScrPriv;
+#if RANDR_12_INTERFACE
+RRModePtr  mode;
+RRCrtcPtr  crtc;
+RROutputPtroutput;
+xR

commit zisofs-tools for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package zisofs-tools for openSUSE:Factory 
checked in at 2013-06-09 17:07:04

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


Package is "zisofs-tools"

Changes:

--- /work/SRC/openSUSE:Factory/zisofs-tools/zisofs-tools.changes
2011-09-23 12:53:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.zisofs-tools.new/zisofs-tools.changes   
2013-06-09 17:07:06.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun  6 12:43:15 UTC 2013 - mhruse...@suse.com
+
+- require /usr/bin/mkisofs instead of mkisofs package
+
+---



Other differences:
--
++ zisofs-tools.spec ++
--- /var/tmp/diff_new_pack.uDn0kh/_old  2013-06-09 17:07:06.0 +0200
+++ /var/tmp/diff_new_pack.uDn0kh/_new  2013-06-09 17:07:06.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package zisofs-tools (Version 1.0.8)
+# spec file for package zisofs-tools
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   zisofs-tools
 BuildRequires:  zlib-devel
 Url:ftp://ftp.kernel.org/pub/linux/utils/fs/zisofs/
-License:GPL-2.0+
-Group:  System/Filesystems
-Requires:   mkisofs
-AutoReqProv:on
+Requires:   /usr/bin/mkisofs
 Version:1.0.8
-Release:6
+Release:0
 Summary:User tools for zisofs
+License:GPL-2.0+
+Group:  System/Filesystems
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

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



commit xf86-video-mga for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-mga for openSUSE:Factory 
checked in at 2013-06-09 17:06:39

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
2013-03-21 11:05:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-mga.new/xf86-video-mga.changes   
2013-06-09 17:06:40.0 +0200
@@ -1,0 +2,8 @@
+Fri Jun  7 08:12:03 UTC 2013 - sndir...@suse.com
+
+- U_Restrict-kernel-driver-matching-to-g200-server-chips.patch
+  * Restrict kernel driver matching to g200 server chips. Otherwise
+we might catch devices handled by matroxfb, not the mgag200 kms
+driver. (bnc#823410)
+
+---

New:

  U_Restrict-kernel-driver-matching-to-g200-server-chips.patch



Other differences:
--
++ xf86-video-mga.spec ++
--- /var/tmp/diff_new_pack.2OLBpW/_old  2013-06-09 17:06:41.0 +0200
+++ /var/tmp/diff_new_pack.2OLBpW/_new  2013-06-09 17:06:41.0 +0200
@@ -25,6 +25,7 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch0: xf86-video-mga-g200se-swcursor.diff
+Patch1: U_Restrict-kernel-driver-matching-to-g200-server-chips.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -63,6 +64,7 @@
 %prep
 %setup -q
 %patch0 -p0
+%patch1 -p1
 
 %build
 %configure

++ U_Restrict-kernel-driver-matching-to-g200-server-chips.patch ++
>From 49381ff2c3aa98be5bb84494b2ad3f81a0d31bcc Mon Sep 17 00:00:00 2001
From: Julien Cristau 
Date: Mon, 7 Jan 2013 23:04:36 +0100
Subject: [PATCH] Restrict kernel driver matching to g200 server chips

Otherwise we might catch devices handled by matroxfb, not the mgag200
kms driver.

Debian bug#697532

Reported-by: olafbuddenha...@gmx.net
Reviewed-by: Dave Airlie 
Signed-off-by: Julien Cristau 
---
 src/mga_driver.c | 22 --
 1 file changed, 16 insertions(+), 6 deletions(-)

diff --git a/src/mga_driver.c b/src/mga_driver.c
index 8c4bb9c..5cce7ac 100644
--- a/src/mga_driver.c
+++ b/src/mga_driver.c
@@ -676,12 +676,22 @@ MGAPciProbe(DriverPtr drv, int entity_num, struct 
pci_device * dev,
 #endif
 
 if (pci_device_has_kernel_driver(dev)) {
-   xf86DrvMsg(0, X_ERROR,
-   "mga: The PCI device 0x%x at %2.2d@%2.2d:%2.2d:%1.1d has a 
kernel module claiming it.\n",
-   dev->device_id, dev->bus, dev->domain, dev->dev, dev->func);
-xf86DrvMsg(0, X_ERROR,
-   "mga: This driver cannot operate until it has been 
unloaded.\n");
-return FALSE;
+   /* If it's a G200 server chip, it's probably on KMS, so bail; if not,
+* it might be using matroxfb, which is ok. */
+   switch (dev->device_id) {
+   case PCI_CHIP_MGAG200_SE_A_PCI:
+   case PCI_CHIP_MGAG200_SE_B_PCI:
+   case PCI_CHIP_MGAG200_EV_PCI:
+   case PCI_CHIP_MGAG200_ER_PCI:
+   case PCI_CHIP_MGAG200_WINBOND_PCI:
+   case PCI_CHIP_MGAG200_EH_PCI:
+   xf86DrvMsg(0, X_ERROR,
+  "mga: The PCI device 0x%x at %2.2d@%2.2d:%2.2d:%1.1d 
has a kernel module claiming it.\n",
+  dev->device_id, dev->bus, dev->domain, dev->dev, 
dev->func);
+   xf86DrvMsg(0, X_ERROR,
+  "mga: This driver cannot operate until it has been 
unloaded.\n");
+   return FALSE;
+   }
 }
 
 /* Allocate a ScrnInfoRec and claim the slot */
-- 
1.8.1.4

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



commit sbl for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package sbl for openSUSE:Factory checked in 
at 2013-06-09 17:05:38

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


Package is "sbl"

Changes:

--- /work/SRC/openSUSE:Factory/sbl/sbl.changes  2013-03-26 12:06:50.0 
+0100
+++ /work/SRC/openSUSE:Factory/.sbl.new/sbl.changes 2013-06-09 
17:05:39.0 +0200
@@ -1,0 +2,5 @@
+Fri May 31 08:32:58 UTC 2013 - mhruse...@suse.com
+
+- adjusted include path and claimed orca dir to fix build
+
+---



Other differences:
--
++ sbl.spec ++
--- /var/tmp/diff_new_pack.TZMVAG/_old  2013-06-09 17:05:39.0 +0200
+++ /var/tmp/diff_new_pack.TZMVAG/_new  2013-06-09 17:05:39.0 +0200
@@ -63,12 +63,12 @@
 
 
 %prep
-%setup -n sbl-3.5.0
+%setup -q
 %patch1 -p0
 %patch2 -p0
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE" 
LIB_CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -fPIC"
+make CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE" 
LIB_CFLAGS="$RPM_OPT_FLAGS -D_POSIX_C_SOURCE=2 -D_BSD_SOURCE -fPIC 
-I%_includedir/speech-dispatcher"
 
 %install 
 make LIBINSTPATH=%{_libdir} DESTDIR=$RPM_BUILD_ROOT install
@@ -109,6 +109,7 @@
 
 %files orca
 %defattr (-,root,root,755)
+%dir %{python_sitearch}/orca
 %{python_sitearch}/orca/brlapi.py*
 
 %changelog


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



commit rubygem-passenger for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package rubygem-passenger for 
openSUSE:Factory checked in at 2013-06-09 17:05:02

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


Package is "rubygem-passenger"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-passenger/rubygem-passenger.changes  
2013-06-05 13:37:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-passenger.new/rubygem-passenger.changes 
2013-06-09 17:05:03.0 +0200
@@ -1,0 +2,6 @@
+Fri May 31 07:23:25 UTC 2013 - co...@suse.com
+
+- update to version 4.0.5
+   Fixed security vulnerability CVE-2013-2119 and many other things
+
+---

Old:

  passenger-4.0.3.gem

New:

  passenger-4.0.5.gem



Other differences:
--
++ rubygem-passenger.spec ++
--- /var/tmp/diff_new_pack.SuSkkr/_old  2013-06-09 17:05:04.0 +0200
+++ /var/tmp/diff_new_pack.SuSkkr/_new  2013-06-09 17:05:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-passenger
-Version:4.0.3
+Version:4.0.5
 Release:0
 %define mod_name passenger
 %define mod_full_name %{mod_name}-%{version}

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



commit rubygem-log4r for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package rubygem-log4r for openSUSE:Factory 
checked in at 2013-06-09 17:04:51

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


Package is "rubygem-log4r"

Changes:

New Changes file:

--- /dev/null   2013-06-08 20:45:13.37006 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-log4r.new/rubygem-log4r.changes 
2013-06-09 17:04:52.0 +0200
@@ -0,0 +1,36 @@
+---
+Tue Feb 21 11:28:51 UTC 2012 - sasc...@suse.de
+
+- Update toversion 1.1.10
+- Provide rubygem-log4r-1_1
+
+---
+Wed Nov 24 17:17:40 UTC 2010 - mrueck...@suse.de
+
+- update to version 1.1.9
+
+---
+Fri Jun 11 18:40:09 UTC 2010 - mrueck...@suse.de
+
+- update to version 1.1.8
+
+---
+Fri Jun 11 10:00:01 UTC 2010 - mrueck...@suse.de
+
+- use rubygems_requires macro
+
+---
+Thu Dec 24 15:03:31 UTC 2009 - prus...@suse.cz
+
+- updated to 1.1.2
+
+---
+Tue May 22 18:53:56 CEST 2007 - mrueck...@suse.de
+
+- spec cleanup
+
+---
+Sun Oct  1 08:26:14 CEST 2006 - mrueck...@suse.de
+
+- initial package of version 1.0.5
+

New:

  log4r-1.1.10.gem
  rubygem-log4r.changes
  rubygem-log4r.spec



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

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

Name:   rubygem-log4r
Version:1.1.10
Release:0
License:GPL-2.0+ or Ruby
Summary:Log4r, logging framework for ruby
Url:http://log4r.rubyforge.org
Group:  Development/Languages/Ruby
%define mod_name log4r
%define mod_full_name %{mod_name}-%{version}
Source: %{mod_full_name}.gem
BuildRequires:  rubygems_with_buildroot_patch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
Provides:   rubygem-log4r-1_1 = %{version}
%rubygems_requires

%description
See also: http://logging.apache.org/log4j

%package doc
Summary:RDoc documentation for %{mod_name}
Group:  Development/Languages/Ruby
Requires:   %{name} = %{version}

%description doc
Documentation generated at gem installation time.
Usually in RDoc and RI formats.

%prep
%build
%install
%gem_install %{SOURCE0}

%files
%defattr(-,root,root,-)
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec

%files doc
%defattr(-,root,root,-)
%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/

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



commit perl-Net-DNS for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-DNS for openSUSE:Factory 
checked in at 2013-06-09 17:02:05

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


Package is "perl-Net-DNS"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-DNS/perl-Net-DNS.changes
2012-09-21 14:55:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Net-DNS.new/perl-Net-DNS.changes   
2013-06-09 17:02:07.0 +0200
@@ -1,0 +2,41 @@
+Wed Jun  5 19:15:26 UTC 2013 - co...@suse.com
+
+- updated to 0.72
+  Fix rt.cpan.org #82148
+  
+ nxrrset fails to ignore RDATA.
+  
+  Fix rt.cpan.org #82134
+  
+ TSIG key and algorithm names not downcased in digest.
+ Class not forced to ANY.
+  
+  Fix rt.cpan.org #82063
+  
+ yxrrset, nxrrset and rr_del functions should force zero TTL.
+  
+  Fix rt.cpan.org #82047
+   
+ Clarify documentation to indicate that header counts may
+ differ from the number of RRs present if a packet is corrupt.
+  
+  Fix rt.cpan.org #81941
+  
+ Clarify documentation to make clear that bgread will not switch to
+ TCP when a truncated packet is received.
+  
+  Temporary workaround rt.cpan.org #81760
+  
+ The rdatastr method for TXT RRs will return unconditionally 
+ quoted rdata fields to work around an issue with updating 
+ SpamAssassin rules.  This workaround will be reverted after
+ release of a version of SpamAssassin which resolves the issue.
+  
+  Fix rt.cpan.org #81942
+  
+ Fix memory leak on packet cleanup. The back-reference via the
+ header attribute (with xbody) caused the garbage collector not 
+ to clean a packet. Header is now explicitly cleaned via
+ Net::DNS::Packet::DESTROY.
+
+---

Old:

  Net-DNS-0.68.tar.gz

New:

  Net-DNS-0.72.tar.gz



Other differences:
--
++ perl-Net-DNS.spec ++
--- /var/tmp/diff_new_pack.7gYJ1I/_old  2013-06-09 17:02:08.0 +0200
+++ /var/tmp/diff_new_pack.7gYJ1I/_new  2013-06-09 17:02:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Net-DNS
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,52 +17,51 @@
 
 
 Name:   perl-Net-DNS
-Version:0.68
+Version:0.72
 Release:0
-Summary:Perl interface to the DNS resolver
-License:GPL-2.0+ or Artistic-1.0
+%define cpan_name Net-DNS
+Summary:Perl interface to the Domain Name System
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
-Url:http://cpan.org/modules/by-module/Net/
-Source: Net-DNS-%{version}.tar.gz
-BuildRequires:  perl-Digest-HMAC
-BuildRequires:  perl-Net-IP
+Url:http://search.cpan.org/dist/Net-DNS/
+Source: 
http://www.cpan.org/authors/id/N/NL/NLNETLABS/%{cpan_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
 BuildRequires:  perl-macros
-Requires:   perl-Digest-HMAC
-Requires:   perl-Net-IP
+BuildRequires:  perl(Digest::HMAC_MD5) >= 1
+BuildRequires:  perl(Digest::SHA) >= 5.23
+Requires:   perl(Digest::HMAC_MD5) >= 1
+Requires:   perl(Digest::SHA) >= 5.23
 Recommends: perl(IO::Socket::INET6)
-Provides:   perl_dns
-Obsoletes:  perl_dns
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 
 %description
-Net::DNS is a Perl interface to the DNS resolver.  It allows the
-programmer to perform any type of DNS query from a Perl script. For
-details and examples, please read the Net::DNS manual page.
+Net::DNS is a collection of Perl modules that act as a Domain Name System
+(DNS) resolver. It allows the programmer to perform DNS queries that are
+beyond the capabilities of 'gethostbyname' and 'gethostbyaddr'.
+
+The programmer should be somewhat familiar with the format of a DNS packet
+and its various sections. See RFC 1035 or _DNS and BIND_ (Albitz & Liu) for
+details.
 
 %prep
-%setup -q -n Net-DNS-%{version}
+%setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
-find demo contrib -type f | xargs -n 1 sed -i "s@/usr/local/bin/@/usr/bin/@"
-perl Makefile.PL OPTIMIZE="%{optflags} -Wall"
-make %{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+%{__make} %{?_smp_mflags}
 
 %check
-make test
+%{__make} test
 
 %inst

commit perl-Mouse for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Mouse for openSUSE:Factory 
checked in at 2013-06-09 16:59:01

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


Package is "perl-Mouse"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mouse/perl-Mouse.changes2011-11-21 
12:43:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mouse.new/perl-Mouse.changes   
2013-06-09 16:59:02.0 +0200
@@ -1,0 +2,27 @@
+Wed Jun  5 19:11:28 UTC 2013 - co...@suse.com
+
+- updated to 1.11
+ [TEST FIXES]
+ - Ensure Try::Tiny is bundled
+ - Bundle Try::Tiny for tests
+ - Bundle Test::Fatal for tests
+ [FEATURES]
+ - Support PUREPERL_ONLY
+   See the Lancaster Consensus:
+   
https://github.com/sjn/toolchain-site/blob/219db464af9b2f19b04fec05547ac10180a469f3/lancaster-consensus.md#specifying-pure-perl-builds
+ 
+ [BUG FIXES]
+ - Make trigger pass in the old value for Moose compatibility
+   (PR#6 by schwern)
+ [TEST FIXES]
+ - Get perlcritic tests working for PC 1.118 (PR#6 by schwern)
+ - Resolve RT#84518 caused by hash randomization
+ [BUG FIXES]
+ - Fix a memory leak introduced by v1.04 (creaktive & aiyumi, pull-req #4)
+ [FEATURES]
+ - Implement $attr->default($instance) for compatibility with Moose
+ - Add maybe_type() from Moose::Util::TypeConstraints (schwern)
+ [IMPROVEMENT]
+ - performance improvement for v5.14.0 or grater (dex4er)
+
+---

Old:

  Mouse-0.97.tar.gz

New:

  Mouse-1.11.tar.gz



Other differences:
--
++ perl-Mouse.spec ++
--- /var/tmp/diff_new_pack.kbqzoz/_old  2013-06-09 16:59:03.0 +0200
+++ /var/tmp/diff_new_pack.kbqzoz/_new  2013-06-09 16:59:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Mouse
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,90 +16,259 @@
 #
 
 
-
 Name:   perl-Mouse
-Version:0.97
-Release:1
+Version:1.11
+Release:0
+%define cpan_name Mouse
 Summary:Moose minus the antlers
-Source: 
http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/Mouse-%{version}.tar.gz
-Url:http://search.cpan.org/dist/Mouse
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-License:GPL-1.0+ or Artistic-1.0
+Url:http://search.cpan.org/dist/Mouse/
+Source: 
http://www.cpan.org/authors/id/G/GF/GFUJI/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  gcc
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  make
-BuildRequires:  perl(Test::More) >= 0.88
-BuildRequires:  perl(Test::Exception) >= 0.29
-BuildRequires:  perl(ExtUtils::ParseXS) >= 2.21
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.42
 BuildRequires:  perl(Devel::PPPort) >= 3.19
-BuildRequires:  perl(Scalar::Util) >= 1.14
-BuildRequires:  perl(XSLoader) >= 0.1
-BuildRequires:  perl(Regexp::Common)
-BuildRequires:  perl(Locale::US)
-BuildRequires:  perl(HTTP::Headers)
-BuildRequires:  perl(Params::Coerce)
-BuildRequires:  perl(URI)
-BuildRequires:  perl(Test::Output)
-BuildRequires:  perl(Test::LeakTrace)
-BuildRequires:  perl(IO::String)
-BuildRequires:  perl(IO::File)
-BuildRequires:  perl(Declare::Constraints::Simple)
-BuildRequires:  perl(Test::Deep)
-BuildRequires:  perl(Pod::Coverage::Moose)
-BuildRequires:  perl(Moose) >= 1.05
-BuildRequires:  perl(Path::Class)
-BuildRequires:  perl(MRO::Compat)
-BuildRequires:  perl(Class::MOP)
-BuildRequires:  perl(Class::Method::Modifiers::Fast)
-Requires:   perl(Scalar::Util) >= 1.14
-Requires:   perl(XSLoader) >= 0.1
-Requires:   perl(MRO::Compat)
-Requires:   perl(Class::MOP)
-Requires:   perl(Class::Method::Modifiers::Fast)
+BuildRequires:  perl(ExtUtils::ParseXS) >= 2.21
+BuildRequires:  perl(Test::More) >= 0.88
+#BuildRequires: perl(A)
+#BuildRequires: perl(Abstract)
+#BuildRequires: perl(Animal)
+#BuildRequires: perl(AutoloadedBase)
+#BuildRequires: perl(BankAccount)
+#BuildRequires: perl(Bar)
+#BuildRequires: perl(BarClass)
+#BuildRequires: perl(Bar::Role)
+#BuildRequires: perl(BarRole)
+#BuildRequires: perl(Base)
+#BuildRequires: perl(BaseClass)
+#BuildRequires: perl(Baz)
+#BuildRequires: perl(Baz::Role)
+#BuildRequires: perl(Bling)
+#BuildRequires: perl(C1)
+#BuildRequires: perl(CA)
+#BuildRequires: perl(C

commit perl-MooseX-Workers for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Workers for 
openSUSE:Factory checked in at 2013-06-09 16:58:51

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


Package is "perl-MooseX-Workers"

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Workers/perl-MooseX-Workers.changes  
2011-12-30 08:46:22.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Workers.new/perl-MooseX-Workers.changes 
2013-06-09 16:58:52.0 +0200
@@ -1,0 +2,21 @@
+Wed Jun  5 19:09:26 UTC 2013 - co...@suse.com
+
+- updated to 0.23
+   - check class mutability when adding around for Win32
+ 
+   - don't quote external prog/args on Win32 (broke in cmd)
+   - skip 10.worker.enqueue.t on Win32 (fails sometimes, cannot reproduce)
+ 
+   - much better compatibility with Win32
+   - wrap non-job workers in an anon job (which stringifies/numifies to wheel 
ID
+ for backcompat)
+ 
+   - fix another test on Win32
+ 
+   - tell PAUSE not to index doc/
+ 
+   - convert dist to Dist::Zilla
+   - add worker_finished with correct num_workers/has_workers state, deprecate
+ worker_done
+
+---

Old:

  MooseX-Workers-0.16.tar.gz

New:

  MooseX-Workers-0.23.tar.gz



Other differences:
--
++ perl-MooseX-Workers.spec ++
--- /var/tmp/diff_new_pack.Zgspvr/_old  2013-06-09 16:58:53.0 +0200
+++ /var/tmp/diff_new_pack.Zgspvr/_new  2013-06-09 16:58:53.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Workers
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,24 +17,41 @@
 
 
 Name:   perl-MooseX-Workers
-Version:0.16
+Version:0.23
 Release:0
 %define cpan_name MooseX-Workers
 Summary:Simple sub-process management for asynchronous tasks
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Workers/
-Source: 
http://www.cpan.org/authors/id/J/JH/JHANNAH/MooseX-Workers-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/R/RK/RKITOVER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DateTime)
-BuildRequires:  perl(Moose) >= 0.90
-BuildRequires:  perl(POE) >= 1.004
-Requires:   perl(DateTime)
-Requires:   perl(Moose) >= 0.90
-Requires:   perl(POE) >= 1.004
+BuildRequires:  perl(Moose)
+BuildRequires:  perl(Moose::Role)
+BuildRequires:  perl(POE)
+BuildRequires:  perl(POE::Filter::Line)
+BuildRequires:  perl(POE::Filter::Reference)
+BuildRequires:  perl(POE::Wheel::Run)
+BuildRequires:  perl(Package::Stash)
+BuildRequires:  perl(Try::Tiny)
+#BuildRequires: perl(App)
+#BuildRequires: perl(BaseClass)
+#BuildRequires: perl(BaseClass::Subclass)
+#BuildRequires: perl(ManagerRole)
+#BuildRequires: perl(MooseX::Workers)
+#BuildRequires: perl(MooseX::Workers::Engine)
+#BuildRequires: perl(MooseX::Workers::Job)
+#BuildRequires: perl(POE::Session)
+Requires:   perl(Moose)
+Requires:   perl(Moose::Role)
+Requires:   perl(POE)
+Requires:   perl(POE::Wheel::Run)
+Requires:   perl(Package::Stash)
+Requires:   perl(Try::Tiny)
 %{perl_requires}
 
 %description
@@ -57,11 +74,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
-%doc Changes README
+%defattr(-,root,root,755)
+%doc Changes doc LICENSE README
 
 %changelog

++ MooseX-Workers-0.16.tar.gz -> MooseX-Workers-0.23.tar.gz ++
 5955 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-Module-Starter for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Module-Starter for 
openSUSE:Factory checked in at 2013-06-09 16:58:40

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


Package is "perl-Module-Starter"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Module-Starter/perl-Module-Starter.changes  
2011-11-14 14:40:32.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-Starter.new/perl-Module-Starter.changes 
2013-06-09 16:58:41.0 +0200
@@ -1,0 +2,45 @@
+Wed Jun  5 18:43:43 UTC 2013 - co...@suse.com
+
+- updated to 1.60
+   * Guess author from getpwuid if not provided (Hilko Bengen).
+   * Guess email from $ENV{'EMAIL'} if not provided (Hilko Bengen).
+
+   * Skip POD tests unless RELEASE_TESTING environment is on.
+ (Alberto Simoes)
+
+   -- Trying to clean up test failures. More to come.
+
+   -- All changes in this release are by Brendan Byrd (SineSwiper).
+  Thank you! :)
+
+   Licenses:
+   * Add GPL3 licenses (fixes RT #72321).
+   * Add all other supported licenses, including Software::License
+ support (fixes RT #68634).
+
+   New Params:
+   * Make ignores_type an arrayref (closes Pull Request #8).
+   * Add new --ignores parameter (also repeatable).
+   * Add new --minperl parameter (Minimum Perl version).
+
+   File Creation:
+   * Fix MANIFEST.SKIP to skip creation of MANIFEST.
+   * Make all warnings FATAL in created .t/.pm files.
+   * Add config/build requires to Makefile/Build.PL.
+   * Bulk up Module::Install Makefile.PL.
+   * Fix ignores_guts to use different contents for MANIFEST.SKIP and
+ other ignore files.
+
+   test-dist.t Revamp:
+   * Complete refactor of test-dist.t to make it more standardized.
+   * Create new TestParseFile::parse_file_start method that handles
+ parsing of all current created file types (outside of .pm files).
+   * Use subtest for better organization.
+   * Add verification that existing files are there and no new surprise
+ files are not there.
+   * Add new mega-loop to "test all variations of everything" (uses 1%
+ sample size to keep test speed fast for average users).
+
+   * Use .gitignore and MANIFEST.SKIP.
+
+---

Old:

  Module-Starter-1.58.tar.gz

New:

  Module-Starter-1.60.tar.gz



Other differences:
--
++ perl-Module-Starter.spec ++
--- /var/tmp/diff_new_pack.k3aoKT/_old  2013-06-09 16:58:42.0 +0200
+++ /var/tmp/diff_new_pack.k3aoKT/_new  2013-06-09 16:58:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Module-Starter
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,26 +16,29 @@
 #
 
 
-
 Name:   perl-Module-Starter
-Version:1.58
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+Version:1.60
+Release:0
 %define cpan_name Module-Starter
 Summary:a simple starter kit for any module
-Url:http://search.cpan.org/dist/Module-Starter/
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Module-Starter/
 Source: 
http://www.cpan.org/authors/id/X/XS/XSAWYERX/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Path::Class)
+BuildRequires:  perl(parent)
 #BuildRequires: perl(Module::Starter)
 #BuildRequires: perl(Module::Starter::BuilderSet)
 #BuildRequires: perl(Module::Starter::Simple)
+#BuildRequires: perl(-norequire)
+#BuildRequires: perl(TestParseFile)
 #BuildRequires: perl(version)
 Requires:   perl(Path::Class)
+Requires:   perl(parent)
 %{perl_requires}
 
 %description

++ Module-Starter-1.58.tar.gz -> Module-Starter-1.60.tar.gz ++
 4319 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-MRO-Compat for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-MRO-Compat for openSUSE:Factory 
checked in at 2013-06-09 16:59:09

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


Package is "perl-MRO-Compat"

Changes:

--- /work/SRC/openSUSE:Factory/perl-MRO-Compat/perl-MRO-Compat.changes  
2011-11-21 12:43:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-MRO-Compat.new/perl-MRO-Compat.changes 
2013-06-09 16:59:10.0 +0200
@@ -1,0 +2,8 @@
+Wed Jun  5 14:30:50 UTC 2013 - co...@suse.com
+
+- updated to 0.12
+- Bump Class::C3 dependency on 5.8 which in turn will automatically
+  install Class::C3::XS if possible
+- Fix nonfunctional SYNOPSIS (RT#78325)
+
+---

Old:

  MRO-Compat-0.11.tar.gz

New:

  MRO-Compat-0.12.tar.gz



Other differences:
--
++ perl-MRO-Compat.spec ++
--- /var/tmp/diff_new_pack.x6UOEE/_old  2013-06-09 16:59:11.0 +0200
+++ /var/tmp/diff_new_pack.x6UOEE/_new  2013-06-09 16:59:11.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MRO-Compat
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,62 +15,59 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-%bcond_with pod
 
 Name:   perl-MRO-Compat
+Version:0.12
+Release:0
 %define cpan_name MRO-Compat
-Summary:Mro::* interface compatibility for Perls < 5.9.5
-Version:0.11
-Release:2
-License:GPL-1.0+ or Artistic-1.0
+Summary:mro::* interface compatibility for Perls < 5.9.5
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MRO-Compat/
-#Source: 
http://www.cpan.org/modules/by-module/MRO/MRO-Compat-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/B/BO/BOBTFISH/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-%if %{with pod}
-BuildRequires:  perl(Test::Pod) >= 1.14
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.04
-%endif
-BuildRequires:  perl(Test::More) >= 0.47
-BuildRequires:  perl(Class::C3) >= 0.20
-Requires:   perl(Class::C3) >= 0.20
+#BuildRequires: perl(Class::C3)
+#BuildRequires: perl(inc::Module::Install) >= 1.06
+#BuildRequires: perl(JSON)
+#BuildRequires: perl(LWP::Simple)
+#BuildRequires: perl(Module::Build)
+#BuildRequires: perl(Module::Install::Base)
+#BuildRequires: perl(mro)
+#BuildRequires: perl(Parse::CPAN::Meta)
+#BuildRequires: perl(YAML::Tiny)
+%{perl_requires}
 
 %description
 The "mro" namespace provides several utilities for dealing with method
 resolution order and method caching in general in Perl 5.9.5 and higher.
+
 This module provides those interfaces for earlier versions of Perl (back to
 5.6.0 anyways).
 
 It is a harmless no-op to use this module on 5.9.5+. That is to say, code
-which properly uses MRO::Compat will work unmodified on both older Perls and
-5.9.5+.
+which properly uses the MRO::Compat manpage will work unmodified on both
+older Perls and 5.9.5+.
 
 If you're writing a piece of software that would like to use the parts of
-5.9.5+'s mro:: interfaces that are supported here, and you want compatibility
-with older Perls, this is the module for you.
+5.9.5+'s mro:: interfaces that are supported here, and you want
+compatibility with older Perls, this is the module for you.
 
-Some parts of this code will work better and/or faster with Class::C3::XS
-installed (which is an optional prereq of Class::C3, which is in turn a prereq
-of this package), but it's not a requirement.
+Some parts of this code will work better and/or faster with the
+Class::C3::XS manpage installed (which is an optional prereq of the
+Class::C3 manpage, which is in turn a prereq of this package), but it's not
+a requirement.
 
 This module never exports any functions. All calls must be fully qualified
-with the mro:: prefix.
+with the 'mro::' prefix.
 
-The interface documentation here serves only as a quick reference of what the
-function basically does, and what differences between MRO::Compat and 5.9.5+
-One should look out for. The main docs in 5.9.5's mro are the real interface
-docs, and contain a lot of other useful information.
-
-Authors:

commit perl-MIME-Lite for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-MIME-Lite for openSUSE:Factory 
checked in at 2013-06-09 16:57:57

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


Package is "perl-MIME-Lite"

Changes:

--- /work/SRC/openSUSE:Factory/perl-MIME-Lite/perl-MIME-Lite.changes
2012-01-04 07:26:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-MIME-Lite.new/perl-MIME-Lite.changes   
2013-06-09 16:57:59.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun  5 12:31:14 UTC 2013 - co...@suse.com
+
+- updated to 3.029
+  Allow the MIME-Version header to be replaced (thanks, Florian!)
+
+---

Old:

  MIME-Lite-3.028.tar.gz

New:

  MIME-Lite-3.029.tar.gz



Other differences:
--
++ perl-MIME-Lite.spec ++
--- /var/tmp/diff_new_pack.pHGp8N/_old  2013-06-09 16:57:59.0 +0200
+++ /var/tmp/diff_new_pack.pHGp8N/_new  2013-06-09 16:57:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MIME-Lite
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,54 +16,64 @@
 #
 
 
-Url:http://cpan.org/modules/by-module/MIME/
-
 Name:   perl-MIME-Lite
-Version:3.028
+Version:3.029
 Release:0
-Requires:   perl-Email-Date-Format perl-MailTools perl-MIME-Types
-BuildRequires:  perl-Email-Date-Format
-BuildRequires:  perl-MIME-Types
-BuildRequires:  perl-MailTools
-BuildRequires:  perl-macros
-Summary:Module for Generating MIME messages
-License:Artistic-1.0 or GPL-2.0+
+%define cpan_name MIME-Lite
+Summary:low-calorie MIME generator
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Source: MIME-Lite-%{version}.tar.gz
+Url:http://search.cpan.org/dist/MIME-Lite/
+Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
+BuildRequires:  perl-macros
+BuildRequires:  perl(Email::Date::Format) >= 1.000
+BuildRequires:  perl(Mail::Address) >= 1.62
+#BuildRequires: perl(ExtUtils::TBone)
+#BuildRequires: perl(MIME::Lite)
+#BuildRequires: perl(MIME::Types) >= 1.28
+#BuildRequires: perl(Utils)
+Requires:   perl(Email::Date::Format) >= 1.000
+Requires:   perl(Mail::Address) >= 1.62
 %{perl_requires}
 
 %description
-MIME::Lite is intended as a simple, standalone module for generating
-(not parsing!) MIME messages... specifically, it allows you to output a
-simple, decent single- or multi-part message with text or binary
-attachments. It does not require that you have the Mail:: or MIME::
-modules installed.
+In the never-ending quest for great taste with fewer calories, we proudly
+present: _MIME::Lite_.
+
+MIME::Lite is intended as a simple, standalone module for generating (not
+parsing!) MIME messages... specifically, it allows you to output a simple,
+decent single- or multi-part message with text or binary attachments. It
+does not require that you have the Mail:: or MIME:: modules installed, but
+will work with them if they are.
+
+You can specify each message part as either the literal data itself (in a
+scalar or array), or as a string which can be given to open() to get a
+readable filehandle (e.g., " MIME-Lite-3.029.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MIME-Lite-3.028/META.json 
new/MIME-Lite-3.029/META.json
--- old/MIME-Lite-3.028/META.json   2011-11-09 02:58:23.0 +0100
+++ new/MIME-Lite-3.029/META.json   2012-08-17 16:44:54.0 +0200
@@ -4,7 +4,7 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter 
version 2.112621",
+   "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120921",
"license" : [
   "perl_5"
],
@@ -22,19 +22,20 @@
"prereqs" : {
   "build" : {
  "requires" : {
-"ExtUtils::MakeMaker" : 0
+"ExtUtils::MakeMaker" : "0"
  }
   },
   "configure" : {
  "requires" : {
-"ExtUtils::MakeMaker" : 0
+"ExtUtils::MakeMaker" : "0"
  }
   },
   "runtime" : {
  "requires" : {
 "Email::Date::Format" : "1.000",
-"File::Basename" : 0,
-"File::Spec" : 0
+   

commit perl-File-MMagic for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-File-MMagic for 
openSUSE:Factory checked in at 2013-06-09 16:57:32

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


Package is "perl-File-MMagic"

Changes:

--- /work/SRC/openSUSE:Factory/perl-File-MMagic/perl-File-MMagic.changes
2011-11-21 12:39:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-File-MMagic.new/perl-File-MMagic.changes   
2013-06-09 16:57:34.0 +0200
@@ -1,0 +2,33 @@
+Thu Jun  6 12:44:47 UTC 2013 - cdenic...@suse.com
+
+- license update: Apache-1.0
+  correct license is  Apache-1.0
+
+---
+Tue Jun  4 08:53:23 UTC 2013 - co...@suse.com
+
+- updated to 1.29
+* MMagic.pm (checktype_contents): Fix infinity loop bug.
+Reported by nmol...@cpan.org (#77836)
+ 
+* MMagic.pm: Add missing =back.
+ 
+* MMagic.pm (readMagicEntry): Removed deprecated code
+  (defined(@array)) reported by wy...@cpan.org (#74252).
+ 
+* MMagic.pm (checktype_byfilename): Fixed memory leak.
+ 
+* MMagic.pm: Added 'regex' and 'search' support for magic entry,
+  and fixed fatal error when unknown type in magic entry.
+  (The patch made by Man Min Yan, thank you).
+ 
+* MMagic.pm (readMagicLine): Added Hex representation support.
+  (The patch made by Man Min Yan, thank you)
+ 
+* MMagic.pm (checktype_container): Added container check.
+  (Powerd by CodeFest 2006 Akihabara
+   https://members.fsij.org/trac/codefestakihabara2006c)
+ 
+* Applied subclass patch, made by Michael Hendricks.
+
+---

Old:

  File-MMagic-1.27.tar.gz

New:

  File-MMagic-1.29.tar.gz



Other differences:
--
++ perl-File-MMagic.spec ++
--- /var/tmp/diff_new_pack.GxV2b2/_old  2013-06-09 16:57:35.0 +0200
+++ /var/tmp/diff_new_pack.GxV2b2/_new  2013-06-09 16:57:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-File-MMagic
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,51 +15,45 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-File-MMagic
-License:Artistic-1.0
+Version:1.29
+Release:0
+%define cpan_name File-MMagic
+Summary:Guess file type
+License:Apache-1.0
 Group:  Development/Libraries/Perl
-#Obsoletes:
-#Provides:
-AutoReqProv:on
-Summary:Perl modules to guess file types
-Version:1.27
-Release:113
-Source: 
http://search.cpan.org/CPAN/authors/id/K/KN/KNOK/File-MMagic-%{version}.tar.gz
+Url:http://search.cpan.org/dist/File-MMagic/
+Source: 
http://www.cpan.org/authors/id/K/KN/KNOK/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
+#BuildRequires: perl(File::MMagic)
+#BuildRequires: perl(Module::Build)
+%{perl_requires}
 
 %description
-Perl modules to guess file types
-
-
-
-Authors:
-
-Nokubi Takatsugu 
+checktype_filename(), checktype_filehandle() and checktype_contents returns
+string contains file type with MIME mediatype format.
 
 %prep
-%setup -n File-MMagic-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %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)
-%{perl_vendorlib}/File
-%{perl_vendorarch}/auto/File
-%{_mandir}/man?/*
-%doc ChangeLog README.en README.ja
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc ChangeLog COPYING README.en README.ja
 
 %changelog

++ File-MMagic-1.27.tar.gz -> File-MMagic-1.29.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-MMagic-1.27/ChangeLog 
new/File-MMagic-1.29/ChangeLog
--- old/File-MMagic-1.27/ChangeLog  2006-05-23 07:55:27.0 +0200
+++ new/File-MMagic-1.29/ChangeLog  2012-07-12 02:39:35.0 +0200
@@ -1,3 +1,47 @@
+2012-07-12  NOKUBI Takatsugu  
+
+   * MMagic.pm (checktype_contents): F

commit perl-Devel-LexAlias for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-LexAlias for 
openSUSE:Factory checked in at 2013-06-09 16:56:53

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


Package is "perl-Devel-LexAlias"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-LexAlias/perl-Devel-LexAlias.changes  
2012-06-12 07:09:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-LexAlias.new/perl-Devel-LexAlias.changes 
2013-06-09 16:56:54.0 +0200
@@ -1,0 +2,7 @@
+Tue Jun  4 08:22:27 UTC 2013 - co...@suse.com
+
+- updated to 0.05
+ Apply fix for DEBUGGING perls from Reini Urban RT#74862
+ Apply rewrite for 5.17 pad reorganiztion from ? RT#79267
+
+---

Old:

  Devel-LexAlias-0.04.tar.gz

New:

  Devel-LexAlias-0.05.tar.gz



Other differences:
--
++ perl-Devel-LexAlias.spec ++
--- /var/tmp/diff_new_pack.p8c2hS/_old  2013-06-09 16:56:55.0 +0200
+++ /var/tmp/diff_new_pack.p8c2hS/_new  2013-06-09 16:56:55.0 +0200
@@ -1,8 +1,7 @@
-# vim: set sw=3 ts=3 noet:
 #
 # spec file for package perl-Devel-LexAlias
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,49 +17,57 @@
 
 
 Name:   perl-Devel-LexAlias
-Version:0.04
+Version:0.05
 Release:0
-Summary:Alias Lexical Variables
+%define cpan_name Devel-LexAlias
+Summary:alias lexical variables
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Source: 
http://www.cpan.org/modules/by-module/Devel/Devel-LexAlias-%{version}.tar.gz
 Url:http://search.cpan.org/dist/Devel-LexAlias/
+Source: 
http://www.cpan.org/authors/id/R/RC/RCLAMP/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   perl(Devel::Caller) >= 0.03
-BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Devel::Caller) >= 0.03
+#BuildRequires: perl(Devel::LexAlias)
+Requires:   perl(Devel::Caller) >= 0.03
 %{perl_requires}
 
 %description
 Devel::LexAlias provides the ability to alias a lexical variable in a
 subroutines scope to one of your choosing.
 
+If you don't know why you'd want to do this, I'd suggest that you skip this
+module. If you think you have a use for it, I'd insist on it.
+
+Still here?
+
+* lexalias( $where, $name, $variable )
+
+  '$where' refers to the subroutine in which to alias the lexical, it can
+  be a coderef or a call level such that you'd give to 'caller'
+
+  '$name' is the name of the lexical within that subroutine
+
+  '$variable' is a reference to the variable to install at that location
+
 %prep
-%setup -q -n "Devel-LexAlias-%{version}"
-%__sed -i '/^auto_install/d' Makefile.PL
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-%__perl Makefile.PL PREFIX="%{_prefix}"
-%__make %{?jobs:-j%{jobs}}
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+%{__make} %{?_smp_mflags}
+
+%check
+%{__make} test
 
 %install
 %perl_make_install
 %perl_process_packlist
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
-%doc README
-%dir %{perl_vendorarch}/Devel
-%{perl_vendorarch}/Devel/LexAlias.pm
-%dir %{perl_vendorarch}/auto/Devel
-%{perl_vendorarch}/auto/Devel/LexAlias
-%doc %{perl_man3dir}/Devel::LexAlias.%{perl_man3ext}%{ext_man}
-
-# Local Variables:
-# mode: rpm-spec
-# tab-width: 3
-# End:
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes
 
 %changelog

++ Devel-LexAlias-0.04.tar.gz -> Devel-LexAlias-0.05.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-LexAlias-0.04/Changes 
new/Devel-LexAlias-0.05/Changes
--- old/Devel-LexAlias-0.04/Changes 1970-01-01 01:00:00.0 +0100
+++ new/Devel-LexAlias-0.05/Changes 2013-01-16 12:50:37.0 +0100
@@ -0,0 +1,6 @@
+0.05 Wednesday 16th January, 2013
+Apply fix for DEBUGGING perls from Reini Urban RT#74862
+Apply rewrite for 5.17 pad reorganiztion from ? RT#79267
+
+0.04 25th July, 2002
+Initial release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-LexAlias-0.04/LexAlias.pm 
new/Devel-LexAlias-0.05/LexAlias.pm
--- old/Devel-LexAlias-0.04/LexAlias.pm 2002-07-25 16:25:55.0 +0200
+++ new/Devel-LexAlias-0.05/LexAlias.pm 2013-01-16 12:50:37.0 +0100
@@ -7,7 +

commit perl-Devel-GlobalDestruction for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-GlobalDestruction for 
openSUSE:Factory checked in at 2013-06-09 16:55:45

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


Package is "perl-Devel-GlobalDestruction"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Devel-GlobalDestruction/perl-Devel-GlobalDestruction.changes
2011-12-02 09:27:52.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-GlobalDestruction.new/perl-Devel-GlobalDestruction.changes
   2013-06-09 16:55:47.0 +0200
@@ -1,0 +2,26 @@
+Tue Jun  4 08:20:25 UTC 2013 - co...@suse.com
+
+- updated to 0.11
+  * Fix upgrading from version 0.09 or older
+
+  * Rewrite pure-perl implementation in terms of B::main_start
+(greatly simplifies code)
+  * Fix pure-perl behavior under $^C (RT#78619))
+  * Separate XS portion into a compiler-optional dependency
+Devel::GlobalDestruction::XS
+
+  * Rewrite completely broken pure-perl GD detection under threads
+  * Fix pure-perl implementation incorrectly reporting GD during END phase
+
+  * Switch to Sub::Exporter::Progressive
+
+  * Actually detect errors in pure-perl test
+  * Add prototype to pure-perl pre-5.14 version
+
+  * De-retardize XS-less behavior under SpeedyCGI
+  * Test suite now works from within space-containing paths
+
+  * Pure-perl implementation for situations where neither ${^GLOBAL_PHASE} nor
+XS are available
+
+---

Old:

  Devel-GlobalDestruction-0.04.tar.gz

New:

  Devel-GlobalDestruction-0.11.tar.gz



Other differences:
--
++ perl-Devel-GlobalDestruction.spec ++
--- /var/tmp/diff_new_pack.V2B3Dr/_old  2013-06-09 16:55:48.0 +0200
+++ /var/tmp/diff_new_pack.V2B3Dr/_new  2013-06-09 16:55:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-GlobalDestruction
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,23 +16,24 @@
 #
 
 
-
 Name:   perl-Devel-GlobalDestruction
+Version:0.11
+Release:0
 %define cpan_name Devel-GlobalDestruction
-Summary:Expose PL_dirty, the flag which marks global
-Version:0.04
-Release:1
-License:GPL-1.0+ or Artistic-1.0
+Summary:Provides function returning the equivalent of
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Devel-GlobalDestruction/
-Source: 
http://www.cpan.org/authors/id/F/FL/FLORA/Devel-GlobalDestruction-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Scope::Guard)
-BuildRequires:  perl(Sub::Exporter)
-Requires:   perl(Scope::Guard)
-Requires:   perl(Sub::Exporter)
+BuildRequires:  perl(ExtUtils::CBuilder) >= 0.27
+BuildRequires:  perl(Sub::Exporter::Progressive) >= 0.001006
+#BuildRequires: perl(Devel::GlobalDestruction)
+#BuildRequires: perl(Devel::GlobalDestruction::XS)
+Requires:   perl(Sub::Exporter::Progressive) >= 0.001006
 %{perl_requires}
 
 %description
@@ -50,7 +51,7 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+%{__perl} Makefile.PL INSTALLDIRS=vendor
 %{__make} %{?_smp_mflags}
 
 %check
@@ -61,11 +62,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(644,root,root,755)
+%defattr(-,root,root,755)
 %doc Changes
 
 %changelog

++ Devel-GlobalDestruction-0.04.tar.gz -> 
Devel-GlobalDestruction-0.11.tar.gz ++
 8117 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-Devel-Declare for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-Declare for 
openSUSE:Factory checked in at 2013-06-09 16:54:48

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


Package is "perl-Devel-Declare"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-Declare/perl-Devel-Declare.changes
2011-12-27 18:14:01.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-Declare.new/perl-Devel-Declare.changes   
2013-06-09 16:54:50.0 +0200
@@ -1,0 +2,22 @@
+Tue Jun  4 08:19:44 UTC 2013 - co...@suse.com
+
+- updated to 0.006011
+  - In XS, use PERL_NO_GET_CONTEXT for efficiency.
+  - Avoid using Test::Warn, which has previously been a troublesome
+dependency.
+
+  - Fix workaround for unexported core symbols to avoid breaking
+compilation on non-threading builds of Perl 5.8.
+  - Set permissions on .perldb file created during test, to avoid
+"insecure rcfile" warning.
+
+  - Be adaptive about whether to delete the line reallocation filter,
+so as to play as nicely as possible with other kinds of source filter.
+  - Document that injecting newlines doesn't work.
+  - Fix a C declaration after statement, which broke compatibility with
+older compilers (Jan Dubois).
+  - Partially work around unexported core symbols affecting Perl 5.8 on
+Windows (David Bouyssie).
+  - Jump through some hoops to avoid compiler warnings.
+
+---

Old:

  Devel-Declare-0.006008.tar.gz

New:

  Devel-Declare-0.006011.tar.gz



Other differences:
--
++ perl-Devel-Declare.spec ++
--- /var/tmp/diff_new_pack.oXSPbS/_old  2013-06-09 16:54:51.0 +0200
+++ /var/tmp/diff_new_pack.oXSPbS/_new  2013-06-09 16:54:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-Declare
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Devel-Declare
-Version:0.006008
+Version:0.006011
 Release:0
 %define cpan_name Devel-Declare
 Summary:Adding keywords to perl, in perl
@@ -32,7 +33,6 @@
 BuildRequires:  perl(ExtUtils::Depends) >= 0.302
 BuildRequires:  perl(Sub::Name)
 BuildRequires:  perl(Test::More) >= 0.88
-BuildRequires:  perl(Test::Warn)
 #BuildRequires: perl(Devel::CallParser)
 #BuildRequires: perl(Devel::Declare)
 #BuildRequires: perl(Devel::Declare::Context::Simple)

++ Devel-Declare-0.006008.tar.gz -> Devel-Declare-0.006011.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Declare-0.006008/Changes 
new/Devel-Declare-0.006011/Changes
--- old/Devel-Declare-0.006008/Changes  2011-11-05 22:52:05.0 +0100
+++ new/Devel-Declare-0.006011/Changes  2012-02-22 21:35:00.0 +0100
@@ -1,5 +1,26 @@
 Changes for Devel-Declare
 
+0.006011 - 22 Feb 2012
+  - In XS, use PERL_NO_GET_CONTEXT for efficiency.
+  - Avoid using Test::Warn, which has previously been a troublesome
+dependency.
+
+0.006010 - 07 Feb 2012
+  - Fix workaround for unexported core symbols to avoid breaking
+compilation on non-threading builds of Perl 5.8.
+  - Set permissions on .perldb file created during test, to avoid
+"insecure rcfile" warning.
+
+0.006009 - 01 Feb 2012
+  - Be adaptive about whether to delete the line reallocation filter,
+so as to play as nicely as possible with other kinds of source filter.
+  - Document that injecting newlines doesn't work.
+  - Fix a C declaration after statement, which broke compatibility with
+older compilers (Jan Dubois).
+  - Partially work around unexported core symbols affecting Perl 5.8 on
+Windows (David Bouyssie).
+  - Jump through some hoops to avoid compiler warnings.
+
 0.006008 - 05 Nov 2011
   - Adjust toke_scan_str logic to always leave the prefix part of
 linestr unchanged.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Declare-0.006008/Declare.xs 
new/Devel-Declare-0.006011/Declare.xs
--- old/Devel-Declare-0.006008/Declare.xs   2011-11-05 22:47:29.0 
+0100
+++ new/Devel-Declare-0.006011/Declare.xs   2012-02-22 21:28:32.0 
+0100
@@ -1,3 +1,4 @@
+#define PERL_NO_GET_CONTEXT 1
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
@@ -63,6 +64,7 @@
   HV* is_declarator_pack_hash;
   SV** is_declara

commit perl-Devel-Cover for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-Cover for 
openSUSE:Factory checked in at 2013-06-09 16:52:40

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


Package is "perl-Devel-Cover"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-Cover/perl-Devel-Cover.changes
2012-05-31 17:08:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Devel-Cover.new/perl-Devel-Cover.changes   
2013-06-09 16:52:41.0 +0200
@@ -1,0 +2,64 @@
+Tue Jun  4 08:18:45 UTC 2013 - co...@suse.com
+
+- updated to 1.04
+  - Fix return code from cover (Kan Fushihara) (guthub 61).
+  - Fix pod coverage for multiple packages in a file. (rt 34888).
+  - Speed improvements.
+ 
+ Release 1.03 - 20 May 2013
+  - Fixes for correct operation with 5.17.11, 5.18.0 and 5.19.0.
+ 
+ Release 1.02 - 28 April 2013
+  - Make -silent even quieter (Sergiy Borodych) (guthub 49).
+  - mod_perl2 on Debian sets $^X to apache2 (Lasse Makholm) (github 47).
+  - Add csv file for use with metacpan (Dinis Rebolo) (github 56).
+  - cover -test exists with the staus of the underlying test run (Kan 
Fushihara)
+(github 57, 58).
+  - Quieten a warning (Jim Keenan) (github 59).
+ 
+ Release 1.01 - 30 March 2013
+  - Test against 5.14.4, 5.16.3, 5.17.8, 5.17.9 and 5.17.10.
+  - Ignore PERL5OPT during tests.  And other make targets. (rt 43833).
+  - &&=, ||= and //= operators now require RHS to be true and false.
+  - Fix some "uninitialized value" warnings.
+ 
+ Release 1.00 - 10 February 2013
+  - Fix segv in constant folding of xor ops (github 40).
+  - Fix various problems running Devel::Cover under tainting (github 41).
+  - Add JavaScript to filter results in html_basic (David Cantrell) (github 
42).
+Use -norestrict option to keep previous behaviour.
+  - Document ability to mark code as uncoverable (github 45).
+ 
+ Release 0.99 - 31 December 2012
+  - Improve documentation (Olaf Alders) (github 34).
+  - Thank Bytemark for the cpancover server.
+  - Test against 5.17.7.
+  - Provide coverage for subs removed from the symbol table (rt 13207).
+ 
+ Release 0.98 - 25 November 2012
+  - Fix links on html_basic report.
+  - Fix setting Inc under taint mode (Guillaume Aubert) (guthub 26, 33).
+  - Test against 5.17.6.
+  - Improve warnings from Devel::Cover and reduce duplicates.
+  - Make cover -test -nodelete work.
+  - Run cpancover with 5.16.2.
+  - Prefer bugs on github rather than RT.
+ 
+ Release 0.97 - 10 November 2012
+  - Filter paths contained in CWD out of @Inc (Christian Walde) (github 32).
+  - Test against 5.12.5, 5.14.3, 5.16.2, and 5.17.5.
+  - Improve parallelism for cpancover.
+ 
+ Release 0.96 - 24 September 2012
+  - JSON:PP should have been JSON::PP (Paul Hirst) (github 28).
+  - Correct when some new tests should be skipped.
+  - Quieten some debugging output.
+  - Fix infinite loop during global destruction (github 29).
+ 
+ Release 0.95 - 22 September 2012
+  - Fix loss of condition coverage data when first operand calls into ignored
+file (Celogeek, Christian Walde) (rt 63090) (github 15, 20).
+  - Fix similar problem with branch coverage (Robert Freimuth) (rt 72027).
+  - More similar problems (Brian Cassidy, Florian Ragwitz, Heikki J Laaksonen)
+
+---

Old:

  Devel-Cover-0.87.tar.gz

New:

  Devel-Cover-1.04.tar.gz



Other differences:
--
++ perl-Devel-Cover.spec ++
--- /var/tmp/diff_new_pack.0ax0lT/_old  2013-06-09 16:52:42.0 +0200
+++ /var/tmp/diff_new_pack.0ax0lT/_new  2013-06-09 16:52:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-Cover
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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:   perl-Devel-Cover
-Version:0.87
+Version:1.04
 Release:0
 %define cpan_name Devel-Cover
 Summary:Code coverage metrics for Perl
@@ -29,6 +29,7 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::Warn)
+#BuildRequires: perl(Browser::Open)
 #BuildRequires: perl(DC::Test::Dist)
 #BuildRequires: perl(DC::Test::Dist::M1)
 #BuildRequires: perl(Devel::Cover)
@@ -46,6 +47,7 @@
 #BuildRequires: perl(Devel::Cover::DB::IO)
 #BuildRequires: perl(Devel::Cover::DB::Structure)
 #BuildRequires: perl(Devel::Cover::Dumper)
+#BuildRequires: perl(Devel::Cover::Html_Common)
 #BuildRequires: perl(Devel::Cover::Inc)
 #BuildRequires: perl(Devel::Cover::Pod

commit perl-Devel-Caller for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-Caller for 
openSUSE:Factory checked in at 2013-06-09 16:40:04

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


Package is "perl-Devel-Caller"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-Caller/perl-Devel-Caller.changes  
2011-12-21 14:58:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Devel-Caller.new/perl-Devel-Caller.changes 
2013-06-09 16:40:06.0 +0200
@@ -1,0 +2,7 @@
+Tue Jun  4 08:17:41 UTC 2013 - co...@suse.com
+
+- updated to 2.06
+  Corrected some pod syntax RT#56456
+  Handle the new padrange op added in 5.17 RT#81704
+
+---

Old:

  Devel-Caller-2.05.tar.gz

New:

  Devel-Caller-2.06.tar.gz



Other differences:
--
++ perl-Devel-Caller.spec ++
--- /var/tmp/diff_new_pack.1Ca351/_old  2013-06-09 16:40:07.0 +0200
+++ /var/tmp/diff_new_pack.1Ca351/_new  2013-06-09 16:40:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-Caller
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Devel-Caller
-Version:2.05
+Version:2.06
 Release:0
 %define cpan_name Devel-Caller
 Summary:meatier versions of C
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Devel-Caller/
 Source: 
http://www.cpan.org/authors/id/R/RC/RCLAMP/%{cpan_name}-%{version}.tar.gz

++ Devel-Caller-2.05.tar.gz -> Devel-Caller-2.06.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Caller-2.05/Changes 
new/Devel-Caller-2.06/Changes
--- old/Devel-Caller-2.05/Changes   2010-04-08 14:39:24.0 +0200
+++ new/Devel-Caller-2.06/Changes   2013-01-16 11:27:17.0 +0100
@@ -1,3 +1,7 @@
+2.06 Wednesday 16th January, 2013
+   Corrected some pod syntax RT#56456
+   Handle the new padrange op added in 5.17 RT#81704
+
 2.05 Thursday 8th April, 2010
Don't call B::PADOP->gv.  Work by by Florian Ragwitz

http://github.com/rafl/perl-devel-caller/commit/248a23390eef48a73bb717be085da58ce50ff784
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Caller-2.05/MANIFEST 
new/Devel-Caller-2.06/MANIFEST
--- old/Devel-Caller-2.05/MANIFEST  2010-04-08 14:42:05.0 +0200
+++ new/Devel-Caller-2.06/MANIFEST  2013-01-16 11:17:15.0 +0100
@@ -1,7 +1,8 @@
+META.yml
+META.json
 MANIFEST
 Changes
 Makefile.PL
 lib/Devel/Caller.pm
 Caller.xs
 t/Devel-Caller.t
-META.yml Module meta-data (added by MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Caller-2.05/META.json 
new/Devel-Caller-2.06/META.json
--- old/Devel-Caller-2.05/META.json 1970-01-01 01:00:00.0 +0100
+++ new/Devel-Caller-2.06/META.json 2013-01-16 11:27:56.0 +0100
@@ -0,0 +1,42 @@
+{
+   "abstract" : "meatier versions of C",
+   "author" : [
+  "Richard Clamp "
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter 
version 2.120921",
+   "license" : [
+  "perl_5"
+   ],
+   "meta-spec" : {
+  "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
+  "version" : "2"
+   },
+   "name" : "Devel-Caller",
+   "no_index" : {
+  "directory" : [
+ "t",
+ "inc"
+  ]
+   },
+   "prereqs" : {
+  "build" : {
+ "requires" : {
+"ExtUtils::MakeMaker" : "0"
+ }
+  },
+  "configure" : {
+ "requires" : {
+"ExtUtils::MakeMaker" : "0"
+ }
+  },
+  "runtime" : {
+ "requires" : {
+"PadWalker" : "0.08",
+"Test::More" : "0"
+ }
+  }
+   },
+   "release_status" : "stable",
+   "version" : "2.06"
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Caller-2.05/META.yml 
new/Devel-Caller-2.06/META.yml
--- old/Devel-Caller-2.05/META.yml  2010-04-08 14:42:05.0 +0200
+++ new/Devel-Caller-2.06/META.yml  2013-01-16 11:27:56.0 +0100

commit libkqoauth for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package libkqoauth for openSUSE:Factory 
checked in at 2013-06-09 16:36:58

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


Package is "libkqoauth"

Changes:

--- /work/SRC/openSUSE:Factory/libkqoauth/libkqoauth.changes2013-06-05 
13:28:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkqoauth.new/libkqoauth.changes   
2013-06-09 16:36:58.0 +0200
@@ -1,0 +2,6 @@
+Wed May 29 12:34:40 UTC 2013 - dval...@suse.com
+
+- dehardcode x86_64 lib64, use %libdir instead
+  libdir.patch
+
+---

New:

  libdir.patch



Other differences:
--
++ libkqoauth.spec ++
--- /var/tmp/diff_new_pack.lSrm7L/_old  2013-06-09 16:36:59.0 +0200
+++ /var/tmp/diff_new_pack.lSrm7L/_new  2013-06-09 16:36:59.0 +0200
@@ -40,6 +40,7 @@
 Url:https://github.com/kypeli/kQOAuth
 # https://github.com/kypeli/kQOAuth/archive/0.97.tar.gz
 Source0:kQOAuth-%{version}.tar.gz
+Patch0: libdir.patch
 
 BuildRequires:  pkgconfig(QtNetwork) >= 4.7
 
@@ -49,6 +50,7 @@
 
 %package-n %{name}0
 Summary:%{pack_summ}
+Group:  System/Libraries
 
 %description-n %{name}0
 %{pack_desc}
@@ -66,11 +68,13 @@
 
 %prep
 %setup -q -n kQOAuth-%{version}
+%patch0 -p1
 
 
 %build
 qmake \
 PREFIX=%{_prefix} \
+KQOAUTH_LIBDIR=%{_libdir} \
 QMAKE_STRIP="" \
 QMAKE_CXXFLAGS+="%{optflags}"
 make %{?_smp_mflags}

++ libdir.patch ++
Index: kQOAuth-0.97/kqoauth.prf
===
--- kQOAuth-0.97.orig/kqoauth.prf
+++ kQOAuth-0.97/kqoauth.prf
@@ -1,5 +1,4 @@
 KQOAUTH_INCDIR = /usr/include
-KQOAUTH_LIBDIR = /usr/lib
 
 KQOAUTH_INCDIR ~= s!/qt4*!!
 KQOAUTH_LIBDIR ~= s!/qt4*!!
Index: kQOAuth-0.97/src/src.pro
===
--- kQOAuth-0.97.orig/src/src.pro
+++ kQOAuth-0.97/src/src.pro
@@ -75,11 +75,7 @@ else:unix {
 system( ./pcfile.sh $${INSTALL_PREFIX} $${VERSION} )
 pkgconfig.files = kqoauth.pc
 
-contains(QMAKE_HOST.arch, x86_64) {
-  target.path = $${INSTALL_PREFIX}/lib64
-} else {
-  target.path = $${INSTALL_PREFIX}/lib
-}
+target.path = $${KQOAUTH_LIBDIR}
 
 headers.path = $${INSTALL_PREFIX}/include/QtKOAuth
 docs.path = $${INSTALL_PREFIX}/share/doc/$${TARGET}-$${VERSION}/html
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kiwi for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2013-06-09 16:36:03

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.changes2013-05-28 
11:47:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2013-06-09 
16:36:05.0 +0200
@@ -1,0 +2,173 @@
+Fri Jun  7 12:35:24 CEST 2013 - m...@suse.de
+
+- v5.05.19 released
+  
+---
+Fri Jun  7 11:55:12 CEST 2013 - m...@suse.de
+  
+- if the bootloader can't be installed stop the boot process
+  and print a warning message to the user. Continue the boot
+  with a wait-for-key exception (bnc #823617)
+  
+---
+Thu Jun  6 15:59:32 CEST 2013 - m...@suse.de
+  
+- added support to specify the size of the root volume.
+  With regards to the latest LVM consistency checks and adaptions
+  it was only possible to set one volume as the one taking the
+  rest space. This is either the root volume or the one flagged
+  as freespace="all". The possibility to setup a specific size
+  for the root volume and define another volume to take the rest
+  space was lost. With this commit you can now optionally define
+  the size of the root volume:
+  
+  
+  
+  I also fixed the LVM setup when used with standard vmx virtual
+  disks and introduced new consistency checks e.g it doesn't
+  make sense to specify both size and freespace for one volume
+  
+---
+Tue Jun  4 17:36:32 CEST 2013 - m...@suse.de
+  
+- fixed fetchFile function. The variable $imageBlkSize is
+  not initialized, so it is better to use $chunk
+  
+---
+Tue Jun  4 10:13:53 CEST 2013 - rjsch...@suse.de
+  
+- write dvd/cd device entry to vmx file if the device ide is 0 (bnc 822185)
+  
+---
+Mon Jun  3 12:21:23 CEST 2013 - m...@suse.de
+  
+- fixed getSingleInstSourceSatSolvable()
+  * instead of rely on the suffix of a file it's better to
+actually check if it's compressed or non compressed data
+due to redirections and symlinks it might happen that a
+file name e.g 'packages' is resolved into 'packages.en.gz'
+kiwi downloaded the file and failed to check that it's
+a compressed file (bnc #822247)
+
+---
+Mon Jun  3 11:53:24 CEST 2013 - m...@suse.de
+
+- improved error output of failed schema validation
+  * also check if the converted file can be created or not
+
+---
+Mon Jun  3 11:52:39 CEST 2013 - m...@suse.de
+
+- fixed 5.7 to 5.8 xsl stylesheet
+  
+---
+Mon Jun  3 10:18:30 CEST 2013 - m...@suse.de
+  
+- fixed evaluation of oem-ataraid-scan parameter
+  
+---
+Mon Jun  3 09:41:47 CEST 2013 - m...@suse.de
+  
+- fixed raw disk size calculation for split images
+  the boot partition size was not taken into account
+  
+---
+Sun Jun  2 22:05:56 CEST 2013 - m...@suse.de
+  
+- added support for zfs filesystem
+  * still problems with grub2-mkconfig, can't find canonical path
+
+---
+Thu May 30 17:02:26 CEST 2013 - m...@suse.de
+
+- preserve haveged, related to (bnc #766720)
+  
+---
+Thu May 30 16:48:07 CEST 2013 - m...@suse.de
+  
+- fixed OEMRepartLVM creation of recovery partition
+  * the recovery partition eats up all free space but it should
+use only the needed space to store the recovery data.
+
+---
+Thu May 30 11:47:39 CEST 2013 - m...@suse.de
+
+- cleanup fix, use long option --file in grub search
+  instead of -f. That's consistent with the other grub
+  search calls
+  
+---
+Wed May 29 16:41:31 CEST 2013 - m...@suse.de
+  
+- make sure udev is installed and not udev-mini
+  
+---
+Wed May 29 16:00:51 CEST 2013 - m...@suse.de
+  
+- fixed search method used in grub.cfg
+  * we already moved to a uuid search in the early grub config
+but in the main grub.cfg it was still a file search which
+for some reasons is not as stable as the uuid sea

commit iscsitarget for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package iscsitarget for openSUSE:Factory 
checked in at 2013-06-09 16:34:50

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


Package is "iscsitarget"

Changes:

--- /work/SRC/openSUSE:Factory/iscsitarget/iscsitarget.changes  2013-04-14 
10:15:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.iscsitarget.new/iscsitarget.changes 
2013-06-09 16:34:51.0 +0200
@@ -1,0 +2,5 @@
+Fri May 31 12:24:52 UTC 2013 - mhruse...@suse.com
+
+- fixed compilation against kernel 3.9: iscsitarget-kernel-3.9.patch
+
+---

New:

  iscsitarget-kernel-3.9.patch



Other differences:
--
++ iscsitarget.spec ++
--- /var/tmp/diff_new_pack.Qq5iqN/_old  2013-06-09 16:34:52.0 +0200
+++ /var/tmp/diff_new_pack.Qq5iqN/_new  2013-06-09 16:34:52.0 +0200
@@ -36,6 +36,7 @@
 Patch1: iscsitarget-kernel-3.5.patch
 Patch2: iscsitarget-kernel-3.6.0.patch
 Patch3: iscsitarget-kernel-3.7.patch
+Patch4: iscsitarget-kernel-3.9.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %suse_kernel_module_package -n %{name} -p %{S:3} kdump um
 
@@ -62,6 +63,9 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%if 0%{?suse_version} > 1230
+%patch4
+%endif
 %endif
 echo "iscsi_trgt.ko yes" > kernel/Module.supported
 

++ iscsitarget-kernel-3.9.patch ++
Index: kernel/config.c
===
--- kernel/config.c.orig
+++ kernel/config.c
@@ -34,7 +34,7 @@ void iet_procfs_exit(void)
for (i = 0; i < ARRAY_SIZE(iet_proc_entries); i++)
remove_proc_entry(iet_proc_entries[i].name, proc_iet_dir);
 
-   remove_proc_entry(proc_iet_dir->name, proc_iet_dir->parent);
+   remove_proc_entry("iet", init_net.proc_net);
 }
 
 int iet_procfs_init(void)
@@ -46,10 +46,8 @@ int iet_procfs_init(void)
goto err;
 
for (i = 0; i < ARRAY_SIZE(iet_proc_entries); i++) {
-   ent = create_proc_entry(iet_proc_entries[i].name, 0, 
proc_iet_dir);
-   if (ent)
-   ent->proc_fops = iet_proc_entries[i].fops;
-   else
+   ent = proc_create(iet_proc_entries[i].name, 0, proc_iet_dir, 
iet_proc_entries[i].fops);
+   if (!ent)
goto err;
}
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit dracut for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2013-06-09 16:34:21

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


Package is "dracut"

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2013-05-13 
14:47:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2013-06-09 
16:34:23.0 +0200
@@ -1,0 +2,8 @@
+Thu Jun  6 19:20:47 UTC 2013 - crrodrig...@opensuse.org
+
+- version 027_git201306061213
+*  setup correct system time and time zone in initrd
+* systemd integration bugfixes
+* lvm bugfixes.
+
+---

Old:

  dracut-027_git201304121327.tar.xz

New:

  dracut-027_git201306061213.tar.xz
  dracut-font.patch



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.dmGGew/_old  2013-06-09 16:34:24.0 +0200
+++ /var/tmp/diff_new_pack.dmGGew/_new  2013-06-09 16:34:24.0 +0200
@@ -21,7 +21,7 @@
 %define replace_mkinitrd 0
 
 Name:   dracut
-Version:027_git201304121327
+Version:027_git201306061213
 Release:0
 
 Summary:Initramfs generator using udev
@@ -43,7 +43,8 @@
 Patch2: use_sysconfig_values_correctly.patch
 # PATCH-FIX-OPENSUSE At the moment we have 2 paths that contain udev files 
(/lib/udev and /usr/lib/udev)  - tittiatc...@gmail.com
 Patch3: use_all_paths_udev.patch
-
+# PATCH-FIX-OPENSUSE default console font is wrong for openSUSE 
crrodrig...@opensuse.org
+Patch4: dracut-font.patch
 BuildRequires:  bash
 BuildRequires:  dash
 
@@ -120,7 +121,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
-
+%patch4 -p1
 %build
 %configure\
   --systemdsystemunitdir=%{_unitdir}\
@@ -164,6 +165,7 @@
 install -m 0644 dracut.conf.d/suse.conf.example   
%{buildroot}%{_sysconfdir}/dracut.conf.d/01-dist.conf
 
 %if !%{replace_mkinitrd}
+rm %{buildroot}/etc/bash_completion.d/lsinitrd
 rm %{buildroot}%{_bindir}/mkinitrd
 rm %{buildroot}%{_bindir}/lsinitrd
 rm %{buildroot}%{_mandir}/man8/mkinitrd*
@@ -185,6 +187,7 @@
 %if %{replace_mkinitrd}
 %{_bindir}/mkinitrd
 %{_bindir}/lsinitrd
+/etc/bash_completion.d/lsinitrd
 %endif
 %dir %{dracutlibdir}
 %dir %{dracutlibdir}/modules.d

++ correct-paths-for-opensuse.patch ++
--- /var/tmp/diff_new_pack.dmGGew/_old  2013-06-09 16:34:24.0 +0200
+++ /var/tmp/diff_new_pack.dmGGew/_new  2013-06-09 16:34:24.0 +0200
@@ -1,7 +1,5 @@
-Index: dracut-027_git201304121327/dracut.sh
-===
 dracut-027_git201304121327.orig/dracut.sh
-+++ dracut-027_git201304121327/dracut.sh
+--- dracut-027_git201305310800.orig/dracut.sh
 dracut-027_git201305310800/dracut.sh
 @@ -627,7 +627,7 @@ stdloglvl=$((stdloglvl + verbosity_mod_l
  [[ $mdadmconf_l ]] && mdadmconf=$mdadmconf_l
  [[ $lvmconf_l ]] && lvmconf=$lvmconf_l
@@ -11,10 +9,8 @@
  [[ $tmpdir_l ]] && tmpdir="$tmpdir_l"
  [[ $tmpdir ]] || tmpdir=/var/tmp
  [[ $compress_l ]] && compress=$compress_l
-Index: dracut-027_git201304121327/modules.d/10i18n/module-setup.sh
-===
 dracut-027_git201304121327.orig/modules.d/10i18n/module-setup.sh
-+++ dracut-027_git201304121327/modules.d/10i18n/module-setup.sh
+--- dracut-027_git201305310800.orig/modules.d/10i18n/module-setup.sh
 dracut-027_git201305310800/modules.d/10i18n/module-setup.sh
 @@ -85,6 +85,8 @@ install() {
  
  install_base() {
@@ -24,10 +20,8 @@
  
  if ! dracut_module_included "systemd"; then
  inst ${moddir}/console_init.sh /lib/udev/console_init
-Index: dracut-027_git201304121327/modules.d/50plymouth/module-setup.sh
-===
 dracut-027_git201304121327.orig/modules.d/50plymouth/module-setup.sh
-+++ dracut-027_git201304121327/modules.d/50plymouth/module-setup.sh
+--- dracut-027_git201305310800.orig/modules.d/50plymouth/module-setup.sh
 dracut-027_git201305310800/modules.d/50plymouth/module-setup.sh
 @@ -12,12 +12,12 @@ depends() {
  }
  
@@ -44,10 +38,8 @@
  fi
  
  inst_hook emergency 50 "$moddir"/plymouth-emergency.sh
-Index: dracut-027_git201304121327/modules.d/90kernel-modules/module-setup.sh
-===
 dracut-027_git201304121327.orig/modules.d/90kernel-modules/module-setup.sh
-+++ dracut-027_git201304121327/modules.d/90kernel-modules/module-setup.sh
+--- dracut-027_git201305310800.orig/modules.d/90kernel-modules/module-setup.sh
 dracut-027_git201305310800/modules.d/90kernel-modules/module-setup.sh
 @@ -74,7 +74,7 @@ 

commit ccrtp for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package ccrtp for openSUSE:Factory checked 
in at 2013-06-09 16:33:04

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


Package is "ccrtp"

Changes:

--- /work/SRC/openSUSE:Factory/ccrtp/ccrtp.changes  2013-03-24 
21:56:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.ccrtp.new/ccrtp.changes 2013-06-09 
16:33:06.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun  5 22:17:02 UTC 2013 - jeng...@inai.de
+
+- Update to new upstream release 2.0.6
+* Fixes to the build procedure
+- Remove ccrtp-ppc64.patch (no longer applies)
+
+---

Old:

  ccrtp-2.0.1.tar.bz2
  ccrtp-ppc64.patch

New:

  0001-build-properly-use-autotools.patch
  ccrtp-2.0.6.tar.gz
  ccrtp-2.0.6.tar.gz.sig
  ccrtp.keyring



Other differences:
--
++ ccrtp.spec ++
--- /var/tmp/diff_new_pack.3M3e97/_old  2013-06-09 16:33:07.0 +0200
+++ /var/tmp/diff_new_pack.3M3e97/_new  2013-06-09 16:33:07.0 +0200
@@ -18,20 +18,30 @@
 
 Name:   ccrtp
 %define lname libccrtp2
-Version:2.0.1
+Version:2.0.6
 Release:0
 Summary:A Common C++ Class Framework for RTP Packets
 License:SUSE-GPL-2.0+-with-openssl-exception
 Group:  System/Libraries
-Url:http://www.gnu.org/software/ccrtp/
-Source0:%{name}-%{version}.tar.bz2
-Patch1: ccrtp-ppc64.patch
-BuildRequires:  cmake
+Url:http://gnu.org/software/ccrtp/
+
+#Freecode-URL: http://freecode.com/projects/ccrtp
+#Git-Clone:git://git.sv.gnu.org/ccrtp
+Source: ftp://ftp.gnu.org/pub/gnu/ccrtp/%name-%version.tar.gz
+Source2:ftp://ftp.gnu.org/pub/gnu/ccrtp/%name-%version.tar.gz.sig
+Source3:%name.keyring
+Patch1: 0001-build-properly-use-autotools.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libstdc++-devel
+BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  ucommon-devel >= 5.0.0
+%if 0%{?suse_version} >= 1230
+BuildRequires:  gpg-offline
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -61,31 +71,22 @@
 
 %description devel
 This package contains files needed when developing applications using
-ccrtp
+ccrtp.
 
 %prep
-%setup -q -n ccrtp-%{version}
-%patch1 -p1
+%{?gpg_verify: %gpg_verify %{S:2}}
+%setup -q
+%patch -P 1 -p1
 
 %build
-mkdir build
-cd build
-cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-  -DSYSCONFDIR=%{_sysconfdir} \
-  -DMANDIR=%{_mandir} \
-  -DCMAKE_VERBOSE_MAKEFILE=TRUE \
-  -DCMAKE_C_FLAGS_RELEASE:STRING="%{optflags}" \
-  -DCMAKE_CXX_FLAGS_RELEASE:STRING="%{optflags}" \
-  ..
-
-make %{?_smp_mflags} VERBOSE=1
+# Got patches to .am
+autoreconf -fi;
+%configure --disable-static
+make %{?_smp_mflags} V=1;
 
 %install
-cd build
-%make_install
-
-%clean
-rm -rf %{buildroot};
+make install DESTDIR="%buildroot";
+rm -f "%buildroot/%_libdir"/*.la;
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -93,7 +94,7 @@
 
 %files -n %lname
 %defattr(-,root,root,0755)
-%{_libdir}/libccrtp*.so.*
+%{_libdir}/libccrtp*.so.2*
 
 %files devel
 %defattr(-,root,root,0755)

++ 0001-build-properly-use-autotools.patch ++
>From e060ed1f4ce7d54d092dee5dc02a90361e78392c Mon Sep 17 00:00:00 2001
From: Jan Engelhardt 
Date: Thu, 6 Jun 2013 00:23:09 +0200
X-Upstream-Status: submitted, waiting for merge
Subject: [PATCH] build: properly use autotools

---
 Makefile.am  |  1 -
 configure.ac |  5 +++--
 demo/Makefile.am | 18 +-
 src/Makefile.am  |  5 +++--
 4 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index eec516b..046d815 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -9,7 +9,6 @@
 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
-AUTOMAKE_OPTIONS = no-dependencies dist-shar dist-zip
 ACLOCAL_AMFLAGS = -I m4
 EXTRA_DIST = autogen.sh ccrtp.spec ccrtp.spec.in COPYING.addendum \
 ccrtp.list ccrtp.list.in libccrtp.pc libccrtp.pc.in autoconf/* \
diff --git a/configure.ac b/configure.ac
index b5d8a10..5108a20 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,8 @@
 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
-AC_INIT(src/ccrtp/rtp.h)
+AC_INIT([ccrtp], [2.0.3])
+AC_CONFIG_SRCDIR([src/ccrtp/rtp.h])
 
 cfg_options=""
 if test -z "$*" ; then
@@ -42,7 +43,7 @@ AC_PROG_CXXCPP
 AC_PROG_CXX
 # OST_PROG_CC_POSIX
 AM_PROG_LIBTOOL
-AM_INIT_AUTOMAKE(ccrtp,[$VER

commit acct for openSUSE:Factory

2013-06-09 Thread h_root
Hello community,

here is the log from the commit of package acct for openSUSE:Factory checked in 
at 2013-06-09 16:32:21

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


Package is "acct"

Changes:

--- /work/SRC/openSUSE:Factory/acct/acct.changes2013-04-26 
15:35:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.acct.new/acct.changes   2013-06-09 
16:32:22.0 +0200
@@ -1,0 +2,7 @@
+Thu Jun  6 14:53:49 UTC 2013 - schue...@gmx.net
+
+- Converted rc file to systemd unit file.
+- Fixed a bug where the accounting file wasn't reopened after
+  logrotate, because force-reload isn't implemented.
+
+---

Old:

  rc.acct

New:

  acct.service



Other differences:
--
++ acct.spec ++
--- /var/tmp/diff_new_pack.1kKKjo/_old  2013-06-09 16:32:23.0 +0200
+++ /var/tmp/diff_new_pack.1kKKjo/_new  2013-06-09 16:32:23.0 +0200
@@ -21,12 +21,15 @@
 Version:6.5.5
 Release:0
 Source: %{name}-%{version}.tar.gz
-Source1:rc.acct
+Source1:acct.service
 Source2:logrotate.acct
 BuildRequires:  libtool
+BuildRequires:  systemd
+%{?systemd_requires}
 %if %suse_version >= 1230
 BuildRequires:  makeinfo
 %endif
+Requires:   logrotate
 Patch:  %{name}-hz.patch
 Patch2: %{name}-info.patch
 Patch3: %{name}-ac.patch
@@ -61,31 +64,34 @@
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install CC="%{__cc}" CXX="%{__cxx}"
-install -d -m 755 $RPM_BUILD_ROOT/etc/{init.d,logrotate.d}
-install -m 755 %{S:1}  $RPM_BUILD_ROOT/etc/init.d/acct
+install -d -m 755 $RPM_BUILD_ROOT/etc/logrotate.d
+install -d -m 755 $RPM_BUILD_ROOT/%{_unitdir}
+install -m 644 %{S:1} $RPM_BUILD_ROOT/%{_unitdir}/acct.service
 install -m 644 %{S:2}  $RPM_BUILD_ROOT/etc/logrotate.d/acct
 install -d -m 755 $RPM_BUILD_ROOT/var/account/
 touch $RPM_BUILD_ROOT/var/account/pacct
 chmod 600 $RPM_BUILD_ROOT/var/account/pacct
 cd $RPM_BUILD_ROOT/usr/sbin/
-ln -sf ../../etc/init.d/acct rcacct
+ln -sf service rcacct
 rm -f $RPM_BUILD_ROOT/usr/bin/last
 rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/last.1*
 
+%pre
+%service_add_pre acct.service
+
 %post
-%{fillup_and_insserv acct}
 echo "Creating /var/account/pacct"
 touch var/account/pacct
 chmod 600 var/account/pacct
 %install_info --info-dir=%{_infodir} %{_infodir}/accounting.info.gz
+%service_add_post acct.service
 
 %preun
-%stop_on_removal acct
+%service_del_preun acct.service
 
 %postun
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/accounting.info.gz
-%restart_on_update acct
-%{insserv_cleanup}
+%service_del_postun acct.service
 
 %files
 %defattr(-, root, root)
@@ -97,9 +103,9 @@
 %dir /var/account
 %attr(600, root, root) %ghost /var/account/pacct
 %config /etc/logrotate.d/acct
-%config /etc/init.d/acct
 /usr/bin/ac
 /usr/bin/lastcomm
 /usr/sbin/*
+%{_unitdir}/acct.service
 
 %changelog

++ acct.service ++
[Unit]
Description=Process accounting
Documentation=man:accton(8)

[Service]
Type=oneshot
RemainAfterExit=true
ExecStartPre=/bin/sh -c 'test -e /var/account/pacct || touch /var/account/pacct'
ExecStart=/usr/sbin/accton /var/account/pacct
ExecStop=/usr/sbin/accton off

++ logrotate.acct ++
--- /var/tmp/diff_new_pack.1kKKjo/_old  2013-06-09 16:32:23.0 +0200
+++ /var/tmp/diff_new_pack.1kKKjo/_new  2013-06-09 16:32:23.0 +0200
@@ -8,7 +8,7 @@
 missingok
 create 640 root root
 postrotate
- /etc/init.d/acct force-reload
+ /usr/bin/systemctl restart acct.service
 endscript
 }
 

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