commit go-gozmq for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package go-gozmq for openSUSE:Factory 
checked in at 2014-09-17 10:10:01

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


Package is go-gozmq

Changes:

--- /work/SRC/openSUSE:Factory/go-gozmq/go-gozmq.changes2013-10-21 
19:52:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.go-gozmq.new/go-gozmq.changes   2014-09-17 
10:10:03.0 +0200
@@ -1,0 +2,32 @@
+Tue Sep 16 17:04:11 UTC 2014 - i...@marguerite.su
+
+- add Requires: zeromq-devel
+  * gozmq needs -lzmq.
+
+---
+Tue Sep 16 15:25:58 UTC 2014 - i...@marguerite.su
+
+- the previous way to force building against specific zeromq
+  version is totally wrong:
+  * eg. gozmq depends zmq_2_2.go for zmq_3_x builds, and
+zmq_2_2.go, zmq_3_x.go for zmq_4_x builds.
+  * so manually ran go get --tags zmq_2/3/4_x \$BUILDFLAGS
+\$IMPORTPATH command to make sure the build is correct.
+- reenable tests. A correct build will pass tests.
+
+---
+Sat Sep  6 09:02:01 UTC 2014 - i...@marguerite.su
+
+- update version 0.0.0+git20140623.d1b01a2
+  * Generate SetTCPAcceptFilter(string)
+  * Generate SetROUTERMandatory(bool)
+  * Generate SetXPUBVerbose(bool)
+  * Generate MaxMsgSize()
+  * Generate DelayAttachOnConnect()
+  * Generate IPv4Only()
+  * Add SetTCPAcceptFilterNil
+  * Basic support for ZeroMQ 4.0.1
+- disable tests
+- Build against zeromq-4.x for openSUSE-13.2+
+
+---

Old:

  gozmq-0.0.0+git20130912.62f3d98.tar.bz2

New:

  gozmq-0.0.0+git20140623.d1b01a2.tar.bz2



Other differences:
--
++ go-gozmq.spec ++
--- /var/tmp/diff_new_pack.E3WFaB/_old  2014-09-17 10:10:04.0 +0200
+++ /var/tmp/diff_new_pack.E3WFaB/_new  2014-09-17 10:10:04.0 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package go-gozmq
 #
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Sascha Peilicke sasc...@gmx.de
-# Copyright (c) 2013 SUSE Linux Products GmbH
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,51 +18,57 @@
 
 
 Name:   go-gozmq
-Version:0.0.0+git20130912.62f3d98
+Version:0.0.0+git20140623.d1b01a2
 Release:0
 Summary:Go bindings for ZeroMQ
-Group:  Development/Languages/Other
 License:Apache-2.0
-URL:http://github.com/alecthomas/gozmq
-Source0:gozmq-%{version}.tar.bz2
+Group:  Development/Languages/Other
+Url:http://github.com/alecthomas/gozmq
+Source: gozmq-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  go-devel
 BuildRequires:  pkg-config
 BuildRequires:  zeromq-devel
-%if 0%{?suse_version} = 1100
-Recommends: go-gozmq-doc
-Recommends: zeromq
-%endif
+Requires:   zeromq-devel
 %{go_provides}
 %{go_requires}
+%{go_recommends}
 
 %description
 Go bindings for the ZeroMQ library.
 
-%package doc
-Summary:API documenation
-Group:  Documentation/Other
-Requires:   %{name} = %{version}
-
-%description doc
-API, examples and documentation.
+%godoc_package
 
 %prep
 %setup -q -n gozmq-%{version}
+
+# 12.3+ has zeromq 3.x and 12.2- has zeromq 2.1.
+# zmq_3_x_test.go used zeromq 3.x specific functions;
+# zmq_test.go used zeromq 2.x (but not 2.1 only) 
+# specific functions.
 %if 0%{?suse_version} = 1230
-rm *2_*.go zmq.go zmq_test.go
+rm zmq_test.go
 %else
-rm *3_*.go zmq.go zmq_test.go
+rm zmq_3_x_test.go zmq_test.go
 %endif
 # The following tests need access to a running zeromq:
 rm gozmqgen/main_test.go
 
 %build
 %goprep github.com/alecthomas/gozmq
-#gofix github.com/alecthomas/gozmq
-#gobuild gozmqfix
-#_builddir/go/bin/gozmqfix .
-%gobuild .
+# manual build
+export IMPORTPATH=github.com/alecthomas/gozmq
+export BUILDFLAGS=-s -v -p 4 -x
+export GOPATH=%{_builddir}/go:%{_libdir}/go/contrib
+%if 0%{?suse_version} = 1230
+%if 0%{?suse_version}  1315
+go get --tags zmq_4_x $BUILDFLAGS $IMPORTPATH
+%else
+go get --tags zmq_3_x $BUILDFLAGS $IMPORTPATH
+%endif
+%else
+go get --tags zmq_2_1 $BUILDFLAGS $IMPORTPATH
+%endif
 
 %install
 %goinstall
@@ -73,7 +79,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS README.md examples
+%doc AUTHORS README.md
 %{go_contribdir}/*
 
 %files doc

++ gozmq-0.0.0+git20130912.62f3d98.tar.bz2 - 
gozmq-0.0.0+git20140623.d1b01a2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit go-go-gtk for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package go-go-gtk for openSUSE:Factory 
checked in at 2014-09-17 10:09:46

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


Package is go-go-gtk

Changes:

--- /work/SRC/openSUSE:Factory/go-go-gtk/go-go-gtk.changes  2013-08-13 
15:47:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.go-go-gtk.new/go-go-gtk.changes 2014-09-17 
10:09:47.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep 15 07:06:20 UTC 2014 - i...@marguerite.su
+
+- update version 0.0.0+git20140808
+- drop patch: g-thread-deprecated.patch
+  * upstream code change
+- add patch: g-thread-init.patch
+  * fix build error on SLE
+
+---

Old:

  g-thread-deprecated.patch
  go-gtk-0.0.0+git20120304.tar.bz2

New:

  g-thread-init.patch
  go-gtk-0.0.0+git20140808.tar.bz2



Other differences:
--
++ go-go-gtk.spec ++
--- /var/tmp/diff_new_pack.IsTZ0P/_old  2014-09-17 10:09:50.0 +0200
+++ /var/tmp/diff_new_pack.IsTZ0P/_new  2014-09-17 10:09:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package go-go-gtk
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011, Sascha Peilicke sasc...@gmx.de
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,38 +17,29 @@
 #
 
 
-
 Name:   go-go-gtk
-Version:0.0.0+git20120304
+Version:0.0.0+git20140808
 Release:0
 Summary:Go bindings for GTK
 License:BSD-3-Clause and LGPL-2.1+
 Group:  Development/Languages/Other
 Url:http://github.com/mattn/go-gtk
-Source0:go-gtk-%{version}.tar.bz2
-Patch0: g-thread-deprecated.patch
+Source: go-gtk-%{version}.tar.bz2
+#PATCH-FIX-UPSTREAM fix g_thread_init undefined error on SLES
+Patch: g-thread-init.patch
 BuildRequires:  go-devel
-ExclusiveArch:  %ix86 x86_64 %arm
-BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  gtk2-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version}  0%{?suse_version} = 1140
-BuildRequires:  gtksourceview-devel
-%else
-%if 0%{?mandriva_version}  0%{?mandriva_version} = 201010
-BuildRequires:  gtksourceview-devel
-%else
-%if 0%{?rhel_version}  0%{?rhel_version}  600
+%{go_requires}
+%{go_provides}
+%if 0%{?suse_version} = 1140
 BuildRequires:  gtksourceview-devel
 %else
 BuildRequires:  gtksourceview2-devel
 %endif
-%endif
-%endif
-BuildRequires:  pkgconfig(pango)
 %if 0%{?suse_version} = 1100
 Recommends: go-go-gtk-doc
 %endif
-%{go_provides}
 
 %description
 GTK bindingins for the Go programming language.
@@ -63,8 +54,8 @@
 
 %prep
 %setup -q -n go-gtk
-%if 0%{?suse_version} = 1220
-%patch0 -p1
+%if 0%{?sles_version}
+%patch -p1
 %endif
 
 %build

++ g-thread-init.patch ++
Index: go-gtk/glib/glib.go
===
--- go-gtk.orig/glib/glib.go
+++ go-gtk/glib/glib.go
@@ -1,7 +1,7 @@
 package glib
 
 // #include glib.go.h
-// #cgo pkg-config: glib-2.0 gobject-2.0
+// #cgo pkg-config: glib-2.0 gobject-2.0 gthread-2.0
 import C
 import unsafe
 import reflect
++ go-gtk-0.0.0+git20120304.tar.bz2 - go-gtk-0.0.0+git20140808.tar.bz2 
++
 24085 lines of diff (skipped)

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



commit hdjmod for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package hdjmod for openSUSE:Factory checked 
in at 2014-09-17 10:11:06

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


Package is hdjmod

Changes:

--- /work/SRC/openSUSE:Factory/hdjmod/hdjmod.changes2012-12-28 
15:01:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.hdjmod.new/hdjmod.changes   2014-09-17 
10:11:07.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 25 20:47:24 UTC 2014 - ma...@marix.org
+
+- Fixed build on kernel 3.16
+  The required patch is hdjmod_kernel_3.16.patch
+
+---

New:

  hdjmod_kernel_3.16.patch



Other differences:
--
++ hdjmod.spec ++
--- /var/tmp/diff_new_pack.xOtFFQ/_old  2014-09-17 10:11:08.0 +0200
+++ /var/tmp/diff_new_pack.xOtFFQ/_new  2014-09-17 10:11:08.0 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package hdjmod
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright 2008 Matthias Bach ma...@marix.org
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2008-2014 Matthias Bach ma...@marix.org
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -49,10 +49,8 @@
 Patch6: hdjmod_kernel_3.6.patch
 # PATCH-FIX-UPSTREAM hdjmod_kernel_3.7.patch ma...@marix.org -- Fix build on 
kernel 3.7 and newer
 Patch7: hdjmod_kernel_3.7.patch
-
-# The package triggers RPM-Lint warning because it misses requires to the 
proper kernel packages
-# These requires should be added by the kernel_module_package macro, so, 
therefore the are not
-# fixed in this package. See also 
https://bugzilla.novell.com/show_bug.cgi?id=479141.
+# PATCH-FIX-UPSTREAM hdjmod_kernel_3.16.patch ma...@marix.org -- Fix build on 
kernel 3.16 and newer
+Patch8: hdjmod_kernel_3.16.patch
 
 %suse_kernel_module_package -p%_sourcedir/preamble
 
@@ -74,6 +72,7 @@
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 set -- *
 mkdir source
 mv $@ source/

++ hdjmod_kernel_3.16.patch ++
From: Matthias Bach ma...@marix.org
Date: 2014-07-26 23:30:00 +0200
Subject: Fix compile on kernel 3.16
Upstream: to be done

The module no longer compiled on 3.16 due to API changes in ALSA.

diff -Naru hdjmod-1.28o/device.c hdjmod-1.28/device.c
--- hdjmod-1.28o/device.c   2014-07-25 22:38:52.985186212 +0200
+++ hdjmod-1.28/device.c2014-07-25 22:44:05.297761993 +0200
@@ -1660,7 +1660,13 @@
/* let the kernel option override custom id */
strncpy(card_id,id[idx],sizeof(card_id)-1);
}
-#if ( LINUX_VERSION_CODE = KERNEL_VERSION(2,6,30) )
+#if ( LINUX_VERSION_CODE = KERNEL_VERSION(3,16,0) )
+   err = snd_card_new(dev-dev, index[idx], card_id/*id[idx]*/, 
THIS_MODULE, 0, card );
+   if (err) {
+   snd_printk(KERN_WARNING snd_hdj_chip_create(): cannot create 
card instance %d\n, idx);
+   return err;
+   }
+#elif ( LINUX_VERSION_CODE = KERNEL_VERSION(2,6,30) )
err = snd_card_create(index[idx], card_id/*id[idx]*/, THIS_MODULE, 0, 
card );
if (err) {
snd_printk(KERN_WARNING snd_hdj_chip_create(): cannot create 
card instance %d\n, idx);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-MooseX-App-Cmd for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-App-Cmd for 
openSUSE:Factory checked in at 2014-09-17 10:10:56

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


Package is perl-MooseX-App-Cmd

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-App-Cmd/perl-MooseX-App-Cmd.changes  
2014-03-21 12:15:04.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-App-Cmd.new/perl-MooseX-App-Cmd.changes 
2014-09-17 10:10:58.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 14:38:31 UTC 2014 - co...@suse.com
+
+- add 
https://github.com/mjgardner/moosex-app-cmd/commit/61f086b1fe03fab5a96a999f7b21768504d7089c.patch
+  as 61f086b1fe03fab5a96a999f7b21768504d7089c.patch to fix build
+
+---

New:

  61f086b1fe03fab5a96a999f7b21768504d7089c.patch



Other differences:
--
++ perl-MooseX-App-Cmd.spec ++
--- /var/tmp/diff_new_pack.5uUieC/_old  2014-09-17 10:10:59.0 +0200
+++ /var/tmp/diff_new_pack.5uUieC/_new  2014-09-17 10:10:59.0 +0200
@@ -25,6 +25,7 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-App-Cmd/
 Source: 
http://www.cpan.org/authors/id/M/MJ/MJGARDNER/%{cpan_name}-%{version}.tar.gz
+Patch0: 61f086b1fe03fab5a96a999f7b21768504d7089c.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -46,10 +47,6 @@
 Requires:   perl(MouseX::Getopt)
 Requires:   perl(Test::use::ok)
 Requires:   perl(namespace::clean)
-BuildRequires:  perl(Moose) = 0.86
-BuildRequires:  perl(MooseX::ConfigFromFile) = 0.08
-BuildRequires:  perl(MooseX::Getopt) = 0.18
-BuildRequires:  perl(MouseX::ConfigFromFile)
 Recommends: perl(Moose) = 0.86
 Recommends: perl(MooseX::ConfigFromFile) = 0.08
 Recommends: perl(MooseX::Getopt) = 0.18
@@ -68,6 +65,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ 61f086b1fe03fab5a96a999f7b21768504d7089c.patch ++
diff --git a/dist.ini b/dist.ini
index 5fa73d5..d77ee54 100644
--- a/dist.ini
+++ b/dist.ini
@@ -16,6 +16,8 @@ copyright_holder = Infinity Interactive, Yuval Kogman
 [@Filter]
 -bundle = @Basic
 -remove = Readme
+-remove = MakeMaker
+[=inc::MooseMouseMakeMaker / MooseMouseMakeMaker]
 [AutoPrereqs]
 skip = ^Moose
 skip = ^Mouse
@@ -23,8 +25,6 @@ skip = ^Mouse
 perl = 5.006
 App::Cmd = 0.321
 Getopt::Long::Descriptive = 0.091
-Test::use::ok = 0
-MouseX::Getopt = 0
 [OptionalFeature / ConfigFromFile]
 -description = Command line options can be set from a configuration file
 -always_recommend = 1
@@ -35,7 +35,12 @@ MouseX::ConfigFromFile = 0
 Moose = 0.86
 MooseX::ConfigFromFile = 0.08
 MooseX::Getopt = 0.18
+[OptionalFeature / Mouse]
+-description = Support for the Mouse lightweight object system
+-always_recommend = 1
+MouseX::Getopt = 0
 [MetaProvides::Package]
+[Meta::Dynamic::Config]
 [Prereqs / ConfigureRequires]
 ExtUtils::MakeMaker = 0
 [Prereqs / BuildRequires]
@@ -81,7 +86,6 @@ location = root
 [ReportVersions]
 [Test::LocalBrew]
 brews = perl-latest-TEST
-[InstallGuide]
 [MetaJSON]
 [@Git]
 allow_dirty = README.pod
@@ -101,3 +105,4 @@ fork = 0
 ;authordep Perl::Critic::StricterSubs
 ;authordep MooseX::SimpleConfig
 ;authordep Test::Pod::Coverage
+;authordep Dist::Zilla::Plugin::MakeMaker::Awesome
diff --git a/inc/MooseMouseMakeMaker.pm b/inc/MooseMouseMakeMaker.pm
new file mode 100644
index 000..f0ecab5
--- /dev/null
+++ b/inc/MooseMouseMakeMaker.pm
@@ -0,0 +1,28 @@
+package inc::MooseMouseMakeMaker;
+use Moose;
+use MooseX::AttributeShortcuts;
+use MooseX::Types::Moose 'Bool';
+
+extends 'Dist::Zilla::Plugin::MakeMaker::Awesome';
+
+override _build_WriteMakefile_dump = sub {
+my $self = shift;
+
+my $args = super();
+$args .= 'END_WRITEMAKEFILE';
+if (eval {require Mouse; 1}) {
+$WriteMakefileArgs{PREREQ_PM}{'MouseX::Getopt'} = 0;
+}
+if (eval {require Moose; 1}) {
+$WriteMakefileArgs{PREREQ_PM}{'MooseX::Getopt'} = '0.18';
+}
+if (not grep {/^Mo(?:o|u)seX::Getopt$/} keys %{$WriteMakefileArgs{PREREQ_PM}}) 
{
+$WriteMakefileArgs{PREREQ_PM}{'MouseX::Getopt'} = 0;
+}
+END_WRITEMAKEFILE
+
+return $args;
+};
+
+__PACKAGE__-meta-make_immutable;
+1;
diff --git a/t/basic.t b/t/basic.t
index b64f658..6c175e8 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -70,7 +70,7 @@ is_deeply(
 
 like(
 $@,
-qr/Mandatory parameter 'wow' missing in call to \(eval\)/,
+qr/Mandatory parameter 'wow' missing in call to [(]eval[)]/,
 'required option field is missing',
 );
 }
diff --git a/t/configfile.t 

commit efl for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package efl for openSUSE:Factory checked in 
at 2014-09-17 10:11:25

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


Package is efl

Changes:

--- /work/SRC/openSUSE:Factory/efl/efl.changes  2014-08-07 12:38:04.0 
+0200
+++ /work/SRC/openSUSE:Factory/.efl.new/efl.changes 2014-09-17 
10:11:27.0 +0200
@@ -1,0 +2,55 @@
+Tue Sep 16 06:53:25 UTC 2014 - si...@simotek.net
+
+- Disable but keep the neon-cflags.patch, will confirm with the author
+  that this was fixed properly upstream before removing the patch entirely
+  
+- Temporarly disable generating docs as factory is complaining of a missing 
epstopdf.
+
+---
+Tue Sep 16 04:43:05 UTC 2014 - si...@simotek.net
+
+- Bump to 1.11.2 bugfix release
+   * shutup ecore-x vsync stupid log domain failures
+   * emotion - fix calling pos update cb for gst1 module in frame new
+   * emotion - audio volume - leave as-is on file open/init
+   * edje_cc now throws an error during link combination when the
+current part has no name
+   * evas: fix build on armv7l. (T1620)
+   * edje embryo stop_program() should stop pending actions
+   * evas: let's freeze the canvas, shall we ?
+
+---
+Thu Sep 11 01:37:25 UTC 2014 - si...@simotek.net
+
+- Try and fix fedora build
+
+---
+Mon Sep  1 13:59:56 UTC 2014 - sch...@suse.de
+
+- eolian.patch: remove unused patch
+- neon-cflags.patch: use NEON_CFLAGS for all users of arm_neon.h
+- Disable elua subpackage if there is no luajit
+
+---
+Fri Aug 29 13:09:15 UTC 2014 - si...@simotek.net
+
+- Update to 1.11.1
+  * Major packaging changes:
+* Added elua package (efl luajit bindings)
+* Setup efreet and ethumb systemd user daemons properly
+  * Major upstream changes
+* Eolian passer rewrite
+* ETC2 image decode support and etc2 texture format support
+* New loader for the DDS image file format.
+* elua (lua wrapper and bindings)
+* Many coverty and other bugs fixed
+
+
+- Include un approved Request 244211 (if i knew it existed i would have 
approved
+  It first
+  Mon Aug 11 11:48:25 UTC 2014 - sch...@suse.de
+ - Require luajit only for supported architectures
+ - eolian.patch: fix type mismatch
+ 
+
+---

Old:

  efl-1.10.2.tar.bz2

New:

  efl-1.11.2.tar.xz
  neon-cflags.patch



Other differences:
--
++ efl.spec ++
--- /var/tmp/diff_new_pack.OyxrnB/_old  2014-09-17 10:11:29.0 +0200
+++ /var/tmp/diff_new_pack.OyxrnB/_new  2014-09-17 10:11:29.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define build_doc 1
+%define build_doc 0
 # Build doc needs to be defined for build doc man to work
 %define build_doc_man 0
 %define egueb_present 0
@@ -39,10 +39,10 @@
 %define gstreamer_present 1
 %endif
 
-%if 0%{?suse_version}  1230
-%define gstreamer1_present 0
-%else
+%if 0%{?suse_version}  1230 || 0%{?fedora}
 %define gstreamer1_present 1
+%else
+%define gstreamer1_present 0
 %endif
 
 %if 0%{?mandriva_version} || 0%{?suse_version}  1220 || 0%{?centos_version}
@@ -52,7 +52,7 @@
 %endif
 
 # always require systemd for now
-#%if 0%{?suse_version}  0%{?suse_version} = 1230
+#%if (0%{?suse_version}  0%{?suse_version} = 1230) || 0%{?fedora}
 %define systemd_present 1
 #%else
 #%define systemd_present 0
@@ -67,15 +67,22 @@
 
 %define physics_present 1
 
+%ifarch %ix86 x86_64 %arml ppc
+%define luajit_present 1
+%else
+%define luajit_present 0
+%endif
+
 Name:   efl
-Version:1.10.2
+Version:1.11.2
 Release:0
 # TODO: split package to separate packages and specify licenses correctly
-Summary:Enlightenment Foundation Libraries - set of libraries used 
(not only) by E17
+Summary:Enlightenment Foundation Libraries - set of libraries used 
(not only) by Enlightenment (e17 e19)
 License:BSD-2-Clause and LGPL-2.1 and Zlib
 Group:  Development/Libraries/C and C++
 Url:http://enlightenment.org
-Source: %{name}-%{version}.tar.bz2
+Source: %{name}-%{version}.tar.xz
+Patch:  neon-cflags.patch
 BuildRequires:  autoconf = 2.5
 BuildRequires:  automake
 %if %build_doc
@@ -117,7 +124,9 @@
 BuildRequires:  pkgconfig(libxine)
 %endif
 BuildRequires:  pkgconfig(lua)
+%if %luajit_present
 BuildRequires:  pkgconfig(luajit)
+%endif
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(pixman-1)
 BuildRequires:  pkgconfig(sdl)
@@ -189,7 

commit rubygem-nokogiri for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package rubygem-nokogiri for 
openSUSE:Factory checked in at 2014-09-17 17:24:15

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


Package is rubygem-nokogiri

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-nokogiri/rubygem-nokogiri.changes
2014-09-12 11:28:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-nokogiri.new/rubygem-nokogiri.changes   
2014-09-17 17:24:17.0 +0200
@@ -1,0 +2,20 @@
+Thu Sep 11 15:08:47 UTC 2014 - mrueck...@suse.de
+
+- update to version 1.6.3.1
+  * Addressing an Apple Macintosh installation problem for GCC
+users. #1130 (Thanks, @zenspider!)
+- channges in 1.6.3
+  * Added Node#document? and Node#processing_instruction?
+  * [JRuby] Fix Ruby memory exhaustion vulnerability. #1087
+(Thanks, @ocher)
+  * [MRI] Fix segfault during GC when using `libxml-ruby` and
+`nokogiri` together in multi-threaded environment. #895
+(Thanks, @ender672!)
+  * Building on OSX 10.9 stock ruby 2.0.0 now works. #1101 (Thanks,
+@zenspider!)
+  * Node#parse now works again for HTML document nodes (broken in
+1.6.2+).
+  * Processing instructions can now be added via
+Node#add_next_sibling.
+
+---

Old:

  nokogiri-1.6.2.1.gem

New:

  nokogiri-1.6.3.1.gem



Other differences:
--
++ rubygem-nokogiri.spec ++
--- /var/tmp/diff_new_pack.VQHbm6/_old  2014-09-17 17:24:18.0 +0200
+++ /var/tmp/diff_new_pack.VQHbm6/_new  2014-09-17 17:24:18.0 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   rubygem-nokogiri
-Version:1.6.2.1
+Version:1.6.3.1
 Release:0
 %define mod_name nokogiri
 %define mod_full_name %{mod_name}-%{version}
 %define mod_branch -%{version}
-%define mod_weight 10601
+%define mod_weight 10631
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 3

++ nokogiri-1.6.2.1.gem - nokogiri-1.6.3.1.gem ++
/work/SRC/openSUSE:Factory/rubygem-nokogiri/nokogiri-1.6.2.1.gem 
/work/SRC/openSUSE:Factory/.rubygem-nokogiri.new/nokogiri-1.6.3.1.gem differ: 
char 135, line 1

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



commit perl-Data-Compare for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Data-Compare for 
openSUSE:Factory checked in at 2014-09-17 17:24:19

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


Package is perl-Data-Compare

Changes:

--- /work/SRC/openSUSE:Factory/perl-Data-Compare/perl-Data-Compare.changes  
2013-10-06 14:31:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Data-Compare.new/perl-Data-Compare.changes 
2014-09-17 17:24:20.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 12:52:32 UTC 2014 - co...@suse.com
+
+- updated to 1.24
+  Bump the required JSON.pm version for
+  tests - something's a bit broken around
+  about v 2.53
+
+---

Old:

  Data-Compare-1.23.tar.gz

New:

  Data-Compare-1.24.tar.gz



Other differences:
--
++ perl-Data-Compare.spec ++
--- /var/tmp/diff_new_pack.zS257M/_old  2014-09-17 17:24:21.0 +0200
+++ /var/tmp/diff_new_pack.zS257M/_new  2014-09-17 17:24:21.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Data-Compare
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Data-Compare
-Version:1.23
+Version:1.24
 Release:0
 %define cpan_name Data-Compare
 Summary:Compare perl data structures
@@ -30,8 +30,6 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(File::Find::Rule) = 0.1
-#BuildRequires: perl(Data::Compare)
-#BuildRequires: perl(the)
 Requires:   perl(File::Find::Rule) = 0.1
 %{perl_requires}
 

++ Data-Compare-1.23.tar.gz - Data-Compare-1.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Compare-1.23/CHANGELOG 
new/Data-Compare-1.24/CHANGELOG
--- old/Data-Compare-1.23/CHANGELOG 2013-09-26 15:38:14.0 +0200
+++ new/Data-Compare-1.24/CHANGELOG 2014-04-05 19:32:44.0 +0200
@@ -1,3 +1,7 @@
+1.242014-04-05  DCANTRELL  Bump the required JSON.pm version for
+ tests - something's a bit broken around
+ about v 2.53
+
 1.232013-09-26  DCANTRELL  Add David Muir Sharnoff's tests for
  really big data structures (but not yet
  working);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Compare-1.23/META.json 
new/Data-Compare-1.24/META.json
--- old/Data-Compare-1.23/META.json 2013-09-26 15:45:43.0 +0200
+++ new/Data-Compare-1.24/META.json 2014-04-05 19:32:54.0 +0200
@@ -4,7 +4,7 @@
   unknown
],
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,18 +22,18 @@
prereqs : {
   build : {
  requires : {
-ExtUtils::MakeMaker : 0
+ExtUtils::MakeMaker : 0
  }
   },
   configure : {
  requires : {
-ExtUtils::MakeMaker : 0
+ExtUtils::MakeMaker : 0
  }
   },
   runtime : {
  requires : {
 File::Find::Rule : 0.1,
-Scalar::Util : 0
+Scalar::Util : 0
  }
   }
},
@@ -46,5 +46,5 @@
  url : https://github.com/DrHyde/perl-modules-Data-Compare;
   }
},
-   version : 1.23
+   version : 1.24
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Compare-1.23/META.yml 
new/Data-Compare-1.24/META.yml
--- old/Data-Compare-1.23/META.yml  2013-09-26 15:45:42.0 +0200
+++ new/Data-Compare-1.24/META.yml  2014-04-05 19:32:54.0 +0200
@@ -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: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 
2.120921'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -23,4 +23,4 @@
 resources:
   bugtracker: https://github.com/DrHyde/perl-modules-Data-Compare/issues/new
   repository: https://github.com/DrHyde/perl-modules-Data-Compare
-version: 1.23
+version: 1.24
diff -urN 

commit perl-Net-HTTP for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-HTTP for openSUSE:Factory 
checked in at 2014-09-17 17:24:16

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


Package is perl-Net-HTTP

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-HTTP/perl-Net-HTTP.changes  
2013-06-14 16:47:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Net-HTTP.new/perl-Net-HTTP.changes 
2014-09-17 17:24:18.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 12:52:31 UTC 2014 - co...@suse.com
+
+- updated to 6.07
+ Jason Fesler (1):
+ Opportunistically use IO::Socket::IP or IO::Socket::INET6.
+ Properly parse IPv6 literal addreses with optional port numbers. 
[RT#75618]
+
+---

Old:

  Net-HTTP-6.06.tar.gz

New:

  Net-HTTP-6.07.tar.gz



Other differences:
--
++ perl-Net-HTTP.spec ++
--- /var/tmp/diff_new_pack.ySikA9/_old  2014-09-17 17:24:19.0 +0200
+++ /var/tmp/diff_new_pack.ySikA9/_new  2014-09-17 17:24:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Net-HTTP
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,29 +17,24 @@
 
 
 Name:   perl-Net-HTTP
-Version:6.06
+Version:6.07
 Release:0
 %define cpan_name Net-HTTP
 Summary:Low-level HTTP connection (client)
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Net-HTTP/
-Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/M/MS/MSCHILLI/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib)
 BuildRequires:  perl(IO::Compress::Gzip)
-#BuildRequires: perl(IO::Socket::SSL)
-#BuildRequires: perl(IO::Uncompress::Gunzip)
-#BuildRequires: perl(Net::HTTP)
-#BuildRequires: perl(Net::HTTP::Methods)
-#BuildRequires: perl(Net::HTTP::NB)
-#BuildRequires: perl(Net::HTTPS)
-#BuildRequires: perl(Net::SSL)
+BuildRequires:  perl(URI)
 Requires:   perl(Compress::Raw::Zlib)
 Requires:   perl(IO::Compress::Gzip)
+Requires:   perl(URI)
 Recommends: perl(IO::Socket::SSL) = 1.38
 %{perl_requires}
 
@@ -49,9 +44,11 @@
 protocol is described in RFC 2616. The 'Net::HTTP' class supports
 'HTTP/1.0' and 'HTTP/1.1'.
 
-'Net::HTTP' is a sub-class of 'IO::Socket::INET'. You can mix the methods
-described below with reading and writing from the socket directly. This is
-not necessary a good idea, unless you know what you are doing.
+'Net::HTTP' is a sub-class of one of 'IO::Socket::IP' (IPv6+IPv4),
+'IO::Socket::INET6' (IPv6+IPv4), or 'IO::Socket::INET' (IPv4 only). You can
+mix the methods described below with reading and writing from the socket
+directly. This is not necessary a good idea, unless you know what you are
+doing.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ Net-HTTP-6.06.tar.gz - Net-HTTP-6.07.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.06/Changes new/Net-HTTP-6.07/Changes
--- old/Net-HTTP-6.06/Changes   2013-03-10 23:37:09.0 +0100
+++ new/Net-HTTP-6.07/Changes   2014-07-24 05:25:51.0 +0200
@@ -1,3 +1,9 @@
+2014-07-23 Net-HTTP 6.07
+
+Jason Fesler (1):
+  Opportunistically use IO::Socket::IP or IO::Socket::INET6.
+  Properly parse IPv6 literal addreses with optional port numbers. 
[RT#75618]
+
 ___
 2013-03-10 Net-HTTP 6.06
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-HTTP-6.06/MANIFEST new/Net-HTTP-6.07/MANIFEST
--- old/Net-HTTP-6.06/MANIFEST  2013-03-10 23:38:46.0 +0100
+++ new/Net-HTTP-6.07/MANIFEST  2014-07-24 05:31:19.0 +0200
@@ -10,4 +10,5 @@
 t/http-nb.t
 t/apache.t
 t/apache-https.t
-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/Net-HTTP-6.06/META.json new/Net-HTTP-6.07/META.json
--- 

commit net-snmp for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package net-snmp for openSUSE:Factory 
checked in at 2014-09-17 17:24:23

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


Package is net-snmp

Changes:

--- /work/SRC/openSUSE:Factory/net-snmp/net-snmp.changes2014-07-10 
08:16:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.net-snmp.new/net-snmp.changes   2014-09-17 
17:24:24.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep  3 19:35:54 UTC 2014 - abergm...@suse.com
+
+- added net-snmp-5.7.2-fix-snmptrapd-remote-denial-of-service.patch:
+  fix remote denial of service problem inside snmptrapd when started 
+  with the -OQ option (CVE-2014-3565)(bnc#894361)
+- added net-snmp-5.7.2-fix-perl-trap-handler.patch: fix potential 
+  remote denial of service problem inside the snmptrapd Perl trap 
+  handler (CVE-2014-2285)(bnc#866942) 
+
+---

New:

  net-snmp-5.7.2-fix-perl-trap-handler.patch
  net-snmp-5.7.2-fix-snmptrapd-remote-denial-of-service.patch



Other differences:
--
++ net-snmp.spec ++
--- /var/tmp/diff_new_pack.3kRZMY/_old  2014-09-17 17:24:26.0 +0200
+++ /var/tmp/diff_new_pack.3kRZMY/_new  2014-09-17 17:24:26.0 +0200
@@ -69,6 +69,8 @@
 Patch8: net-snmp-5.7.2-build-fix-for-strlcat.patch
 Patch9: 
net-snmp-5.7.2-fix-snmpd-crashing-when-an-agentx-disconnects.patch
 Patch10:net-snmp-5.7.2-fix-mib-representation-of-timeout-values.patch
+Patch11:net-snmp-5.7.2-fix-perl-trap-handler.patch
+Patch12:net-snmp-5.7.2-fix-snmptrapd-remote-denial-of-service.patch
 #
 Summary:SNMP Daemon
 License:BSD-3-Clause and MIT
@@ -203,6 +205,8 @@
 %patch8 -p1
 %patch9 -p1
 %patch10 -p1
+%patch11 -p1
+%patch12 -p1
 
 %build
 MIBS=misc/ipfwacc ucd-snmp/diskio etherlike-mib rmon-mib velocity smux \

++ net-snmp-5.7.2-fix-perl-trap-handler.patch ++
diff -Nur net-snmp-5.7.2.1-orig/perl/TrapReceiver/TrapReceiver.xs 
net-snmp-5.7.2.1/perl/TrapReceiver/TrapReceiver.xs
--- net-snmp-5.7.2.1-orig/perl/TrapReceiver/TrapReceiver.xs 2014-02-20 
01:36:42.0 +0100
+++ net-snmp-5.7.2.1/perl/TrapReceiver/TrapReceiver.xs  2014-09-02 
12:06:50.070037000 +0200
@@ -81,18 +81,18 @@
 STOREPDUi(securitymodel, pdu-securityModel);
 STOREPDUi(securitylevel, pdu-securityLevel);
 STOREPDU(contextName,
- newSVpv(pdu-contextName, pdu-contextNameLen));
+ newSVpv(pdu-contextName ? pdu-contextName : , 
pdu-contextNameLen));
 STOREPDU(contextEngineID,
- newSVpv((char *) pdu-contextEngineID,
+ newSVpv(pdu-contextEngineID ? (char *) pdu-contextEngineID 
: ,
 pdu-contextEngineIDLen));
 STOREPDU(securityEngineID,
- newSVpv((char *) pdu-securityEngineID,
+ newSVpv(pdu-securityEngineID ? (char *) 
pdu-securityEngineID : ,
 pdu-securityEngineIDLen));
 STOREPDU(securityName,
- newSVpv((char *) pdu-securityName, pdu-securityNameLen));
+ newSVpv(pdu-securityName ? (char *) pdu-securityName : , 
pdu-securityNameLen));
 } else {
 STOREPDU(community,
- newSVpv((char *) pdu-community, pdu-community_len));
+ newSVpv(pdu-community ? (char *) pdu-community : , 
pdu-community_len));
 }
 
 if (transport  transport-f_fmtaddr) {
++ net-snmp-5.7.2-fix-snmptrapd-remote-denial-of-service.patch ++
--- net-snmp-5.7.2.1-orig/snmplib/mib.c 2014-02-20 01:36:42.0 +0100
+++ net-snmp-5.7.2.1-patched/snmplib/mib.c  2014-09-02 15:07:17.902832000 
+0200
@@ -464,17 +464,16 @@
 u_char *cp;
 int output_format, cnt;
 
-if ((var-type != ASN_OCTET_STR)  
-(!netsnmp_ds_get_boolean(NETSNMP_DS_LIBRARY_ID, 
NETSNMP_DS_LIB_QUICKE_PRINT))) {
-const char  str[] = Wrong Type (should be OCTET STRING): ;
-if (snmp_cstrcat
-(buf, buf_len, out_len, allow_realloc, str)) {
-return sprint_realloc_by_type(buf, buf_len, out_len,
+if (var-type != ASN_OCTET_STR) {
+if (!netsnmp_ds_get_boolean(
+NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_QUICKE_PRINT)) {
+const char  str[] = Wrong Type (should be OCTET STRING): ;
+if (!snmp_cstrcat(buf, buf_len, out_len, allow_realloc, str))
+return 0;
+}
+return sprint_realloc_by_type(buf, buf_len, out_len,
   allow_realloc, var, NULL, NULL,
   NULL);
- 

commit perl-XML-Twig for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-Twig for openSUSE:Factory 
checked in at 2014-09-17 17:24:32

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


Package is perl-XML-Twig

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-Twig/perl-XML-Twig.changes  
2014-03-22 18:02:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-Twig.new/perl-XML-Twig.changes 
2014-09-17 17:24:33.0 +0200
@@ -1,0 +2,14 @@
+Mon Sep 15 15:15:20 UTC 2014 - co...@suse.com
+
+- updated to 3.48
+ - fixed: missing entities when parsing HTML
+   RT #93604 https://rt.cpan.org/Public/Bug/Display.html?id=93604
+ 
+ - fixed: tests failed when using a version of HTML::TreeBuilder with a 
non-numeric version
+ 
+ - fixed in twig_handlers, '=' in regexps on attributes are turned into 'eq'
+   RT #94295 https://rt.cpan.org/Public/Bug/Display.html?id=94295
+ 
+ - fixed: test failed on Windows
+
+---

Old:

  XML-Twig-3.46.tar.gz

New:

  XML-Twig-3.48.tar.gz



Other differences:
--
++ perl-XML-Twig.spec ++
--- /var/tmp/diff_new_pack.X6fJn4/_old  2014-09-17 17:24:34.0 +0200
+++ /var/tmp/diff_new_pack.X6fJn4/_new  2014-09-17 17:24:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-XML-Twig
-Version:3.46
+Version:3.48
 Release:0
 %define cpan_name XML-Twig
 Summary:A perl module for processing huge XML documents in tree mode.

++ XML-Twig-3.46.tar.gz - XML-Twig-3.48.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Twig-3.46/Changes new/XML-Twig-3.48/Changes
--- old/XML-Twig-3.46/Changes   2014-03-03 15:08:40.0 +0100
+++ new/XML-Twig-3.48/Changes   2014-03-30 08:22:48.0 +0200
@@ -1,5 +1,23 @@
 CHANGES
 
+3.48 - 2014-03-30 - minor maintenance release
+
+- fixed tests 
+
+3.47 - 2014-03-27 - minor maintenance release
+
+- fixed: missing entities when parsing HTML
+  RT #93604 https://rt.cpan.org/Public/Bug/Display.html?id=93604
+
+- fixed: tests failed when using a version of HTML::TreeBuilder with a 
non-numeric version
+
+- fixed in twig_handlers, '=' in regexps on attributes are turned into 'eq'
+  RT #94295 https://rt.cpan.org/Public/Bug/Display.html?id=94295
+
+3.46 - 2014-03-05 - minor maintenance release
+
+- fixed: test failed on Windows
+
 3.45 - 2014-02-27 - minor maintenance release
 
 - fixed: link to idented_a format description
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Twig-3.46/MANIFEST new/XML-Twig-3.48/MANIFEST
--- old/XML-Twig-3.46/MANIFEST  2014-03-05 11:27:46.0 +0100
+++ new/XML-Twig-3.48/MANIFEST  2014-03-30 10:54:19.0 +0200
@@ -128,6 +128,7 @@
 t/test_3_42.t
 t/test_3_44.t
 t/test_3_45.t
+t/test_3_47.t
 t/test_changes.t
 t/test_memory.t
 t/test_wrapped.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Twig-3.46/META.json new/XML-Twig-3.48/META.json
--- old/XML-Twig-3.46/META.json 2014-03-05 11:27:46.0 +0100
+++ new/XML-Twig-3.48/META.json 2014-03-30 10:54:19.0 +0200
@@ -42,5 +42,5 @@
  url : http://github.com/mirod/xmltwig;
   }
},
-   version : 3.46
+   version : 3.48
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Twig-3.46/META.yml new/XML-Twig-3.48/META.yml
--- old/XML-Twig-3.46/META.yml  2014-03-05 11:27:46.0 +0100
+++ new/XML-Twig-3.48/META.yml  2014-03-30 10:54:19.0 +0200
@@ -21,4 +21,4 @@
   XML::Parser: 2.23
 resources:
   repository: http://github.com/mirod/xmltwig
-version: 3.46
+version: 3.48
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Twig-3.46/Twig.pm new/XML-Twig-3.48/Twig.pm
--- old/XML-Twig-3.46/Twig.pm   2014-03-03 17:10:25.0 +0100
+++ new/XML-Twig-3.48/Twig.pm   2014-03-30 10:54:15.0 +0200
@@ -144,7 +144,7 @@
 
 BEGIN
 { 
-$VERSION = '3.46';
+$VERSION = '3.48';
 
 use XML::Parser;
 my $needVersion = '2.23';
@@ -154,7 +154,7 @@
 ($perl_version= $])=~ s{_\d+}{};
 
 if( $perl_version = 5.008) 
-  { eval use Encode qw( :all);
+  { eval use Encode qw( :all); ## no critic ProhibitStringyEval
 $FB_XMLCREF  = 0x0400; # Encode::FB_XMLCREF;
 $FB_HTMLCREF = 0x0200; # Encode::FB_HTMLCREF;
   }
@@ -996,6 +996,7 @@
 
 $xml.= _as_XML( $tree);
 
+
 _fix_xml( $tree, \$xml);
 
 if( $options-{indent}) { _indent_xhtml( \$xml); }
@@ -1142,7 +1143,7 @@
  if( $new_att ne $att) { $node-{$new_att}= delete 
$node-{$att}; }
 

commit perl-Capture-Tiny for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Capture-Tiny for 
openSUSE:Factory checked in at 2014-09-17 17:24:35

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


Package is perl-Capture-Tiny

Changes:

--- /work/SRC/openSUSE:Factory/perl-Capture-Tiny/perl-Capture-Tiny.changes  
2014-02-12 17:22:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Capture-Tiny.new/perl-Capture-Tiny.changes 
2014-09-17 17:24:36.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 16:01:08 UTC 2014 - co...@suse.com
+
+- updated to 0.25
+  Prereqs:
+  - Amended recommended modules to list Inline::C rather than Inline
+
+---

Old:

  Capture-Tiny-0.24.tar.gz

New:

  Capture-Tiny-0.25.tar.gz



Other differences:
--
++ perl-Capture-Tiny.spec ++
--- /var/tmp/diff_new_pack.IvvLpJ/_old  2014-09-17 17:24:37.0 +0200
+++ /var/tmp/diff_new_pack.IvvLpJ/_new  2014-09-17 17:24:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Capture-Tiny
-Version:0.24
+Version:0.25
 Release:0
 %define cpan_name Capture-Tiny
 Summary:Capture STDOUT and STDERR from Perl, XS or external programs
@@ -29,7 +29,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(version)
 %{perl_requires}
 
 %description

++ Capture-Tiny-0.24.tar.gz - Capture-Tiny-0.25.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.24/Changes 
new/Capture-Tiny-0.25/Changes
--- old/Capture-Tiny-0.24/Changes   2014-02-06 23:15:44.0 +0100
+++ new/Capture-Tiny-0.25/Changes   2014-08-16 16:08:48.0 +0200
@@ -1,11 +1,17 @@
 Revision history for Capture-Tiny
 
+0.25  2014-08-16 10:08:42-04:00 America/New_York
+
+  Prereqs:
+
+  - Amended recommended modules to list Inline::C rather than Inline
+
 0.24  2014-02-06 17:15:37-05:00 America/New_York
 
   Fixed:
 
-  - Closed security hole in use of semaphore flag in /tmp;
-now opens semaphore the using O_CREAT|O_EXCL
+  - Closed security hole in use of semaphore file in /tmp;
+now opens the semaphore file using O_CREAT|O_EXCL
 
 0.23  2013-10-20 11:25:34 America/New_York
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.24/MANIFEST 
new/Capture-Tiny-0.25/MANIFEST
--- old/Capture-Tiny-0.24/MANIFEST  2014-02-06 23:15:44.0 +0100
+++ new/Capture-Tiny-0.25/MANIFEST  2014-08-16 16:08:48.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.012.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.020.
 CONTRIBUTING
 Changes
 LICENSE
@@ -14,6 +14,7 @@
 examples/tee.pl
 lib/Capture/Tiny.pm
 perlcritic.rc
+t/00-report-prereqs.dd
 t/00-report-prereqs.t
 t/01-Capture-Tiny.t
 t/02-capture.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.24/META.json 
new/Capture-Tiny-0.25/META.json
--- old/Capture-Tiny-0.24/META.json 2014-02-06 23:15:44.0 +0100
+++ new/Capture-Tiny-0.25/META.json 2014-08-16 16:08:48.0 +0200
@@ -4,7 +4,7 @@
   David Golden dagol...@cpan.org
],
dynamic_config : 1,
-   generated_by : Dist::Zilla version 5.012, CPAN::Meta::Converter version 
2.133380,
+   generated_by : Dist::Zilla version 5.020, CPAN::Meta::Converter version 
2.140640,
license : [
   apache_2_0
],
@@ -32,7 +32,7 @@
   },
   develop : {
  requires : {
-Dist::Zilla : 5.012,
+Dist::Zilla : 5,
 Dist::Zilla::Plugin::OSPrereqs : 0,
 Dist::Zilla::Plugin::Prereqs : 0,
 Dist::Zilla::Plugin::RemovePrereqs : 0,
@@ -45,7 +45,8 @@
 Test::CPAN::Meta : 0,
 Test::More : 0,
 Test::Pod : 1.41,
-Test::Pod::Coverage : 1.08
+Test::Pod::Coverage : 1.08,
+Test::Spelling : 0.12
  }
   },
   runtime : {
@@ -63,25 +64,22 @@
   },
   test : {
  recommends : {
-CPAN::Meta : 0,
-CPAN::Meta::Requirements : 2.120900,
-Inline : 0.50
+CPAN::Meta : 2.120900,
+Inline::C : 0.50
  },
  requires : {
 ExtUtils::MakeMaker : 0,
-File::Spec::Functions : 0,
+File::Spec : 0,
 IO::File : 0,
-List::Util : 0,
 Test::More : 0.62,
-lib : 0,
-version : 0
+   

commit libgdiplus0 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package libgdiplus0 for openSUSE:Factory 
checked in at 2014-09-17 17:24:28

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


Package is libgdiplus0

Changes:

--- /work/SRC/openSUSE:Factory/libgdiplus0/libgdiplus0.changes  2014-09-09 
06:21:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgdiplus0.new/libgdiplus0.changes 
2014-09-17 17:24:29.0 +0200
@@ -1,0 +2,10 @@
+Sat Sep  6 14:45:49 UTC 2014 - mailaen...@opensuse.org
+
+- Update to version 3.8
+- Removed upstreamed patch libgdiplus0-libpng15.patch
+- Removed upstreamed patch use-recommended-freetype-include.patch
+- Use pkgconfig build dependencies where possible
+- Always use system cairo
+- Fixed rpmlint error: devel-file-in-non-devel-package
+
+---

Old:

  libgdiplus-2.10.9.tar.bz2
  libgdiplus0-libpng15.patch
  use-recommended-freetype-include.patch

New:

  libgdiplus-3.8.tar.gz



Other differences:
--
++ libgdiplus0.spec ++
--- /var/tmp/diff_new_pack.Eg7KD4/_old  2014-09-17 17:24:30.0 +0200
+++ /var/tmp/diff_new_pack.Eg7KD4/_new  2014-09-17 17:24:30.0 +0200
@@ -17,20 +17,14 @@
 
 
 %define real_name libgdiplus
-# There may be strange bugs when using the system cairo
-%define system_cairo 0
 
 Name:   libgdiplus0
-Version:2.10.9
+Version:3.8
 Release:0
-Url:http://go-mono.org/
-Source0:
http://download.mono-project.com/sources/%{real_name}/%{real_name}-%{version}.tar.bz2
-# link to libpng15.patch content sent to  m...@xamarin.com
-Patch0: %{name}-libpng15.patch
+Url:https://github.com/mono/libgdiplus
+Source: 
http://download.mono-project.com/sources/%{real_name}/%{real_name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM libgdiplus0-giflib5.patch 
https://github.com/mono/libgdiplus/pull/26
 Patch1: libgdiplus0-giflib5.patch
-# PATCH-FIX-UPSTREAM use-recommended-freetype-include.patch -- Freetype 
upstream recommends using their macros together with
-# ft2build include. Positive sideeffect is that this patch makes it build with 
both freetype2 2.5.1, and older versions
-Patch2: use-recommended-freetype-include.patch
 Summary:Open Source Implementation of the GDI+ API
 License:(LGPL-2.1+ or MPL-1.1) and MIT
 Group:  Development/Libraries/Other
@@ -38,21 +32,19 @@
 Provides:   libgdiplus
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  libtool
-BuildRequires:  pkg-config
-%if %system_cairo
-BuildRequires:  cairo-devel = 1.6.4
-%endif
-BuildRequires:  fontconfig-devel
-BuildRequires:  freetype2-devel
 BuildRequires:  giflib-devel
-BuildRequires:  glib2-devel
-BuildRequires:  libexif-devel
 BuildRequires:  libjpeg-devel
-BuildRequires:  libpng-devel
-BuildRequires:  libtiff-devel
-BuildRequires:  xorg-x11-devel
-BuildRequires:  xorg-x11-libXrender-devel
+BuildRequires:  libtool
+BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(fontconfig)
+BuildRequires:  pkgconfig(freetype2)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(libexif)
+BuildRequires:  pkgconfig(libpng)
+BuildRequires:  pkgconfig(libtiff-4)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xrender)
 
 %description
 Mono library that provide a GDI+ comptible API on non-Windows
@@ -70,10 +62,7 @@
 
 %prep
 %setup -q -n %{real_name}-%{version}
-%patch0
 %patch1 -p1
-%patch2 -p1
-sed -i -e 's/LT_/LTT_/g' cairo/configure.in
 sed -i -e 's:ungif:gif:g' configure || die
 
 %build
@@ -95,11 +84,12 @@
 
 %files
 %defattr(-, root, root)
-%{_libdir}/libgdiplus.so*
+%{_libdir}/libgdiplus.so.*
 %doc AUTHORS COPYING ChangeLog* NEWS README
 
 %files -n libgdiplus-devel
 %defattr(-, root, root)
+%{_libdir}/libgdiplus.so
 %{_libdir}/pkgconfig/libgdiplus.pc
 %{_libdir}/libgdiplus.a
 # Unwanted statically linked files:

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



commit python-httplib2 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-httplib2 for openSUSE:Factory 
checked in at 2014-09-17 17:24:25

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


Package is python-httplib2

Changes:

--- /work/SRC/openSUSE:Factory/python-httplib2/python-httplib2.changes  
2014-03-07 07:06:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-httplib2.new/python-httplib2.changes 
2014-09-17 17:24:26.0 +0200
@@ -1,0 +2,26 @@
+Mon Sep 15 09:28:56 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.9
+  * Release 0.9. The heartbleed release.
+  * Add an updated cacerts.txt file and fix some tests. Turns out nginx 
doesn't support etags on gzip'd content.
+  * Merge pull request #259 from snarfed/master
+  * use socket.getdefaulttimeout() on App Engine as well as off, take 2
+  * Merge pull request #258 from snarfed/master
+  * use socket.getdefaulttimeout() on App Engine as well as off
+  * Update README.md
+  * whitespace fix
+  * Remove redundant README
+  * Remove unused files.
+  * Update README.md
+  * Merge ../httplib2.current
+  * Update README.md
+  * Last fixed for markdown.
+  * Update README.md
+  * Markdown fixes.
+  * Moving README over to README.md
+  * Pass method by name, not positionally. Fixes issue #252. Reviewed in 
https://codereview.appspot.com/7987046/.
+  * Fix handling of BadStatusLine. Fixes issue #250. Review in 
https://codereview.appspot.com/7529045/.
+  * Clean up tags
+  * Added tag 0.8 for changeset 427a4ff7b7e4
+
+---

Old:

  httplib2-0.8.tar.gz

New:

  httplib2-0.9.tar.gz



Other differences:
--
++ python-httplib2.spec ++
--- /var/tmp/diff_new_pack.Drj0O8/_old  2014-09-17 17:24:27.0 +0200
+++ /var/tmp/diff_new_pack.Drj0O8/_new  2014-09-17 17:24:27.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-httplib2
-Version:0.8
+Version:0.9
 Release:0
 Url:http://code.google.com/p/httplib2/
 Summary:A Python HTTP client library
@@ -63,7 +63,6 @@
 
 %files
 %defattr(-,root,root)
-%doc README
 %{python_sitelib}/httplib2-%{version}-py%{py_ver}.egg-info
 %{python_sitelib}/httplib2
 

++ httplib2-0.8.tar.gz - httplib2-0.9.tar.gz ++
 5641 lines of diff (skipped)

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



commit ibus-table-chinese for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package ibus-table-chinese for 
openSUSE:Factory checked in at 2014-09-17 17:24:59

Comparing /work/SRC/openSUSE:Factory/ibus-table-chinese (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-table-chinese.new (New)


Package is ibus-table-chinese

Changes:

--- /work/SRC/openSUSE:Factory/ibus-table-chinese/ibus-table-chinese.changes
2014-07-29 16:48:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ibus-table-chinese.new/ibus-table-chinese.changes   
2014-09-17 17:25:04.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 15 06:25:05 UTC 2014 - i...@marguerite.su
+
+- fix for factory: BuildRequires: python-ibus
+
+---



Other differences:
--
++ ibus-table-chinese.spec ++
--- /var/tmp/diff_new_pack.jodcX2/_old  2014-09-17 17:25:05.0 +0200
+++ /var/tmp/diff_new_pack.jodcX2/_new  2014-09-17 17:25:05.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  cmake
 BuildRequires:  ibus-table-devel
 BuildRequires:  pkg-config
-BuildRequires:  python3-ibus
+BuildRequires:  python-ibus
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 

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



commit ponysay for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package ponysay for openSUSE:Factory checked 
in at 2014-09-17 17:24:50

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


Package is ponysay

Changes:

--- /work/SRC/openSUSE:Factory/ponysay/ponysay.changes  2014-04-29 
17:35:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.ponysay.new/ponysay.changes 2014-09-17 
17:24:54.0 +0200
@@ -1,0 +2,14 @@
+
+Sat Sep 6 18:11:20 UTC 2014 - sor.ale...@meowr.ru
+
+- Update to 3.0.2
+  * New ponies: auntorange, grace
+  * Pony symlink added:
+- cookiecrumbles → raritysmom (official name)
+- hondoflanks → raritysdad (official name)
+  * Special pony cases:
+- orange was renamed to uncleorange to not conflict with
+  auntorange.
+- Remove info-direntry.patch: fixed upstream.
+
+---
@@ -4,2 +18,2 @@
-- spec cleanup
-- add source URLs
+- spec cleanup.
+- Add source URLs.

Old:

  info-direntry.patch
  ponysay-3.0.1.tar.gz

New:

  ponysay-3.0.2.tar.gz



Other differences:
--
++ ponysay.spec ++
--- /var/tmp/diff_new_pack.qkyItR/_old  2014-09-17 17:24:55.0 +0200
+++ /var/tmp/diff_new_pack.qkyItR/_new  2014-09-17 17:24:55.0 +0200
@@ -17,15 +17,14 @@
 
 
 Name:   ponysay
-Version:3.0.1
+Version:3.0.2
 Release:0
 Summary:Cowsay reimplemention for ponies
 License:GPL-3.0+
 Group:  Amusements/Toys/Other
 Url:https://github.com/erkin/ponysay
 Source: 
https://github.com/erkin/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-OPENSUSE info-direntry.patch sor.ale...@meowr.ru -- Adds @direntry 
to ponysay.info.
-Patch0: info-direntry.patch
+
 BuildRequires:  fdupes
 BuildRequires:  python3-devel
 BuildRequires:  texinfo
@@ -41,13 +40,18 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 # Nothing to build.
 
 %install
-python3 setup.py --prefix=%{_prefix} --dest-dir=%{buildroot} --freedom=partial 
--with-everything --with-pdf=%{_docdir}/%{name}/ install
+python3 setup.py \
+  --prefix=%{_prefix} \
+  --dest-dir=%{buildroot} \
+  --freedom=partial \
+  --with-everything \
+  --with-pdf=%{_docdir}/%{name}/ \
+  install
 rm -rf %{buildroot}%{_infodir}/dir %{buildroot}%{_datadir}/licenses/
 %fdupes %{buildroot}/%{_datadir}/%{name}
 
@@ -67,8 +71,7 @@
 %{_bindir}/pony*
 %{_datadir}/%{name}/
 %{_infodir}/*.gz
-%{_mandir}/man6/*
-%{_mandir}/*/man6/*
+%{_mandir}/*/
 %{_datadir}/bash-completion/
 %{_datadir}/zsh/
 %{_datadir}/fish/

++ ponysay-3.0.1.tar.gz - ponysay-3.0.2.tar.gz ++
 26762 lines of diff (skipped)

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



commit python-hgtools for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-hgtools for openSUSE:Factory 
checked in at 2014-09-17 17:24:36

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


Package is python-hgtools

Changes:

--- /work/SRC/openSUSE:Factory/python-hgtools/python-hgtools.changes
2013-12-10 20:06:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-hgtools.new/python-hgtools.changes   
2014-09-17 17:24:38.0 +0200
@@ -1,0 +2,37 @@
+Tue Sep 16 00:59:09 CEST 2014 - r...@suse.de
+
+- add LICENSE to documentation 
+
+---
+Mon Sep 15 13:53:21 UTC 2014 - tbecht...@suse.com
+
+- update to version 6.0
+  * Issue #23: hgtools no longer imports Mercurial and thus does not link to
+it. Applications that wish to use the in-process Mercurial manager must
+first `import mercurial.dispatch` in their application.
+  * Issue #23: hgtools is now licensed under the MIT license.
+  * Issue #19: Add file finder support for git. Credit to Berry Phillips.
+  * Issue #20: Added support for listing all git tags. Credit to Berry 
Phillips.
+  * In version inference, always fallback to increment (or None) when an
+Exception occurs in the calculation.
+  * Issue #17: Fix regression on older versions of setuptools where unspecified
+distribution attributes would cause use_vcs_version of None to supersede
+a supplied use_hg_version.
+  * Added new ``use_vcs_version`` distutils parameter to supersede
+``use_hg_version``. Clients should update to use this new parameter as soon
+as hgtools 5.0 is generally available.
+  * Initial git support. The tool now nominally supports eliciting the project
+version from a git tag. Many of the hg features are not yet implemented,
+such as auto-incrementing versions when the current revision is not on a
+tag and file discovery from repo metadata.
+This new Git support provides experimental support for dual-hosted
+repositories (such as those found on Kiln). Since file discovery is not yet
+tested or implemented, there are likely to be yet undiscovered issues.
+  * Refactored the Manager models to better support the two repositories.
+Clients that use hgtools to programmatically manipulate repositories will
+need to update to use the new names. In particular, HGRepoManager was
+renamed to RepoManager. SubprocessManager renamed to MercurialManager and
+a new GitManager was created. The LibraryManager was renamed to
+MercurialInProcManager.
+
+---

Old:

  hgtools-4.0.zip

New:

  hgtools-6.0.zip



Other differences:
--
++ python-hgtools.spec ++
--- /var/tmp/diff_new_pack.hpxspK/_old  2014-09-17 17:24:40.0 +0200
+++ /var/tmp/diff_new_pack.hpxspK/_new  2014-09-17 17:24:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hgtools
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-hgtools
-Version:4.0
+Version:6.0
 Release:0
 Summary:Mercurial support for setup tools
 License:GPL-2.0
@@ -57,7 +57,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README
+%doc README.txt LICENSE
 %{python_sitelib}/*
 
 %changelog

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



commit perl-Switch for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Switch for openSUSE:Factory 
checked in at 2014-09-17 17:24:34

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


Package is perl-Switch

Changes:

--- /work/SRC/openSUSE:Factory/perl-Switch/perl-Switch.changes  2011-09-23 
12:38:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Switch.new/perl-Switch.changes 
2014-09-17 17:24:35.0 +0200
@@ -1,0 +2,10 @@
+Mon Sep 15 15:44:32 UTC 2014 - co...@suse.com
+
+- updated to 2.17
+- tests fixed
+- patch by Father Chrysostomos
+- many warnings
+- recommendation to use given/when
+- removed upstreamed Switch-2.16-perl514.patch
+
+---

Old:

  Switch-2.16-perl514.patch
  Switch-2.16.tar.gz

New:

  Switch-2.17.tar.gz



Other differences:
--
++ perl-Switch.spec ++
--- /var/tmp/diff_new_pack.xrVZyn/_old  2014-09-17 17:24:36.0 +0200
+++ /var/tmp/diff_new_pack.xrVZyn/_new  2014-09-17 17:24:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Switch
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,22 +16,21 @@
 #
 
 
-
 Name:   perl-Switch
-Version:2.16
-Release:4
-License:GPL-1.0+ or Artistic-1.0
+Version:2.17
+Release:0
 %define cpan_name Switch
-Summary:A switch statement for Perl
-Url:http://search.cpan.org/dist/Switch/
+Summary:A switch statement for Perl, do not use if you can use 
given/when
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Source: 
http://www.cpan.org/authors/id/R/RG/RGARCIA/%{cpan_name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM Switch-2.16-perl514.patch idoen...@suse.de -- Fix test 
failures with Perl 5.14, RT #60380
-Patch1: Switch-2.16-perl514.patch
+Url:http://search.cpan.org/dist/Switch/
+Source: 
http://www.cpan.org/authors/id/C/CH/CHORNY/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Text::Balanced) = 2
+Requires:   perl(Text::Balanced) = 2
 %{perl_requires}
 
 %description
@@ -47,9 +46,63 @@
 (including the 'case' statement described below). The block is
 unconditionally executed once the switch value has been cached.
 
+A 'case' statement takes a single scalar argument (in mandatory parentheses
+if it's a variable; otherwise the parens are optional) and selects the
+appropriate type of matching between that argument and the current switch
+value. The type of matching used is determined by the respective types of
+the switch value and the 'case' argument, as specified in Table 1. If the
+match is successful, the mandatory block associated with the 'case'
+statement is executed.
+
+In most other respects, the 'case' statement is semantically identical to
+an 'if' statement. For example, it can be followed by an 'else' clause, and
+can be used as a postfix statement qualifier.
+
+However, when a 'case' block has been executed control is automatically
+transferred to the statement after the immediately enclosing 'switch'
+block, rather than to the next statement within the block. In other words,
+the success of any 'case' statement prevents other cases in the same scope
+from executing. But see the Allowing fall-through manpage below.
+
+Together these two new statements provide a fully generalized case
+mechanism:
+
+use Switch;
+
+# AND LATER...
+
+%special = ( woohoo = 1,  d'oh = 1 );
+
+while () {
+   chomp;
+switch ($_) {
+case (%special) { print homer\n; }  # if $special{$_}
+case /[a-z]/i   { print alpha\n; }  # if $_ =~ /a-z/i
+case [1..9] { print small num\n; }  # if $_ in [1..9]
+case { $_[0] = 10 } { print big num\n; } # if $_ = 10
+print must be punctuation\n case /\W/;  # if $_ ~= /\W/
+   }
+}
+
+Note that 'switch'es can be nested within 'case' (or any other) blocks, and
+a series of 'case' statements can try different types of matches -- hash
+membership, pattern match, array intersection, simple equality, etc. --
+against the same switch value.
+
+The use of intersection tests against an array reference is particularly
+useful for aggregating 

commit WALinuxAgent for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package WALinuxAgent for openSUSE:Factory 
checked in at 2014-09-17 17:24:40

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


Package is WALinuxAgent

Changes:

--- /work/SRC/openSUSE:Factory/WALinuxAgent/WALinuxAgent.changes
2014-05-29 08:44:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.WALinuxAgent.new/WALinuxAgent.changes   
2014-09-17 17:24:41.0 +0200
@@ -1,0 +2,9 @@
+Thu Aug 14 20:02:29 UTC 2014 - rschweik...@suse.com
+
+- Update to version 2.0.7
+   + Add warning for resource disk data loss
+   + Multiple fixes for provisioning and extension handler
+   + Add support for Gentoo
+   + Multiple fixes for extension handler in status report and heartbeat
+
+---
@@ -4 +13 @@
-- update to version 2.0.5
+- update to version 2.0.5 (bnc#880949)

Old:

  WALinuxAgent-2.0.5.tar.bz2

New:

  WALinuxAgent-2.0.7.tar.bz2



Other differences:
--
++ WALinuxAgent.spec ++
--- /var/tmp/diff_new_pack.BYbT4n/_old  2014-09-17 17:24:42.0 +0200
+++ /var/tmp/diff_new_pack.BYbT4n/_new  2014-09-17 17:24:42.0 +0200
@@ -20,7 +20,7 @@
 Summary:The Windows Azure Linux Agent
 License:Apache-2.0
 Group:  System/Daemons
-Version:2.0.5
+Version:2.0.7
 Release:0
 Url:https://github.com/WindowsAzure/WALinuxAgent
 Source0:WALinuxAgent-%{version}.tar.bz2

++ WALinuxAgent-2.0.5.tar.bz2 - WALinuxAgent-2.0.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/WALinuxAgent-2.0.5/.gitignore 
new/WALinuxAgent-2.0.7/.gitignore
--- old/WALinuxAgent-2.0.5/.gitignore   1970-01-01 01:00:00.0 +0100
+++ new/WALinuxAgent-2.0.7/.gitignore   2014-08-08 09:05:01.0 +0200
@@ -0,0 +1,3 @@
+waagentc
+*.py[cod]*
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/WALinuxAgent-2.0.5/Changelog 
new/WALinuxAgent-2.0.7/Changelog
--- old/WALinuxAgent-2.0.5/Changelog2014-05-19 07:33:29.0 +0200
+++ new/WALinuxAgent-2.0.7/Changelog2014-08-08 09:05:01.0 +0200
@@ -1,5 +1,13 @@
 WALinuxAgent  Changelog
 |||
+08 Aug 2014, WALinuxAgent 2.0.7
+   . Add warning for resource disk data loss
+   . Multiple fixes for provisioning and extension handler
+
+13 Jun 2014, WALinuxAgent 2.0.6
+   . Add support for Gentoo
+   . Multiple fixes for extension handler in status report and heartbeat
+
 19 May 2014, WALinuxAgent 2.0.5
. Multiple fixes for FreeBSD provisioning
. Add support for SLES 12
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/WALinuxAgent-2.0.5/tests/env.py 
new/WALinuxAgent-2.0.7/tests/env.py
--- old/WALinuxAgent-2.0.5/tests/env.py 1970-01-01 01:00:00.0 +0100
+++ new/WALinuxAgent-2.0.7/tests/env.py 2014-08-08 09:05:01.0 +0200
@@ -0,0 +1,23 @@
+# Copyright 2014 Microsoft Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the License);
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an AS IS BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import imp
+import os
+
+projet_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+waagent = imp.load_source('waagent', os.path.join(projet_root, 'waagent'))
+
+waagent.LoggerInit('/tmp/test.log','/dev/stdout')
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/WALinuxAgent-2.0.5/tests/test_utils.py 
new/WALinuxAgent-2.0.7/tests/test_utils.py
--- old/WALinuxAgent-2.0.5/tests/test_utils.py  1970-01-01 01:00:00.0 
+0100
+++ new/WALinuxAgent-2.0.7/tests/test_utils.py  2014-08-08 09:05:01.0 
+0200
@@ -0,0 +1,47 @@
+# Copyright 2014 Microsoft Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the License);
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is 

commit gperftools for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package gperftools for openSUSE:Factory 
checked in at 2014-09-17 17:24:57

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


Package is gperftools

Changes:

--- /work/SRC/openSUSE:Factory/gperftools/gperftools.changes2014-06-16 
21:26:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.gperftools.new/gperftools.changes   
2014-09-17 17:25:01.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 15 00:33:02 CEST 2014 - r...@suse.de
+
+- set excludearch for s390 and s390x: not ported there
+
+---



Other differences:
--
++ gperftools.spec ++
--- /var/tmp/diff_new_pack.92LPCU/_old  2014-09-17 17:25:02.0 +0200
+++ /var/tmp/diff_new_pack.92LPCU/_new  2014-09-17 17:25:02.0 +0200
@@ -38,6 +38,7 @@
 Group:  System/Libraries
 Provides:   google-perftools
 Obsoletes:  google-perftools
+ExcludeArch:s390 s390x
 
 %description
 The gperftools package contains some utilities to improve and analyze the

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



commit colorhug-client for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package colorhug-client for openSUSE:Factory 
checked in at 2014-09-17 17:25:02

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


Package is colorhug-client

Changes:

--- /work/SRC/openSUSE:Factory/colorhug-client/colorhug-client.changes  
2014-02-19 06:53:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.colorhug-client.new/colorhug-client.changes 
2014-09-17 17:25:06.0 +0200
@@ -1,0 +2,20 @@
+Mon Sep 15 06:43:48 UTC 2014 - kkae...@suse.com
+
+- Update to version 0.2.2
+  - This release requires colord = 1.2.3
+ 
+  New Features:
+  - Load the colorhug-spectro-utils data file from a GResource
+  - Support ColorHug2 in colorhug-ccmx and colorhug-flash
+  - Support getting and setting the DAC value on ColorHug+
+
+  Bugfixes:
+  - Do not use deprecated widgets in the spectro tool
+  - Don't set the multiplier or integral on v2 hardware
+  - Fix autogen failure with new gettexts
+  - Remove suspicious usage of sizeof with a numeric constant
+  - Use ch_device_check_firmware() to verify the firmware
+
+- drop colorhug-client-colorhug_plus.patch, upstream
+
+---

Old:

  colorhug-client-0.2.1.tar.xz
  colorhug-client-colorhug_plus.patch

New:

  colorhug-client-0.2.2.tar.xz



Other differences:
--
++ colorhug-client.spec ++
--- /var/tmp/diff_new_pack.PtJEp2/_old  2014-09-17 17:25:07.0 +0200
+++ /var/tmp/diff_new_pack.PtJEp2/_new  2014-09-17 17:25:07.0 +0200
@@ -17,21 +17,19 @@
 
 
 Name:   colorhug-client
-Version:0.2.1
+Version:0.2.2
 Release:0
 Summary:Tools for the Hughski Colorimeter
 License:GPL-2.0+
 Group:  Productivity/Graphics/Other
 Url:http://www.hughski.com/
 Source0:
http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM colorhug-client-colorhug_plus.patch dims...@opensuse.org 
-- Rename 'ColorHug Spectro' to 'ColorHug+' for trademark reasons
-Patch0: colorhug-client-colorhug_plus.patch
 BuildRequires:  docbook-utils
 BuildRequires:  intltool
 BuildRequires:  itstool
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-BuildRequires:  pkgconfig(colord) = 0.1.33
+BuildRequires:  pkgconfig(colord) = 1.2.3
 BuildRequires:  pkgconfig(colord-gtk) = 0.1.24
 BuildRequires:  pkgconfig(gio-2.0) = 2.25.9
 BuildRequires:  pkgconfig(glib-2.0) = 2.31.10
@@ -55,7 +53,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure --disable-static

++ colorhug-client-0.2.1.tar.xz - colorhug-client-0.2.2.tar.xz ++
 16370 lines of diff (skipped)

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



commit compizconfig-settings-manager for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package compizconfig-settings-manager for 
openSUSE:Factory checked in at 2014-09-17 17:24:45

Comparing /work/SRC/openSUSE:Factory/compizconfig-settings-manager (Old)
 and  /work/SRC/openSUSE:Factory/.compizconfig-settings-manager.new (New)


Package is compizconfig-settings-manager

Changes:

New Changes file:

--- /dev/null   2014-07-24 01:57:42.080040256 +0200
+++ 
/work/SRC/openSUSE:Factory/.compizconfig-settings-manager.new/compizconfig-settings-manager.changes
 2014-09-17 17:24:46.0 +0200
@@ -0,0 +1,180 @@
+---
+Thu May 12 12:10:00 UTC 2014 - k...@gmx.de
+
+- unlink from Factory
+
+---
+Thu May 12 12:00:01 UTC 2014 - k...@gmx.de
+
+- repair package due to broken link in Factory
+- remove Obsoletes ccs-settings
+- repair License
+- remove outdated 1110 version section
+
+---
+Sat Nov 11 12:00:01 UTC 2010 - k...@gmx.de
+
+- add the requirement for a compiz version less than 0.9
+- require a version less than 0.9 of python-ccm
+
+---
+Thu May 27 20:07:41 UTC 2010 - dims...@opensuse.org
+
+- Split the python backend out in it's own package and have ccsm
+  frontend require it.
+
+---
+Fri Nov 13 10:47:01 CET 2009 - dims...@opensuse.org
+
+- Update to version 0.8.4:
+  + Remove obsolete icons
+  + Speed up startup by loading icons in the background
+
+---
+Sat Oct  3 11:10:00 UTC 2009 - a...@suse.de
+
+- Don't warn about missing sexy-python, it's not available at all
+  in openSUSE (unsexy.patch)
+- Package is noarch for openSUSE 11.2.
+
+---
+Fri Aug 21 14:13:14 CEST 2009 - dims...@opensuse.org
+
+- Add new python macros for openSUSE = 11.1
+
+---
+Sun Aug  9 12:43:26 CEST 2009 - co...@novell.com
+
+- use new python macros
+
+---
+Thu Jan 29 14:57:07 CET 2009 - rodr...@novell.com
+
+- Add compizconfig-settings-manager-profile-extensions.patch (bgo#458343)
+
+---
+Mon Sep 29 16:53:32 CEST 2008 - rodr...@novell.com
+
+- Review and merge changes from X11:Compiz
+
+---
+Wed Sep 17 20:18:32 IST 2008 - cyber...@opensuse.org
+
+- Release 0.7.8
+- l10n updates 
+- Add startup notification and optional dbus single-instance support
+- Make use of the new tooltip system introduced in GTK 2.12
+
+---
+Tue Jul  1 17:28:58 CEST 2008 - mh...@suse.de
+
+- Update from buildservice.
+
+---
+Sat May 31 19:30:00 IST 2008 - cyber...@opensuse.org
+
+- update to 0.7.6
+  - Check if an action conflicts with another plugin when enabling
+a plugin
+  - Internal action bindings will now only conflict with global
+bindings; internal actions in different plugins can have the
+same bindings.
+  - Rewrote plugin overview page
+  - Changed native size of category icons to 32x32
+  - Internal code refactoring and bug fixes
+
+---
+Mon Apr 14 20:20:06 CEST 2008 - mh...@suse.de
+
+- Update from buildservice.
+
+---
+Thu Apr 03 22:03:00 IST 2008 - cyber...@cyberorg.info
+
+- 0.7.4 release
+- Advance search rewrite
+- Add --version/-v command line switch
+- Many GUI improvements
+
+---
+Fri Mar 07 01:20:00 IST 2008 - cyber...@opensuse.org
+
+- 0.7.2 development release
+- Action settings were split into button, key, and edge settings, each using
+  its own widget.
+- Match settings can be edited with a simple editor that supports easy
+  grabbing of window properties
+- Advanced Search page was improved
+- New icons for some plugins
+- Minor adaptations and fixes
+
+---
+Sat Feb 09 00:02:00 IST 2008 - cyber...@cyberorg.info
+
+- sync to latest git
+
+---
+Tue Dec 04 13:40:00 IST 2007 - cyber...@cyberorg.info
+
+- sync to latest git
+- many GUI improvements
+- key binding improvements
+- file selection improvements
+
+---

commit perl-MooseX-Types for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types for 
openSUSE:Factory checked in at 2014-09-17 17:25:11

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


Package is perl-MooseX-Types

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Types/perl-MooseX-Types.changes  
2014-03-11 07:28:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-MooseX-Types.new/perl-MooseX-Types.changes 
2014-09-17 17:25:23.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 12:52:35 UTC 2014 - co...@suse.com
+
+- updated to 0.45
+  - increase the required versions of some prerequisites
+
+---

Old:

  MooseX-Types-0.44.tar.gz

New:

  MooseX-Types-0.45.tar.gz



Other differences:
--
++ perl-MooseX-Types.spec ++
--- /var/tmp/diff_new_pack.N63xEF/_old  2014-09-17 17:25:23.0 +0200
+++ /var/tmp/diff_new_pack.N63xEF/_new  2014-09-17 17:25:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MooseX-Types
-Version:0.44
+Version:0.45
 Release:0
 %define cpan_name MooseX-Types
 Summary:Organise your Moose types in libraries
@@ -30,7 +30,7 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Carp::Clan) = 6.00
-BuildRequires:  perl(Module::Build::Tiny) = 0.035
+BuildRequires:  perl(Module::Build::Tiny) = 0.037
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) = 1.06
 BuildRequires:  perl(Moose::Exporter)
@@ -41,10 +41,9 @@
 BuildRequires:  perl(Sub::Exporter)
 BuildRequires:  perl(Sub::Name)
 BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Requires)
-BuildRequires:  perl(namespace::autoclean) = 0.08
-BuildRequires:  perl(namespace::clean)
-BuildRequires:  perl(version)
+BuildRequires:  perl(namespace::autoclean) = 0.16
 Requires:   perl(Carp::Clan) = 6.00
 Requires:   perl(Module::Runtime)
 Requires:   perl(Moose) = 1.06
@@ -54,8 +53,7 @@
 Requires:   perl(Scalar::Util) = 1.19
 Requires:   perl(Sub::Exporter)
 Requires:   perl(Sub::Name)
-Requires:   perl(namespace::autoclean) = 0.08
-Requires:   perl(namespace::clean)
+Requires:   perl(namespace::autoclean) = 0.16
 %{perl_requires}
 
 %description
@@ -100,6 +98,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

++ MooseX-Types-0.44.tar.gz - MooseX-Types-0.45.tar.gz ++
 5590 lines of diff (skipped)

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



commit python-kazoo for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-kazoo for openSUSE:Factory 
checked in at 2014-09-17 17:25:12

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


Package is python-kazoo

Changes:

--- /work/SRC/openSUSE:Factory/python-kazoo/python-kazoo.changes
2014-04-03 17:14:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-kazoo.new/python-kazoo.changes   
2014-09-17 17:25:24.0 +0200
@@ -1,0 +2,55 @@
+Mon Sep 15 12:13:02 UTC 2014 - tbecht...@suse.com
+
+- update to version 2.0
+  * Extend support to Python 3.4, deprecating Python 3.2.
+  * Issue #198: Mention Zake as a sophisticated kazoo mock testing library.
+  * Issue #181: Add documentation on basic logging setup.
+  * Null or None data is no longer treated as . Pull req #165, patch by
+Raul Gutierrez S. This will affect how you should treat null data in a
+znode vs. an empty string.
+  * Passing acl=[] to create() now works properly instead of an InvalidACLError
+as it returned before. Patch by Raul Gutierrez S in PR #164.
+  * Removed the dependency on zope.interface. The classes in the interfaces
+module are left for documentation purposes only (issue #131).
+  * Logging levels have been reduced.
++ Logging previously at the ``logging.DEBUG`` level is now logged at
+  the ``kazoo.loggingsupport.BLATHER`` level (5).
++ Some low-level logging previously at the ``logging.INFO`` level is
+  now logged at the ``logging.DEBUG`` level.
+  * Issue #133: Introduce a new environment variable `ZOOKEEPER_PORT_OFFSET`
+for the testing support, to run the testing cluster on a different range.
+  * When authenticating via add_auth() the auth data will be saved to ensure 
that
+the authentication happens on reconnect (as is the case when feeding auth
+data via KazooClient's constructor). PR #172, patch by Raul Gutierrez S.
+  * Change gevent import to remove deprecation warning when newer gevent is
+used. PR #191, patch by Hiroaki Kawai.
+  * Lock recipe was failing to use the client's sleep_func causing issues with
+gevent. Issue #150.
+  * Calling a DataWatch or ChildrenWatch instance twice (decorator) now throws
+an exception as only a single function can be associated with a single
+watcher. Issue #154.
+  * Another fix for atexit handling so that when disposing of connections the
+atexit handler is removed. PR #190, patch by Devaev Maxim.
+  * Fix atexit handling for kazoo threading handler, PR #183. Patch by
+Brian Wickman.
+  * Partitioner should handle a suspended connection properly and restore
+an allocated state if it was allocated previously. Patch by Manish Tomar.
+  * Issue #167: Closing a client that was never started throws a type error.
+Patch by Joshua Harlow.
+  * Passing dictionaries to KazooClient.__init__() wasn't actually working
+properly. Patch by Ryan Uber.
+  * Issue #119: Handler timeout takes the max of the random interval or
+the read timeout to ensure a negative number isn't used for the read
+timeout.
+  * Fix ordering of exception catches in lock.acquire as it was capturing a
+parent exception before the child. Patch by ReneSac.
+  * Fix issue with client.stop() not always setting the client state to
+KeeperState.CLOSED. Patch by Jyrki Pulliainen in PR #174.
+  * Issue #169: Fixed pipes leaking into child processes.
+  * Add section on contributing recipes, add maintainer/status information for
+existing recipes.
+  * Add note about alternate use of DataWatch.
+- Remove Require python-zope.interfaces
+
+
+---

Old:

  kazoo-1.3.1.zip

New:

  kazoo-2.0.zip



Other differences:
--
++ python-kazoo.spec ++
--- /var/tmp/diff_new_pack.luxDoK/_old  2014-09-17 17:25:24.0 +0200
+++ /var/tmp/diff_new_pack.luxDoK/_new  2014-09-17 17:25:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-kazoo
-Version:1.3.1
+Version:2.0
 Release:0
 Summary:Higher Level Zookeeper Client
 License:Apache-2.0
@@ -32,9 +32,7 @@
 #BuildRequires:  python-mock
 #BuildRequires:  python-coverage
 #BuildRequires:  python-nose
-#BuildRequires:  python-zope.interface = 3.8.0
 #BuildRequires:  python-nose
-Requires:   python-zope.interface = 3.8.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}

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

commit fcitx-qt5 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package fcitx-qt5 for openSUSE:Factory 
checked in at 2014-09-17 17:24:58

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


Package is fcitx-qt5

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-qt5/fcitx-qt5.changes  2014-06-10 
14:39:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-qt5.new/fcitx-qt5.changes 2014-09-17 
17:25:02.0 +0200
@@ -1,0 +2,11 @@
+Mon Sep 15 06:23:33 UTC 2014 - i...@marguerite.su
+
+- add baselibs.conf to Source
+
+---
+Thu Sep 11 19:11:45 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Fix baselibs requires, and shlib find-requires works
+  also with baselibs
+
+---



Other differences:
--
++ fcitx-qt5.spec ++
--- /var/tmp/diff_new_pack.cposx2/_old  2014-09-17 17:25:04.0 +0200
+++ /var/tmp/diff_new_pack.cposx2/_new  2014-09-17 17:25:04.0 +0200
@@ -24,6 +24,7 @@
 Group:  System/I18n/Chinese
 Url:https://fcitx.org
 Source: http://download.fcitx-im.org/%{name}/%{name}-%{version}.tar.xz
+Source99: baselibs.conf
 BuildRequires:  cmake
 BuildRequires:  fcitx-devel = 4.2.3
 BuildRequires:  gcc-c++

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.cposx2/_old  2014-09-17 17:25:04.0 +0200
+++ /var/tmp/diff_new_pack.cposx2/_new  2014-09-17 17:25:04.0 +0200
@@ -1,2 +1 @@
-fcitx-qt5
-   requires libfcitx-4_2_8-targettype = version
+fcitx-qt5
\ No newline at end of file

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



commit perl-IO-All for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-IO-All for openSUSE:Factory 
checked in at 2014-09-17 17:25:10

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


Package is perl-IO-All

Changes:

--- /work/SRC/openSUSE:Factory/perl-IO-All/perl-IO-All.changes  2014-03-25 
13:25:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-IO-All.new/perl-IO-All.changes 
2014-09-17 17:25:21.0 +0200
@@ -1,0 +2,65 @@
+Mon Sep 15 12:52:36 UTC 2014 - co...@suse.com
+
+- updated to 0.79
+  - Doc enhancement. PR/51. @nheinric++
+ 
+ 0.78 Thu Aug 28 11:56:36 PDT 2014
+  - Release to steal indexing back from Alt::IO::All::new.
+ 
+ 0.77 Tue Aug 26 12:37:29 PDT 2014
+  - Add new overloads from PR/49 @ginzel++
+ 
+ 0.76 Tue Aug 19 16:21:05 PDT 2014
+  - Relplace tabs with spaces
+ 
+ 0.75 Sat Aug 16 16:41:13 PDT 2014
+  - Change testdir to t
+ 
+ 0.74 Sat Aug 16 16:03:33 PDT 2014
+  - Fix strict/warnings
+ 
+ 0.73 Sat Aug 16 15:35:55 PDT 2014
+  - Remove 'use 5.x.x' from code
+ 
+ 0.72 Sat Aug 16 11:19:00 PDT 2014
+  - Meta 0.0.2
+ 
+ 0.71 Sat Aug 16 03:45:11 PDT 2014
+  - Eliminate spurious trailing whitespace
+ 
+ 0.70 Sat Aug 16 02:08:08 PDT 2014
+  - Eliminate File::Basename from test/
+ 
+ 0.69 Fri Aug 15 15:55:18 PDT 2014
+  - Add t/000-compile-modules.t
+  - CPAN Day 2014 - 21 Release Salute!
+ 
+ 0.68 Sun Aug 10 08:56:08 PDT 2014
+  - PR/47. Doc fixes. @ginzel++
+ 
+ 0.67 Sat Aug  2 11:58:01 PDT 2014
+  - Fix Copyright years.
+ 
+ 0.66 Wed Jul 16 23:39:38 PDT 2014
+  - Move doc to Swim
+  - Fix Meta and add Contributing file
+ 
+ 0.65 Sat Jun 14 12:48:31 PDT 2014
+  - Support recommended modules again
+ 
+ 0.64 Sat Jun 14 12:33:21 PDT 2014
+  - New badge syntax
+  - Changed the ABSTRACT
+ 
+ 0.63 Sun Jun  8 12:45:43 PDT 2014
+  - Add coveralls badge
+  - Finish porting pod to kwim
+ 
+ 0.62 Sat Jun  7 13:36:32 PDT 2014
+  - Convert release to Zilla::Dist
+  - Start converting doc to Kwim
+ 
+ 0.61
+  - Fix GH#44 (Thanks Shlomi Fish!)
+
+---

Old:

  IO-All-0.60.tar.gz

New:

  IO-All-0.79.tar.gz



Other differences:
--
++ perl-IO-All.spec ++
--- /var/tmp/diff_new_pack.k4rCoL/_old  2014-09-17 17:25:22.0 +0200
+++ /var/tmp/diff_new_pack.k4rCoL/_new  2014-09-17 17:25:22.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   perl-IO-All
-Version:0.60
+Version:0.79
 Release:0
 %define cpan_name IO-All
-Summary:IO::All of it to Graham and Damian!
+Summary:IO::All to Larry Wall!
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/IO-All/
-Source: 
http://www.cpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/I/IN/INGY/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -34,8 +34,6 @@
 %{perl_requires}
 
 %description
-Graham Barr for doing it all. Damian Conway for doing it all different.
-
 IO::All combines all of the best Perl IO modules into a single nifty object
 oriented interface to greatly simplify your everyday Perl IO idioms. It
 exports a single function called 'io', which returns a new IO::All object.
@@ -89,6 +87,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes cpanfile examples LICENSE method_list Notes pkg README README.md 
ToDo unit
+%doc Changes CONTRIBUTING example LICENSE README
 
 %changelog

++ IO-All-0.60.tar.gz - IO-All-0.79.tar.gz ++
 8667 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-Test-File-ShareDir for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-File-ShareDir for 
openSUSE:Factory checked in at 2014-09-17 17:25:10

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


Package is perl-Test-File-ShareDir

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Test-File-ShareDir/perl-Test-File-ShareDir.changes
  2014-06-16 21:31:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-File-ShareDir.new/perl-Test-File-ShareDir.changes
 2014-09-17 17:25:20.0 +0200
@@ -1,0 +2,45 @@
+Mon Sep 15 12:52:33 UTC 2014 - co...@suse.com
+
+- updated to 1.05
+  [00 Trivial]
+  - CPANDAY!
+  - no code changes.
+  - tests augmented.
+  - whitespace greatly reduced.
+ 
+  [Dependencies::Stats]
+  - Dependencies changed since 1.04, see misc/*.deps* for details
+  - configure: ↓1
+  - develop: +1 (suggests: ↑1)
+  - test: -4 (recommends: ↑1 -2)
+ 
+  [Misc]
+  - Improve source side POD to reduce build side whitespace.
+ 
+  [Tests]
+  - update Test::ReportPrereqs
+ 
+ 1.04 2014-07-22T19:29:27Z
+  [Doc Bugfix]
+  - Previous releases changelog was misleading.
+  - We're requiring a newer Path::Tiny to avoid a problem. ( As opposed to the 
impression that a newer Path::Tiny caused
+the problem, grammar-- )
+ 
+ 1.03 2014-07-22T19:02:06Z
+  [Bugfix]
+  - Attempt to avoid tempdir(CLEANUP = 1) being an error by requiring newer 
Path::Tiny
+ 
+  [Dependencies::Stats]
+  - Dependencies changed since 1.02, see misc/*.deps* for details
+  - runtime: ↑1
+ 
+ 1.02 2014-07-18T16:33:36Z
+  [00 Trivial]
+  - Minor packaging cleanups shaving ~7k
+ 
+  [Dependencies::Stats]
+  - Dependencies changed since 1.01, see misc/*.deps* for details
+  - develop: (suggests: ↑2)
+  - test: +2 ↑1 (recommends: +1)
+
+---

Old:

  Test-File-ShareDir-1.01.tar.gz

New:

  Test-File-ShareDir-1.05.tar.gz



Other differences:
--
++ perl-Test-File-ShareDir.spec ++
--- /var/tmp/diff_new_pack.WINoBw/_old  2014-09-17 17:25:21.0 +0200
+++ /var/tmp/diff_new_pack.WINoBw/_new  2014-09-17 17:25:21.0 +0200
@@ -17,10 +17,10 @@
 
 
 Name:   perl-Test-File-ShareDir
-Version:1.01
+Version:1.05
 Release:0
 %define cpan_name Test-File-ShareDir
-Summary:Create a Fake ShareDir for your modules for testing
+Summary:Create a Fake ShareDir for your modules for testing.
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Test-File-ShareDir/
@@ -32,16 +32,13 @@
 BuildRequires:  perl(Class::Tiny)
 BuildRequires:  perl(File::Copy::Recursive)
 BuildRequires:  perl(File::ShareDir) = 1.00
-BuildRequires:  perl(Module::Build) = 0.4004
-BuildRequires:  perl(Path::Tiny)
+BuildRequires:  perl(Path::Tiny) = 0.018
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(Test::More) = 0.98
-#BuildRequires: perl(Example)
-#BuildRequires: perl(Test::File::ShareDir)
-#BuildRequires: perl(Test::File::ShareDir::TempDirObject)
+BuildRequires:  perl(Test::More) = 0.96
+Requires:   perl(Class::Tiny)
 Requires:   perl(File::Copy::Recursive)
 Requires:   perl(File::ShareDir) = 1.00
-Requires:   perl(Path::Tiny)
+Requires:   perl(Path::Tiny) = 0.018
 %{perl_requires}
 
 %description
@@ -55,11 +52,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL installdirs=vendor
-make
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
-make test
+%{__make} test
 
 %install
 %perl_make_install
@@ -68,6 +65,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE perlcritic.rc README weaver.ini
+%doc Changes dist.ini.meta LICENSE perlcritic.rc README weaver.ini
 
 %changelog

++ Test-File-ShareDir-1.01.tar.gz - Test-File-ShareDir-1.05.tar.gz 
++
 3647 lines of diff (skipped)

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



commit libsamplerate for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package libsamplerate for openSUSE:Factory 
checked in at 2014-09-17 17:25:05

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


Package is libsamplerate

Changes:

--- /work/SRC/openSUSE:Factory/libsamplerate/libsamplerate.changes  
2013-05-27 09:52:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsamplerate.new/libsamplerate.changes 
2014-09-17 17:25:14.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 12:14:15 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes/provides to baselibs.conf.
+
+---



Other differences:
--
++ libsamplerate.spec ++
--- /var/tmp/diff_new_pack.zqkVQc/_old  2014-09-17 17:25:15.0 +0200
+++ /var/tmp/diff_new_pack.zqkVQc/_new  2014-09-17 17:25:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libsamplerate
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.zqkVQc/_old  2014-09-17 17:25:16.0 +0200
+++ /var/tmp/diff_new_pack.zqkVQc/_new  2014-09-17 17:25:16.0 +0200
@@ -1 +1,4 @@
 libsamplerate0
+obsoletes libsamplerate-targettype  version
+provides libsamplerate-targettype = version
+

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



commit dmtcp for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package dmtcp for openSUSE:Factory checked 
in at 2014-09-17 17:25:07

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


Package is dmtcp

Changes:

--- /work/SRC/openSUSE:Factory/dmtcp/dmtcp.changes  2014-08-05 
21:11:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.dmtcp.new/dmtcp.changes 2014-09-17 
17:25:16.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 12 07:12:31 UTC 2014 - bwiedem...@suse.com
+
+- include string.h to fix compilation (bnc#889400)
+  Add includes.patch
+
+---

New:

  includes.patch



Other differences:
--
++ dmtcp.spec ++
--- /var/tmp/diff_new_pack.EZ3svI/_old  2014-09-17 17:25:17.0 +0200
+++ /var/tmp/diff_new_pack.EZ3svI/_new  2014-09-17 17:25:17.0 +0200
@@ -25,6 +25,7 @@
 Group:  System/Packages
 Url:http://dmtcp.sourceforge.net
 Source0:%{name}-%{version}.tar.gz
+Patch1: includes.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc
 BuildRequires:  gcc-c++
@@ -63,6 +64,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 sed -i -e 's,enable_option_checking=fatal,enable_option_checking=no,' configure
 
 %build

++ includes.patch ++
Index: dmtcp-2.3.1/src/dlsym_default.c
===
--- dmtcp-2.3.1.orig/src/dlsym_default.c
+++ dmtcp-2.3.1/src/dlsym_default.c
@@ -33,6 +33,7 @@
 #include stdio.h
 #include stdlib.h
 #include assert.h
+#include string.h
 
 #define _GNU_SOURCE
 #include dlfcn.h
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-jsonschema for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-jsonschema for 
openSUSE:Factory checked in at 2014-09-17 17:25:13

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


Package is python-jsonschema

Changes:

--- /work/SRC/openSUSE:Factory/python-jsonschema/python-jsonschema.changes  
2014-02-26 06:55:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-jsonschema.new/python-jsonschema.changes 
2014-09-17 17:25:25.0 +0200
@@ -1,0 +2,14 @@
+Mon Sep 15 10:57:54 UTC 2014 - tbecht...@suse.com
+
+- update to version 2.4.0:
+  * Added a CLI (#134)
+  * Added absolute path and absolute schema path to errors (#120)
+  * Added ``relevance``
+  * Meta-schemas are now loaded via ``pkgutil``
+  * Added ``by_relevance`` and ``best_match`` (#91)
+  * Fixed ``format`` to allow adding formats for non-strings (#125)
+  * Fixed the ``uri`` format to reject URI references (#131)
+- BuildRequires python-setuptools
+- Install /usr/bin/jsonschema with update-alternatives support
+
+---

Old:

  jsonschema-2.2.0.tar.gz

New:

  jsonschema-2.4.0.tar.gz



Other differences:
--
++ python-jsonschema.spec ++
--- /var/tmp/diff_new_pack.LJHcFk/_old  2014-09-17 17:25:25.0 +0200
+++ /var/tmp/diff_new_pack.LJHcFk/_new  2014-09-17 17:25:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-jsonschema
-Version:2.2.0
+Version:2.4.0
 Release:0
 Summary:An implementation of JSON-Schema validation for Python
 License:MIT
@@ -25,8 +25,11 @@
 Url:http://github.com/Julian/jsonschema
 Source: 
http://pypi.python.org/packages/source/j/jsonschema/jsonschema-%{version}.tar.gz
 BuildRequires:  python-devel
+BuildRequires:  python-setuptools
 # Test build requirements
 BuildRequires:  python-mock
+Requires(post):   update-alternatives
+Requires(postun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 BuildRequires:  python-unittest2
@@ -47,15 +50,31 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+mv %{buildroot}%{_bindir}/jsonschema 
%{buildroot}%{_bindir}/jsonschema-%{py_ver}
+ln -s %{_bindir}/jsonschema-%{py_ver} %{buildroot}%{_bindir}/jsonschema
 
 %if 0%{?suse_version}  1110
 %check
 python -m unittest jsonschema.tests.test_jsonschema_test_suite
 %endif
 
+%pre
+[[ ! -L %{_bindir}/jsonschema ]]  rm -f %{_bindir}/jsonschema || :
+
+%post
+update-alternatives --install \
+%{_bindir}/jsonschema jsonschema %{_bindir}/jsonschema-%{py_ver} 20
+
+%preun
+if [ $1 -eq 0 ] ; then
+update-alternatives --remove jsonschema %{_bindir}/jsonschema-%{py_ver}
+fi
+
 %files
 %defattr(-,root,root,-)
 %doc COPYING README.rst
+%ghost %{_bindir}/jsonschema
+%{_bindir}/jsonschema-%{py_ver}
 %{python_sitelib}/*
 
 %changelog

++ jsonschema-2.2.0.tar.gz - jsonschema-2.4.0.tar.gz ++
 3164 lines of diff (skipped)

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



commit hydrogen for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package hydrogen for openSUSE:Factory 
checked in at 2014-09-17 17:25:04

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


Package is hydrogen

Changes:

--- /work/SRC/openSUSE:Factory/hydrogen/hydrogen.changes2013-11-24 
12:03:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.hydrogen.new/hydrogen.changes   2014-09-17 
17:25:09.0 +0200
@@ -1,0 +2,20 @@
+Fri Sep  5 21:18:32 UTC 2014 - wba...@tmo.at
+
+- Update to final version 0.9.6, adapt patches
+- Changed hydrogen-0.9.6-desktop.patch to not add quotes to the
+  german Name and GenericName entries in the .desktop file, this
+  doesn't really make sense and looks bad in the application menu
+- Updated h2cli.1 and hydrogen.1 man pages
+- Upstream changes (compared to 0.9.5):
+  * Release 0.9.6
+  * new build system (cmake)
+  * add undo for song/pattern editor
+  * jack-session support
+  * jack-midi support
+  * several bug fixes
+  * tabbed interface
+  * several small changes to the GUI
+  * improve ExportSong add use of TimeLineBPM,
+RubberbandBatch processor and different types of resample interpolation
+
+---



Other differences:
--
++ h2cli.1 ++
--- /var/tmp/diff_new_pack.OFxkPH/_old  2014-09-17 17:25:11.0 +0200
+++ /var/tmp/diff_new_pack.OFxkPH/_new  2014-09-17 17:25:11.0 +0200
@@ -1,12 +1,12 @@
-.\ DO NOT MODIFY THIS FILE!  It was generated by help2man 1.38.2.
-.TH H2CLI 1 October 2011 h2cli 0.9.6 User Commands
+.\ DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.3.
+.TH H2CLI 1 September 2014 h2cli 0.9.6 User Commands
 .SH NAME
 h2cli \- manual page for h2cli 0.9.6
 .SH SYNOPSIS
 .B hydrogen
 [\fI-v\fR] [\fI-h\fR] \fI-s file\fR
 .SH DESCRIPTION
-Hydrogen 0.9.6 [Oct  4 2011]  [http://www.hydrogen\-music.org]
+Hydrogen 0.9.6 [Fri Sep  5 21:42:13 2014]  [http://www.hydrogen\-music.org]
 Copyright 2002\-2008 Alessandro Cominu
 .PP
 Hydrogen comes with ABSOLUTELY NO WARRANTY
@@ -17,9 +17,23 @@
 .HP
 \fB\-s\fR, \fB\-\-song\fR FILE \- Load a song (*.h2song) at startup
 .HP
+\fB\-p\fR, \fB\-\-playlist\fR FILE \- Load a playlist (*.h2playlist) at startup
+.HP
+\fB\-o\fR, \fB\-\-outfile\fR FILE \- Output to file (export)
+.HP
+\fB\-r\fR, \fB\-\-rate\fR RATE \- Set bitrate while exporting file
+.HP
+\fB\-b\fR, \fB\-\-bits\fR BITS \- Set bits depth while exporting file
+.HP
 \fB\-k\fR, \fB\-\-kit\fR drumkit_name \- Load a drumkit at startup
 .HP
 \fB\-i\fR, \fB\-\-install\fR FILE \- install a drumkit (*.h2drumkit)
+.HP
+\fB\-I\fR, \fB\-\-interpolate\fR INT \- Interpolation
+.IP
+(0:linear [default],1:cosine,2:third,3:cubic,4:hermite)
+.HP
+\fB\-S\fR, \fB\-\-jacksessionid\fR ID \- Start a JackSessionHandler session
 .TP
 \fB\-\-lash\-no\-start\-server\fR \- If LASH server not running, don't start
 it (LASH 0.5.3 and later).
@@ -27,8 +41,6 @@
 \fB\-\-lash\-no\-autoresume\fR \- Tell LASH server not to assume I'm returning
 from a crash.
 .HP
-\fB\-n\fR, \fB\-\-nosplash\fR \- Hide splash screen
-.HP
 \fB\-V[Level]\fR, \fB\-\-verbose\fR[=\fILevel\fR] \- Print a lot of debugging 
info
 .IP
 Level, if present, may be None, Error, Warning, Info, Debug or 0x

++ hydrogen-0.9.6-desktop.patch ++
--- /var/tmp/diff_new_pack.OFxkPH/_old  2014-09-17 17:25:11.0 +0200
+++ /var/tmp/diff_new_pack.OFxkPH/_new  2014-09-17 17:25:11.0 +0200
@@ -2,20 +2,7 @@
 ===
 --- linux/hydrogen.desktop.orig2011-01-06 11:30:46.0 +0200
 +++ linux/hydrogen.desktop 2011-10-05 16:59:45.684862755 +0200
-@@ -1,6 +1,6 @@
- [Desktop Entry]
- Name=Hydrogen Drum Machine
--Name[de]=Hydrogen Drumsequencer
-+Name[de]='Hydrogen Drumsequencer'
- Name[ru]=Драм-машина Hydrogen
- Name[hu]=Hydrogen Dobgép
- Name[tr]=Hydrogen Davul Makinası
-@@ -12,19 +12,17 @@ Comment[hu]=Dobszekvenciákat lehet vele
- Comment[tr]=Davul partisyonu yaz
- 
- GenericName=Drum Machine
--GenericName[de]=Drumsequencer
-+GenericName[de]='Drumsequencer'
+@@ -16,15 +16,13 @@ Comment[hu]=Dobszekvenciákat lehet vele
  GenericName[ru]=Драм-машина
  GenericName[tr]=Davul Makinası
  

++ hydrogen-0.9.6-lib64.patch ++
--- /var/tmp/diff_new_pack.OFxkPH/_old  2014-09-17 17:25:11.0 +0200
+++ /var/tmp/diff_new_pack.OFxkPH/_new  2014-09-17 17:25:11.0 +0200
@@ -20,8 +20,8 @@
  ${QT_QTCORE_LIBRARY}
  ${QT_QTXML_LIBRARY}
  ${QT_QTXMLPATTERNS_LIBRARY}
-@@ -46,14 +46,20 @@ TARGET_LINK_LIBRARIES(hydrogen-core-${VE
- ${RUBBERBAND_LIBRARIES}
+@@ -49,14 +49,20 @@ TARGET_LINK_LIBRARIES(hydrogen-core-${VE
+ ${CMAKE_THREAD_LIBS_INIT}
  )
  
 

commit python-fixtures for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-fixtures for openSUSE:Factory 
checked in at 2014-09-17 17:25:16

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


Package is python-fixtures

Changes:

--- /work/SRC/openSUSE:Factory/python-fixtures/python-fixtures.changes  
2014-06-04 18:39:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-fixtures.new/python-fixtures.changes 
2014-09-17 17:25:27.0 +0200
@@ -1,0 +2,11 @@
+Mon Sep 15 09:16:54 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.3.16:
+  * Fixed 0.3.15 on Python 2.6 - version info is a plain tuple there.
+  * ``FakePopen`` now supports being called under a context manager (IE: with).
+  * ``FakeProcess`` now supports kill().
+  * ``FakeProcess`` wait() now supports arguments added in Python 3.
+  * ``MonkeyPatch`` now preserves ``staticmethod`` functions.
+- Add python-testtools as Requires
+
+---

Old:

  fixtures-0.3.14.tar.gz

New:

  fixtures-0.3.16.tar.gz



Other differences:
--
++ python-fixtures.spec ++
--- /var/tmp/diff_new_pack.034fTu/_old  2014-09-17 17:25:28.0 +0200
+++ /var/tmp/diff_new_pack.034fTu/_new  2014-09-17 17:25:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-fixtures
-Version:0.3.14
+Version:0.3.16
 Release:0
 Summary:Fixtures, reusable state for writing clean tests and more
 License:Apache-2.0 or BSD-3-Clause
@@ -36,6 +36,7 @@
 %else
 BuildArch:  noarch
 %endif
+Requires:   python-testtools
 
 %description
 Fixtures defines a Python contract for reusable state / support logic,

++ fixtures-0.3.14.tar.gz - fixtures-0.3.16.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-0.3.14/NEWS new/fixtures-0.3.16/NEWS
--- old/fixtures-0.3.14/NEWS2013-08-16 05:03:21.0 +0200
+++ new/fixtures-0.3.16/NEWS2014-08-22 06:29:11.0 +0200
@@ -6,6 +6,32 @@
 NEXT
 
 
+0.3.16
+~~
+
+CHANGES
+---
+
+* Fixed 0.3.15 on Python 2.6 - version info is a plain tuple there.
+  (Robert Collins)
+
+0.3.15
+~~
+
+CHANGES
+---
+
+* ``FakePopen`` now supports being called under a context manager (IE: with).
+  (Steve Kowalik)
+
+* ``FakeProcess`` now supports kill(). (Steve Kowalik)
+
+* ``FakeProcess`` wait() now supports arguments added in Python 3.
+  (Steve Kowalik)
+
+* ``MonkeyPatch`` now preserves ``staticmethod`` functions.
+  (Dan Kenigsberg)
+
 0.3.14
 ~~
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-0.3.14/PKG-INFO new/fixtures-0.3.16/PKG-INFO
--- old/fixtures-0.3.14/PKG-INFO2013-08-16 05:04:44.0 +0200
+++ new/fixtures-0.3.16/PKG-INFO2014-08-22 06:31:02.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: fixtures
-Version: 0.3.14
+Version: 0.3.16
 Summary: Fixtures, reusable state for writing clean tests and more.
 Home-page: https://launchpad.net/python-fixtures
 Author: Robert Collins
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-0.3.14/lib/fixtures/__init__.py 
new/fixtures-0.3.16/lib/fixtures/__init__.py
--- old/fixtures-0.3.14/lib/fixtures/__init__.py2013-08-16 
05:03:41.0 +0200
+++ new/fixtures-0.3.16/lib/fixtures/__init__.py2014-08-22 
06:29:29.0 +0200
@@ -36,7 +36,7 @@
 # established at this point, and setup.py will use a version of next-$(revno).
 # If the releaselevel is 'final', then the tarball will be major.minor.micro.
 # Otherwise it is major.minor.micro~$(revno).
-__version__ = (0, 3, 14, 'final', 0)
+__version__ = (0, 3, 16, 'final', 0)
 
 __all__ = [
 'ByteStream',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/fixtures-0.3.14/lib/fixtures/_fixtures/monkeypatch.py 
new/fixtures-0.3.16/lib/fixtures/_fixtures/monkeypatch.py
--- old/fixtures-0.3.14/lib/fixtures/_fixtures/monkeypatch.py   2013-07-03 
22:36:53.0 +0200
+++ new/fixtures-0.3.16/lib/fixtures/_fixtures/monkeypatch.py   2014-08-22 
06:30:21.0 +0200
@@ -17,6 +17,9 @@
 'MonkeyPatch'
 ]
 
+import sys
+import types
+
 from fixtures import Fixture
 
 
@@ -62,6 +65,11 @@
 if old_value is sentinel:
 self.addCleanup(self._safe_delete, current, attribute)
 else:
+# Python 2's setattr transforms function into instancemethod
+if (sys.version_info[0] == 2 and
+isinstance(current, (type, types.ClassType)) and
+isinstance(old_value, 

commit python-jsonpointer for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-jsonpointer for 
openSUSE:Factory checked in at 2014-09-17 17:25:14

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


Package is python-jsonpointer

Changes:

--- /work/SRC/openSUSE:Factory/python-jsonpointer/python-jsonpointer.changes
2013-05-02 11:41:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jsonpointer.new/python-jsonpointer.changes   
2014-09-17 17:25:26.0 +0200
@@ -1,0 +2,47 @@
+Mon Sep 15 09:45:48 UTC 2014 - tbecht...@suse.com
+
+- update to version 1.4:
+  * bump version to 1.4
+  * [Setup] use utf-8 explicitly in setup.py, fixes #8
+  * Merge pull request #7 from alexsdutton/patch-1
+  * Calculate path properly when self.parts == [].
+  * Added tests for round-tripping pointers from paths to parts
+  * JsonPointer.from_parts should handle the empty path
+  * fix doctest for Python 3
+  * bump version to 1.3
+  * add JsonPointer.path and JsonPointer.from_parts
+  * bump version to 1.2
+  * add trove classifiers (fixes #6)
+  * fix string formatting in assert statement
+  * fix typo in setup.py
+  * add links to README.md
+  * add MANIFEST.in
+  * add comments to commandline doc
+  * add jsonpointer commandline utility
+  * add missing AUTHORS
+  * Support for set_pointer and indexing arbitrary objects via 
__getitem__/__setitem__
+  * refactor type check
+  * add tests for JsonPointer.to_last()
+  * remove unused param of to_last()
+  * add test for out-of-bounds error
+  * add test for JsonPointer.contains(other)
+  * add test for invalid list index
+  * add test for pointer string not starting with /
+  * add test for comparing a pointer to another object
+  * show pypi information in README
+  * show coverage status in README
+  * remove some code from coverage calculation
+  * move coverage code from tests.py to makefile
+  * add coveralls support to .travis.yml
+  * add doctests for pairwise(iter)
+  * mention supported Python versions in docs
+  * Drop support for Python 2.5
+  * also target Python 3.3 and PyPy
+  * fix unicode literal quirks in Python 3.2
+  * let sphinx extract version, author from source
+  * README: add link to docs
+  * add some documentation
+  * ignore *.swp and files generated during packaging
+- Install /usr/bin/jsonpointer with update-alternatives
+
+---

Old:

  jsonpointer-1.0.tar.gz

New:

  jsonpointer-1.4.tar.gz



Other differences:
--
++ python-jsonpointer.spec ++
--- /var/tmp/diff_new_pack.U3osSa/_old  2014-09-17 17:25:27.0 +0200
+++ /var/tmp/diff_new_pack.U3osSa/_new  2014-09-17 17:25:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jsonpointer
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-jsonpointer
-Version:1.0
+Version:1.4
 Release:0
 Summary:Identify specific nodes in a JSON document (according to draft 
08)
 License:BSD-3-Clause
@@ -25,6 +25,8 @@
 Url:https://github.com/stefankoegl/python-json-pointer
 Source: 
http://pypi.python.org/packages/source/j/jsonpointer/jsonpointer-%{version}.tar.gz
 BuildRequires:  python-devel
+Requires(post):   update-alternatives
+Requires(postun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
@@ -43,9 +45,25 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+mv %{buildroot}%{_bindir}/jsonpointer 
%{buildroot}%{_bindir}/jsonpointer-%{py_ver}
+ln -s %{_bindir}/jsonpointer-%{py_ver} %{buildroot}%{_bindir}/jsonpointer
+
+%pre
+[[ ! -L %{_bindir}/jsonpointer ]]  rm -f %{_bindir}/jsonpointer || :
+
+%post
+update-alternatives --install \
+%{_bindir}/jsonpointer jsonpointer %{_bindir}/jsonpointer-%{py_ver} 20
+
+%preun
+if [ $1 -eq 0 ] ; then
+update-alternatives --remove jsonpointer %{_bindir}/jsonpointer-%{py_ver}
+fi
 
 %files
 %defattr(-,root,root,-)
+%ghost %{_bindir}/jsonpointer
+%{_bindir}/jsonpointer-%{py_ver}
 %{python_sitelib}/*
 
 %changelog

++ jsonpointer-1.0.tar.gz - jsonpointer-1.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit python-dogpile.cache for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-dogpile.cache for 
openSUSE:Factory checked in at 2014-09-17 17:25:19

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


Package is python-dogpile.cache

Changes:

--- 
/work/SRC/openSUSE:Factory/python-dogpile.cache/python-dogpile.cache.changes
2014-01-14 19:52:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-dogpile.cache.new/python-dogpile.cache.changes
   2014-09-17 17:25:29.0 +0200
@@ -1,0 +2,27 @@
+Mon Sep 15 09:03:52 UTC 2014 - tbecht...@suse.com
+
+- Update to version 0.5.4:
+  * Added new :class:`.NullBackend`, for testing and cache-disabling
+purposes.  Pull request courtesy Wichert Akkerman.
+  * Added missing Mako test dependency to setup.py.
+Pull request courtesy Wichert Akkerman.
+  * Fixed bug where calling :meth:`.CacheRegion.get_multi` or
+:meth:`.CacheRegion.set_multi` with an empty list would cause failures
+based on backend.  Pull request courtesy Wichert Akkerman.
+  * Added new :paramref:`.RedisBackend.connection_pool` option
+on the Redis backend; this can be passed a ``redis.ConnectionPool``
+instance directly.  Pull request courtesy Masayuko.
+  * Added new :paramref:`.RedisBackend.socket_timeout` option
+on the Redis backend.  Pull request courtesy
+Saulius Menkevičius.
+  * Added support for tests to run via py.test.
+  *  Repaired the entry point for Mako templates; the name of the entrypoint
+itself was wrong vs. what was in the docs, but beyond that the entrypoint
+would load the wrong module name.  Pull request courtesy zoomorph.
+  * The :func:`.coerce_string_conf` function, which is used by
+:meth:`.Region.configure_from_config`, will now recognize floating point
+values when parsing conf strings and deliver them as such; this supports
+non-integer values such as Redis ``lock_sleep``.  Pullreq courtesy
+Jeff Dairiki.
+
+---

Old:

  dogpile.cache-0.5.3.tar.gz

New:

  dogpile.cache-0.5.4.tar.gz



Other differences:
--
++ python-dogpile.cache.spec ++
--- /var/tmp/diff_new_pack.DtdVB2/_old  2014-09-17 17:25:30.0 +0200
+++ /var/tmp/diff_new_pack.DtdVB2/_new  2014-09-17 17:25:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-dogpile.cache
-Version:0.5.3
+Version:0.5.4
 Release:0
 Summary:A caching front-end based on the Dogpile lock
 License:BSD-3-Clause

++ dogpile.cache-0.5.3.tar.gz - dogpile.cache-0.5.4.tar.gz ++
 2399 lines of diff (skipped)

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



commit python-greenlet for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-greenlet for openSUSE:Factory 
checked in at 2014-09-17 17:25:24

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


Package is python-greenlet

Changes:

--- /work/SRC/openSUSE:Factory/python-greenlet/python-greenlet.changes  
2014-08-16 15:38:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-greenlet.new/python-greenlet.changes 
2014-09-17 17:25:36.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 12 21:22:30 UTC 2014 - dmuel...@suse.com
+
+- update to 0.4.4:
+  - Fixed PyGreenlet_SetParent signature, thanks to BoonsNaibot
+  - Fixed 64-bit Windows builds depending on wrong runtime dll
+
+---

Old:

  greenlet-0.4.3.zip

New:

  greenlet-0.4.4.zip



Other differences:
--
++ python-greenlet.spec ++
--- /var/tmp/diff_new_pack.zWZlf9/_old  2014-09-17 17:25:36.0 +0200
+++ /var/tmp/diff_new_pack.zWZlf9/_new  2014-09-17 17:25:36.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   python-greenlet
-Version:0.4.3
+Version:0.4.4
 Release:0
 Url:http://pypi.python.org/pypi/greenlet
 Summary:Lightweight in-process concurrent programming

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



commit perl-Devel-REPL for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-REPL for openSUSE:Factory 
checked in at 2014-09-17 17:25:33

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


Package is perl-Devel-REPL

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-REPL/perl-Devel-REPL.changes  
2013-11-29 07:03:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Devel-REPL.new/perl-Devel-REPL.changes 
2014-09-17 17:25:44.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 15:15:13 UTC 2014 - co...@suse.com
+
+- updated to 1.003026
+  - fix inclusion of of optional plugin prereqs when installation is run
+non-interactively
+
+---

Old:

  Devel-REPL-1.003025.tar.gz

New:

  Devel-REPL-1.003026.tar.gz



Other differences:
--
++ perl-Devel-REPL.spec ++
--- /var/tmp/diff_new_pack.gipQlQ/_old  2014-09-17 17:25:46.0 +0200
+++ /var/tmp/diff_new_pack.gipQlQ/_new  2014-09-17 17:25:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-REPL
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,10 +17,10 @@
 
 
 Name:   perl-Devel-REPL
-Version:1.003025
+Version:1.003026
 Release:0
 %define cpan_name Devel-REPL
-Summary:Modern perl interactive shell
+Summary:a modern perl interactive shell
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Devel-REPL/
@@ -29,48 +29,36 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(B::Keywords)
+BuildRequires:  perl(Data::Dump::Streamer)
+BuildRequires:  perl(Data::Dumper::Concise)
 BuildRequires:  perl(File::HomeDir)
-BuildRequires:  perl(Module::Build::Tiny) = 0.027
+BuildRequires:  perl(File::Next)
+BuildRequires:  perl(Lexical::Persistence)
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) = 0.93
 BuildRequires:  perl(Moose::Meta::Role)
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(MooseX::Getopt) = 0.18
 BuildRequires:  perl(MooseX::Object::Pluggable) = 0.0009
+BuildRequires:  perl(PPI)
 BuildRequires:  perl(Task::Weaken)
-BuildRequires:  perl(Test::CheckDeps) = 0.007
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(Test::More) = 0.94
 BuildRequires:  perl(namespace::autoclean)
-#BuildRequires: perl(App::Nopaste)
-#BuildRequires: perl(B::Keywords)
-#BuildRequires: perl(Data::Dumper::Concise)
-#BuildRequires: perl(Data::Dump::Streamer)
-#BuildRequires: perl(Devel::REPL)
-#BuildRequires: perl(Devel::REPL::Error)
-#BuildRequires: perl(Devel::REPL::Meta::Plugin)
-#BuildRequires: perl(Devel::REPL::Plugin)
-#BuildRequires: perl(Devel::REPL::Plugin::Completion)
-#BuildRequires: perl(Devel::REPL::Profile)
-#BuildRequires: perl(Devel::REPL::Profile::Standard)
-#BuildRequires: perl(Devel::REPL::Script)
-#BuildRequires: perl(File::Next)
-#BuildRequires: perl(Lexical::Persistence)
-#BuildRequires: perl(Module::Refresh)
-#BuildRequires: perl(Moose::Util::TypeConstraints)
-#BuildRequires: perl(PPI)
-#BuildRequires: perl(PPI::Dumper)
-#BuildRequires: perl(Project::Schema)
-#BuildRequires: perl(Sys::SigAction)
-#BuildRequires: perl(Test::Kwalitee)
-#BuildRequires: perl(Test::NoTabs)
+BuildRequires:  perl(version)
+Requires:   perl(B::Keywords)
+Requires:   perl(Data::Dump::Streamer)
+Requires:   perl(Data::Dumper::Concise)
 Requires:   perl(File::HomeDir)
+Requires:   perl(File::Next)
+Requires:   perl(Lexical::Persistence)
 Requires:   perl(Module::Runtime)
 Requires:   perl(Moose) = 0.93
 Requires:   perl(Moose::Meta::Role)
 Requires:   perl(Moose::Role)
 Requires:   perl(MooseX::Getopt) = 0.18
 Requires:   perl(MooseX::Object::Pluggable) = 0.0009
+Requires:   perl(PPI)
 Requires:   perl(Task::Weaken)
 Requires:   perl(namespace::autoclean)
 Recommends: perl(App::Nopaste)
@@ -100,18 +88,19 @@
 find . -type f -print0 | xargs -0 chmod 644
 
 %build
-%{__perl} Build.PL --installdirs=vendor
-./Build build --flags=%{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
-./Build test
+%{__make} test
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
+%perl_make_install
+%perl_process_packlist
 %perl_gen_filelist
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc 

commit python-amqp for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-09-17 17:25:23

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


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-05-17 
21:44:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-09-17 17:25:34.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 07:50:41 UTC 2014 - tbecht...@suse.com
+
+- update to 1.4.6:
+  * Now keeps buffer when socket times out.
+  * Adds ``Connection.Transport`` attribute that can be used to specify
+a different transport implementation.
+
+---

Old:

  amqp-1.4.5.tar.gz

New:

  amqp-1.4.6.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.78y0mk/_old  2014-09-17 17:25:35.0 +0200
+++ /var/tmp/diff_new_pack.78y0mk/_new  2014-09-17 17:25:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.5
+Version:1.4.6
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.4.5.tar.gz - amqp-1.4.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/Changelog new/amqp-1.4.6/Changelog
--- old/amqp-1.4.5/Changelog2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/Changelog2014-08-11 19:00:17.0 +0200
@@ -5,6 +5,22 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.6:
+
+1.4.6
+=
+:release-date: 2014-08-11 06:00 P.M UTC
+:release-by: Ask Solem
+
+- Now keeps buffer when socket times out.
+
+Fix contributed by Artyom Koval.
+
+- Adds ``Connection.Transport`` attribute that can be used to specify
+  a different transport implementation.
+
+Contributed by Yury Selivanov.
+
 .. _version-1.4.5:
 
 1.4.5
@@ -232,7 +248,7 @@
 
 1.1.0
 =
-:release-date: 2012-11-08 10:36 P.M UTC
+:release-date: 2013-11-08 10:36 P.M UTC
 :release-by: Ask Solem
 
 - No longer supports Python 2.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/PKG-INFO new/amqp-1.4.6/PKG-INFO
--- old/amqp-1.4.5/PKG-INFO 2014-04-15 23:08:15.0 +0200
+++ new/amqp-1.4.6/PKG-INFO 2014-08-11 19:02:54.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.5
+Version: 1.4.6
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.5
+:Version: 1.4.6
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/README.rst new/amqp-1.4.6/README.rst
--- old/amqp-1.4.5/README.rst   2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/README.rst   2014-08-11 19:00:36.0 +0200
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.5
+:Version: 1.4.6
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/amqp/__init__.py 
new/amqp-1.4.6/amqp/__init__.py
--- old/amqp-1.4.5/amqp/__init__.py 2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/amqp/__init__.py 2014-08-11 19:00:30.0 +0200
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 from __future__ import absolute_import
 
-VERSION = (1, 4, 5)
+VERSION = (1, 4, 6)
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Ask Solem'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/amqp/connection.py 
new/amqp-1.4.6/amqp/connection.py
--- old/amqp-1.4.5/amqp/connection.py   2014-02-09 15:59:03.0 +0100
+++ new/amqp-1.4.6/amqp/connection.py   2014-08-11 18:56:50.0 +0200
@@ -162,7 +162,7 @@
 # Let the transport.py module setup the actual
 # socket connection to the broker.
 #
-

commit python-croniter for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-croniter for openSUSE:Factory 
checked in at 2014-09-17 17:25:21

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


Package is python-croniter

Changes:

--- /work/SRC/openSUSE:Factory/python-croniter/python-croniter.changes  
2014-03-09 18:44:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-croniter.new/python-croniter.changes 
2014-09-17 17:25:32.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 08:45:58 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.3.5:
+  * support for 'l' (last day of month)
+
+---

Old:

  croniter-0.3.4.zip

New:

  croniter-0.3.5.zip



Other differences:
--
++ python-croniter.spec ++
--- /var/tmp/diff_new_pack.b9DDeO/_old  2014-09-17 17:25:33.0 +0200
+++ /var/tmp/diff_new_pack.b9DDeO/_new  2014-09-17 17:25:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-croniter
-Version:0.3.4
+Version:0.3.5
 Release:0
 Summary:Croniter provides iteration for datetime object with cron like 
format
 License:MIT

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



commit go for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package go for openSUSE:Factory checked in 
at 2014-09-17 17:25:29

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


Package is go

Changes:

--- /work/SRC/openSUSE:Factory/go/go.changes2014-09-09 19:00:51.0 
+0200
+++ /work/SRC/openSUSE:Factory/.go.new/go.changes   2014-09-17 
17:25:40.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep  9 14:56:06 UTC 2014 - i...@marguerite.su
+
+- add new macro godoc_package  go_recommends to easy packaging
+
+---



Other differences:
--

++ macros.go ++
--- /var/tmp/diff_new_pack.uMsam7/_old  2014-09-17 17:25:41.0 +0200
+++ /var/tmp/diff_new_pack.uMsam7/_new  2014-09-17 17:25:41.0 +0200
@@ -27,6 +27,11 @@
 Provides:   %{name}-devel = %{version} \
 Provides:   %{name}-devel-static = %{version}
 
+%go_recommends \
+%if 0%{?suse_version} = 1100 \
+Recommends: %{name}-doc \
+%endif
+
 %go_disable_brp_strip_static_archive \
 %undefine __os_install_post \
 %define __os_install_post %(echo '%{__os_install_post}' | sed -e 
's!/usr/lib/rpm/[^/]*/?brp-strip-static-archive %{__strip}!!g')
@@ -167,3 +172,13 @@
 find . -name *.go -exec install -Dm644 \{\} 
%{buildroot}%{go_contribsrcdir}/\{\} \\; \
 %{nil}
 
+# Template for doc sub-package
+%godoc_package(n:r:) \
+%package %{-n:-n %{-n*}-}doc \
+Summary: API documention for package %{name} \
+Group: Documentation/Other \
+Requires: %{-n:%{-n*}}%{!-n:%{name}} = %{version} \
+%{-r:Requires: %{-r*}} \
+%description %{-n:-n %{-n*}-}doc \
+This package provides API, examples and documentation \
+for package %{name}.
\ No newline at end of file

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



commit semantik for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package semantik for openSUSE:Factory 
checked in at 2014-09-17 17:25:28

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


Package is semantik

Changes:

--- /work/SRC/openSUSE:Factory/semantik/semantik.changes2014-03-09 
20:25:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.semantik.new/semantik.changes   2014-09-17 
17:25:38.0 +0200
@@ -1,0 +2,10 @@
+Mon Sep 15 13:54:44 UTC 2014 - i...@marguerite.su
+
+- update version 0.9.2
+  * New diagram items: matrix, boundary, class
+  * OpenOffice.org template fixes
+  * Fix for null bytes inserted through copy-pasting
+  * Removing an item from the linear view no longer causes an assertion
+  * Build script fix for Python 3
+
+---

Old:

  semantik-0.9.1.tar.bz2

New:

  semantik-0.9.2.tar.bz2



Other differences:
--
++ semantik.spec ++
--- /var/tmp/diff_new_pack.KHhi1v/_old  2014-09-17 17:25:39.0 +0200
+++ /var/tmp/diff_new_pack.KHhi1v/_new  2014-09-17 17:25:39.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   semantik
-Version:0.9.1
+Version:0.9.2
 Release:0
 Summary:A mindmapping-like tool
 License:GPL-3.0 and GPL-2.0
 Group:  Productivity/Office/Other
-Url:http://www.freehackers.org/~tnagy/semantik.html
-Source0:http://semantik.googlecode.com/files/%{name}-%{version}.tar.bz2
+Url:http://code.google.com/p/semantik
+Source0:http://ftp.waf.io/pub/release/%{name}-%{version}.tar.bz2
 Source1:%{name}.1
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++

++ semantik-0.9.1.tar.bz2 - semantik-0.9.2.tar.bz2 ++
 2231 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-DateTime-TimeZone for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-DateTime-TimeZone for 
openSUSE:Factory checked in at 2014-09-17 17:25:41

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


Package is perl-DateTime-TimeZone

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DateTime-TimeZone/perl-DateTime-TimeZone.changes
2014-06-01 19:41:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-DateTime-TimeZone.new/perl-DateTime-TimeZone.changes
   2014-09-17 17:25:57.0 +0200
@@ -1,0 +2,39 @@
+Mon Sep 15 15:33:40 UTC 2014 - co...@suse.com
+
+- updated to 1.74
+ - This release is based on version 2014g of the Olson database. This release
+   includes contemporary changes for Turks  Caicos.
+ 
+ - Fixed a bug when trying to get the local timezone by looking at
+   /etc/sysconfig/clock. Patch by Alexey Molchanov. GitHub PR #2.
+ 
+ 
+ 1.732014-08-06
+ 
+ - This release is based on version 2014f of the Olson database. This release
+   includes contemporary changes for Russia and Australia.
+ 
+ 
+ 1.722014-08-03
+ 
+ - Added support for getting the local time zone on Android. Patch from Brian
+   Fraser. RT #97711.
+ 
+ - The primary repo for this distro is now on GitHub.
+ 
+ 
+ 1.712014-06-21
+ 
+ - This release is based on version 2014e of the Olson database. This release
+   includes contemporary changes for Egypt and Morocco.
+ 
+ 
+ 1.702014-06-01
+ 
+ - Unset $ENV{TZ} in the t/04local.t test to avoid interference from
+   the system. Reported by Mark Gardner. RT #96083.
+ 
+ - This release is based on version 2014d of the IANA database, but there are
+   no data changes from 2014c.
+
+---

Old:

  DateTime-TimeZone-1.69.tar.gz

New:

  DateTime-TimeZone-1.74.tar.gz



Other differences:
--
++ perl-DateTime-TimeZone.spec ++
--- /var/tmp/diff_new_pack.yZmwf5/_old  2014-09-17 17:25:58.0 +0200
+++ /var/tmp/diff_new_pack.yZmwf5/_new  2014-09-17 17:25:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DateTime-TimeZone
-Version:1.69
+Version:1.74
 Release:0
 %define cpan_name DateTime-TimeZone
 Summary:Time zone object base class and factory
@@ -31,6 +31,7 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Load)
 BuildRequires:  perl(Class::Singleton) = 1.03
+BuildRequires:  perl(List::AllUtils)
 BuildRequires:  perl(Params::Validate) = 0.72
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::More) = 0.88
@@ -39,6 +40,7 @@
 BuildRequires:  perl(parent)
 Requires:   perl(Class::Load)
 Requires:   perl(Class::Singleton) = 1.03
+Requires:   perl(List::AllUtils)
 Requires:   perl(Params::Validate) = 0.72
 Requires:   perl(parent)
 %{perl_requires}
@@ -70,6 +72,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes LICENSE README.md
 
 %changelog

++ DateTime-TimeZone-1.69.tar.gz - DateTime-TimeZone-1.74.tar.gz ++
 36343 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-Tiny for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-HTTP-Tiny for openSUSE:Factory 
checked in at 2014-09-17 17:25:38

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


Package is perl-HTTP-Tiny

Changes:

--- /work/SRC/openSUSE:Factory/perl-HTTP-Tiny/perl-HTTP-Tiny.changes
2014-03-09 18:38:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-HTTP-Tiny.new/perl-HTTP-Tiny.changes   
2014-09-17 17:25:53.0 +0200
@@ -1,0 +2,54 @@
+Mon Sep 15 15:15:13 UTC 2014 - co...@suse.com
+
+- updated to 0.049
+ [FIXED]
+ 
+ - 'keep_alive' is now fork-safe and thread-safe
+ 
+ 0.048 2014-08-21 13:19:51-04:00 America/New_York
+ 
+ [FIXED]
+ 
+ - Protected proxy tests from ALL_PROXY in the environment
+ 
+ 0.047 2014-07-29 14:09:05-04:00 America/New_York
+ 
+ [CHANGED]
+ 
+ - Updated Mozilla::CA module recommendation version to 20130114
+ 
+ [FIXED]
+ 
+ - Fixed t/00-report-prereqs.t when CPAN::Meta is not installed
+ 
+ 0.046 2014-07-21 10:32:32-04:00 America/New_York
+ 
+ [FIXED]
+ 
+ - Empty header fields are now allowed; headers with the 'undef' value
+   will be rendered as an empty header.
+ 
+ [DOCUMENTED]
+ 
+ - Updated HTTP/1.1 spec description from RFC 2616 to RFC 7230-7235
+ 
+ 0.045 2014-07-19 23:17:28-04:00 America/New_York (TRIAL RELEASE)
+ 
+ [FIXED]
+ 
+ - Fixed t/002_croakage.t for various operating systems.
+ 
+ 0.044 2014-07-16 23:46:09-04:00 America/New_York
+ 
+ [CHANGED]
+ 
+ - Providing a custom 'Host' header is now a fatal exception.  Previously, 
it
+   was silently ignored, as the RFC mandates that Host be set from the
+   URL, but ignoring it could lead to unexpected, confusing errors.
+ 
+ - optimized URL splitting
+ 
+ - Passing 'undef' for any proxy attribute will prevent HTTP::Tiny from
+   setting the proxy from the environment.
+
+---

Old:

  HTTP-Tiny-0.043.tar.gz

New:

  HTTP-Tiny-0.049.tar.gz



Other differences:
--
++ perl-HTTP-Tiny.spec ++
--- /var/tmp/diff_new_pack.RXnaGv/_old  2014-09-17 17:25:54.0 +0200
+++ /var/tmp/diff_new_pack.RXnaGv/_new  2014-09-17 17:25:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-HTTP-Tiny
-Version:0.043
+Version:0.049
 Release:0
 %define cpan_name HTTP-Tiny
 Summary:A small, simple, correct HTTP/1.1 client
@@ -31,11 +31,10 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(IPC::Cmd)
 BuildRequires:  perl(Test::More) = 0.96
-BuildRequires:  perl(version)
 Recommends: perl(HTTP::CookieJar) = 0.001
 Recommends: perl(IO::Socket::IP) = 0.25
 Recommends: perl(IO::Socket::SSL) = 1.42
-Recommends: perl(Mozilla::CA) = 20120823
+Recommends: perl(Mozilla::CA) = 20130114
 Recommends: perl(Net::SSLeay) = 1.49
 %{perl_requires}
 

++ HTTP-Tiny-0.043.tar.gz - HTTP-Tiny-0.049.tar.gz ++
 2331 lines of diff (skipped)

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



commit tig for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package tig for openSUSE:Factory checked in 
at 2014-09-17 17:25:20

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


Package is tig

Changes:

--- /work/SRC/openSUSE:Factory/tig/tig.changes  2014-06-07 07:12:36.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tig.new/tig.changes 2014-09-17 
17:25:31.0 +0200
@@ -1,0 +2,41 @@
+Fri Aug 29 07:11:29 UTC 2014 - multyre...@gmail.com
+
+- update to 2.0.3
+  * Improvement:
+- Add `:save-display file` prompt command to save the current display.
+- Add `:script file` prompt command for scripting the Tig UI.
+- Add test framework and convert existing tests to use it.
+- Add command-line option for starting in refs view: `tig refs`. (GH #309)
+- Make blame commit ID colors stable across reloads. (GH #303)
+- Increase blame ID and graph rendering color palette to 14 colors.
+- New setting 'split-view-width' controls the width for vertical splits. It
+  takes the width of the right-most view either as a number or a 
percentage.
+- Expose settings holding command line argument lists: `file-args`, 
`rev-args`,
+  and `cmdline-args`. They are mainly intended for testing purposes but 
also
+  allows to change the filtering arguments dynamically. (GH #306)
+- Add `log-options` setting for specifying default log view options.
+  Example: `set log-options = --pretty=fuller`.
+- Use option specific view flags to reload view after `:set` commands.
+  * Bug fixes:
+- Refresh the current view when returning from an external command and
+  `refresh-mode=after-command`. (GH #289)
+- Fix readline completion.
+- Fix '/' to `find-next` when readline support is enabled. (GH #302)
+- Fix readline prompt to correctly handle UTF-8 characters.
+- Add warnings for more obsolete actions and colors.
+- Fix passing of commit IDS via stdin to the main view.
+- Fix commit title overflow drawing for multibyte text. (GH #307)
+- Fix installation directory permissions.
+- Handle binary files matches reported by git-grep.
+- Toggling of args-typed options without any arguments will clear the 
current
+  arguments. Example: `:toggle blame-options`.
+- Detect custom `pretty.format` settings that break the log view and 
fallback
+  to use the `medium` format. (GH #225)
+- Fix invocation of git-diff for the blame view's line tracking. (GH #316)
+- Fix blame completion of directory names. (GH #317)
+- Fix display of conflicts in the main view when 'show-changes' is enabled.
+- Fix off-by-one error when displaying line numbers in the grep view.
+- When showing the commit graph ensure that either topo, date or 
author-date
+  commit order is used. (Debian #757692) (GH #238)
+
+---

Old:

  tig-2.0.2.tar.gz

New:

  tig-2.0.3.tar.gz



Other differences:
--
++ tig.spec ++
--- /var/tmp/diff_new_pack.2qnqEm/_old  2014-09-17 17:25:32.0 +0200
+++ /var/tmp/diff_new_pack.2qnqEm/_new  2014-09-17 17:25:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tig
-Version:2.0.2
+Version:2.0.3
 Release:0
 Summary:An ncurses-based text-mode interface for git
 License:GPL-2.0+

++ tig-2.0.2.tar.gz - tig-2.0.3.tar.gz ++
 27921 lines of diff (skipped)

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



commit python-colorama for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2014-09-17 17:25:22

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


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2014-09-03 08:30:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2014-09-17 17:25:33.0 +0200
@@ -1,0 +2,15 @@
+Mon Sep 15 08:10:11 UTC 2014 - tbecht...@suse.com
+
+- update to 0.3.2:
+  * Thanks to Marc Schlaich (schlamar) for a setup.py fix for Python2.5
+  * Thanks to Jurko for fix on 64-bit Windows CPython2.5 w/o ctypes (issue #56)
+  * Thanks to Remi Rampin for:
+* better github integration, incl rendered README and Travis config.
+* fixed forward slashes in README
+  * Thanks to Florian Bruhin for fix when stdout or stderr are None
+  * Thanks to Simeon Visser for:
+* closing a file handle using 'with'
+* updating classifiers to include Python 3.3 and 3.4
+  * Thanks to Thomas Weininger for fix ValueError on Windows (issue #50)
+
+---

Old:

  colorama-0.3.1.tar.gz

New:

  colorama-0.3.2.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.C0Dl6B/_old  2014-09-17 17:25:34.0 +0200
+++ /var/tmp/diff_new_pack.C0Dl6B/_new  2014-09-17 17:25:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-colorama
-Version:0.3.1
+Version:0.3.2
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
@@ -59,7 +59,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGELOG.rst LICENSE.txt README.txt demos
+%doc CHANGELOG.rst LICENSE.txt README.rst demos
 %{python_sitelib}/*
 
 %changelog

++ colorama-0.3.1.tar.gz - colorama-0.3.2.tar.gz ++
 2636 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-Test-Differences for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Differences for 
openSUSE:Factory checked in at 2014-09-17 17:25:32

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  
2011-12-27 18:15:34.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Differences.new/perl-Test-Differences.changes
 2014-09-17 17:25:43.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 15:15:09 UTC 2014 - co...@suse.com
+
+- updated to 0.62
+   - Document the Text::Diff unicode fix.
+   - Add ability to customise 'Got' and 'Expected' column headers
+
+---

Old:

  Test-Differences-0.61.tar.gz

New:

  Test-Differences-0.62.tar.gz



Other differences:
--
++ perl-Test-Differences.spec ++
--- /var/tmp/diff_new_pack.D9oh2c/_old  2014-09-17 17:25:43.0 +0200
+++ /var/tmp/diff_new_pack.D9oh2c/_new  2014-09-17 17:25:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Differences
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,50 +17,50 @@
 
 
 Name:   perl-Test-Differences
-Version:0.61
+Version:0.62
 Release:0
+%define cpan_name Test-Differences
 Summary:Test strings and data structures and show differences if not ok
 License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
-Source: 
http://search.cpan.org/CPAN/authors/id/O/OV/OVID/Test-Differences-%{version}.tar.gz
 Url:http://search.cpan.org/dist/Test-Differences/
+Source: 
http://www.cpan.org/authors/id/D/DC/DCANTRELL/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Test::Pod)
-BuildRequires:  perl(Test::Pod::Coverage)
-BuildRequires:  perl(Text::Diff)
-Requires:   perl(Text::Diff)
-# MANUAL
-Provides:   perl(Test::Differences) = 0.600
+BuildRequires:  perl(Capture::Tiny) = 0.24
+BuildRequires:  perl(Data::Dumper) = 2.126
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Text::Diff) = 0.35
+Requires:   perl(Capture::Tiny) = 0.24
+Requires:   perl(Data::Dumper) = 2.126
+Requires:   perl(Text::Diff) = 0.35
+%{perl_requires}
 
 %description
-Test strings and data structures and show differences if not ok.
+When the code you're testing returns multiple lines, records or data
+structures and they're just plain wrong, an equivalent to the Unix 'diff'
+utility may be just what's needed. Here's output from an example test
+script that checks two text documents and then two (trivial) data
+structures:
 
 %prep
-%setup -q -n Test-Differences-%{version}
-%__sed -i '/^auto_install/d' Makefile.PL
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-%__perl Makefile.PL PREFIX=%{_prefix}
-%__make %{?jobs:-j%{jobs}}
-
-%install
-%perl_make_install
-%perl_process_packlist
+%{__perl} Build.PL installdirs=vendor
+./Build build flags=%{?_smp_mflags}
 
 %check
-%__make test
+./Build test
+
+%install
+./Build install destdir=%{buildroot} create_packlist=0
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
+%files -f %{name}.files
+%defattr(-,root,root,755)
 %doc Changes README
-%dir %{perl_vendorlib}/Test
-%{perl_vendorlib}/Test/Differences.pm
-%dir %{perl_vendorarch}/auto/Test
-%{perl_vendorarch}/auto/Test/Differences
-%doc %{perl_man3dir}/Test::Differences.%{perl_man3ext}%{ext_man}
 
 %changelog

++ Test-Differences-0.61.tar.gz - Test-Differences-0.62.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Differences-0.61/Build.PL 
new/Test-Differences-0.62/Build.PL
--- old/Test-Differences-0.61/Build.PL  2011-04-16 17:04:14.0 +0200
+++ new/Test-Differences-0.62/Build.PL  2014-06-25 18:32:27.0 +0200
@@ -5,13 +5,14 @@
 my $builder = Module::Build-new(
 module_name   = 'Test::Differences',
 license   = 'perl',
-dist_author   = 'Curtis Ovid Poe o...@cpan.org',
+dist_author   = 'David Cantrell da...@cantrell.org.uk',
 dist_version_from = 'lib/Test/Differences.pm',
 perl  = 5.006,
 requires  = {
-'Test::More'   = 0,
-'Text::Diff'   = 

commit perl-Data-Section-Simple for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Data-Section-Simple for 
openSUSE:Factory checked in at 2014-09-17 17:25:39

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


Package is perl-Data-Section-Simple

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Data-Section-Simple/perl-Data-Section-Simple.changes
2013-07-16 17:01:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Data-Section-Simple.new/perl-Data-Section-Simple.changes
   2014-09-17 17:25:54.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 15:15:07 UTC 2014 - co...@suse.com
+
+- updated to 0.07
+- revert the change in 0.06
+- Fix race condition in a forked environment (hirose31) #4
+
+---

Old:

  Data-Section-Simple-0.05.tar.gz

New:

  Data-Section-Simple-0.07.tar.gz



Other differences:
--
++ perl-Data-Section-Simple.spec ++
--- /var/tmp/diff_new_pack.OczpRL/_old  2014-09-17 17:25:56.0 +0200
+++ /var/tmp/diff_new_pack.OczpRL/_new  2014-09-17 17:25:56.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Data-Section-Simple
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Data-Section-Simple
-Version:0.05
+Version:0.07
 Release:0
 %define cpan_name Data-Section-Simple
 Summary:Read data from __DATA__
@@ -31,9 +31,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Requires)
-#BuildRequires: perl(DataInCode)
-#BuildRequires: perl(Data::Section::Simple)
-#BuildRequires: perl(Foo)
 %{perl_requires}
 
 %description

++ Data-Section-Simple-0.05.tar.gz - Data-Section-Simple-0.07.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Section-Simple-0.05/Changes 
new/Data-Section-Simple-0.07/Changes
--- old/Data-Section-Simple-0.05/Changes2013-06-06 23:13:24.0 
+0200
+++ new/Data-Section-Simple-0.07/Changes2014-04-24 06:19:26.0 
+0200
@@ -1,5 +1,11 @@
 Revision history for Perl extension Data::Section::Simple
 
+0.07  2014-04-23 21:19:23 PDT
+- revert the change in 0.06
+
+0.06  2014-04-12 06:10:47 CST
+- Fix race condition in a forked environment (hirose31) #4
+
 0.05  2013-06-06 14:13:22 PDT
 - use MakeMaker
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Section-Simple-0.05/LICENSE 
new/Data-Section-Simple-0.07/LICENSE
--- old/Data-Section-Simple-0.05/LICENSE2013-06-06 23:13:24.0 
+0200
+++ new/Data-Section-Simple-0.07/LICENSE2014-04-24 06:19:26.0 
+0200
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Section-Simple-0.05/MANIFEST 
new/Data-Section-Simple-0.07/MANIFEST
--- old/Data-Section-Simple-0.05/MANIFEST   2013-06-06 23:13:24.0 
+0200
+++ new/Data-Section-Simple-0.07/MANIFEST   2014-04-24 06:19:26.0 
+0200
@@ -1,3 +1,4 @@
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.015.
 Changes
 LICENSE
 MANIFEST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Section-Simple-0.05/META.json 
new/Data-Section-Simple-0.07/META.json
--- old/Data-Section-Simple-0.05/META.json  2013-06-06 23:13:24.0 
+0200
+++ new/Data-Section-Simple-0.07/META.json  2014-04-24 06:19:26.0 
+0200
@@ -4,7 +4,7 @@
   Tatsuhiko Miyagawa miyag...@bulknews.net
],
dynamic_config : 0,
-   generated_by : Dist::Milla version v1.0.2, Dist::Zilla version 4.300034, 
CPAN::Meta::Converter version 2.131560,
+   generated_by : Dist::Milla version v1.0.4, Dist::Zilla version 5.015, 
CPAN::Meta::Converter version 2.140640,
license : [
   perl_5
],
@@ -58,9 +58,10 @@
  web : https://github.com/miyagawa/Data-Section-Simple;
   }
},
-   version : 0.05,
+   version : 0.07,
x_contributors : [
   

commit perl-boolean for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-boolean for openSUSE:Factory 
checked in at 2014-09-17 17:25:42

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


Package is perl-boolean

Changes:

--- /work/SRC/openSUSE:Factory/perl-boolean/perl-boolean.changes
2014-03-09 18:33:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-boolean.new/perl-boolean.changes   
2014-09-17 17:25:59.0 +0200
@@ -1,0 +2,37 @@
+Mon Sep 15 15:15:09 UTC 2014 - co...@suse.com
+
+- updated to 0.42
+  - Meta 0.0.2
+  - Remove .gitignore
+ 
+ 0.41 Fri Aug 15 15:41:09 PDT 2014
+  - Add t/000-compile-modules.t
+  - CPAN Day 2014 - 21 Release Salute!
+ 
+ 0.40 Fri Aug  8 19:12:51 PDT 2014
+  - Fix swim errors
+ 
+ 0.39 Sat Aug  2 10:17:12 PDT 2014
+  - Fix Copyright years.
+  - Fix Meta and add Contributing
+ 
+ 0.38 Wed Jun 25 21:08:05 PDT 2014
+  - Revert json.t. Failed on cpantesters.
+ 
+ 0.37 Wed Jun 25 16:47:29 PDT 2014
+  - Add JSON to recommends
+ 
+ 0.36 Wed Jun 25 16:46:39 PDT 2014
+  - Fix homepage in metadata
+ 
+ 0.35 Tue Jun 17 10:59:25 PDT 2014
+  - Remove ABSTRACT and use manual $VERSION
+ 
+ 0.34 Sat Jun 14 13:16:30 PDT 2014
+  - Release 0.33 got botched.
+ 
+ 0.33 Sat Jun 14 12:59:00 PDT 2014
+  - Package with Zilla::Dist
+  - Add badges
+
+---

Old:

  boolean-0.32.tar.gz

New:

  boolean-0.42.tar.gz



Other differences:
--
++ perl-boolean.spec ++
--- /var/tmp/diff_new_pack.xzw9Jj/_old  2014-09-17 17:26:00.0 +0200
+++ /var/tmp/diff_new_pack.xzw9Jj/_new  2014-09-17 17:26:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-boolean
-Version:0.32
+Version:0.42
 Release:0
 %define cpan_name boolean
 Summary:Boolean support for Perl
@@ -29,7 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-Recommends: perl(Readonly)
+Recommends: perl(JSON)
 %{perl_requires}
 
 %description
@@ -67,6 +67,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ boolean-0.32.tar.gz - boolean-0.42.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boolean-0.32/CONTRIBUTING 
new/boolean-0.42/CONTRIBUTING
--- old/boolean-0.32/CONTRIBUTING   1970-01-01 01:00:00.0 +0100
+++ new/boolean-0.42/CONTRIBUTING   2014-08-16 19:49:37.0 +0200
@@ -0,0 +1,55 @@
+Contributing
+
+
+The boolean Project needs your help!
+
+Please consider being a contributor. This file contains instructions that will
+help you be an effective contributor to the Project.
+
+GitHub
+--
+
+The code for this Project is hosted at GitHub. The repository is:
+
+  https://github.com/ingydotnet/boolean-pm
+
+You can get the code with this command:
+
+  git clone https://github.com/ingydotnet/boolean-pm
+
+If you've found a bug or a missing feature that you would like the author to
+know about, report it here:
+
+  https://github.com/ingydotnet/boolean-pm/issues
+
+or fix it and submit a pull request here:
+
+  https://github.com/ingydotnet/boolean-pm/pulls
+
+See these links for help on interacting with GitHub:
+
+* https://help.github.com/
+* https://help.github.com/articles/creating-a-pull-request
+
+Zilla::Dist
+---
+
+This Project uses Zilla::Dist to prepare it for publishing to CPAN. Read:
+
+  
https://metacpan.org/pod/distribution/Zilla-Dist/lib/Zilla/Dist/Contributing.pod
+
+for up-to-date instructions on what contributors like yourself need to know to
+use it.
+
+IRC
+---
+
+boolean has an IRC channel where you can find real people to help you:
+
+  irc.freenode.net#pkg
+
+Join the channel. Join the team!
+
+
+Thanks in advance, Ingy döt Net
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boolean-0.32/Changes new/boolean-0.42/Changes
--- old/boolean-0.32/Changes2014-02-09 04:30:46.0 +0100
+++ new/boolean-0.42/Changes2014-08-16 19:49:37.0 +0200
@@ -1,3 +1,37 @@
+0.42 Sat Aug 16 10:49:31 PDT 2014
+ - Meta 0.0.2
+ - Remove .gitignore
+
+0.41 Fri Aug 15 15:41:09 PDT 2014
+ - Add t/000-compile-modules.t
+ - CPAN Day 2014 - 21 Release Salute!
+
+0.40 Fri Aug  8 19:12:51 PDT 2014
+ - Fix swim errors
+
+0.39 Sat Aug  2 10:17:12 PDT 2014
+ - Fix Copyright years.
+ - Fix Meta and add Contributing
+
+0.38 Wed Jun 25 21:08:05 PDT 2014
+ - Revert json.t. Failed on cpantesters.
+
+0.37 Wed Jun 25 16:47:29 PDT 2014
+ - Add JSON to recommends
+
+0.36 Wed Jun 25 16:46:39 PDT 2014

commit perl-Compress-Bzip2 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Compress-Bzip2 for 
openSUSE:Factory checked in at 2014-09-17 17:25:36

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  
2013-10-10 12:03:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Compress-Bzip2.new/perl-Compress-Bzip2.changes 
2014-09-17 17:25:50.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep 15 15:15:15 UTC 2014 - co...@suse.com
+
+- updated to 2.18
+   - [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
+
+---

Old:

  Compress-Bzip2-2.17.tar.gz

New:

  Compress-Bzip2-2.18.tar.gz



Other differences:
--
++ perl-Compress-Bzip2.spec ++
--- /var/tmp/diff_new_pack.DNBbUh/_old  2014-09-17 17:25:51.0 +0200
+++ /var/tmp/diff_new_pack.DNBbUh/_new  2014-09-17 17:25:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Compress-Bzip2
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Compress-Bzip2
-Version:2.17
+Version:2.18
 Release:0
 %define cpan_name Compress-Bzip2
 Summary:Interface to Bzip2 compression library
@@ -28,15 +28,13 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(Compress::Bzip2)
-#BuildRequires: perl(Test::Kwalitee)
 Recommends: perl(Compress::Raw::Bzip2) = 2.060
 Recommends: perl(Compress::Zlib) = 1.19
 Recommends: perl(IO::Compress::Bzip2) = 2.060
+%{perl_requires}
 # MANUAL
 BuildRequires:  libbz2-devel
 Requires:   bzip2
-%{perl_requires}
 
 %description
 The _Compress::Bzip2_ module provides a Perl interface to the _Bzip2_

++ Compress-Bzip2-2.17.tar.gz - Compress-Bzip2-2.18.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Compress-Bzip2-2.17/Changes 
new/Compress-Bzip2-2.18/Changes
--- old/Compress-Bzip2-2.17/Changes 2013-08-28 17:48:58.0 +0200
+++ new/Compress-Bzip2-2.18/Changes 2014-08-07 01:53:14.0 +0200
@@ -154,3 +154,9 @@
 
 2.17 2013-08-28 rurban
- Fixed license in README (thanks to John Peacock)
+
+2.18 2014-08-06 rurban
+   - [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
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Compress-Bzip2-2.17/MANIFEST 
new/Compress-Bzip2-2.18/MANIFEST
--- old/Compress-Bzip2-2.17/MANIFEST2013-08-28 17:51:04.0 +0200
+++ new/Compress-Bzip2-2.18/MANIFEST2014-08-07 01:53:30.0 +0200
@@ -5,6 +5,8 @@
 INSTALL
 ANNOUNCE
 NEWS
+META.json
+META.yml
 Makefile.PL
 config.in
 ppport.h
@@ -107,6 +109,4 @@
 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' old/Compress-Bzip2-2.17/META.json 
new/Compress-Bzip2-2.18/META.json
--- old/Compress-Bzip2-2.17/META.json   2013-08-28 17:51:04.0 +0200
+++ new/Compress-Bzip2-2.18/META.json   2014-08-07 01:53:31.0 +0200
@@ -4,7 +4,7 @@
   Rob Janes ar...@cpan.org
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter 
version 2.131560,
+   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.142060,
license : [
   perl_5
],
@@ -43,7 +43,8 @@
 File::Copy : 0,
 File::Spec : 0,
 Getopt::Std : 0,
-Test::More : 0
+Test::More : 0,
+constant : 1.04
  }
   }
},
@@ -56,5 +57,5 @@
  url : https://github.com/rurban/Compress-Bzip2;
   }
},
-   version : 2.17
+   

commit perl-JSON-RPC for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-JSON-RPC for openSUSE:Factory 
checked in at 2014-09-17 17:25:49

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


Package is perl-JSON-RPC

Changes:

--- /work/SRC/openSUSE:Factory/perl-JSON-RPC/perl-JSON-RPC.changes  
2013-06-21 13:36:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-JSON-RPC.new/perl-JSON-RPC.changes 
2014-09-17 17:26:08.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 15:44:36 UTC 2014 - co...@suse.com
+
+- updated to 1.04
+- Work with notifications, which are procedures without an id
+  (Kirill Bogdanov)
+
+---

Old:

  JSON-RPC-1.03.tar.gz

New:

  JSON-RPC-1.04.tar.gz



Other differences:
--
++ perl-JSON-RPC.spec ++
--- /var/tmp/diff_new_pack.53NBJg/_old  2014-09-17 17:26:09.0 +0200
+++ /var/tmp/diff_new_pack.53NBJg/_new  2014-09-17 17:26:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-JSON-RPC
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-JSON-RPC
-Version:1.03
+Version:1.04
 Release:0
 %define cpan_name JSON-RPC
 Summary:JSON RPC 2.0 Server Implementation
@@ -29,35 +29,20 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CPAN::Meta)
+BuildRequires:  perl(CPAN::Meta::Prereqs)
 BuildRequires:  perl(Class::Accessor::Lite)
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.36
 BuildRequires:  perl(HTTP::Request)
 BuildRequires:  perl(HTTP::Response)
 BuildRequires:  perl(JSON)
 BuildRequires:  perl(LWP::UserAgent)
+BuildRequires:  perl(Module::Build) = 0.38
 BuildRequires:  perl(Plack)
 BuildRequires:  perl(Plack::Request)
 BuildRequires:  perl(Plack::Test)
 BuildRequires:  perl(Router::Simple)
 BuildRequires:  perl(parent)
-#BuildRequires: perl(Apache2::Const)
-#BuildRequires: perl(Apache2::RequestIO)
-#BuildRequires: perl(Apache2::RequestRec)
-#BuildRequires: perl(Apache2::RequestUtil)
-#BuildRequires: perl(APR::Table)
-#BuildRequires: perl(JSON::RPC)
-#BuildRequires: perl(JSON::RPC::Constants)
-#BuildRequires: perl(JSON::RPC::Legacy::Client)
-#BuildRequires: perl(JSON::RPC::Legacy::Procedure)
-#BuildRequires: perl(JSON::RPC::Legacy::ReturnObject)
-#BuildRequires: perl(JSON::RPC::Legacy::Server)
-#BuildRequires: perl(JSON::RPC::Parser)
-#BuildRequires: perl(JSON::RPC::Procedure)
-#BuildRequires: perl(LWP::Simple)
-#BuildRequires: perl(Module::Build)
-#BuildRequires: perl(Module::Install::Base)
-#BuildRequires: perl(Parse::CPAN::Meta)
-#BuildRequires: perl(Try::Tiny)
-#BuildRequires: perl(YAML::Tiny)
 Requires:   perl(Class::Accessor::Lite)
 Requires:   perl(HTTP::Request)
 Requires:   perl(HTTP::Response)
@@ -70,7 +55,7 @@
 %{perl_requires}
 
 %description
-JSON::RPC is a set of modules that implment JSON RPC 2.0 protocol.
+JSON::RPC is a set of modules that implement JSON RPC 2.0 protocol.
 
 If you are using old JSON::RPC code (up to 0.96), DO NOT EXPECT
 YOUR CODE TO WORK WITH THIS VERSION. THIS VERSION IS 
@@ -80,19 +65,18 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+%{__perl} Build.PL installdirs=vendor
+./Build build flags=%{?_smp_mflags}
 
 %check
-%{__make} test
+./Build test
 
 %install
-%perl_make_install
-%perl_process_packlist
+./Build install destdir=%{buildroot} create_packlist=0
 %perl_gen_filelist
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes README
+%doc Changes cpanfile LICENSE Makefile README.md
 
 %changelog

++ JSON-RPC-1.03.tar.gz - JSON-RPC-1.04.tar.gz ++
 4766 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-Pod-Spell for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Pod-Spell for openSUSE:Factory 
checked in at 2014-09-17 17:25:47

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


Package is perl-Pod-Spell

Changes:

--- /work/SRC/openSUSE:Factory/perl-Pod-Spell/perl-Pod-Spell.changes
2013-11-26 19:30:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Pod-Spell.new/perl-Pod-Spell.changes   
2014-09-17 17:26:07.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep 15 15:44:37 UTC 2014 - co...@suse.com
+
+- updated to 1.15
+  - Convert to strict mode of File::ShareDir::ProjectDistDir (KENTNL)
+  - change to use Path::Tiny-lines_utf8
+  - Discontinue use of File::Slurp, use Path::Tiny-lines instead
+GH #15 ( Ether )
+
+---

Old:

  Pod-Spell-1.13.tar.gz

New:

  Pod-Spell-1.15.tar.gz



Other differences:
--
++ perl-Pod-Spell.spec ++
--- /var/tmp/diff_new_pack.f8QSLx/_old  2014-09-17 17:26:08.0 +0200
+++ /var/tmp/diff_new_pack.f8QSLx/_new  2014-09-17 17:26:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Pod-Spell
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Pod-Spell
-Version:1.13
+Version:1.15
 Release:0
 %define cpan_name Pod-Spell
 Summary:a formatter for spellchecking Pod
@@ -31,19 +31,13 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Tiny)
 BuildRequires:  perl(File::ShareDir::Install) = 0.03
-BuildRequires:  perl(File::ShareDir::ProjectDistDir)
-BuildRequires:  perl(File::Slurp)
+BuildRequires:  perl(File::ShareDir::ProjectDistDir) = 1.000
 BuildRequires:  perl(Lingua::EN::Inflect)
 BuildRequires:  perl(Pod::Escapes)
 BuildRequires:  perl(Test::Deep)
-BuildRequires:  perl(Test::More) = 0.88
-#BuildRequires: perl(Pod::Spell)
-#BuildRequires: perl(Pod::Wordlist)
-#BuildRequires: perl(Test::EOL)
-#BuildRequires: perl(Test::Spelling) = 0.12
+BuildRequires:  perl(version)
 Requires:   perl(Class::Tiny)
-Requires:   perl(File::ShareDir::ProjectDistDir)
-Requires:   perl(File::Slurp)
+Requires:   perl(File::ShareDir::ProjectDistDir) = 1.000
 Requires:   perl(Lingua::EN::Inflect)
 Requires:   perl(Pod::Escapes)
 %{perl_requires}
@@ -86,6 +80,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE perlcritic.rc README share
+%doc Changes CONTRIBUTING LICENSE perlcritic.rc README
 
 %changelog

++ Pod-Spell-1.13.tar.gz - Pod-Spell-1.15.tar.gz ++
 3349 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-File-ShareDir-Install for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-File-ShareDir-Install for 
openSUSE:Factory checked in at 2014-09-17 17:25:37

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


Package is perl-File-ShareDir-Install

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-File-ShareDir-Install/perl-File-ShareDir-Install.changes
2014-02-28 19:00:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-File-ShareDir-Install.new/perl-File-ShareDir-Install.changes
   2014-09-17 17:25:52.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 15:15:10 UTC 2014 - co...@suse.com
+
+- updated to 0.09
+- Get rid of DB::single 
+Thank you djer...@cpan.org
+- Don't do POD tests
+
+---

Old:

  File-ShareDir-Install-0.08.tar.gz

New:

  File-ShareDir-Install-0.09.tar.gz



Other differences:
--
++ perl-File-ShareDir-Install.spec ++
--- /var/tmp/diff_new_pack.C8lEvD/_old  2014-09-17 17:25:53.0 +0200
+++ /var/tmp/diff_new_pack.C8lEvD/_new  2014-09-17 17:25:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-File-ShareDir-Install
-Version:0.08
+Version:0.09
 Release:0
 %define cpan_name File-ShareDir-Install
 Summary:Install shared files

++ File-ShareDir-Install-0.08.tar.gz - File-ShareDir-Install-0.09.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-ShareDir-Install-0.08/Changes 
new/File-ShareDir-Install-0.09/Changes
--- old/File-ShareDir-Install-0.08/Changes  2014-01-29 16:33:45.0 
+0100
+++ new/File-ShareDir-Install-0.09/Changes  2014-07-07 20:20:18.0 
+0200
@@ -1,6 +1,11 @@
 Revision history for Perl extension File::ShareDir::Install.
 
-0.08  Jan 29 2015
+0.09  Jul 7 2014
+- Get rid of DB::single 
+Thank you djer...@cpan.org
+- Don't do POD tests
+
+0.08  Jan 29 2014
 - Tests may now be run in parallel
 Thank you ken...@cpan.org
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-ShareDir-Install-0.08/META.json 
new/File-ShareDir-Install-0.09/META.json
--- old/File-ShareDir-Install-0.08/META.json2014-01-29 16:42:24.0 
+0100
+++ new/File-ShareDir-Install-0.09/META.json2014-07-07 20:21:17.0 
+0200
@@ -39,5 +39,5 @@
   }
},
release_status : stable,
-   version : 0.08
+   version : 0.09
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-ShareDir-Install-0.08/META.yml 
new/File-ShareDir-Install-0.09/META.yml
--- old/File-ShareDir-Install-0.08/META.yml 2014-01-29 16:42:24.0 
+0100
+++ new/File-ShareDir-Install-0.09/META.yml 2014-07-07 20:21:17.0 
+0200
@@ -21,4 +21,4 @@
   ExtUtils::MakeMaker: 6.11
   File::Spec: 0
   IO::Dir: 0
-version: 0.08
+version: 0.09
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/File-ShareDir-Install-0.08/lib/File/ShareDir/Install.pm 
new/File-ShareDir-Install-0.09/lib/File/ShareDir/Install.pm
--- old/File-ShareDir-Install-0.08/lib/File/ShareDir/Install.pm 2014-01-29 
16:38:01.0 +0100
+++ new/File-ShareDir-Install-0.09/lib/File/ShareDir/Install.pm 2014-07-07 
20:19:35.0 +0200
@@ -9,7 +9,7 @@
 use File::Spec;
 use IO::Dir;
 
-our $VERSION = '0.08';
+our $VERSION = '0.09';
 
 our @DIRS;
 our %ALREADY;
@@ -134,7 +134,6 @@
 
 my $dir = $def-{dir};
 
-$DB::single = 1;
 my( $idir );
 
 if( $def-{type} eq 'delete-dist' ) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-ShareDir-Install-0.08/t/01_pod.t 
new/File-ShareDir-Install-0.09/t/01_pod.t
--- old/File-ShareDir-Install-0.08/t/01_pod.t   2010-10-19 21:03:02.0 
+0200
+++ new/File-ShareDir-Install-0.09/t/01_pod.t   2014-07-07 20:16:40.0 
+0200
@@ -4,6 +4,8 @@
 use warnings;
 
 use Test::More;
+plan skip_all = 'these tests are for authors only' unless
+$ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
 eval use Test::Pod 1.00;
 plan skip_all = Test::Pod 1.00 required for testing POD if $@;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/File-ShareDir-Install-0.08/t/02_pod_coverage.t 
new/File-ShareDir-Install-0.09/t/02_pod_coverage.t
--- old/File-ShareDir-Install-0.08/t/02_pod_coverage.t  2014-01-17 
19:50:16.0 +0100
+++ new/File-ShareDir-Install-0.09/t/02_pod_coverage.t  2014-07-07 
20:16:49.0 +0200
@@ -4,6 +4,8 @@
 use warnings;
 
 use Test::More;
+plan skip_all = 'these tests 

commit perl-Log-Dispatchouli for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Log-Dispatchouli for 
openSUSE:Factory checked in at 2014-09-17 17:25:45

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


Package is perl-Log-Dispatchouli

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Log-Dispatchouli/perl-Log-Dispatchouli.changes  
2014-02-28 19:15:22.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Log-Dispatchouli.new/perl-Log-Dispatchouli.changes
 2014-09-17 17:26:03.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 15:15:10 UTC 2014 - co...@suse.com
+
+- updated to 2.010
+ add the file_format option (thanks, Randy Stauner)
+
+---

Old:

  Log-Dispatchouli-2.009.tar.gz

New:

  Log-Dispatchouli-2.010.tar.gz



Other differences:
--
++ perl-Log-Dispatchouli.spec ++
--- /var/tmp/diff_new_pack.5dFcUk/_old  2014-09-17 17:26:05.0 +0200
+++ /var/tmp/diff_new_pack.5dFcUk/_new  2014-09-17 17:26:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Log-Dispatchouli
-Version:2.009
+Version:2.010
 Release:0
 %define cpan_name Log-Dispatchouli
 Summary:a simple wrapper around Log::Dispatch

++ Log-Dispatchouli-2.009.tar.gz - Log-Dispatchouli-2.010.tar.gz ++
 2321 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-GlobalDestruction for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-GlobalDestruction for 
openSUSE:Factory checked in at 2014-09-17 17:25:30

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
2013-12-06 14:42:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-GlobalDestruction.new/perl-Devel-GlobalDestruction.changes
   2014-09-17 17:25:41.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 15:15:06 UTC 2014 - co...@suse.com
+
+- updated to 0.13
+  * include README
+  * include minimum perl version 5.6 in metadata
+
+---

Old:

  Devel-GlobalDestruction-0.12.tar.gz

New:

  Devel-GlobalDestruction-0.13.tar.gz



Other differences:
--
++ perl-Devel-GlobalDestruction.spec ++
--- /var/tmp/diff_new_pack.fblcSN/_old  2014-09-17 17:25:42.0 +0200
+++ /var/tmp/diff_new_pack.fblcSN/_new  2014-09-17 17:25:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-GlobalDestruction
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-GlobalDestruction
-Version:0.12
+Version:0.13
 Release:0
 %define cpan_name Devel-GlobalDestruction
 Summary:Provides function returning the equivalent of
@@ -31,8 +31,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(ExtUtils::CBuilder) = 0.27
 BuildRequires:  perl(Sub::Exporter::Progressive) = 0.001011
-#BuildRequires: perl(Devel::GlobalDestruction)
-#BuildRequires: perl(Devel::GlobalDestruction::XS)
 Requires:   perl(Sub::Exporter::Progressive) = 0.001011
 %{perl_requires}
 
@@ -64,6 +62,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes
+%doc Changes README
 
 %changelog

++ Devel-GlobalDestruction-0.12.tar.gz - 
Devel-GlobalDestruction-0.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-GlobalDestruction-0.12/Changes 
new/Devel-GlobalDestruction-0.13/Changes
--- old/Devel-GlobalDestruction-0.12/Changes2013-11-01 17:05:21.0 
+0100
+++ new/Devel-GlobalDestruction-0.13/Changes2014-08-16 02:33:48.0 
+0200
@@ -1,3 +1,8 @@
+
+0.13 - 2014-08-16
+  * include README
+  * include minimum perl version 5.6 in metadata
+
 0.12  Fri, 01 Nov 2013
   * Fix detection when loaded during global destruction by checking B::main_cv
 instead of B::main_start
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-GlobalDestruction-0.12/MANIFEST 
new/Devel-GlobalDestruction-0.13/MANIFEST
--- old/Devel-GlobalDestruction-0.12/MANIFEST   2013-11-01 17:06:49.0 
+0100
+++ new/Devel-GlobalDestruction-0.13/MANIFEST   2014-08-16 02:34:00.0 
+0200
@@ -1,8 +1,8 @@
 Changes
 lib/Devel/GlobalDestruction.pm
+maint/Makefile.PL.include
 Makefile.PL
 MANIFEST   This list of files
-MANIFEST.SKIP
 t/01_basic.t
 t/02_thread.t
 t/03_minusc.t
@@ -12,3 +12,4 @@
 t/10_pure-perl.t
 META.yml Module YAML meta-data (added by 
MakeMaker)
 META.jsonModule JSON meta-data (added by 
MakeMaker)
+README   README file (added by Distar)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-GlobalDestruction-0.12/MANIFEST.SKIP 
new/Devel-GlobalDestruction-0.13/MANIFEST.SKIP
--- old/Devel-GlobalDestruction-0.12/MANIFEST.SKIP  2013-09-20 
13:43:56.0 +0200
+++ new/Devel-GlobalDestruction-0.13/MANIFEST.SKIP  1970-01-01 
01:00:00.0 +0100
@@ -1,48 +0,0 @@
-# Avoid version control files.
-\bRCS\b
-\bCVS\b
-\bSCCS\b
-,v$
-\B\.svn\b
-\B\.git\b
-\B\.gitignore\b
-\b_darcs\b
-
-# no mymeta
-\bMYMETA\.
-
-# Avoid Makemaker generated and utility files.
-\bMANIFEST\.bak
-\bMakefile$
-\bblib/
-\bMakeMaker-\d
-\bpm_to_blib\.ts$
-\bpm_to_blib$
-\bblibdirs\.ts$ # 6.18 through 6.25 generated this
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\b_build/
-
-# Avoid temp and backup files.
-~$
-\.old$
-\#$
-\b\.#
-\.bak$
-
-# Avoid Devel::Cover files.
-\bcover_db\b
-
-### DEFAULT MANIFEST.SKIP ENDS HERE 
-
-\.DS_Store$
-\.sw.$

commit python-ecdsa for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-ecdsa for openSUSE:Factory 
checked in at 2014-09-17 17:25:18

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


Package is python-ecdsa

Changes:

--- /work/SRC/openSUSE:Factory/python-ecdsa/python-ecdsa.changes
2014-04-26 10:10:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-ecdsa.new/python-ecdsa.changes   
2014-09-17 17:25:28.0 +0200
@@ -1,0 +2,17 @@
+Mon Sep 15 09:09:24 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.11:
+  * update NEWS for 0.11 release
+  * VerifyingKey.from_string(): add validate_point= argument
+  * Merge pull request #17 from trezor/master
+  * README: stop claiming py2.5 compatibility.
+  * Merge pull request #18 from alex/patch-2
+  * Merge pull request #16 from alex/patch-1
+  * Remove Python 2.5 from travis.
+  * Added trove classifiers showing versions supported
+  * canonical versions of sigencode methods these enforce low S values,
+by negating the value (modulo the order) if above order/2
+  * Remove Python 2.5 from travis.
+  * Run tests under PyPy
+
+---

Old:

  ecdsa-0.10.tar.gz

New:

  ecdsa-0.11.tar.gz



Other differences:
--
++ python-ecdsa.spec ++
--- /var/tmp/diff_new_pack.RohC4p/_old  2014-09-17 17:25:29.0 +0200
+++ /var/tmp/diff_new_pack.RohC4p/_new  2014-09-17 17:25:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-ecdsa
-Version:0.10
+Version:0.11
 Release:0
 Summary:ECDSA cryptographic signature library (pure python)
 License:MIT

++ ecdsa-0.10.tar.gz - ecdsa-0.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.10/NEWS new/ecdsa-0.11/NEWS
--- old/ecdsa-0.10/NEWS 2013-10-23 20:43:50.0 +0200
+++ new/ecdsa-0.11/NEWS 2014-03-10 23:49:39.0 +0100
@@ -1,3 +1,12 @@
+* Release 0.11 (10 Mar 2014)
+
+Add signature-encoding functions sigencode_{strings,string,der}_canonize
+which canonicalize the S value (using the smaller of the two possible
+values). Add validate_point= argument to VerifyingKey.from_string()
+constructor (defaults to True) which can be used to disable time-consuming
+point validation when importing a pre-validated verifying key. Drop python2.5
+support (untested but not explicitly broken yet), update trove classifiers.
+
 * Release 0.10 (23 Oct 2013)
 
 Make the secp256k1 available in __init__.py too (thanks to Scott Bannert).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.10/PKG-INFO new/ecdsa-0.11/PKG-INFO
--- old/ecdsa-0.10/PKG-INFO 2013-10-23 20:47:11.0 +0200
+++ new/ecdsa-0.11/PKG-INFO 2014-03-10 23:54:24.0 +0100
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: ecdsa
-Version: 0.10
+Version: 0.11
 Summary: ECDSA cryptographic signature library (pure python)
 Home-page: http://github.com/warner/python-ecdsa
 Author: Brian Warner
@@ -8,3 +8,10 @@
 License: MIT
 Description: UNKNOWN
 Platform: UNKNOWN
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.10/README.md new/ecdsa-0.11/README.md
--- old/ecdsa-0.10/README.md2013-10-23 20:43:50.0 +0200
+++ new/ecdsa-0.11/README.md2014-02-17 21:48:01.0 +0100
@@ -20,7 +20,7 @@
 
 ## Dependencies
 
-This library uses only Python. It requires python2.5 or later versions of the
+This library uses only Python. It requires python2.6 or later versions of the
 python2.x series. It is also compatible with python3.2 and 3.3.
 
 To run the OpenSSL compatibility tests, the 'openssl' tool must be on your
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.10/ecdsa/_version.py 
new/ecdsa-0.11/ecdsa/_version.py
--- old/ecdsa-0.10/ecdsa/_version.py2013-10-23 20:47:11.0 +0200
+++ new/ecdsa-0.11/ecdsa/_version.py2014-03-10 23:54:24.0 +0100
@@ -2,4 +2,4 @@
 # This file is originally generated from Git information by running 'setup.py
 # version'. Distribution tarballs contain a pre-generated copy of this file.
 
-__version__ = '0.10'
+__version__ = '0.11'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

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

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-OOP for 
openSUSE:Factory checked in at 2014-09-17 17:25:34

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


Package is perl-Task-Kensho-OOP

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-OOP/perl-Task-Kensho-OOP.changes
2014-02-24 15:53:07.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-OOP.new/perl-Task-Kensho-OOP.changes
   2014-09-17 17:25:46.0 +0200
@@ -1,0 +2,23 @@
+Mon Sep 15 15:15:08 UTC 2014 - 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-OOP-0.35.tar.gz

New:

  Task-Kensho-OOP-0.38.tar.gz



Other differences:
--
++ perl-Task-Kensho-OOP.spec ++
--- /var/tmp/diff_new_pack.d46Ds3/_old  2014-09-17 17:25:49.0 +0200
+++ /var/tmp/diff_new_pack.d46Ds3/_new  2014-09-17 17:25:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Task-Kensho-OOP
-Version:0.35
+Version:0.38
 Release:0
 %define cpan_name Task-Kensho-OOP
 Summary:A Glimpse at an Enlightened Perl: Object Oriented Programming
@@ -29,10 +29,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Build::Tiny) = 0.034
+BuildRequires:  perl(Module::Build::Tiny) = 0.038
 BuildRequires:  perl(Task::Moose)
-BuildRequires:  perl(version)
-Recommends: perl(Task::Moose)
+Requires:   perl(Task::Moose)
 %{perl_requires}
 
 %description
@@ -43,10 +42,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
@@ -85,6 +83,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README README.md
+%doc Changes LICENSE README weaver.ini
 
 %changelog

++ Task-Kensho-OOP-0.35.tar.gz - Task-Kensho-OOP-0.38.tar.gz ++
 2523 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-Stream-Buffered for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Stream-Buffered for 
openSUSE:Factory checked in at 2014-09-17 17:25:46

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


Package is perl-Stream-Buffered

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Stream-Buffered/perl-Stream-Buffered.changes
2013-07-09 20:59:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Stream-Buffered.new/perl-Stream-Buffered.changes
   2014-09-17 17:26:05.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 15:44:34 UTC 2014 - co...@suse.com
+
+- updated to 0.03
+ - bump IO::File dep, since it fails with earlier versions (plack/#460)
+
+---

Old:

  Stream-Buffered-0.02.tar.gz

New:

  Stream-Buffered-0.03.tar.gz



Other differences:
--
++ perl-Stream-Buffered.spec ++
--- /var/tmp/diff_new_pack.N8ey3V/_old  2014-09-17 17:26:07.0 +0200
+++ /var/tmp/diff_new_pack.N8ey3V/_new  2014-09-17 17:26:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Stream-Buffered
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,10 +17,10 @@
 
 
 Name:   perl-Stream-Buffered
-Version:0.02
+Version:0.03
 Release:0
 %define cpan_name Stream-Buffered
-Summary:Temporary buffer to save bytes
+Summary:temporary buffer to save bytes
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Stream-Buffered/
@@ -29,6 +29,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(IO::File) = 1.14
+Requires:   perl(IO::File) = 1.14
 %{perl_requires}
 
 %description
@@ -54,6 +56,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes README
+%doc Changes cpanfile LICENSE README
 
 %changelog

++ Stream-Buffered-0.02.tar.gz - Stream-Buffered-0.03.tar.gz ++
 3061 lines of diff (skipped)

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



commit perl-Perl-Tidy for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Perl-Tidy for openSUSE:Factory 
checked in at 2014-09-17 17:25:51

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


Package is perl-Perl-Tidy

Changes:

--- /work/SRC/openSUSE:Factory/perl-Perl-Tidy/perl-Perl-Tidy.changes
2013-10-06 14:55:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Perl-Tidy.new/perl-Perl-Tidy.changes   
2014-09-17 17:26:09.0 +0200
@@ -1,0 +2,39 @@
+Mon Sep 15 15:44:35 UTC 2014 - co...@suse.com
+
+- updated to 20140711
+   - Fixed RT #94902: abbreviation parsing in .perltidyrc files was not
+ working for multi-line abbreviations.  Thanks to Eric Fung for 
+ supplying a patch. 
+   
+   - Fixed RT #95708, misparsing of a hash when the first key was a perl
+ keyword, causing a semicolon to be incorrectly added.
+ 
+   - Fixed RT #94338 for-loop in a parenthesized block-map.  A code block 
within
+ parentheses of a map, sort, or grep function was being mistokenized.  
In 
+ rare cases this could produce in an incorrect error message.  The fix 
will
+ produce some minor formatting changes.  Thanks to Daniel Trizen 
+ discovering and documenting this.
+ 
+   - Fixed RT #94354, excess indentation for stacked tokens.  Thanks to 
+ Colin Williams for supplying a patch.
+ 
+   - Added support for experimental postfix dereferencing notation 
introduced in
+ perl 5.20. RT #96021.
+ 
+   - Updated documentation to clarify the behavior of the -io flag
+ in response to RT #95709.  You can add -noll or -l=0 to prevent 
+ long comments from being outdented when -io is used.
+ 
+   - Added a check to prevent a problem reported in RT #81866, where large
+ scripts which had been compressed to a single line could not be 
formatted
+ because of a check for VERSION for MakeMaker. The workaround was to 
+ use -nvpl, but this shouldn't be necessary now.
+ 
+   - Fixed RT #96101; Closing brace of anonymous sub in a list was being
+ indented.  For example, the closing brace of the anonymous sub below 
+ will now be lined up with the word 'callback'.  This problem 
+ occured if there was no comma after the closing brace of the 
anonymous sub.  
+ This update may cause minor changes to formatting of code with lists 
+ of anonymous subs, especially TK code.
+
+---

Old:

  Perl-Tidy-20130922.tar.gz

New:

  Perl-Tidy-20140711.tar.gz



Other differences:
--
++ perl-Perl-Tidy.spec ++
--- /var/tmp/diff_new_pack.UYH3wu/_old  2014-09-17 17:26:11.0 +0200
+++ /var/tmp/diff_new_pack.UYH3wu/_new  2014-09-17 17:26:11.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Perl-Tidy
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Perl-Tidy
-Version:20130922
+Version:20140711
 Release:0
 %define cpan_name Perl-Tidy
 Summary:Parses and beautifies perl source
@@ -29,8 +29,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(Perl::Tidy)
-#BuildRequires: perl(Text::Autoformat)
 %{perl_requires}
 
 %description
@@ -51,7 +49,6 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ Perl-Tidy-20130922.tar.gz - Perl-Tidy-20140711.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Perl-Tidy-20130922/BUGS new/Perl-Tidy-20140711/BUGS
--- old/Perl-Tidy-20130922/BUGS 2012-07-01 17:58:18.0 +0200
+++ new/Perl-Tidy-20140711/BUGS 2014-03-28 02:03:28.0 +0100
@@ -30,6 +30,9 @@
 correctly.
 
   Perltidy does not handle UTF-8 encoded files
+This has long been requested but unfortunately I don't have time, so
+it won't happen unless someone wants to work on it.
+
   Two iterations are sometimes needed
 Usually the code produced by perltidy on the first pass does not change
 if it is run again, but sometimes a second pass will produce some small
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Perl-Tidy-20130922/CHANGES 
new/Perl-Tidy-20140711/CHANGES

commit perl-String-Truncate for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-String-Truncate for 
openSUSE:Factory checked in at 2014-09-17 17:25:44

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


Package is perl-String-Truncate

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-String-Truncate/perl-String-Truncate.changes
2013-12-03 11:03:58.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-String-Truncate.new/perl-String-Truncate.changes
   2014-09-17 17:26:01.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 15:15:08 UTC 2014 - co...@suse.com
+
+- updated to 1.100602
+  typo fixes (thanks, David Steinbrunner)
+
+---

Old:

  String-Truncate-1.100601.tar.gz

New:

  String-Truncate-1.100602.tar.gz



Other differences:
--
++ perl-String-Truncate.spec ++
--- /var/tmp/diff_new_pack.TMecL0/_old  2014-09-17 17:26:02.0 +0200
+++ /var/tmp/diff_new_pack.TMecL0/_new  2014-09-17 17:26:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-String-Truncate
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-String-Truncate
-Version:1.100601
+Version:1.100602
 Release:0
 %define cpan_name String-Truncate
 Summary:a module for when strings are too long to be displayed in...

++ String-Truncate-1.100601.tar.gz - String-Truncate-1.100602.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-Truncate-1.100601/Changes 
new/String-Truncate-1.100602/Changes
--- old/String-Truncate-1.100601/Changes2013-10-16 04:38:57.0 
+0200
+++ new/String-Truncate-1.100602/Changes2014-03-15 17:21:45.0 
+0100
@@ -1,5 +1,8 @@
 Revision history for String-Truncate
 
+1.100602  2014-03-15 17:21:42+01:00 Europe/Paris
+  typo fixes (thanks, David Steinbrunner)
+
 1.100601  2013-10-15 22:38:52 America/New_York
   update bugtracker and repo metadata
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-Truncate-1.100601/LICENSE 
new/String-Truncate-1.100602/LICENSE
--- old/String-Truncate-1.100601/LICENSE2013-10-16 04:38:57.0 
+0200
+++ new/String-Truncate-1.100602/LICENSE2014-03-15 17:21:45.0 
+0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2013 by Ricardo Signes.
+This software is copyright (c) 2014 by Ricardo Signes.
 
 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) 2013 by Ricardo Signes.
+This software is Copyright (c) 2014 by Ricardo Signes.
 
 This is free software, licensed under:
 
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2013 by Ricardo Signes.
+This software is Copyright (c) 2014 by Ricardo Signes.
 
 This is free software, licensed under:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-Truncate-1.100601/MANIFEST 
new/String-Truncate-1.100602/MANIFEST
--- old/String-Truncate-1.100601/MANIFEST   2013-10-16 04:38:57.0 
+0200
+++ new/String-Truncate-1.100602/MANIFEST   2014-03-15 17:21:45.0 
+0100
@@ -1,3 +1,4 @@
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.014.
 Changes
 LICENSE
 MANIFEST
@@ -7,7 +8,6 @@
 README
 dist.ini
 lib/String/Truncate.pm
-t/00-compile.t
 t/000-report-versions-tiny.t
 t/basic.t
 t/ends.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-Truncate-1.100601/META.json 
new/String-Truncate-1.100602/META.json
--- old/String-Truncate-1.100601/META.json  2013-10-16 04:38:57.0 
+0200
+++ new/String-Truncate-1.100602/META.json  2014-03-15 17:21:45.0 
+0100
@@ -4,7 +4,7 @@
   Ricardo Signes r...@cpan.org
],
 

commit perl-Net-IDN-Encode for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-IDN-Encode for 
openSUSE:Factory checked in at 2014-09-17 17:25:57

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


Package is perl-Net-IDN-Encode

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-IDN-Encode/perl-Net-IDN-Encode.changes  
2014-07-24 01:04:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-IDN-Encode.new/perl-Net-IDN-Encode.changes 
2014-09-17 17:26:18.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep 15 15:44:52 UTC 2014 - co...@suse.com
+
+- updated to 2.201
+ - correct handling of uppercase a-labels in
+   domain_to_{ascii,unicode}
+ - FIXES: #98354: Capitalized ACE prefix does not work (reported
+   by victor@*.ru)
+
+---

Old:

  Net-IDN-Encode-2.200.tar.gz

New:

  Net-IDN-Encode-2.201.tar.gz



Other differences:
--
++ perl-Net-IDN-Encode.spec ++
--- /var/tmp/diff_new_pack.MLJqcs/_old  2014-09-17 17:26:19.0 +0200
+++ /var/tmp/diff_new_pack.MLJqcs/_new  2014-09-17 17:26:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Net-IDN-Encode
-Version:2.200
+Version:2.201
 Release:0
 %define cpan_name Net-IDN-Encode
 Summary:Internationalizing Domain Names in Applications (IDNA)
@@ -25,7 +25,7 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Net-IDN-Encode/
 Source: 
http://www.cpan.org/authors/id/C/CF/CFAERBER/%{cpan_name}-%{version}.tar.gz
-Patch:  encodeoffbyone.diff
+Patch0: encodeoffbyone.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
@@ -48,7 +48,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-%patch
+%patch0
 find . -type f -print0 | xargs -0 chmod 644
 
 %build

++ Net-IDN-Encode-2.200.tar.gz - Net-IDN-Encode-2.201.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-IDN-Encode-2.200/Build.PL 
new/Net-IDN-Encode-2.201/Build.PL
--- old/Net-IDN-Encode-2.200/Build.PL   2014-06-21 13:28:45.0 +0200
+++ new/Net-IDN-Encode-2.201/Build.PL   2014-08-30 17:45:43.0 +0200
@@ -28,7 +28,7 @@
 
'PL_Files' = {
'lib/Unicode/UTS46/_Mapping.PL'  = [
-'lib/Unicode/UTS46/_Mapping.pm',
+'lib/Net/IDN/UTS46/_Mapping.pm',
],
'lib/Unicode/UTS46/GenTests.PL'  = [   
't/uts46_to_ascii.t',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-IDN-Encode-2.200/Changes 
new/Net-IDN-Encode-2.201/Changes
--- old/Net-IDN-Encode-2.200/Changes2014-06-21 13:28:45.0 +0200
+++ new/Net-IDN-Encode-2.201/Changes2014-08-30 17:45:43.0 +0200
@@ -1,5 +1,11 @@
 Revision history for Perl extension Net::IDN::Encode
 
+2.201 (2014-08-30)
+   - correct handling of uppercase a-labels in
+ domain_to_{ascii,unicode}
+   - FIXES: #98354: Capitalized ACE prefix does not work (reported
+ by victor@*.ru)
+
 2.200 (2014-06-21)
- Net::IDN::UTS46: update to Unicode® 7.0.0 and UTS #46 r13
- typo and metadata fixes from dstreinbrunner
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-IDN-Encode-2.200/LICENSE 
new/Net-IDN-Encode-2.201/LICENSE
--- old/Net-IDN-Encode-2.200/LICENSE2014-06-21 13:28:45.0 +0200
+++ new/Net-IDN-Encode-2.201/LICENSE2014-08-30 17:45:43.0 +0200
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-IDN-Encode-2.200/META.json 
new/Net-IDN-Encode-2.201/META.json
--- old/Net-IDN-Encode-2.200/META.json  2014-06-21 13:28:45.0 +0200
+++ new/Net-IDN-Encode-2.201/META.json  2014-08-30 17:45:43.0 +0200
@@ -4,7 +4,7 @@
   Claus Färber cfaer...@cpan.org
],
dynamic_config : 1,
-   generated_by : Module::Build version 0.4203,
+   generated_by : Module::Build version 0.4208,
license : [
   perl_5
],
@@ -45,5 +45,5 @@
  http://dev.perl.org/licenses/;
   ]
},
-   version : 2.200
+   version : 2.201
 }
diff -urN '--exclude=CVS' 

commit perl-Config-MVP for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Config-MVP for openSUSE:Factory 
checked in at 2014-09-17 17:25:51

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


Package is perl-Config-MVP

Changes:

--- /work/SRC/openSUSE:Factory/perl-Config-MVP/perl-Config-MVP.changes  
2014-02-28 19:00:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Config-MVP.new/perl-Config-MVP.changes 
2014-09-17 17:26:12.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 15:44:37 UTC 2014 - co...@suse.com
+
+- updated to 2.28
+- fix a busted link
+- be more consistent in exception-throwing on missing packages
+- fix a dumb test that failed in a git checkout
+
+---

Old:

  Config-MVP-2.27.tar.gz

New:

  Config-MVP-2.28.tar.gz



Other differences:
--
++ perl-Config-MVP.spec ++
--- /var/tmp/diff_new_pack.gVMiA9/_old  2014-09-17 17:26:13.0 +0200
+++ /var/tmp/diff_new_pack.gVMiA9/_new  2014-09-17 17:26:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Config-MVP
-Version:2.27
+Version:2.28
 Release:0
 %define cpan_name Config-MVP
 Summary:multivalue-property package-oriented configuration
@@ -31,7 +31,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Load) = 0.17
 BuildRequires:  perl(Module::Pluggable::Object)
-BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) = 0.91
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(Moose::Util::TypeConstraints)
@@ -47,7 +46,6 @@
 BuildRequires:  perl(Try::Tiny)
 Requires:   perl(Class::Load) = 0.17
 Requires:   perl(Module::Pluggable::Object)
-Requires:   perl(Module::Runtime)
 Requires:   perl(Moose) = 0.91
 Requires:   perl(Moose::Role)
 Requires:   perl(Moose::Util::TypeConstraints)

++ Config-MVP-2.27.tar.gz - Config-MVP-2.28.tar.gz ++
 2819 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-Task-Kensho-CLI for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-CLI for 
openSUSE:Factory checked in at 2014-09-17 17:26:02

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


Package is perl-Task-Kensho-CLI

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-CLI/perl-Task-Kensho-CLI.changes
2012-01-09 11:16:35.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-CLI.new/perl-Task-Kensho-CLI.changes
   2014-09-17 17:26:25.0 +0200
@@ -1,0 +2,19 @@
+Mon Sep 15 15:44:32 UTC 2014 - 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
+   - 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)
+   - fix pod markup error in main Task::Kensho distribution
+   - module list revisions to CLI, Dates, Toolchain, WebCrawling,
+ WebDev
+
+---

Old:

  Task-Kensho-CLI-0.29.tar.gz

New:

  Task-Kensho-CLI-0.38.tar.gz



Other differences:
--
++ perl-Task-Kensho-CLI.spec ++
--- /var/tmp/diff_new_pack.ClwWAM/_old  2014-09-17 17:26:26.0 +0200
+++ /var/tmp/diff_new_pack.ClwWAM/_new  2014-09-17 17:26:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Task-Kensho-CLI
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,60 +15,80 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Task-Kensho-CLI
-Version:0.29
+Version:0.38
 Release:0
 %define cpan_name Task-Kensho-CLI
-Summary:A Glimpse at an Enlightened Perl (CLI)
+Summary:A Glimpse at an Enlightened Perl: Useful Command-line Tools
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Task-Kensho-CLI/
-Source: 
http://www.cpan.org/authors/id/A/AP/APEIRON/%{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(App::Ack)
 BuildRequires:  perl(App::Nopaste)
-BuildRequires:  perl(App::perlbrew)
 BuildRequires:  perl(Devel::REPL)
+BuildRequires:  perl(Module::Build::Tiny) = 0.038
 BuildRequires:  perl(Module::CoreList)
-#BuildRequires: perl(CPANPLUS::Backend)
-#BuildRequires: perl(inc::Module::Install)
-#BuildRequires: perl(JSON)
-#BuildRequires: perl(LWP::Simple)
-#BuildRequires: perl(Module::AutoInstall)
-#BuildRequires: perl(Module::Build)
-#BuildRequires: perl(Module::Install::Base)
-#BuildRequires: perl(Parse::CPAN::Meta)
-#BuildRequires: perl(YAML::Tiny)
 Requires:   perl(App::Ack)
 Requires:   perl(App::Nopaste)
-Requires:   perl(App::perlbrew)
 Requires:   perl(Devel::REPL)
 Requires:   perl(Module::CoreList)
 %{perl_requires}
 
 %description
-A Glimpse at an Enlightened Perl (CLI)
+From the http://en.wikipedia.org/wiki/Kensho manpage:
+
+Kenshō (見性) (C. Wu) is a Japanese term for enlightenment experiences -
+most commonly used within the confines of Zen Buddhism - literally
+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 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
+Extended Core (EPO-EC).
+
+The modules that are bundled by the Task::Kensho manpage are broken down
+into several categories and are still being 

commit obs-service-set_version for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package obs-service-set_version for 
openSUSE:Factory checked in at 2014-09-17 17:26:40

Comparing /work/SRC/openSUSE:Factory/obs-service-set_version (Old)
 and  /work/SRC/openSUSE:Factory/.obs-service-set_version.new (New)


Package is obs-service-set_version

Changes:

--- 
/work/SRC/openSUSE:Factory/obs-service-set_version/obs-service-set_version.changes
  2014-09-12 17:05:54.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-set_version.new/obs-service-set_version.changes
 2014-09-17 17:27:06.0 +0200
@@ -57,0 +58 @@
+  This fixes also a sed commandline injection (bnc#866966 CVE-2014-0593)



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



commit perl-Plack for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Plack for openSUSE:Factory 
checked in at 2014-09-17 17:26:12

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


Package is perl-Plack

Changes:

--- /work/SRC/openSUSE:Factory/perl-Plack/perl-Plack.changes2013-11-26 
14:41:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Plack.new/perl-Plack.changes   
2014-09-17 17:26:34.0 +0200
@@ -1,0 +2,21 @@
+Tue Sep 16 08:08:05 UTC 2014 - co...@suse.com
+
+- updated to 1.0031
+ [SECURITY]
+ - Plack::App::File would previously strip trailing slashes off
+   provided paths. This in combination with the common pattern
+   of serving files with Plack::Middleware::Static could allow
+   an attacker to bypass a whitelist of generated files (avar) #446
+ 
+ [IMPROVEMENTS]
+ - Let HTTP::Message::PSGI warn in case of invalid PSGI response 
(wchristian) #437
+ - Update documentation on how response_cb works with writer (doy)
+ - Make AccessLog work on non-POSIX environment (dex4er) #442
+ - Plack::App::WrapCGI no longer warns under 5.19.9 (frew)
+ - Avoid Rosetta Flash attack in JSONP middleware (nichtich) #464
+ - Fix Plack::Util::inline_object to make it work with can() as a 
class method
+ 
+ [NEW FEATURES]
+ - Add $req-query_string shortcut to access QUERY_STRING in PSGI 
environment
+
+---

Old:

  Plack-1.0030.tar.gz

New:

  Plack-1.0031.tar.gz



Other differences:
--
++ perl-Plack.spec ++
--- /var/tmp/diff_new_pack.mdouuy/_old  2014-09-17 17:26:36.0 +0200
+++ /var/tmp/diff_new_pack.mdouuy/_new  2014-09-17 17:26:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Plack
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Plack
-Version:1.0030
+Version:1.0031
 Release:0
 %define cpan_name Plack
 Summary:Perl Superglue for Web frameworks and Web Servers (PSGI 
toolkit)
@@ -33,7 +33,7 @@
 BuildRequires:  perl(Devel::StackTrace) = 1.23
 BuildRequires:  perl(Devel::StackTrace::AsHTML) = 0.11
 BuildRequires:  perl(File::ShareDir) = 1.00
-BuildRequires:  perl(File::ShareDir::Install) = 0.03
+BuildRequires:  perl(File::ShareDir::Install) = 0.06
 BuildRequires:  perl(Filesys::Notify::Simple)
 BuildRequires:  perl(HTTP::Body) = 1.06
 BuildRequires:  perl(HTTP::Message) = 5.814

++ Plack-1.0030.tar.gz - Plack-1.0031.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Plack-1.0030/Changes new/Plack-1.0031/Changes
--- old/Plack-1.0030/Changes2013-11-23 08:54:05.0 +0100
+++ new/Plack-1.0031/Changes2014-08-01 22:19:17.0 +0200
@@ -1,5 +1,23 @@
 Go to http://github.com/plack/Plack/issues for the roadmap and known issues.
 
+1.0031  2014-08-01 13:19:14 PDT
+[SECURITY]
+- Plack::App::File would previously strip trailing slashes off
+  provided paths. This in combination with the common pattern
+  of serving files with Plack::Middleware::Static could allow
+  an attacker to bypass a whitelist of generated files (avar) #446
+
+[IMPROVEMENTS]
+- Let HTTP::Message::PSGI warn in case of invalid PSGI response 
(wchristian) #437
+- Update documentation on how response_cb works with writer (doy)
+- Make AccessLog work on non-POSIX environment (dex4er) #442
+- Plack::App::WrapCGI no longer warns under 5.19.9 (frew)
+- Avoid Rosetta Flash attack in JSONP middleware (nichtich) #464
+- Fix Plack::Util::inline_object to make it work with can() as a class 
method
+
+[NEW FEATURES]
+- Add $req-query_string shortcut to access QUERY_STRING in PSGI 
environment
+
 1.0030  2013-11-23 08:54:01 CET
 [IMPROVEMENTS]
 - Middleware::LogDispatch stringifies objects (oalders) #427
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Plack-1.0030/LICENSE new/Plack-1.0031/LICENSE
--- old/Plack-1.0030/LICENSE2013-11-23 08:54:05.0 +0100
+++ new/Plack-1.0031/LICENSE2014-08-01 22:19:17.0 +0200
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA

commit perl-MooseX-Getopt for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Getopt for 
openSUSE:Factory checked in at 2014-09-17 17:26:15

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


Package is perl-MooseX-Getopt

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Getopt/perl-MooseX-Getopt.changes
2014-03-11 07:23:27.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Getopt.new/perl-MooseX-Getopt.changes   
2014-09-17 17:26:39.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 08:07:57 UTC 2014 - co...@suse.com
+
+- updated to 0.65
+ - re-release to remove README.pod from shipped dist
+ - bump required version of Getopt::Long::Descriptive to avoid an infinite
+   loop problem (thanks, Bram!)
+ - fix test prereq on Test::Warnings (thanks, omega!)
+
+---

Old:

  MooseX-Getopt-0.62.tar.gz

New:

  MooseX-Getopt-0.65.tar.gz



Other differences:
--
++ perl-MooseX-Getopt.spec ++
--- /var/tmp/diff_new_pack.XKFHrL/_old  2014-09-17 17:26:40.0 +0200
+++ /var/tmp/diff_new_pack.XKFHrL/_new  2014-09-17 17:26:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MooseX-Getopt
-Version:0.62
+Version:0.65
 Release:0
 %define cpan_name MooseX-Getopt
 Summary:A Moose role for processing command line options
@@ -30,8 +30,8 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Getopt::Long) = 2.37
-BuildRequires:  perl(Getopt::Long::Descriptive) = 0.081
-BuildRequires:  perl(Module::Build::Tiny) = 0.035
+BuildRequires:  perl(Getopt::Long::Descriptive) = 0.088
+BuildRequires:  perl(Module::Build::Tiny) = 0.037
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(Moose::Meta::Attribute)
@@ -46,12 +46,11 @@
 BuildRequires:  perl(Test::Moose)
 BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(Test::Trap)
-BuildRequires:  perl(Test::Warnings)
+BuildRequires:  perl(Test::Warnings) = 0.009
 BuildRequires:  perl(Try::Tiny)
 BuildRequires:  perl(namespace::autoclean)
-BuildRequires:  perl(version)
 Requires:   perl(Getopt::Long) = 2.37
-Requires:   perl(Getopt::Long::Descriptive) = 0.081
+Requires:   perl(Getopt::Long::Descriptive) = 0.088
 Requires:   perl(Moose)
 Requires:   perl(Moose::Meta::Attribute)
 Requires:   perl(Moose::Role) = 0.56
@@ -81,6 +80,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

++ MooseX-Getopt-0.62.tar.gz - MooseX-Getopt-0.65.tar.gz ++
 3418 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-Date for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-Date for openSUSE:Factory 
checked in at 2014-09-17 17:26:05

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


Package is perl-Class-Date

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-Date/perl-Class-Date.changes  
2013-03-01 08:03:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Class-Date.new/perl-Class-Date.changes 
2014-09-17 17:26:26.0 +0200
@@ -1,0 +2,22 @@
+Mon Sep 15 15:44:34 UTC 2014 - co...@suse.com
+
+- updated to 1.1.15
+ - Move Date/Const.pm to lib/Calss/Date/
+ - Move Class::Date::Invalid and Class::Date::Rel to their own files in 
lib/Class/Date/
+ - Require Scalar::Util and remove work-around lack of Scalar::Util
+ - Require Env::C
+ 
+ 1.1.13 Fri May  2 08:32:15 2014
+ - Use Test::More for testing
+ 
+ 1.1.12 Wed Apr 30 08:44:29 2014
+ - Fixing MANIFEST.SKIP to include Makefile.PL and exclue MYMETA files.
+ 
+ 1.1.11 Wed Apr 30 06:56:24 2014
+ - Convert the pod to UTF8 and add =encoding RT #94657 
+ - Minumum version of perl is not 5.006
+ - Makefile updated
+ - New maintainer: Gabor Szabo
+- remove Class-Date-1.1.10.diff
+
+---

Old:

  Class-Date-1.1.10.diff
  Class-Date-1.1.10.tar.gz

New:

  Class-Date-1.1.15.tar.gz



Other differences:
--
++ perl-Class-Date.spec ++
--- /var/tmp/diff_new_pack.J1QAqR/_old  2014-09-17 17:26:27.0 +0200
+++ /var/tmp/diff_new_pack.J1QAqR/_new  2014-09-17 17:26:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Date
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,44 +17,36 @@
 
 
 Name:   perl-Class-Date
+Version:1.1.15
+Release:0
 %define cpan_name Class-Date
 Summary:Class for easy date and time manipulation
-License:Artistic-1.0 or GPL-2.0+
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Version:1.1.10
-Release:0
-Url:http://search.cpan.org/dist/Class-Date
-Source: %{cpan_name}-%{version}.tar.gz
-Patch:  %{cpan_name}-%{version}.diff
+Url:http://search.cpan.org/dist/Class-Date/
+Source: 
http://www.cpan.org/authors/id/S/SZ/SZABGAB/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-Requires:   perl(Date::Parse)
-Requires:   perl(Time::Local)
-## Env::C does not compile on perl 5.10.0
-#Requires:  perl(Env::C)
+BuildRequires:  perl(Scalar::Util) = 1.38
+BuildRequires:  perl(Test::More) = 1.001
+%{perl_requires}
+# MANUAL
+BuildRequires:  timezone
 
 %description
-This module is intended to provide a general-purpose date and datetime
-type for perl. You have a Class::Date class for absolute date and
-datetime and have a Class::Date::Rel class for relative dates.
+This module is intended to provide a general-purpose date and datetime type
+for perl. You have a Class::Date class for absolute date and datetime, and
+have a Class::Date::Rel class for relative dates.
 
-You can use +, -,  and  operators as with native perl data
-types.
-
-
-
-Authors:
-
-dLux (Szabo, Bal�zs) d...@kapu.hu
+You can use +, -,  and  operators as with native perl data types.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-%patch
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
-CFLAGS=$RPM_OPT_FLAGS perl Makefile.PL
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
 %{__make} %{?_smp_mflags}
 
 %check
@@ -65,11 +57,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(0644,root,root,0755)
-%doc Changes README
+%defattr(-,root,root,755)
+%doc Changes README success.txt
 
 %changelog

++ Class-Date-1.1.10.tar.gz - Class-Date-1.1.15.tar.gz ++
 5273 lines of diff (skipped)

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



commit xfce4-power-manager for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package xfce4-power-manager for 
openSUSE:Factory checked in at 2014-09-17 17:26:51

Comparing /work/SRC/openSUSE:Factory/xfce4-power-manager (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-power-manager.new (New)


Package is xfce4-power-manager

Changes:

--- /work/SRC/openSUSE:Factory/xfce4-power-manager/xfce4-power-manager.changes  
2014-09-08 21:30:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.xfce4-power-manager.new/xfce4-power-manager.changes 
2014-09-17 17:27:16.0 +0200
@@ -1,0 +2,37 @@
+Tue Sep 16 20:30:12 UTC 2014 - g...@opensuse.org
+
+- add xfce4-power-manager-fix-lid-switch-logic.patch in order to
+  fix the logic of the lid switch handling setting (backported from
+  upstream git)
+
+---
+Mon Sep 15 07:16:34 UTC 2014 - g...@opensuse.org
+
+- update to version 1.4.0
+ - conditionally use xfce_dialog_show_help_with_version
+ - add support for lxpanel 0.7+
+ - Yves-Alexis Perez fixed the logic of xfconf logind inhibition
+   keys
+ - plugin: update desktop file install location
+ - plugin: Fix crash when devices (dis)connect
+ - point to versioned help docs
+ - add DragonflyBSD to host check
+ - only use batteries for current charge state that are
+   used for power supply
+ - fix minor build warnings
+ - sync the brightness slider with blank and DPMS settings
+ - plugin: Use the brightness-slider-min-level for the scroll
+   wheel
+ - draw a bubble with a question mark if the device state is
+   unknown
+ - keep blank and DPMS timeout settings in order
+ - fix typos in debug messages
+ - update AppData info about the panel plugins
+ - never try to display the -missing icons
+ - add timestamp for 1.3.2 release to AppData
+ - add trailing colons in labels for Comboboxes and Spinbuttons
+ - translation updates
+- drop obsolete xfce4-power-manager-lxpanel-0.7-support.patch
+- remove dependency on udisks since udisks support has been removed
+
+---

Old:

  xfce4-power-manager-1.3.2.tar.bz2
  xfce4-power-manager-lxpanel-0.7-support.patch

New:

  xfce4-power-manager-1.4.0.tar.bz2
  xfce4-power-manager-fix-lid-switch-logic.patch



Other differences:
--
++ xfce4-power-manager.spec ++
--- /var/tmp/diff_new_pack.6ZA5QJ/_old  2014-09-17 17:27:19.0 +0200
+++ /var/tmp/diff_new_pack.6ZA5QJ/_new  2014-09-17 17:27:19.0 +0200
@@ -19,7 +19,7 @@
 %define panel_version 4.10.0
 
 Name:   xfce4-power-manager
-Version:1.3.2
+Version:1.4.0
 Release:0
 Summary:Power Management for the Xfce Desktop Environment
 License:GPL-2.0+
@@ -27,13 +27,12 @@
 Url:
http://goodies.xfce.org/projects/applications/xfce4-power-manager
 Source0:%{name}-%{version}.tar.bz2
 Source1:xfce4-power-manager.xml
-# PATCH-FIX-UPSTREAM xfce4-power-manager-lxpanel-0.7-support.patch bxo#11108 
g...@opensuse.org -- Add support for lxpanel = 0.7
-Patch0: xfce4-power-manager-lxpanel-0.7-support.patch
+# PATCH-FIX-UPSTREAM xfce4-power-manager-fix-lid-switch-logic.patch 
g...@opensuse.org -- Fix logic of the lid switch setting handling (backported 
from upstream git)
+Patch0: xfce4-power-manager-fix-lid-switch-logic.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  libxslt-tools
 BuildRequires:  update-desktop-files
-BuildRequires:  xfce4-dev-tools
 BuildRequires:  pkgconfig(dbus-1)
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(glib-2.0)
@@ -54,7 +53,6 @@
 BuildRequires:  pkgconfig(xrandr)
 Requires:   polkit
 Requires:   systemd
-Requires:   udisks
 Requires:   upower
 Recommends: %{name}-lang = %{version}
 Provides:   xfce4-power-manager-doc = %{version}
@@ -137,7 +135,6 @@
 EOF
 
 %build
-xdt-autogen
 %configure
 make %{?_smp_mflags} V=1
 
@@ -189,7 +186,7 @@
 %files -n xfce4-panel-plugin-power-manager
 %defattr(-,root,root)
 %{_libdir}/xfce4/panel/plugins/libxfce4powermanager.so
-%{_datadir}/xfce4/panel-plugins/power-manager-plugin.desktop
+%{_datadir}/xfce4/panel/plugins/power-manager-plugin.desktop
 
 %files -n lxpanel-plugin-power-manager
 %defattr(-,root,root)

++ xfce4-power-manager-1.3.2.tar.bz2 - xfce4-power-manager-1.4.0.tar.bz2 
++
 25677 lines of diff (skipped)

++ xfce4-power-manager-fix-lid-switch-logic.patch ++
From f62e82256cb2a45b4f044b7d603017952f7dd63e Mon Sep 17 00:00:00 2001
From: Eric Koegel eric.koe...@gmail.com
Date: Mon, 15 Sep 2014 14:35:00 +0300
Subject: Fix handle lid switch with loginD (Bug 11160)

The xfconf settings logic for logind interactions were inverted
in commit: 

commit perl-SQL-Translator for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-SQL-Translator for 
openSUSE:Factory checked in at 2014-09-17 17:26:18

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  
2013-11-29 07:04:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-SQL-Translator.new/perl-SQL-Translator.changes 
2014-09-17 17:26:44.0 +0200
@@ -1,0 +2,18 @@
+Tue Sep 16 08:08:07 UTC 2014 - co...@suse.com
+
+- updated to 0.11020
+  * Fix test failure if Test::PostgreSQL is installed but not working
+ 
+ 0.11019 2014-09-02
+ 
+  * Add Json and hstore types to Pg Parser (cloudinstustrie)
+  * Fix DROP TABLE in SQL Server Producer
+  * Fix Pg DBI parser test (Dagfinn Ilmari Mannsåker)
+  * Remove spurious warnings (Matt Phillips, Wallace Reis)
+  * Fix MySQL producer for columns with scalar ref in 'ON UPDATE' (Wallace 
Reis)
+  * Fix handling of views in MySQL DBI parser
+  * Fix handling of renamed fields in SQLite diff (Peter Mottram)
+  * Check numeric equality of default values in numeric-type fields (Wallace 
Reis)
+  * Fix handling of renamed fields in renamed tables in Pg diff (Peter Mottram)
+
+---

Old:

  SQL-Translator-0.11018.tar.gz

New:

  SQL-Translator-0.11020.tar.gz



Other differences:
--
++ perl-SQL-Translator.spec ++
--- /var/tmp/diff_new_pack.LtYJDA/_old  2014-09-17 17:26:45.0 +0200
+++ /var/tmp/diff_new_pack.LtYJDA/_new  2014-09-17 17:26:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-SQL-Translator
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,14 +17,14 @@
 
 
 Name:   perl-SQL-Translator
-Version:0.11018
+Version:0.11020
 Release:0
 %define cpan_name SQL-Translator
 Summary:Manipulate structured data definitions (SQL and more)
 License:(Artistic-1.0 or GPL-1.0+) and GPL-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/SQL-Translator/
-Source: 
http://www.cpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++ SQL-Translator-0.11018.tar.gz - SQL-Translator-0.11020.tar.gz ++
 2026 lines of diff (skipped)

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



commit yast2-http-server for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package yast2-http-server for 
openSUSE:Factory checked in at 2014-09-17 17:26:39

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


Package is yast2-http-server

Changes:

--- /work/SRC/openSUSE:Factory/yast2-http-server/yast2-http-server.changes  
2014-09-09 19:00:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-http-server.new/yast2-http-server.changes 
2014-09-17 17:27:05.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 09:14:59 CEST 2014 - sch...@suse.de
+
+- AutoYaST: Using HostIP which is given in the host name
+  (e.g. *:443/sleposbuilder3.suse.cz.conf) values in order to set
+  VirtualHost in /etc/apache2/vhosts.d/hostname correctly.
+  (bnc#895127)
+- 3.1.4
+
+---

Old:

  yast2-http-server-3.1.3.tar.bz2

New:

  yast2-http-server-3.1.4.tar.bz2



Other differences:
--
++ yast2-http-server.spec ++
--- /var/tmp/diff_new_pack.0oWmm5/_old  2014-09-17 17:27:06.0 +0200
+++ /var/tmp/diff_new_pack.0oWmm5/_new  2014-09-17 17:27:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-http-server
-Version:3.1.3
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-http-server-3.1.3.tar.bz2 - yast2-http-server-3.1.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-http-server-3.1.3/package/yast2-http-server.changes 
new/yast2-http-server-3.1.4/package/yast2-http-server.changes
--- old/yast2-http-server-3.1.3/package/yast2-http-server.changes   
2014-09-09 10:49:22.0 +0200
+++ new/yast2-http-server-3.1.4/package/yast2-http-server.changes   
2014-09-16 15:43:09.0 +0200
@@ -1,4 +1,13 @@
 ---
+Tue Sep 16 09:14:59 CEST 2014 - sch...@suse.de
+
+- AutoYaST: Using HostIP which is given in the host name
+  (e.g. *:443/sleposbuilder3.suse.cz.conf) values in order to set
+  VirtualHost in /etc/apache2/vhosts.d/hostname correctly.
+  (bnc#895127)
+- 3.1.4
+
+---
 Tue Sep  9 10:18:02 CEST 2014 - sch...@suse.de
 
 - Checking initialized/defined variables. (bnc#892933)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-http-server-3.1.3/package/yast2-http-server.spec 
new/yast2-http-server-3.1.4/package/yast2-http-server.spec
--- old/yast2-http-server-3.1.3/package/yast2-http-server.spec  2014-09-09 
10:49:22.0 +0200
+++ new/yast2-http-server-3.1.4/package/yast2-http-server.spec  2014-09-16 
15:43:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-http-server
-Version:3.1.3
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-http-server-3.1.3/src/modules/HttpServer.rb 
new/yast2-http-server-3.1.4/src/modules/HttpServer.rb
--- old/yast2-http-server-3.1.3/src/modules/HttpServer.rb   2014-09-09 
10:49:22.0 +0200
+++ new/yast2-http-server-3.1.4/src/modules/HttpServer.rb   2014-09-16 
15:43:09.0 +0200
@@ -594,9 +594,18 @@
 if row[KEY] == main
   default_server = row
 else
+  value = row[VALUE] || []
+  key_split = row[KEY].split(/)
+  if value.none? {|item| item[KEY] == HostIP}  key_split.size  1
+# Set HostIP which is given in the KEY (e.g. 
*:443/sleposbuilder3.suse.cz.conf)
+# values in order to set VirtualHost in 
/etc/apache2/vhosts.d/hostname
+# (bnc#895127)
+host_ip = key_split.first
+value  {KEY = HostIP, VALUE = host_ip}
+  end
   YaST::HTTPDData.CreateHost(
 row[KEY] || ,
-row[VALUE] || []
+value
   )
 end
   end

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



commit perl-URI-Find for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-URI-Find for openSUSE:Factory 
checked in at 2014-09-17 17:25:56

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


Package is perl-URI-Find

Changes:

--- /work/SRC/openSUSE:Factory/perl-URI-Find/perl-URI-Find.changes  
2011-12-22 10:54:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-URI-Find.new/perl-URI-Find.changes 
2014-09-17 17:26:16.0 +0200
@@ -1,0 +2,38 @@
+Mon Sep 15 15:44:32 UTC 2014 - co...@suse.com
+
+- updated to 20140709
+ New Features
+ * The git scheme is supported. (Schwern)
+ * svn, ssh and svn+ssh schemes are supported. [rt.cpan.org 57490] 
(Schwern)
+ * Added a --schemeless option to urifind. (Schwern)
+ 
+ Bug Fixes
+ * http:// is no longer matched [rt.cpan.org 63283] (Schwern)
+ 
+ Backwards Incompatibilities
+ * Previously, URIs stringified to their canonical version.  Now
+   they stringify as written.  This results in less loss of
+   information.  For example.  Blah HTTP:://FOO.COM previously
+   would stringify as http://foo.com/; and now it will stringify
+   as HTTP://FOO.COM.  To restore the old behavior you can call
+   $uri-canonical. (Schwern)
+ 
+ Distribution Changes
+ * No longer using URI::URL. (Schwern)
+ * Now requires URI 1.60 for Unicode support. (Schwern)
+ 
+ 
+ 20140702  Wed Jul  2 13:41:47 PDT 2014
+ New Features
+ * IDNA (aka Unicode) domains are now supported. [github 3] (GwenDragon)
+ * The list of TLDs for schemeless matching has been updated. [github 3] 
(GwenDragon)
+ 
+ Bug Fixes
+ * Handle balanced [], {} and quotes in addition to (). [rt.cpan.org 
85053] (Schwern)
+ * Don't mangle IPv6 URLs. [rt.cpan.org 85053] (Schwern)
+ * Schemeless is more accurate about two letter TLDs. [github 3] 
(GwenDragon)
+ 
+ Distribution Changes
+ * Switched the issue tracker to Github. (Schwern)
+
+---

Old:

  URI-Find-2003.tar.gz

New:

  URI-Find-20140709.tar.gz



Other differences:
--
++ perl-URI-Find.spec ++
--- /var/tmp/diff_new_pack.IuVx3G/_old  2014-09-17 17:26:17.0 +0200
+++ /var/tmp/diff_new_pack.IuVx3G/_new  2014-09-17 17:26:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-URI-Find
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-URI-Find
-Version:2003
+Version:20140709
 Release:0
 %define cpan_name URI-Find
 Summary:Find URIs in arbitrary text
@@ -31,16 +31,13 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Module::Build) = 0.30
 BuildRequires:  perl(Test::More) = 0.88
-BuildRequires:  perl(URI) = 1.00
-BuildRequires:  perl(URI::URL) = 5.00
-#BuildRequires: perl(URI::Find)
-Requires:   perl(URI) = 1.00
-Requires:   perl(URI::URL) = 5.00
+BuildRequires:  perl(URI) = 1.60
+Requires:   perl(URI) = 1.60
 %{perl_requires}
 
 %description
 This module does one thing: Finds URIs and URLs in plain text. It finds
-them quickly and it finds them *all* (or what URI::URL considers a URI to
+them quickly and it finds them *all* (or what URI.pm considers a URI to
 be.) It only finds URIs which include a scheme (http:// or the like), for
 something a bit less strict have a look at URI::Find::Schemeless.
 

++ URI-Find-2003.tar.gz - URI-Find-20140709.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/URI-Find-2003/Build.PL 
new/URI-Find-20140709/Build.PL
--- old/URI-Find-2003/Build.PL  2011-11-03 20:15:23.0 +0100
+++ new/URI-Find-20140709/Build.PL  2014-07-10 01:32:18.0 +0200
@@ -17,9 +17,8 @@
 },
 
 requires= {
-perl= '5.6.0',
-URI = '1.00',
-URI::URL= '5.00',
+perl= '5.8.9',
+URI = '1.60',
 },
 
 license = 'perl',
@@ -29,8 +28,8 @@
 meta_merge = {
 resources = {
 homepage= 'http://search.cpan.org/dist/URI-Find',
-bugtracker  = 
'http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Find',
-repository  = 
'http://github.com/schwern/uri-find/tree/master',
+bugtracker  = 'http://github.com/schwern/URI-Find/issues/',
+repository 

commit lib3ds for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package lib3ds for openSUSE:Factory checked 
in at 2014-09-17 17:26:48

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


Package is lib3ds

Changes:

--- /work/SRC/openSUSE:Factory/lib3ds/lib3ds.changes2014-08-08 
10:13:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.lib3ds.new/lib3ds.changes   2014-09-17 
17:27:14.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 15 05:09:23 UTC 2014 - crrodrig...@opensuse.org
+
+- Remove superflous buildrequires, mesa and freeglut are never used.
+
+---



Other differences:
--
++ lib3ds.spec ++
--- /var/tmp/diff_new_pack.te4B6S/_old  2014-09-17 17:27:15.0 +0200
+++ /var/tmp/diff_new_pack.te4B6S/_new  2014-09-17 17:27:15.0 +0200
@@ -27,8 +27,6 @@
 Source0:%{name}-%{version}.tar.bz2
 Patch0: lib3ds-pkgconfig.patch
 Patch1: lib3ds-mesh.c.patch
-BuildRequires:  Mesa-devel
-BuildRequires:  freeglut-devel
 BuildRequires:  libtool
 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 ext4magic for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package ext4magic for openSUSE:Factory 
checked in at 2014-09-17 17:26:52

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


Package is ext4magic

Changes:

--- /work/SRC/openSUSE:Factory/ext4magic/ext4magic.changes  2013-06-05 
11:50:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.ext4magic.new/ext4magic.changes 2014-09-17 
17:27:20.0 +0200
@@ -1,0 +2,27 @@
+Tue Sep 16 21:08:10 UTC 2014 - greg.freem...@gmail.com
+
+- correct Source: field to be the full path
+- remove the #DL_URL comment
+
+---
+Sat Sep 13 00:58:41 UTC 2014 - greg.freem...@gmail.com
+
+- Update to v0.3.2 
+  * The code changes are moderate. Mainly changes on metadata, buildsystem and 
manpage 
+  * Some problems with potential endless loops and segfaults been fixed.
+  * New is support for matlab-V5 files in the magic-function and a interface 
for
+a private magic signature file.  The interface was necessary because the 
+activity on the FILE project results in many chances and more and more
+support of new file signatures. This has a negative impact on speed, 
+accuracy and result of the magic-function of ext4magic. This interface is 
+provided for future use and is designed to support a only for ext4magic
+optimized magic pattern file.  
+(See also http://ext4magic.sourceforge.net/magic-pattern-interface.html)
+  * The author states that significant testing with i586 and x86_64 has been 
done
+  * ext4magic continues not to support filesystems over 16TB
+- Added requires file-devel  5.05 per notes from upstream
+  * Upstream notes that ext4magic is not stable with libmagic 5.17 included in 
file 5.17
+- Added requires libext2fs-devel = 1.42.6 per notes from upstream
+
+
+---

Old:

  ext4magic-0.3.1.tar.gz

New:

  ext4magic-0.3.2.tar.gz



Other differences:
--
++ ext4magic.spec ++
--- /var/tmp/diff_new_pack.EklzHu/_old  2014-09-17 17:27:22.0 +0200
+++ /var/tmp/diff_new_pack.EklzHu/_new  2014-09-17 17:27:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ext4magic
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 r...@users.berlios.de
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,15 +18,15 @@
 
 
 Name:   ext4magic
-Version:0.3.1
+Version:0.3.2
 Release:0
 Summary:Can help to recover deleted files on ext3/4 filesystems
 License:GPL-2.0+
 Group:  System/Filesystems
-Url:
http://openfacts2.berlios.de/wikide/index.php/BerliosProject:Ext4magic
-Source0:
http://downloads.sourceforge.net/%{name}.berlios/%{name}-%{version}.tar.gz
-
-BuildRequires:  file-devel
+Url:http://sourceforge.net/projects/ext4magic/
+#Doc_Url:  http://ext4magic.sourceforge.net/ext4magic_en.html
+Source0:
http://sourceforge.net/projects/ext4magic/files/ext4magic-0.3.2.tar.gz
+BuildRequires:  file-devel  5.05
 BuildRequires:  libblkid-devel
 BuildRequires:  libbz2-devel
 BuildRequires:  zlib-devel
@@ -40,7 +40,7 @@
 %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
 BuildRequires:  e2fsprogs-devel
 %else
-BuildRequires:  libext2fs-devel
+BuildRequires:  libext2fs-devel = 1.42.6
 %endif
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ext4magic-0.3.1.tar.gz - ext4magic-0.3.2.tar.gz ++
 20440 lines of diff (skipped)

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



commit GraphicsMagick for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package GraphicsMagick for openSUSE:Factory 
checked in at 2014-09-17 17:27:04

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


Package is GraphicsMagick

Changes:

--- /work/SRC/openSUSE:Factory/GraphicsMagick/GraphicsMagick.changes
2014-09-15 18:24:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.GraphicsMagick.new/GraphicsMagick.changes   
2014-09-17 17:27:34.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 16 07:24:18 UTC 2014 - dmitr...@opensuse.org
+
+- Fix devel package dependencies
+
+---



Other differences:
--
++ GraphicsMagick.spec ++
--- /var/tmp/diff_new_pack.Oiv0au/_old  2014-09-17 17:27:36.0 +0200
+++ /var/tmp/diff_new_pack.Oiv0au/_new  2014-09-17 17:27:36.0 +0200
@@ -74,7 +74,7 @@
 
 %package -n libGraphicsMagick-Q%{quant}-3
 Summary:Viewer and Converter for Images - runtime library
-Group:  Productivity/Graphics/Convertors
+Group:  System/Libraries
 
 %description -n libGraphicsMagick-Q%{quant}-3
 GraphicsMagick(TM) provides a powerful image manipulation and
@@ -98,7 +98,7 @@
 
 %package -n libGraphicsMagickWand-Q%{quant}-2
 Summary:Viewer and Converter for Images - runtime library
-Group:  Productivity/Graphics/Convertors
+Group:  System/Libraries
 
 %description -n libGraphicsMagickWand-Q%{quant}-2
 GraphicsMagick(TM) provides a powerful image manipulation and
@@ -125,6 +125,8 @@
 Group:  Development/Libraries/C and C++
 # These comes from check in AB for 11.4
 Requires:   glibc-devel
+Requires:   libGraphicsMagick-Q%{quant}-3 = %{version}
+Requires:   libGraphicsMagickWand-Q%{quant}-2 = %{version}
 
 %descriptiondevel
 GraphicsMagick(TM) provides a powerful image manipulation and
@@ -232,7 +234,7 @@
 make %{?_smp_mflags} LD_RUN_PATH=%{_libdir}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 cp ChangeLog* *.txt %{buildroot}/%{_defaultdocdir}/%{name}
 cd PerlMagick
 make DESTDIR=%{buildroot} LD_RUN_PATH=%{_libdir} install_vendor

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



commit python-testtools for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-testtools for 
openSUSE:Factory checked in at 2014-09-17 17:26:56

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


Package is python-testtools

Changes:

--- /work/SRC/openSUSE:Factory/python-testtools/python-testtools.changes
2014-01-29 22:22:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-testtools.new/python-testtools.changes   
2014-09-17 17:27:24.0 +0200
@@ -1,0 +2,43 @@
+Tue Sep 16 06:17:46 UTC 2014 - tbecht...@suse.com
+
+- update to version 1.1.0:
+  * Exceptions in a ``fixture.getDetails`` method will no longer mask errors
+raised from the same fixture's ``setUp`` method.
+(Robert Collins, #1368440)
+  * Fix a long-standing bug where tearDown and cleanUps would not be called if
+the test run was interrupted. This should fix leaking external resources
+from interrupted tests.
+(Robert Collins, #1364188)
+  * Fix a long-standing bug where calling sys.exit(0) from within a test would
+cause the test suite to exit with 0, without reporting a failure of that
+test. We still allow the test suite to be exited (since catching higher
+order exceptions requires exceptional circumstances) but we now call a
+last-resort handler on the TestCase, resulting in an error being
+reported for the test.
+(Robert Collins, #1364188)
+  * Fix an issue where tests skipped with the ``skip``* family of decorators
+would still have their ``setUp`` and ``tearDown`` functions called.
+(Thomi Richards, #https://github.com/testing-cabal/testtools/issues/86)
+  * We have adopted a formal backwards compatibility statement (see 
hacking.rst)
+(Robert Collins)
+  * _jython_aware_splitext was not defined entirely compatibly.
+(Robert Collins, #https://github.com/testing-cabal/testtools/issues/100)
+  * Discovery import error detection wasn't implemented for python 2.6 (the
+'discover' module). (Robert Collins)
+  * Discovery now executes load_tests (if present) in __init__ in all packages.
+(Robert Collins, http://bugs.python.org/issue16662)
+  * ``stdout`` is now correctly honoured on ``run.TestProgram`` - before the
+runner objects would be created with no stdout parameter. If construction
+fails, the previous parameter list is attempted, permitting compatibility
+with Runner classes that don't accept stdout as a parameter.
+(Robert Collins)
+  * The ``ExtendedToStreamDecorator`` now handles content objects with one less
+packet - the last packet of the source content is sent with EOF set rather
+than an empty packet with EOF set being sent after the last packet of the
+source content. (Robert Collins)
+  * Error if ``setUp`` or ``tearDown`` are called twice.
+(Robert Collins, #882884)
+  * Make testtools compatible with the ``unittest.expectedFailure`` decorator 
in
+Python 3.4. (Thomi Richards)
+
+---

Old:

  testtools-0.9.35.tar.gz

New:

  testtools-1.1.0.tar.gz



Other differences:
--
++ python-testtools.spec ++
--- /var/tmp/diff_new_pack.SOm1vk/_old  2014-09-17 17:27:25.0 +0200
+++ /var/tmp/diff_new_pack.SOm1vk/_new  2014-09-17 17:27:25.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests 
 
 Name:   python-testtools
-Version:0.9.35
+Version:1.1.0
 Release:0
 Summary:Extensions to the Python Standard Library Unit Testing 
Framework
 License:MIT

++ testtools-0.9.35.tar.gz - testtools-1.1.0.tar.gz ++
 2068 lines of diff (skipped)

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



commit terminology-theme-openSUSE for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package terminology-theme-openSUSE for 
openSUSE:Factory checked in at 2014-09-17 17:26:34

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


Package is terminology-theme-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/terminology-theme-openSUSE/terminology-theme-openSUSE.changes
2014-02-24 10:59:00.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.terminology-theme-openSUSE.new/terminology-theme-openSUSE.changes
   2014-09-17 17:26:58.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 16 04:13:14 UTC 2014 - si...@simotek.net
+
+- New theme for openSUSE 13.2
+
+---

Old:

  terminology-theme-openSUSE-20131223.tar.bz2

New:

  terminology-theme-openSUSE-20140912.tar.xz



Other differences:
--
++ terminology-theme-openSUSE.spec ++
--- /var/tmp/diff_new_pack.mxS9Nf/_old  2014-09-17 17:26:59.0 +0200
+++ /var/tmp/diff_new_pack.mxS9Nf/_new  2014-09-17 17:26:59.0 +0200
@@ -16,13 +16,13 @@
 #
 
 Name:   terminology-theme-openSUSE
-Version:20131223
+Version:20140912
 Release:0
 Summary:openSUSE theme for Terminology
 License:BSD-2-Clause
 Group:  System/X11/terminals
 Url:https://en.opensuse.org/Portal:Enlightenment
-Source: %{name}-%{version}.tar.bz2
+Source: %{name}-%{version}.tar.xz
 BuildRequires:  ImageMagick
 BuildRequires:  edje
 Requires:   terminology
@@ -38,7 +38,9 @@
 %setup -q
 
 %build
-./build.sh -v
+./build-darkmod.sh --termpkg
+cp terminology/openSUSE.edj ./default.edj
+cp licenses-authors/* .
 
 %install
 install -m 0755 -d %{buildroot}%{_datadir}/terminology/themes

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



commit perl-CPAN-Perl-Releases for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-CPAN-Perl-Releases for 
openSUSE:Factory checked in at 2014-09-17 17:26:00

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


Package is perl-CPAN-Perl-Releases

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-CPAN-Perl-Releases/perl-CPAN-Perl-Releases.changes
  2014-03-09 18:35:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-CPAN-Perl-Releases.new/perl-CPAN-Perl-Releases.changes
 2014-09-17 17:26:21.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 16:02:05 UTC 2014 - co...@suse.com
+
+- updated to 1.86
+  Updated for v5.20.1
+
+---

Old:

  CPAN-Perl-Releases-1.64.tar.gz

New:

  CPAN-Perl-Releases-1.86.tar.gz



Other differences:
--
++ perl-CPAN-Perl-Releases.spec ++
--- /var/tmp/diff_new_pack.PrYBEe/_old  2014-09-17 17:26:23.0 +0200
+++ /var/tmp/diff_new_pack.PrYBEe/_new  2014-09-17 17:26:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-CPAN-Perl-Releases
-Version:1.64
+Version:1.86
 Release:0
 %define cpan_name CPAN-Perl-Releases
 Summary:Mapping Perl releases on CPAN to the location of the tarballs

++ CPAN-Perl-Releases-1.64.tar.gz - CPAN-Perl-Releases-1.86.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-1.64/Changes 
new/CPAN-Perl-Releases-1.86/Changes
--- old/CPAN-Perl-Releases-1.64/Changes 2014-02-20 11:52:57.0 +0100
+++ new/CPAN-Perl-Releases-1.86/Changes 2014-09-14 15:32:25.0 +0200
@@ -1,8 +1,118 @@
 ==
-Changes from 2009-02-21 00:00:00 + to present.
+Changes from 2009-09-15 00:00:00 + to present.
 ==
 
 -
+version 1.86 at 2014-09-14 13:31:59 +
+-
+
+  Change: 82d88d9ff81387236216082a8f524218a8a4b5ef
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-09-14 14:31:59 +
+
+Updated for v5.20.1 
+
+-
+version 1.84 at 2014-09-07 17:12:53 +
+-
+
+  Change: ed22a5524880d440f0e8f10535368c1486789969
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-09-07 18:12:53 +
+
+Updated for v5.20.1-RC2 
+
+-
+version 1.82 at 2014-08-26 01:37:01 +
+-
+
+  Change: edc43680f5c5141fec8507e66d7f3dcab4e92fa5
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-08-26 02:37:01 +
+
+Updated for v5.20.1-RC1 
+
+-
+version 1.80 at 2014-08-21 09:00:13 +
+-
+
+  Change: 6a1d4dde10d01eef0b44df2f1c65bed608480bd3
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-08-21 10:00:13 +
+
+Updated for v5.21.3 
+
+-
+version 1.78 at 2014-07-20 13:45:18 +
+-
+
+  Change: 0e67e38d070716e6831b2165cfc0cfedf1274fb6
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-07-20 14:45:18 +
+
+Updated for v5.21.2 
+
+-
+version 1.76 at 2014-06-20 13:46:55 +
+-
+
+  Change: 134a45e051aa5ae1cd4c8bc5d2fbe2095da5548b
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-06-20 14:46:55 +
+
+Updated for v5.21.1 
+
+-
+version 1.74 at 2014-05-29 10:49:22 +
+-
+
+  Change: cd318caa80e42105ed9c8857b92c2772d4fb82fa
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-05-29 11:49:22 +
+
+Updated for v5.21.0 
+
+-
+version 1.72 at 2014-05-27 08:38:14 +
+-
+
+  Change: efebe6c6be5b75df38318ec023bbcec2de5d305a
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-05-27 09:38:14 +
+
+Updated for v5.20.0 
+
+-
+version 1.70 at 2014-05-19 12:08:57 +
+-
+
+  Change: b71b39bb96500373db858cabb11668d44f3b7837
+  Author: Chris 'BinGOs' Williams ch...@bingosnet.co.uk
+  Date : 2014-05-19 13:08:57 +
+
+Updated for v5.20.0-RC1 
+
+-
+version 

commit perl-Class-Method-Modifiers for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-Method-Modifiers for 
openSUSE:Factory checked in at 2014-09-17 17:26:08

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


Package is perl-Class-Method-Modifiers

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Class-Method-Modifiers/perl-Class-Method-Modifiers.changes
  2014-03-09 18:34:47.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Class-Method-Modifiers.new/perl-Class-Method-Modifiers.changes
 2014-09-17 17:26:29.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 16 08:07:56 UTC 2014 - co...@suse.com
+
+- updated to 2.11
+   - add documentation for modifying multiple methods at once (mannih,
+ github #2)
+
+---

Old:

  Class-Method-Modifiers-2.10.tar.gz

New:

  Class-Method-Modifiers-2.11.tar.gz



Other differences:
--
++ perl-Class-Method-Modifiers.spec ++
--- /var/tmp/diff_new_pack.h684mZ/_old  2014-09-17 17:26:30.0 +0200
+++ /var/tmp/diff_new_pack.h684mZ/_new  2014-09-17 17:26:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Class-Method-Modifiers
-Version:2.10
+Version:2.11
 Release:0
 %define cpan_name Class-Method-Modifiers
 Summary:provides Moose-like method modifiers
@@ -30,7 +30,7 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(version)
+BuildRequires:  perl(Test::Requires)
 %{perl_requires}
 
 %description
@@ -88,6 +88,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ Class-Method-Modifiers-2.10.tar.gz - Class-Method-Modifiers-2.11.tar.gz 
++
 2723 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-six for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python3-six for openSUSE:Factory 
checked in at 2014-09-17 17:26:37

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


Package is python3-six

Changes:

--- /work/SRC/openSUSE:Factory/python3-six/python3-six.changes  2014-05-09 
06:58:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-six.new/python3-six.changes 
2014-09-17 17:27:01.0 +0200
@@ -1,0 +2,34 @@
+Tue Sep 16 12:05:57 UTC 2014 - toddrme2...@gmail.com
+
+- update to version 1.8.0:
+  * Issue #90: Add six.moves.shlex_quote.
+  * Issue #59: Add six.moves.intern.
+  * Add six.urllib.parse.uses_(fragment|netloc|params|query|relative).
+  * Issue #88: Fix add_metaclass when the class has __slots__ containing
+  __weakref__ or __dict__.
+  * Issue #89: Make six use absolute imports.
+  * Issue #85: Always accept *updated* and *assigned* arguments for wraps().
+  * Issue #86: In reraise(), instantiate the exception if the second argument 
is
+  None.
+  * Pull request #45: Add six.moves.email_mime_nonmultipart.
+  * Issue #81: Add six.urllib.request.splittag mapping.
+  * Issue #80: Add six.urllib.request.splituser mapping.
+- update to 1.7.3:
+  - Issue #77: Fix import six on Python 3.4 with a custom loader.
+  - Issue #74: six.moves.xmlrpc_server should map to SimpleXMLRPCServer on 
Python
+2 as documented not xmlrpclib.
+- update to 1.7.2:
+  - Issue #72: Fix installing on Python 2.
+  - Issue #71: Make the six.moves meta path importer handle reloading of the 
six
+  module gracefully.
+  - Pull request #30: Implement six.moves with a PEP 302 meta path hook.
+  - Pull request #32: Add six.wraps, which is like functools.wraps but always 
sets
+  the __wrapped__ attribute.
+  - Pull request #35: Improve add_metaclass, so that it doesn't end up 
inserting
+  another class into the hierarchy.
+  - Pull request #34: Add import mappings for dummy_thread.
+  - Pull request #33: Add import mappings for UserDict and UserList.
+  - Pull request #31: Select the implementations of dictionary iterator 
routines
+  at import time for a 20% speed boost.
+
+---

Old:

  six-1.6.1.tar.gz

New:

  six-1.8.0.tar.gz



Other differences:
--
++ python3-six.spec ++
--- /var/tmp/diff_new_pack.atpkYx/_old  2014-09-17 17:27:02.0 +0200
+++ /var/tmp/diff_new_pack.atpkYx/_new  2014-09-17 17:27:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-six
-Version:1.6.1
+Version:1.8.0
 Release:0
 Url:http://pypi.python.org/pypi/six/
 Summary:Python 2 and 3 compatibility utilities

++ six-1.6.1.tar.gz - six-1.8.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/six-1.6.1/CHANGES new/six-1.8.0/CHANGES
--- old/six-1.6.1/CHANGES   2014-03-14 04:36:39.0 +0100
+++ new/six-1.8.0/CHANGES   2014-09-11 23:42:45.0 +0200
@@ -3,6 +3,68 @@
 
 This file lists the changes in each six version.
 
+1.8.0
+-
+
+- Issue #90: Add six.moves.shlex_quote.
+
+- Issue #59: Add six.moves.intern.
+
+- Add six.urllib.parse.uses_(fragment|netloc|params|query|relative).
+
+- Issue #88: Fix add_metaclass when the class has __slots__ containing
+  __weakref__ or __dict__.
+
+- Issue #89: Make six use absolute imports.
+
+- Issue #85: Always accept *updated* and *assigned* arguments for wraps().
+
+- Issue #86: In reraise(), instantiate the exception if the second argument is
+  None.
+
+- Pull request #45: Add six.moves.email_mime_nonmultipart.
+
+- Issue #81: Add six.urllib.request.splittag mapping.
+
+- Issue #80: Add six.urllib.request.splituser mapping.
+
+1.7.3
+-
+
+- Issue #77: Fix import six on Python 3.4 with a custom loader.
+
+- Issue #74: six.moves.xmlrpc_server should map to SimpleXMLRPCServer on Python
+  2 as documented not xmlrpclib.
+
+1.7.2
+-
+
+- Issue #72: Fix installing on Python 2.
+
+1.7.1
+-
+
+- Issue #71: Make the six.moves meta path importer handle reloading of the six
+  module gracefully.
+
+1.7.0
+-
+
+- Pull request #30: Implement six.moves with a PEP 302 meta path hook.
+
+- Pull request #32: Add six.wraps, which is like functools.wraps but always 
sets
+  the __wrapped__ attribute.
+
+- Pull request #35: Improve add_metaclass, so that it doesn't end up inserting
+  another class into the hierarchy.
+
+- Pull request #34: Add import mappings for dummy_thread.
+
+- Pull request #33: Add import mappings for UserDict and UserList.
+
+- Pull request #31: Select the implementations of dictionary iterator routines
+  at import time for a 20% speed boost.
+
 

commit perl-local-lib for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-local-lib for openSUSE:Factory 
checked in at 2014-09-17 17:25:59

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


Package is perl-local-lib

Changes:

--- /work/SRC/openSUSE:Factory/perl-local-lib/perl-local-lib.changes
2014-03-18 13:57:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-local-lib.new/perl-local-lib.changes   
2014-09-17 17:26:20.0 +0200
@@ -1,0 +2,32 @@
+Mon Sep 15 15:44:36 UTC 2014 - co...@suse.com
+
+- updated to 2.14
+  - fix taint-mode test in some cases on case insensitive filesystems
+ 
+ 2.13 - 2014-08-16
+  - fix test failure in ActiveState perl
+  - better test diagnostics
+  - fix quoting of spaces for fish shell (rt#95268)
+  - improve quoting for use with cmd.exe
+  - fix quoting any arbitrary character when contructing strings for bash
+  - skip testing use with shells if the shell doesn't work at all
+ 
+ 2.12 - 2014-05-12
+  - restore build_activate_environment_vars_for,
+build_deactivate_environment_vars_for, build_deact_all_environment_vars_for
+methods for perlbrew compatibility
+  - fix transforming relative paths to absolute paths in older perls
+  - fix quoting for fish shell
+ 
+ 2.11 - 2014-04-02
+  - more fixes for issue where PERL5LIB Carp is not the same version as in the
+local-lib
+ 
+ 2.10 - 2014-03-28
+  - fix shell test on cygwin
+ 
+ 2.000_009 - 2014-03-15
+  - no longer loads File::Spec, so an upgraded version installed inside a local
+lib dir can be used by scripts
+
+---

Old:

  local-lib-2.08.tar.gz

New:

  local-lib-2.14.tar.gz



Other differences:
--
++ perl-local-lib.spec ++
--- /var/tmp/diff_new_pack.s5aruZ/_old  2014-09-17 17:26:21.0 +0200
+++ /var/tmp/diff_new_pack.s5aruZ/_new  2014-09-17 17:26:21.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   perl-local-lib
-Version:2.08
+Version:2.14
 Release:0
 Summary:Create and Use a local Library Directory for Perl Modules
 License:Artistic-1.0 or GPL-1.0+

++ local-lib-2.08.tar.gz - local-lib-2.14.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/local-lib-2.08/Changes 
new/local-lib-2.14/Changes
--- old/local-lib-2.08/Changes  2014-03-13 17:30:08.0 +0100
+++ new/local-lib-2.14/Changes  2014-09-04 11:49:23.0 +0200
@@ -1,5 +1,34 @@
 Revision history for local::lib
 
+2.14 - 2014-09-04
+ - fix taint-mode test in some cases on case insensitive filesystems
+
+2.13 - 2014-08-16
+ - fix test failure in ActiveState perl
+ - better test diagnostics
+ - fix quoting of spaces for fish shell (rt#95268)
+ - improve quoting for use with cmd.exe
+ - fix quoting any arbitrary character when contructing strings for bash
+ - skip testing use with shells if the shell doesn't work at all
+
+2.12 - 2014-05-12
+ - restore build_activate_environment_vars_for,
+   build_deactivate_environment_vars_for, build_deact_all_environment_vars_for
+   methods for perlbrew compatibility
+ - fix transforming relative paths to absolute paths in older perls
+ - fix quoting for fish shell
+
+2.11 - 2014-04-02
+ - more fixes for issue where PERL5LIB Carp is not the same version as in the
+   local-lib
+
+2.10 - 2014-03-28
+ - fix shell test on cygwin
+
+2.000_009 - 2014-03-15
+ - no longer loads File::Spec, so an upgraded version installed inside a local
+   lib dir can be used by scripts
+
 2.08 - 2014-03-13
  - fix --bootstrap option without a path specified
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/local-lib-2.08/MANIFEST 
new/local-lib-2.14/MANIFEST
--- old/local-lib-2.08/MANIFEST 2014-03-13 17:30:25.0 +0100
+++ new/local-lib-2.14/MANIFEST 2014-09-04 11:50:06.0 +0200
@@ -10,6 +10,7 @@
 Makefile.PL
 MANIFEST   This list of files
 t/bad_variables.t
+t/carp-mismatch.t
 t/classmethod.t
 t/coderefs_in_inc.t
 t/de-dup.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/local-lib-2.08/META.json 
new/local-lib-2.14/META.json
--- old/local-lib-2.08/META.json2014-03-13 17:30:25.0 +0100
+++ new/local-lib-2.14/META.json2014-09-04 11:50:06.0 +0200
@@ -4,7 +4,7 @@
   mst - Matt S. Trout (cpan:MSTROUT) m...@shadowcat.co.uk
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.9, CPAN::Meta::Converter 
version 

commit gnokii for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package gnokii for openSUSE:Factory checked 
in at 2014-09-17 17:26:46

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


Package is gnokii

Changes:

--- /work/SRC/openSUSE:Factory/gnokii/gnokii.changes2012-04-17 
21:58:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnokii.new/gnokii.changes   2014-09-17 
17:27:10.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 01:43:48 UTC 2014 - crrodrig...@opensuse.org
+
+- Fix devel package requires by letting the pkgconfig dependency
+  generator act (Add pkg-config BuildRequires and remove all
+  explicit Requires from the -devel package).
+- Add gnokii-date-time.patch: Do not include __DATE__ or __TIME__
+  in binaries.
+
+---

New:

  gnokii-date-time.patch



Other differences:
--
++ gnokii.spec ++
--- /var/tmp/diff_new_pack.3kqKD9/_old  2014-09-17 17:27:11.0 +0200
+++ /var/tmp/diff_new_pack.3kqKD9/_new  2014-09-17 17:27:11.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnokii
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -31,10 +31,13 @@
 Patch0: gnokii-xgnokii.patch
 # PATCH-FIX-UPSTREAM gnokii-suid_flags.patch bnc#743142 vu...@opensuse.org -- 
Respect SUID_CFLAGS/SUID_LDFLAGS; sent upstream by mail on 2012-02-24
 Patch1: gnokii-suid_flags.patch
+# PATCH-FIX-OPENSUSE gnokii-date-time.patch crrodrig...@opensuse.org -- Do not 
include __DATE__ or __TIME__ in resulting binaries.
+Patch2: gnokii-date-time.patch
 BuildRequires:  bluez-devel
 BuildRequires:  coreutils
 BuildRequires:  gtk2-devel
 BuildRequires:  intltool
+BuildRequires:  pkgconfig
 %if 0%{?suse_version}  1210
 BuildRequires:  libX11-devel
 BuildRequires:  libXpm-devel
@@ -87,11 +90,6 @@
 Group:  Hardware/Mobile
 Requires:   %{name} = %{version}
 Requires:   %{name}-smsd = %{version}
-Requires:   glib2-devel
-Requires:   libical-devel
-Requires:   libopenssl-devel
-Requires:   libusb-devel
-Requires:   xorg-x11-devel
 
 %description devel
 gnokii is a package of programs for communicating with a Nokia cellular
@@ -103,7 +101,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-
+%patch2 -p1
 %build
 # Needed by patch0 and patch1
 autoreconf -fi

++ gnokii-date-time.patch ++
--- gnokii-0.6.31.orig/gnokiid/gnokiid.c
+++ gnokii-0.6.31/gnokiid/gnokiid.c
@@ -68,9 +68,7 @@ static void short_version()
 static void version()
 {
fprintf(stderr, _(Copyright (C) Hugh Blemings h...@blemings.org, 
1999\n
- Copyright (C) Pavel Janik ml. pavel.ja...@suse.cz, 
1999\n
- Built %s %s\n),
- __TIME__, __DATE__);
+ Copyright (C) Pavel Janik ml. pavel.ja...@suse.cz, 
1999\n));
 }
 
 /* The function usage is only informative - it prints this program's usage and
--- gnokii-0.6.31.orig/gnokii/gnokii.c
+++ gnokii-0.6.31/gnokii/gnokii.c
@@ -216,7 +216,7 @@ static void version(void)
  gnokii is free software, covered by the GNU General 
Public License, and you are\n
  welcome to change it and/or distribute copies of it 
under certain conditions.\n
  There is absolutely no warranty for gnokii.  See GPL 
for details.\n
- Built %s %s\n), __TIME__, __DATE__);
+ ));
 }
 
 /* The function usage is only informative - it prints this program's usage and
--- gnokii-0.6.31.orig/common/data/at-emulator.c
+++ gnokii-0.6.31/common/data/at-emulator.c
@@ -1037,7 +1037,7 @@ bool  gn_atem_command_plusg(char **buf)
/* AT+GMR is Revision information for the TA (Terminal Adaptor) */
if (strncasecmp(*buf, MR, 3) == 0) {
buf[0] += 2;
-   gsprintf(buffer, MAX_LINE_LENGTH, %s %s %s\r\n, VERSION, 
__TIME__, __DATE__);
+   gsprintf(buffer, MAX_LINE_LENGTH, %s\r\n, VERSION);
 
gn_atem_string_out(buffer);
return (false);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-warlock for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-warlock for openSUSE:Factory 
checked in at 2014-09-17 17:27:00

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


Package is python-warlock

Changes:

--- /work/SRC/openSUSE:Factory/python-warlock/python-warlock.changes
2013-10-25 11:34:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-warlock.new/python-warlock.changes   
2014-09-17 17:27:30.0 +0200
@@ -1,0 +2,12 @@
+Tue Sep 16 13:25:54 UTC 2014 - tbecht...@suse.com
+
+- update to version 1.1.0:
+  * Bump version to 1.1.0
+  * Merge pull request #12 from apevec/master
+  * LICENSE.txt was missing in the source tarball
+  * Merge pull request #11 from isethi/validation
+  * Add description to exception messages
+  * Add python3 support
+- Add python-to as BuildRequires and Requires.
+
+---

Old:

  warlock-1.0.1.tar.gz

New:

  warlock-1.1.0.tar.gz



Other differences:
--
++ python-warlock.spec ++
--- /var/tmp/diff_new_pack.LJNe97/_old  2014-09-17 17:27:31.0 +0200
+++ /var/tmp/diff_new_pack.LJNe97/_new  2014-09-17 17:27:31.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-warlock
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-warlock
-Version:1.0.1
+Version:1.1.0
 Release:0
 Summary:Python object model built on top of JSON schema
 License:Apache-2.0
@@ -29,8 +29,10 @@
 BuildRequires:  python-jsonschema
 BuildRequires:  python-nose
 BuildRequires:  python-setuptools
+BuildRequires:  python-six
 Requires:   python-jsonpatch = 0.7
 Requires:   python-jsonschema = 0.10
+Requires:   python-six
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}

++ warlock-1.0.1.tar.gz - warlock-1.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/warlock-1.0.1/LICENSE.txt 
new/warlock-1.1.0/LICENSE.txt
--- old/warlock-1.0.1/LICENSE.txt   1970-01-01 01:00:00.0 +0100
+++ new/warlock-1.1.0/LICENSE.txt   2013-11-19 16:00:43.0 +0100
@@ -0,0 +1,202 @@
+
+ Apache License
+   Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+  License shall mean the terms and conditions for use, reproduction,
+  and distribution as defined by Sections 1 through 9 of this document.
+
+  Licensor shall mean the copyright owner or entity authorized by
+  the copyright owner that is granting the License.
+
+  Legal Entity shall mean the union of the acting entity and all
+  other entities that control, are controlled by, or are under common
+  control with that entity. For the purposes of this definition,
+  control means (i) the power, direct or indirect, to cause the
+  direction or management of such entity, whether by contract or
+  otherwise, or (ii) ownership of fifty percent (50%) or more of the
+  outstanding shares, or (iii) beneficial ownership of such entity.
+
+  You (or Your) shall mean an individual or Legal Entity
+  exercising permissions granted by this License.
+
+  Source form shall mean the preferred form for making modifications,
+  including but not limited to software source code, documentation
+  source, and configuration files.
+
+  Object form shall mean any form resulting from mechanical
+  transformation or translation of a Source form, including but
+  not limited to compiled object code, generated documentation,
+  and conversions to other media types.
+
+  Work shall mean the work of authorship, whether in Source or
+  Object form, made available under the License, as indicated by a
+  copyright notice that is included in or attached to the work
+  (an example is provided in the Appendix below).
+
+  Derivative Works shall mean any work, whether in Source or Object
+  form, that is based on (or derived from) the Work and for which the
+  editorial revisions, annotations, elaborations, or 

commit perl-SQL-Abstract for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-SQL-Abstract for 
openSUSE:Factory checked in at 2014-09-17 17:26:01

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


Package is perl-SQL-Abstract

Changes:

--- /work/SRC/openSUSE:Factory/perl-SQL-Abstract/perl-SQL-Abstract.changes  
2014-02-28 19:16:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-SQL-Abstract.new/perl-SQL-Abstract.changes 
2014-09-17 17:26:23.0 +0200
@@ -1,0 +2,11 @@
+Mon Sep 15 15:44:40 UTC 2014 - co...@suse.com
+
+- updated to 1.78
+ - Fix parsing of binary ops to correctly take up only a single LHS
+   element, instead of gobbling up the entire parse-to-date
+ - Explicitly handle ROW_NUMBER() OVER as the snowflake-operator it is
+ - Improve signatures/documentation of is_same_sql_bind / eq_sql_bind
+ - Retire script/format-sql - the utility needs more work to be truly
+   end-user convenient
+
+---

Old:

  SQL-Abstract-1.77.tar.gz

New:

  SQL-Abstract-1.78.tar.gz



Other differences:
--
++ perl-SQL-Abstract.spec ++
--- /var/tmp/diff_new_pack.Mb4uvV/_old  2014-09-17 17:26:24.0 +0200
+++ /var/tmp/diff_new_pack.Mb4uvV/_new  2014-09-17 17:26:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-SQL-Abstract
-Version:1.77
+Version:1.78
 Release:0
 %define cpan_name SQL-Abstract
 Summary:Generate SQL from Perl data structures
@@ -29,16 +29,14 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Class::Accessor::Grouped) = 0.10005
-BuildRequires:  perl(Getopt::Long::Descriptive) = 0.091
 BuildRequires:  perl(Hash::Merge) = 0.12
+BuildRequires:  perl(Moo) = 1.004002
 BuildRequires:  perl(Test::Deep) = 0.101
-BuildRequires:  perl(Test::Exception)
-BuildRequires:  perl(Test::More) = 0.92
+BuildRequires:  perl(Test::Exception) = 0.31
+BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Warn)
-Requires:   perl(Class::Accessor::Grouped) = 0.10005
-Requires:   perl(Getopt::Long::Descriptive) = 0.091
 Requires:   perl(Hash::Merge) = 0.12
+Requires:   perl(Moo) = 1.004002
 %{perl_requires}
 
 %description

++ SQL-Abstract-1.77.tar.gz - SQL-Abstract-1.78.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Abstract-1.77/Changes 
new/SQL-Abstract-1.78/Changes
--- old/SQL-Abstract-1.77/Changes   2014-01-17 02:04:54.0 +0100
+++ new/SQL-Abstract-1.78/Changes   2014-05-28 12:11:40.0 +0200
@@ -1,5 +1,14 @@
 Revision history for SQL::Abstract
 
+revision 1.78  2014-05-28
+
+- Fix parsing of binary ops to correctly take up only a single LHS
+  element, instead of gobbling up the entire parse-to-date
+- Explicitly handle ROW_NUMBER() OVER as the snowflake-operator it is
+- Improve signatures/documentation of is_same_sql_bind / eq_sql_bind
+- Retire script/format-sql - the utility needs more work to be truly
+  end-user convenient
+
 revision 1.77  2014-01-17
 
 - Reintroduce { -not = undef } column operator (regression from 1.75)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Abstract-1.77/MANIFEST 
new/SQL-Abstract-1.78/MANIFEST
--- old/SQL-Abstract-1.77/MANIFEST  2014-01-17 02:06:19.0 +0100
+++ new/SQL-Abstract-1.78/MANIFEST  2014-05-28 12:14:07.0 +0200
@@ -1,6 +1,7 @@
 Changes
 examples/console.pl
 examples/dbic-console.pl
+examples/sqla-format
 inc/Module/AutoInstall.pm
 inc/Module/Install.pm
 inc/Module/Install/AutoInstall.pm
@@ -10,7 +11,6 @@
 inc/Module/Install/Include.pm
 inc/Module/Install/Makefile.pm
 inc/Module/Install/Metadata.pm
-inc/Module/Install/Scripts.pm
 inc/Module/Install/Win32.pm
 inc/Module/Install/WriteAll.pm
 lib/DBIx/Class/Storage/Debug/PrettyPrint.pm
@@ -20,7 +20,6 @@
 Makefile.PL
 MANIFEST   This list of files
 META.yml
-script/format-sql
 t/00new.t
 t/01generate.t
 t/02where.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Abstract-1.77/META.yml 
new/SQL-Abstract-1.78/META.yml
--- old/SQL-Abstract-1.77/META.yml  2014-01-17 02:06:14.0 +0100
+++ new/SQL-Abstract-1.78/META.yml  2014-05-28 12:13:59.0 +0200
@@ -6,8 +6,8 @@
   ExtUtils::MakeMaker: 6.59
   Storable: 0
   Test::Deep: 0.101
-  Test::Exception: 0
-  Test::More: 0.92
+  Test::Exception: 0.31
+  Test::More: 0.88
   Test::Warn: 0
 

commit enlightenment-theme-openSUSE for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package enlightenment-theme-openSUSE for 
openSUSE:Factory checked in at 2014-09-17 17:26:32

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


Package is enlightenment-theme-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE/enlightenment-theme-openSUSE.changes
2014-07-24 00:28:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE.new/enlightenment-theme-openSUSE.changes
   2014-09-17 17:26:56.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 12 10:06:25 UTC 2014 - si...@simotek.net
+
+- New theme for openSUSE 13.2, old theme will soon be in oliveleaf
+  package
+  Brings in changes for elementary 1.11 as well as some e19 fixes
+
+---

Old:

  enlightenment-theme-openSUSE-20140609.tar.xz

New:

  enlightenment-theme-openSUSE-20140912.tar.xz



Other differences:
--
++ enlightenment-theme-openSUSE.spec ++
--- /var/tmp/diff_new_pack.uTZ5a4/_old  2014-09-17 17:26:58.0 +0200
+++ /var/tmp/diff_new_pack.uTZ5a4/_new  2014-09-17 17:26:58.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package e-theme-openSUSE
+# spec file for package enlightenment-theme-openSUSE
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   enlightenment-theme-openSUSE
-Version:20140609
+Version:20140912
 Release:0
 Summary:openSUSE theme for Enlightenment
 License:BSD-2-Clause
@@ -30,7 +30,7 @@
 Requires:  elementary
 Provides:   enlightenment-theme
 Provides:  enlightenment-theme-dft
-BuildRoot:  %{_tmppath}/enlightenment-theme-openSUSE-%{version}-build
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 Conflicts: otherproviders(enlightenment-theme-dft)
 
@@ -41,8 +41,8 @@
 %setup -q -n enlightenment-theme-openSUSE-%{version}
 
 %build
-./build-darkmod.sh -v
-cp enlightenment-elementary/openSUSE-e.edj ./default.edj
+./build-darkmod.sh --epkg
+cp enlightenment-elementary/enlightenment-theme-openSUSE.edj ./default.edj
 cp licenses-authors/* .
 
 %install

++ enlightenment-theme-openSUSE-20140609.tar.xz - 
enlightenment-theme-openSUSE-20140912.tar.xz ++
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE/enlightenment-theme-openSUSE-20140609.tar.xz
 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE.new/enlightenment-theme-openSUSE-20140912.tar.xz
 differ: char 25, line 1

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



commit python-matplotlib for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-matplotlib for 
openSUSE:Factory checked in at 2014-09-17 17:26:35

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


Package is python-matplotlib

Changes:

--- /work/SRC/openSUSE:Factory/python-matplotlib/python-matplotlib.changes  
2014-09-03 20:54:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-matplotlib.new/python-matplotlib.changes 
2014-09-17 17:26:59.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 10 10:52:26 UTC 2014 - toddrme2...@gmail.com
+
+- Dependency and spec file cleanups
+- Remove unneeded use-setuptools.diff
+
+---

Old:

  use-setuptools.diff



Other differences:
--
++ python-matplotlib.spec ++
--- /var/tmp/diff_new_pack.FITrZf/_old  2014-09-17 17:27:01.0 +0200
+++ /var/tmp/diff_new_pack.FITrZf/_new  2014-09-17 17:27:01.0 +0200
@@ -27,76 +27,83 @@
 Source1:matplotlib-setup.cfg
 Source2:matplotlibplugin.py
 Source3:matplotlibwidget.py
-Patch0: use-setuptools.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  agg-devel
 BuildRequires:  fdupes
 BuildRequires:  fltk-devel
-BuildRequires:  freetype2-devel
+BuildRequires:  freetype2-devel = 2.3
 BuildRequires:  gcc-c++
 BuildRequires:  ghostscript
-BuildRequires:  gtk2-devel
-BuildRequires:  libpng-devel
+BuildRequires:  libpng-devel = 1.2
+BuildRequires:  libxml2-tools
+BuildRequires:  pkg-config
 BuildRequires:  poppler-tools
-BuildRequires:  python-cairocffi
-BuildRequires:  python-gtk
-BuildRequires:  python-gtk-devel
-BuildRequires:  python-numpy-devel = 1.2.1
-BuildRequires:  python-pyparsing
+BuildRequires:  python-CXX-devel = 6.2.4
+BuildRequires:  python-Pillow
+BuildRequires:  python-dateutil = 1.1
+BuildRequires:  python-devel
+BuildRequires:  python-numpy-devel = 1.6
+BuildRequires:  python-pyparsing = 1.5.6
+BuildRequires:  python-pytz
 BuildRequires:  python-setuptools
+BuildRequires:  python-six = 1.3
+BuildRequires:  qhull-devel = 2003.1
+# needed for testing
+BuildRequires:  python-mock
+BuildRequires:  python-nose
+# cairo dependencies
+BuildRequires:  python-cairocffi
+# GTK dependencies
+BuildRequires:  gtk2-devel
+BuildRequires:  libgnome-devel
+BuildRequires:  python-gobject
+BuildRequires:  python-gobject-devel
+BuildRequires:  python-gobject2
+BuildRequires:  python-gobject2-devel
+BuildRequires:  python-gtk = 2.2.0
+BuildRequires:  python-gtk-devel = 2.2.0
+# latex dependencies
+BuildRequires:  texlive-dvipng
+BuildRequires:  texlive-latex
+BuildRequires:  texlive-sfmath
+BuildRequires:  texlive-tex
+# Qt4 dependencies
+BuildRequires:  python-pyside
+BuildRequires:  python-qt4
+BuildRequires:  python-qt4-devel
+# Qt5 dependencies
+%if 0%{?suse_version}  1310
+BuildRequires:  python-qt5
+BuildRequires:  python-qt5-devel
+%endif
+# tk dependencies
 BuildRequires:  python-tk
-BuildRequires:  python-tornado
 BuildRequires:  tcl
 BuildRequires:  tcl-devel
-BuildRequires:  texlive-latex
 BuildRequires:  tk
 BuildRequires:  tk-devel
-# needed for testing
-BuildRequires:  python-nose
-Requires:   python-numpy = 1.2.1
-Requires:   python-pyparsing
+# WebAgg dependencies
+BuildRequires:  python-tornado
+# Wx dependencies
+BuildRequires:  python-wxWidgets = 2.8
+BuildRequires:  wxWidgets-devel
+%define _use_internal_dependency_generator 0
+%define __find_requires %wx_requires
+Requires:   python-dateutil = 1.1
+Requires:   python-numpy = 1.6
+Requires:   python-pyparsing = 1.5.6
+Requires:   python-pytz
+Requires:   python-six = 1.3
 Recommends: ghostscript
 Recommends: inkscape
 Recommends: libxml2-tools
+Recommends: python-Pillow
 Recommends: poppler-tools
 Recommends: python-matplotlib-tk
 Recommends: texlive-dvipng
 Recommends: texlive-latex
 Recommends: texlive-sfmath
 Recommends: texlive-tex
-%py_requires
-%if 0%{?suse_version}  1220
-BuildRequires:  python-qt4
-BuildRequires:  python-qt4-devel
-BuildRequires:  texlive-dvipng
-BuildRequires:  texlive-sfmath
-BuildRequires:  texlive-tex
-%endif
-%if 0%{?suse_version}  1310
-BuildRequires:  python-qt5
-BuildRequires:  python-qt5-devel
-%endif
-%if 0%{?suse_version}  1220
-BuildRequires:  gnome-libs-devel
-BuildRequires:  python-wxGTK
-BuildRequires:  wxGTK-devel
-%else
-BuildRequires:  libgnome-devel
-BuildRequires:  libxml2-tools
-BuildRequires:  python-gobject
-BuildRequires:  python-gobject-cairo
-BuildRequires:  python-gobject-devel
-BuildRequires:  python-pyside
-BuildRequires:  python-wxWidgets
-BuildRequires:  wxWidgets-devel
-%define 

commit perl-Sysadm-Install for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Sysadm-Install for 
openSUSE:Factory checked in at 2014-09-17 17:26:10

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


Package is perl-Sysadm-Install

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sysadm-Install/perl-Sysadm-Install.changes  
2013-06-21 13:37:20.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Sysadm-Install.new/perl-Sysadm-Install.changes 
2014-09-17 17:26:32.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep 16 08:07:56 UTC 2014 - co...@suse.com
+
+- updated to 0.44
+(ms) replaced bin_find() implementation by File::Which
+(ms) tap() with raise_error option set now dies with stderr output, 
+ because $! isn't set on failed close().
+
+---

Old:

  Sysadm-Install-0.43.tar.gz

New:

  Sysadm-Install-0.44.tar.gz



Other differences:
--
++ perl-Sysadm-Install.spec ++
--- /var/tmp/diff_new_pack.mWxy5y/_old  2014-09-17 17:26:33.0 +0200
+++ /var/tmp/diff_new_pack.mWxy5y/_new  2014-09-17 17:26:33.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Sysadm-Install
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Sysadm-Install
-Version:0.43
+Version:0.44
 Release:0
 %define cpan_name Sysadm-Install
 Summary:Typical installation tasks for system administrators
@@ -29,16 +29,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(File::Which) = 1.09
 BuildRequires:  perl(LWP::Simple)
 BuildRequires:  perl(Log::Log4perl) = 1.28
 BuildRequires:  perl(Term::ReadKey)
-#BuildRequires: perl(Archive::Tar)
-#BuildRequires: perl(Expect)
-#BuildRequires: perl(HTTP::Request)
-#BuildRequires: perl(HTTP::Status)
-#BuildRequires: perl(Log::Log4perl::Util)
-#BuildRequires: perl(LWP::UserAgent)
-#BuildRequires: perl(Sysadm::Install)
+Requires:   perl(File::Which) = 1.09
 Requires:   perl(LWP::Simple)
 Requires:   perl(Log::Log4perl) = 1.28
 Requires:   perl(Term::ReadKey)

++ Sysadm-Install-0.43.tar.gz - Sysadm-Install-0.44.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sysadm-Install-0.43/Changes 
new/Sysadm-Install-0.44/Changes
--- old/Sysadm-Install-0.43/Changes 2013-03-17 08:23:53.0 +0100
+++ new/Sysadm-Install-0.44/Changes 2014-05-21 05:53:56.0 +0200
@@ -2,6 +2,11 @@
 Revision history for Sysadm::Install
 
 
+0.44  (2014/05/20)
+(ms) replaced bin_find() implementation by File::Which
+(ms) tap() with raise_error option set now dies with stderr output, 
+ because $! isn't set on failed close().
+
 0.43  (2013/03/16)
 (ms) Using binmode() now for slurp/blurt for compatibility with Win32
  systems.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sysadm-Install-0.43/META.json 
new/Sysadm-Install-0.44/META.json
--- old/Sysadm-Install-0.43/META.json   2013-03-19 04:59:27.0 +0100
+++ new/Sysadm-Install-0.44/META.json   2014-05-21 05:54:09.0 +0200
@@ -4,7 +4,7 @@
   Mike Schilli m...@perlmeister.com
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630,
+   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.131560,
license : [
   unknown
],
@@ -37,6 +37,7 @@
 File::Copy : 0,
 File::Path : 0,
 File::Temp : 0.16,
+File::Which : 1.09,
 LWP::Simple : 0,
 Log::Log4perl : 1.28,
 Term::ReadKey : 0
@@ -49,5 +50,5 @@
  url : http://github.com/mschilli/sysadm-install-perl;
   }
},
-   version : 0.43
+   version : 0.44
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sysadm-Install-0.43/META.yml 
new/Sysadm-Install-0.44/META.yml
--- old/Sysadm-Install-0.43/META.yml2013-03-19 04:59:26.0 +0100
+++ new/Sysadm-Install-0.44/META.yml2014-05-21 05:54:09.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630'

commit perl-Path-Class for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Path-Class for openSUSE:Factory 
checked in at 2014-09-17 17:26:09

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


Package is perl-Path-Class

Changes:

--- /work/SRC/openSUSE:Factory/perl-Path-Class/perl-Path-Class.changes  
2013-12-19 12:24:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Path-Class.new/perl-Path-Class.changes 
2014-09-17 17:26:31.0 +0200
@@ -1,0 +2,13 @@
+Tue Sep 16 08:08:00 UTC 2014 - co...@suse.com
+
+- updated to 0.35
+  - fce4b8e - Fixed a t/03-filesystem.t test error on Windows Andrew Gregory
+  - df23e17 - Add a new spew_lines() method William Stevenson
+  - 3ffef39 - Don't convert file into directory in subsumes() Dagfinn Ilmari 
Mannsåker
+  - 9a01a71 - Updated POD for copy_to and move_to methods Robert Rothenberg
+  - 210a7ef - Stringify destination for copy_to method Robert Rothenberg
+  - 9f83723 - Stringify destination for move_to method Robert Rothenberg
+  - 5e2cb26, d5c7e62 - Add Continuous Integration with Travis CI Ken Williams
+  - d372be1 - Change bugtracker to github's Ken Williams
+
+---

Old:

  Path-Class-0.33.tar.gz

New:

  Path-Class-0.35.tar.gz



Other differences:
--
++ perl-Path-Class.spec ++
--- /var/tmp/diff_new_pack.HEXofA/_old  2014-09-17 17:26:31.0 +0200
+++ /var/tmp/diff_new_pack.HEXofA/_new  2014-09-17 17:26:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Path-Class
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-Path-Class
-Version:0.33
+Version:0.35
 Release:0
 %define cpan_name Path-Class
 Summary:Cross-platform path specification manipulation
@@ -33,7 +33,6 @@
 BuildRequires:  perl(Module::Build) = 0.3601
 BuildRequires:  perl(Perl::OSType)
 BuildRequires:  perl(parent)
-
 Requires:   perl(File::Spec) = 3.26
 Requires:   perl(Perl::OSType)
 Requires:   perl(parent)
@@ -103,6 +102,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes cpanfile LICENSE README
 
 %changelog

++ Path-Class-0.33.tar.gz - Path-Class-0.35.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Class-0.33/Build.PL new/Path-Class-0.35/Build.PL
--- old/Path-Class-0.33/Build.PL2013-12-12 04:47:52.0 +0100
+++ new/Path-Class-0.35/Build.PL2014-09-15 04:32:09.0 +0200
@@ -18,7 +18,7 @@
 Ken Williams kwilliams\@cpan.org
   ],
   dist_name = Path-Class,
-  dist_version = 0.33,
+  dist_version = 0.35,
   license = perl,
   module_name = Path::Class,
   recommends = {},
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Class-0.33/Changes new/Path-Class-0.35/Changes
--- old/Path-Class-0.33/Changes 2013-12-12 04:47:52.0 +0100
+++ new/Path-Class-0.35/Changes 2014-09-15 04:32:09.0 +0200
@@ -1,5 +1,27 @@
 Revision history for Perl extension Path::Class.
 
+0.35  Sun Sep 14 21:29:07 CDT 2014
+
+ - fce4b8e - Fixed a t/03-filesystem.t test error on Windows Andrew Gregory
+
+
+0.34  Thu Aug 28 22:27:03 CDT 2014
+
+ - df23e17 - Add a new spew_lines() method William Stevenson
+
+ - 3ffef39 - Don't convert file into directory in subsumes() Dagfinn Ilmari 
Mannsåker
+
+ - 9a01a71 - Updated POD for copy_to and move_to methods Robert Rothenberg
+
+ - 210a7ef - Stringify destination for copy_to method Robert Rothenberg
+
+ - 9f83723 - Stringify destination for move_to method Robert Rothenberg
+
+ - 5e2cb26, d5c7e62 - Add Continuous Integration with Travis CI Ken Williams
+
+ - d372be1 - Change bugtracker to github's Ken Williams
+
+
 0.33  Wed Dec 11 21:30:35 CST 2013
 
  - New copy_to() and move_to() methods. [Robert Rothenberg  Ken Williams]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Class-0.33/LICENSE new/Path-Class-0.35/LICENSE
--- old/Path-Class-0.33/LICENSE 2013-12-12 04:47:52.0 +0100
+++ new/Path-Class-0.35/LICENSE 2014-09-15 04:32:09.0 +0200
@@ -1,4 +1,4 @@
-This software is copyright (c) 2013 by Ken Williams.
+This software is copyright (c) 2014 by Ken Williams.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language 

commit podofo for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package podofo for openSUSE:Factory checked 
in at 2014-09-17 17:26:38

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


Package is podofo

Changes:

--- /work/SRC/openSUSE:Factory/podofo/podofo.changes2014-07-24 
01:14:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.podofo.new/podofo.changes   2014-09-17 
17:27:03.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 15 03:23:29 UTC 2014 - crrodrig...@opensuse.org
+
+- Just use lua-devel as BuildRequires current versions 
+ support lua 5.2
+
+---



Other differences:
--
++ podofo.spec ++
--- /var/tmp/diff_new_pack.uglLGZ/_old  2014-09-17 17:27:04.0 +0200
+++ /var/tmp/diff_new_pack.uglLGZ/_new  2014-09-17 17:27:04.0 +0200
@@ -27,7 +27,6 @@
 Url:http://podofo.sourceforge.net/
 Source0:
http://downloads.sourceforge.net/podofo/%{name}-%{version}.tar.gz
 
-
 BuildRequires:  cmake = 2.5
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -39,11 +38,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
-%if 0%{?suse_version}  1210
-BuildRequires:  lua51-devel
-%else
 BuildRequires:  lua-devel
-%endif
 BuildRequires:  openssl-devel
 BuildRequires:  zlib-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -72,7 +67,6 @@
 %prep
 %setup -q
 
-
 # Remove build time references so build-compare can do its work
 echo HTML_TIMESTAMP = NO  Doxyfile
 

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



commit ha-cluster-bootstrap for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package ha-cluster-bootstrap for 
openSUSE:Factory checked in at 2014-09-17 17:26:14

Comparing /work/SRC/openSUSE:Factory/ha-cluster-bootstrap (Old)
 and  /work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new (New)


Package is ha-cluster-bootstrap

Changes:

--- 
/work/SRC/openSUSE:Factory/ha-cluster-bootstrap/ha-cluster-bootstrap.changes
2014-09-03 19:57:34.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new/ha-cluster-bootstrap.changes
   2014-09-17 17:26:37.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 08:16:23 UTC 2014 - kgronl...@suse.com
+
+- Silence grep when checking SBD config (bnc#895992)
+- Drop merged patches:
+  + Remove 0001-sbd_init_with_new_style.patch
+  + Remove 0002-clean-up-multiline-warnings.patch
+- Upstream version cs:8459115
+
+---

Old:

  0001-sbd_init_with_new_style.patch
  0002-clean-up-multiline-warnings.patch
  sleha-bootstrap-0.4+git.1408418098.8d38b0b.tar.bz2

New:

  sleha-bootstrap-0.4+git.1410854324.8459115.tar.bz2



Other differences:
--
++ ha-cluster-bootstrap.spec ++
--- /var/tmp/diff_new_pack.TlEcTN/_old  2014-09-17 17:26:38.0 +0200
+++ /var/tmp/diff_new_pack.TlEcTN/_new  2014-09-17 17:26:38.0 +0200
@@ -18,17 +18,13 @@
 
 
 Name:   ha-cluster-bootstrap
-Version:0.4+git.1408418098.8d38b0b
+Version:0.4+git.1410854324.8459115
 Release:0
 Summary:Pacemaker HA Cluster Bootstrap Tool
 License:GPL-2.0
 Group:  Productivity/Clustering/HA
 Url:https://github.com/tserong/sleha-bootstrap
 Source: sleha-bootstrap-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM: Fix ha-cluster-init to init sbd configuration with new 
style (bnc#881484)
-Patch6: 0001-sbd_init_with_new_style.patch
-# PATCH-FIX-UPSTREAM: Clean up multiline warnings (bnc#885411)
-Patch7: 0002-clean-up-multiline-warnings.patch
 
 Requires:   csync2
 Requires:   hawk
@@ -47,8 +43,6 @@
 
 %prep
 %setup -n sleha-bootstrap-%{version}
-%patch6 -p1
-%patch7 -p1
 %build
 
 %install

++ _service ++
--- /var/tmp/diff_new_pack.TlEcTN/_old  2014-09-17 17:26:38.0 +0200
+++ /var/tmp/diff_new_pack.TlEcTN/_new  2014-09-17 17:26:38.0 +0200
@@ -4,7 +4,7 @@
 param name=scmgit/param
 param name=exclude.git/param
 param name=versionformat0.4+git.%ct.%h/param
-param name=revision8d38b0b/param
+param name=revision8459115/param
   /service
 
   service name=recompress mode=disabled

++ sleha-bootstrap-0.4+git.1408418098.8d38b0b.tar.bz2 - 
sleha-bootstrap-0.4+git.1410854324.8459115.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1408418098.8d38b0b/scripts/ha-cluster-functions 
new/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-functions
--- old/sleha-bootstrap-0.4+git.1408418098.8d38b0b/scripts/ha-cluster-functions 
2014-08-19 13:58:22.0 +0200
+++ new/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-functions 
2014-09-16 10:16:03.0 +0200
@@ -184,8 +184,7 @@
invoke rcSuSEfirewall2 restart \
|| error Failed to restart firewall
else
-   warn Firewall is active - you may need to open ports:
-   warn   TCP $tcp
+   warn Firewall is active. You may need to open these TCP ports: 
$tcp
fi
 }
 
@@ -220,8 +219,7 @@
invoke rcSuSEfirewall2 restart \
|| error Failed to restart firewall
else
-   warn Firewall is active - you may need to open ports:
-   warn   UDP ${udp:-none}
+   warn Firewall is active. You may need to open these UDP ports: 
${udp:-none}
fi
 }
 
@@ -431,13 +429,22 @@
exit $rc
 }
 
+check_watchdog()
+{
+   watchdog_dev=$(cat /etc/modules-load.d/watchdog.conf 21|grep 
watchdog-device |cut -d= -f2 /dev/null 21)
+   if [ -z $watchdog_dev ]; then
+   watchdog_dev=/dev/watchdog
+   fi
+
+   wdctl $watchdog_dev /dev/null 21
+}
+
 check_prereqs()
 {
local -i warned=0
 
if ! my_hostname_resolves ; then
-   warn Hostname '$(hostname)' is unresolvable - csync2 won't 
work.
-   warn You should add an entry to /etc/hosts or configure DNS.
+   warn Hostname '$(hostname)' is unresolvable - csync2 won't 
work. Please add an entry to /etc/hosts or configure DNS.
warned=1
fi
 
@@ -451,9 +458,8 @@
warned=1
fi
 
-   if ! [ -c /dev/watchdog ] ; then
-  

commit python-networkx for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-networkx for openSUSE:Factory 
checked in at 2014-09-17 17:26:53

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


Package is python-networkx

Changes:

--- /work/SRC/openSUSE:Factory/python-networkx/python-networkx.changes  
2014-03-30 12:25:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-networkx.new/python-networkx.changes 
2014-09-17 17:27:22.0 +0200
@@ -1,0 +2,42 @@
+Mon Sep 15 14:49:41 UTC 2014 - tbecht...@suse.com
+
+- update to version 1.9:
+  * The flow package (networkx.algorithms.flow) is completely rewritten
+with backward incompatible changes. It introduces a new interface
+to flow algorithms. Existing code that uses the flow package will
+ not work unmodified with NetworkX 1.9.
+  * We added two new maximum flow algorithms (preflow_push and
+shortest_augmenting_path) and rewrote All maximum flow algorithm
+implementations (including the legacy ford_fulkerson) output now
+a residual network (i.e., a DiGraph) after computing the maximum
+flow. See maximum_flow documentation for the details on the
+conventions that NetworkX uses for defining a residual network.
+  * We removed the old max_flow and min_cut functions. The main entry
+points to flow algorithms are now the functions maximum_flow,
+maximum_flow_value, minimum_cut and minimum_cut_value, which have
+new parameters that control maximum flow computation: flow_func
+for specifying the algorithm that will do the actual computation
+(it accepts a function as argument that implements a maximum flow
+algorithm), cutoff for suggesting a maximum flow value at which the
+algorithm stops, value_only for stopping the computation as soon as
+we have the value of the flow, and residual that accepts as argument
+a residual network to be reused in repeated maximum flow computation.
+  * All flow algorithms are required to accept arguments for these parameters
+but may selectively ignored the inapplicable ones. For instance,
+preflow_push algorithm can stop after the preflow phase without computing
+a maximum flow if we only need the flow value, but both edmonds_karp and
+shortest_augmenting_path always compute a maximum flow to obtain the
+low value.
+  * The new function minimum_cut returns the cut value and a node partition
+that defines the minimum cut. The function minimum_cut_value returns
+only the value of the cut, which is what the removed min_cut function
+used to return before 1.9.
+  * The functions that implement flow algorithms (i.e., preflow_push,
+edmonds_karp, shortest_augmenting_path and ford_fulkerson) are not
+imported to the base NetworkX namespace. You have to explicitly import
+them from the flow package.
+  * We also added a capacity-scaling minimum cost flow algorithm: capacity
+scaling. It supports MultiDiGraph and disconnected networks.
+- Add python-decorator as Requires
+
+---

Old:

  networkx-1.8.1.tar.gz

New:

  networkx-1.9.tar.gz



Other differences:
--
++ python-networkx.spec ++
--- /var/tmp/diff_new_pack.rrsvD6/_old  2014-09-17 17:27:23.0 +0200
+++ /var/tmp/diff_new_pack.rrsvD6/_new  2014-09-17 17:27:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-networkx
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,12 +17,12 @@
 
 
 Name:   python-networkx
-Version:1.8.1
+Version:1.9
 Release:0
-License:BSD-3-Clause
 Summary:Python package for the creation, manipulation,
-Url:http://networkx.lanl.gov
+License:BSD-3-Clause
 Group:  Development/Languages/Python
+Url:http://networkx.lanl.gov
 Source: 
http://pypi.python.org/packages/source/n/networkx/networkx-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  python-PyYAML
@@ -33,6 +33,8 @@
 BuildRequires:  python-pygraphviz
 BuildRequires:  python-pyparsing
 BuildRequires:  python-scipy
+BuildRequires:  python-setuptools
+Requires:   python-decorator = 3.4.0
 Recommends: python-matplotlib
 Recommends: python-numpy
 Recommends: python-pydot

++ networkx-1.8.1.tar.gz - networkx-1.9.tar.gz ++
 31257 lines of diff (skipped)

-- 
To unsubscribe, e-mail: 

commit perl-Config-General for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Config-General for 
openSUSE:Factory checked in at 2014-09-17 17:26:16

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


Package is perl-Config-General

Changes:

--- /work/SRC/openSUSE:Factory/perl-Config-General/perl-Config-General.changes  
2014-06-30 21:50:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Config-General.new/perl-Config-General.changes 
2014-09-17 17:26:41.0 +0200
@@ -1,0 +2,18 @@
+Tue Sep 16 08:07:57 UTC 2014 - co...@suse.com
+
+- updated to 2.56
+ 2.54   - fixed rt.cpan.org#39814. changed the order of pre-processing
+  in _read(): 1) remove comments, 2) check for continuation,
+  3) remove empty lines.
+ 
+ 2.53- applied patch rt.cpan.org#68153, which adds a find() method to
+  Config::General::Extended.
+ 
+- fixed rt.cpan.org#79869 (in fact it has been fixed in 2.52
+  but I forgot to mention it here).
+ 
+- applied spelling fixes rt.cpan.org 87072+87080.
+ 
+- fixed rt.cpan.org#89379
+
+---

Old:

  Config-General-2.52.tar.gz

New:

  Config-General-2.56.tar.gz



Other differences:
--
++ perl-Config-General.spec ++
--- /var/tmp/diff_new_pack.tDlTqX/_old  2014-09-17 17:26:42.0 +0200
+++ /var/tmp/diff_new_pack.tDlTqX/_new  2014-09-17 17:26:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Config-General
-Version:2.52
+Version:2.56
 Release:0
 %define cpan_name Config-General
 Summary:Generic Config Module
@@ -28,10 +28,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(Config::General) = 1.18
-#BuildRequires: perl(Config::General::Extended)
-#BuildRequires: perl(Config::General::Interpolated)
-#BuildRequires: perl(Tie::IxHash)
 %{perl_requires}
 
 %description

++ Config-General-2.52.tar.gz - Config-General-2.56.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-General-2.52/Changelog 
new/Config-General-2.56/Changelog
--- old/Config-General-2.52/Changelog   2013-07-03 10:01:45.0 +0200
+++ new/Config-General-2.56/Changelog   2014-05-01 13:17:18.0 +0200
@@ -1,4 +1,18 @@
- 2.52   - applied pod patch rt.cpan.org#79603
+2.54   - fixed rt.cpan.org#39814. changed the order of pre-processing
+ in _read(): 1) remove comments, 2) check for continuation,
+ 3) remove empty lines.
+
+2.53- applied patch rt.cpan.org#68153, which adds a find() method to
+ Config::General::Extended.
+
+   - fixed rt.cpan.org#79869 (in fact it has been fixed in 2.52
+ but I forgot to mention it here).
+
+   - applied spelling fixes rt.cpan.org 87072+87080.
+
+   - fixed rt.cpan.org#89379
+
+2.52- applied pod patch rt.cpan.org#79603
 
 - fixed rt.cpan.org#80006, it tolerates now whitespaces
  after the block closing 
@@ -32,7 +46,7 @@
   parameters: -NormalizeOption, -NormalizeBlock and -NormalizeValue,
   which take a subroutine reference and change the block,
   option or value accordingly.
-
+
 - fixed rt.cpan.org#65860+76953 undefined value error.
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-General-2.52/General/Extended.pm 
new/Config-General-2.56/General/Extended.pm
--- old/Config-General-2.52/General/Extended.pm 2013-07-03 10:28:18.0 
+0200
+++ new/Config-General-2.56/General/Extended.pm 2014-04-30 14:16:54.0 
+0200
@@ -1,7 +1,7 @@
 #
 # Config::General::Extended - special Class based on Config::General
 #
-# Copyright (c) 2000-2013 Thomas Linden tlinden |AT| cpan.org.
+# Copyright (c) 2000-2014 Thomas Linden tlinden |AT| cpan.org.
 # All Rights Reserved. Std. disclaimer applies.
 # Artistic License, same as perl itself. Have fun.
 #
@@ -23,7 +23,7 @@
 use strict;
 
 
-$Config::General::Extended::VERSION = 2.06;
+$Config::General::Extended::VERSION = 2.07;
 
 
 sub new {
@@ -314,7 +314,17 @@
   return $this-{configfile};
 }
 
-
+sub find {
+  my $this = shift;
+  my $key = shift;
+  return undef unless $this-exists($key);
+  if (@_) {
+return $this-obj($key)-find(@_);
+  }
+  else {
+return $this-obj($key);
+  }
+}
 
 sub AUTOLOAD {
   #
@@ -557,12 +567,36 @@
 You can use this method in Bforeach loops as seen in an example above(obj() 
).
 
 
-=item delete ('key')
+=item delete('key')
 
 This method removes the given key and all associated data from the internal
 hash 

commit evas-generic-loaders for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package evas-generic-loaders for 
openSUSE:Factory checked in at 2014-09-17 17:26:31

Comparing /work/SRC/openSUSE:Factory/evas-generic-loaders (Old)
 and  /work/SRC/openSUSE:Factory/.evas-generic-loaders.new (New)


Package is evas-generic-loaders

Changes:

--- 
/work/SRC/openSUSE:Factory/evas-generic-loaders/evas-generic-loaders.changes
2014-07-24 00:28:23.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.evas-generic-loaders.new/evas-generic-loaders.changes
   2014-09-17 17:26:55.0 +0200
@@ -1,0 +2,12 @@
+Tue Sep 16 04:46:18 UTC 2014 - si...@simotek.net
+
+- bump to 1.11.2
+   * Improve LibreOffice binary detection
+
+---
+Sat Aug 30 06:17:15 UTC 2014 - si...@simotek.net
+
+- bump to 1.11.0 release
+  no significant changes
+
+---

Old:

  evas_generic_loaders-1.10.0.tar.bz2

New:

  evas_generic_loaders-1.11.2.tar.xz



Other differences:
--
++ evas-generic-loaders.spec ++
--- /var/tmp/diff_new_pack.eqexQ2/_old  2014-09-17 17:26:56.0 +0200
+++ /var/tmp/diff_new_pack.eqexQ2/_new  2014-09-17 17:26:56.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   evas-generic-loaders
-Version:1.10.0
+Version:1.11.2
 Release:0
 Summary:Set of generic loaders for Evas
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://enlightenment.org/
-Source: evas_generic_loaders-%{version}.tar.bz2
+Source: evas_generic_loaders-%{version}.tar.xz
 BuildRequires:  efl-devel = %version
 BuildRequires:  gcc-c++
 BuildRequires:  gstreamer-0_10-plugins-base-devel

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



commit python-xattr for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-xattr for openSUSE:Factory 
checked in at 2014-09-17 17:26:54

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


Package is python-xattr

Changes:

--- /work/SRC/openSUSE:Factory/python-xattr/python-xattr.changes
2013-09-03 22:06:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-xattr.new/python-xattr.changes   
2014-09-17 17:27:23.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 06:12:13 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.7.5:
+  * Improved error message when str/unicode is passed where bytes is
+required
+  * Improved Python 3 compatibility
+  * Added some unicode-specific tests
+
+---

Old:

  xattr-0.7.2.tar.gz

New:

  xattr-0.7.5.tar.gz



Other differences:
--
++ python-xattr.spec ++
--- /var/tmp/diff_new_pack.t8h2Ct/_old  2014-09-17 17:27:24.0 +0200
+++ /var/tmp/diff_new_pack.t8h2Ct/_new  2014-09-17 17:27:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-xattr
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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-xattr
-Version:0.7.2
+Version:0.7.5
 Release:0
 Summary:Python wrapper for extended filesystem attributes
 License:MIT

++ xattr-0.7.2.tar.gz - xattr-0.7.5.tar.gz ++
 3149 lines of diff (skipped)

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



commit lxappearance-obconf for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package lxappearance-obconf for 
openSUSE:Factory checked in at 2014-09-17 17:27:14

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


Package is lxappearance-obconf

Changes:

--- /work/SRC/openSUSE:Factory/lxappearance-obconf/lxappearance-obconf.changes  
2014-01-23 15:49:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.lxappearance-obconf.new/lxappearance-obconf.changes 
2014-09-17 17:27:45.0 +0200
@@ -2 +2,17 @@
-Sun Jan  5 11:14:54 UTC 2014 - j...@eresmas.com
+Tue Sep 16 18:04:42 UTC 2014 - t...@gmx.com
+
+- new upstream version 0.2.2
+  * Include autogen.sh into distribution
+  * Update .gitignore file - remove redudant entries
+  * Remove unused file config.rpath
+  * Fix crash in preview of theme with zero window border width
+  * Fix compilation warnings
+  * Remove autogenerated files from GIT tree
+  * Add --enable-debug option to configure script
+  * Use macro AM_MAINTAINER_MODE correct way - with ([enable])
+  * New files added from LXDE Pootle server based on templates
+  * Translation updates
+- split lang package
+
+---
+Sun Jan  5 11:14:54 UTC 2014 - t...@gmx.com

Old:

  lxappearance-obconf-0.2.1.tar.gz

New:

  lxappearance-obconf-0.2.2.tar.xz



Other differences:
--
++ lxappearance-obconf.spec ++
--- /var/tmp/diff_new_pack.b9ZY2R/_old  2014-09-17 17:27:47.0 +0200
+++ /var/tmp/diff_new_pack.b9ZY2R/_new  2014-09-17 17:27:47.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lxappearance-obconf
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,13 +17,13 @@
 
 
 Name:   lxappearance-obconf
-Version:0.2.1
+Version:0.2.2
 Release:0
 Summary:Lxappearance Plugin to Configure Openbox
 License:GPL-2.0
 Group:  System/GUI/LXDE
 Url:http://www.lxde.org/
-Source: %{name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  libtool
 BuildRequires:  pkgconfig(gtk+-2.0)
@@ -32,7 +32,9 @@
 BuildRequires:  pkgconfig(obt-3.5)
 Requires:   lxappearance
 Requires:   openbox
+Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%lang_package
 
 %description
 ObConf is a program used to configure OpenBox window manager developed
@@ -56,11 +58,14 @@
 rm %{buildroot}/%{_libdir}/lxappearance/plugins/*.{a,la}
 %find_lang %{name}
 
-%files -f %{name}.lang
+%files
 %defattr(-,root,root)
 %doc AUTHORS CHANGELOG COPYING README
 %{_libdir}/lxappearance/plugins
 %dir %{_datadir}/lxappearance/obconf
 %{_datadir}/lxappearance/obconf/obconf.glade
 
+%files lang -f %{name}.lang
+%defattr(-,root,root)
+
 %changelog

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



commit perl-CPAN-Meta for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-CPAN-Meta for openSUSE:Factory 
checked in at 2014-09-17 17:25:53

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


Package is perl-CPAN-Meta

Changes:

--- /work/SRC/openSUSE:Factory/perl-CPAN-Meta/perl-CPAN-Meta.changes
2014-05-26 14:41:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-CPAN-Meta.new/perl-CPAN-Meta.changes   
2014-09-17 17:26:13.0 +0200
@@ -1,0 +2,17 @@
+Mon Sep 15 15:44:38 UTC 2014 - co...@suse.com
+
+- updated to 2.142060
+ 
+   [ADDED]
+ 
+   - CPAN::Meta::Merge is a new class for merging two possibly overlapping
+ instances of metadata. It will accept both CPAN::Meta objects and
+ (possibly incomplete) hashrefs of metadata.
+ 
+ 2.141520  2014-05-31 23:41:13-04:00 America/New_York
+ 
+   [DOCUMENTED]
+ 
+   - Clarified use of 'file' for the 'provides' field in the Spec
+
+---

Old:

  CPAN-Meta-2.141170.tar.gz

New:

  CPAN-Meta-2.142060.tar.gz



Other differences:
--
++ perl-CPAN-Meta.spec ++
--- /var/tmp/diff_new_pack.axIlh8/_old  2014-09-17 17:26:14.0 +0200
+++ /var/tmp/diff_new_pack.axIlh8/_new  2014-09-17 17:26:14.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   perl-CPAN-Meta
-Version:2.141170
+Version:2.142060
 Release:0
 %define cpan_name CPAN-Meta
 Summary:Distribution metadata for a CPAN dist
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/CPAN-Meta/
-Source: CPAN-Meta-2.141170.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
@@ -36,17 +36,6 @@
 BuildRequires:  perl(Parse::CPAN::Meta) = 1.4414
 BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(version) = 0.88
-#BuildRequires: perl(CPAN::Meta)
-#BuildRequires: perl(CPAN::Meta::Converter)
-#BuildRequires: perl(CPAN::Meta::Feature)
-#BuildRequires: perl(CPAN::Meta::Prereqs)
-#BuildRequires: perl(CPAN::Meta::Validator)
-#BuildRequires: perl(Pod::Coverage::TrustPod)
-#BuildRequires: perl(Pod::Wordlist)
-#BuildRequires: perl(Test::CPAN::Meta)
-#BuildRequires: perl(Test::Pod) = 1.41
-#BuildRequires: perl(Test::Pod::Coverage) = 1.08
-#BuildRequires: perl(Test::Spelling) = 0.12
 Requires:   perl(CPAN::Meta::Requirements) = 2.121
 Requires:   perl(CPAN::Meta::YAML) = 0.008
 Requires:   perl(JSON::PP) = 2.27200

++ CPAN-Meta-2.141170.tar.gz - CPAN-Meta-2.142060.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Meta-2.141170/Changes 
new/CPAN-Meta-2.142060/Changes
--- old/CPAN-Meta-2.141170/Changes  2014-04-27 19:03:49.0 +0200
+++ new/CPAN-Meta-2.142060/Changes  2014-07-25 19:30:29.0 +0200
@@ -1,5 +1,19 @@
 Revision history for CPAN-Meta
 
+2.142060  2014-07-25 13:30:06-04:00 America/New_York
+
+  [ADDED]
+
+  - CPAN::Meta::Merge is a new class for merging two possibly overlapping
+instances of metadata. It will accept both CPAN::Meta objects and
+(possibly incomplete) hashrefs of metadata.
+
+2.141520  2014-05-31 23:41:13-04:00 America/New_York
+
+  [DOCUMENTED]
+
+  - Clarified use of 'file' for the 'provides' field in the Spec
+
 2.141170  2014-04-27 13:03:37-04:00 America/New_York
 
   [ADDED]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Meta-2.141170/MANIFEST 
new/CPAN-Meta-2.142060/MANIFEST
--- old/CPAN-Meta-2.141170/MANIFEST 2014-04-27 19:03:49.0 +0200
+++ new/CPAN-Meta-2.142060/MANIFEST 2014-07-25 19:30:29.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.015.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.019.
 CONTRIBUTING
 Changes
 LICENSE
@@ -19,10 +19,12 @@
 lib/CPAN/Meta/Converter.pm
 lib/CPAN/Meta/Feature.pm
 lib/CPAN/Meta/History.pm
+lib/CPAN/Meta/Merge.pm
 lib/CPAN/Meta/Prereqs.pm
 lib/CPAN/Meta/Spec.pm
 lib/CPAN/Meta/Validator.pm
 perlcritic.rc
+t/00-report-prereqs.dd
 t/00-report-prereqs.t
 t/README-data.txt
 t/converter-bad.t
@@ -78,6 +80,7 @@
 t/data-valid/META-1_1.yml
 t/data-valid/scalar-meta-spec.yml
 t/load-bad.t
+t/merge.t
 t/meta-obj.t
 t/no-index.t
 t/prereqs-finalize.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Meta-2.141170/META.json 
new/CPAN-Meta-2.142060/META.json
--- old/CPAN-Meta-2.141170/META.json

commit openbox for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package openbox for openSUSE:Factory checked 
in at 2014-09-17 17:26:06

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


Package is openbox

Changes:

--- /work/SRC/openSUSE:Factory/openbox/openbox.changes  2014-04-11 
13:41:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.openbox.new/openbox.changes 2014-09-17 
17:26:28.0 +0200
@@ -1,0 +2,10 @@
+Mon Sep 15 20:44:30 UTC 2014 - crrodrig...@opensuse.org
+
+- Cleanup BuildRequires so only exactly what is required is 
+  pulled for build, in particular avoid using metapackage 
+  xorg-x11-dev.
+- Enable verbose build.
+- Use --disable-static instead of just removing the libraries.
+- removed unused openbox-no_nb.patch patch
+
+---

Old:

  openbox-no_nb.patch



Other differences:
--
++ openbox.spec ++
--- /var/tmp/diff_new_pack.YHzcG2/_old  2014-09-17 17:26:29.0 +0200
+++ /var/tmp/diff_new_pack.YHzcG2/_new  2014-09-17 17:26:29.0 +0200
@@ -33,23 +33,30 @@
 Patch1: %name-3.5.2-return.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
-BuildRequires:  freetype2-devel
-BuildRequires:  imlib2-devel
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(freetype2)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(ice)
+BuildRequires:  pkgconfig(imlib2)
+BuildRequires:  pkgconfig(libstartup-notification-1.0)
+BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(pango)
+BuildRequires:  pkgconfig(pangoxft)
+BuildRequires:  pkgconfig(sm)
+BuildRequires:  pkgconfig(xcursor)
+BuildRequires:  pkgconfig(xext)
+BuildRequires:  pkgconfig(xft)
+BuildRequires:  pkgconfig(xinerama)
+BuildRequires:  pkgconfig(xrandr)
 %if 0%{?suse_version} = 1230
-BuildRequires:  cairo-devel
-BuildRequires:  librsvg-devel
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(librsvg-2.0)
 %endif
 # only for ownership of datadir/share/gnome-sessions/
-BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel
 BuildRequires:  gnome-session-core
 BuildRequires:  libtool
-BuildRequires:  libxml2-devel
-BuildRequires:  pango-devel
-BuildRequires:  startup-notification-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  xorg-x11
-BuildRequires:  xorg-x11-devel
 Requires:   libxslt
 Requires:   xdg-menu
 Recommends: obconf
@@ -105,15 +112,14 @@
 %build
 autoreconf -fiv
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
-%configure
+%configure --disable-static --with-pic
 %__make clean
-%__make %{?_smp_mflags}
+%__make %{?_smp_mflags} V=1
 
 %install
 %makeinstall
 # we dont want static libs
 rm $RPM_BUILD_ROOT%_libdir/*.la
-rm $RPM_BUILD_ROOT%_libdir/*.a
 # we dont want the stupid docdir
 rm -rf $RPM_BUILD_ROOT%_datadir/doc/%name
 # we dont want invalid locales


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



commit perl-strictures for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package perl-strictures for openSUSE:Factory 
checked in at 2014-09-17 17:26:10

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-03-02 07:43:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-strictures.new/perl-strictures.changes 
2014-09-17 17:26:33.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 16 08:07:55 UTC 2014 - co...@suse.com
+
+- updated to 1.005005
+  - include minimum perl version in metadata
+  - make sure meta files list extra modules as recommendations, not 
requirements
+
+---

Old:

  strictures-1.005003.tar.gz

New:

  strictures-1.005005.tar.gz



Other differences:
--
++ perl-strictures.spec ++
--- /var/tmp/diff_new_pack.dBPF8N/_old  2014-09-17 17:26:34.0 +0200
+++ /var/tmp/diff_new_pack.dBPF8N/_new  2014-09-17 17:26:34.0 +0200
@@ -17,10 +17,10 @@
 
 
 Name:   perl-strictures
-Version:1.005003
+Version:1.005005
 Release:0
 %define cpan_name strictures
-Summary:turn on strict and make all warnings fatal
+Summary:Turn on strict and make all warnings fatal
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/strictures/
@@ -29,13 +29,15 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(ExtUtils::CBuilder)
 BuildRequires:  perl(bareword::filehandles)
 BuildRequires:  perl(indirect)
 BuildRequires:  perl(multidimensional)
 Requires:   perl(bareword::filehandles)
 Requires:   perl(indirect)
 Requires:   perl(multidimensional)
+Recommends: perl(bareword::filehandles)
+Recommends: perl(indirect)
+Recommends: perl(multidimensional)
 %{perl_requires}
 
 %description

++ strictures-1.005003.tar.gz - strictures-1.005005.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/strictures-1.005003/Changes 
new/strictures-1.005005/Changes
--- old/strictures-1.005003/Changes 2014-02-12 23:01:53.0 +0100
+++ new/strictures-1.005005/Changes 2014-08-16 03:16:45.0 +0200
@@ -1,5 +1,11 @@
 Release history for strictures
 
+1.005005 - 2014-08-16
+  - include minimum perl version in metadata
+
+1.005004 - 2014-03-06
+  - make sure meta files list extra modules as recommendations, not 
requirements
+
 1.005003 - 2014-02-12
   - added support for PUREPERL_ONLY (rt#91407)
   - fixed using strictures-VERSION to query the version (rt#92965)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/strictures-1.005003/META.json 
new/strictures-1.005005/META.json
--- old/strictures-1.005003/META.json   2014-02-12 23:02:02.0 +0100
+++ new/strictures-1.005005/META.json   2014-08-16 03:16:54.0 +0200
@@ -4,7 +4,7 @@
   mst - Matt S. Trout (cpan:MSTROUT) m...@shadowcat.co.uk
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.86, CPAN::Meta::Converter 
version 2.133380,
+   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.141520,
license : [
   perl_5
],
@@ -16,28 +16,37 @@
no_index : {
   directory : [
  t,
- inc
+ xt
   ]
},
prereqs : {
   build : {
- requires : {
-ExtUtils::MakeMaker : 0
- }
+ requires : {}
   },
   configure : {
+ requires : {}
+  },
+  develop : {
  requires : {
-ExtUtils::CBuilder : 0,
-ExtUtils::MakeMaker : 0
+bareword::filehandles : 0,
+indirect : 0,
+multidimensional : 0
  }
   },
   runtime : {
- requires : {
+ recommends : {
 bareword::filehandles : 0,
 indirect : 0,
-multidimensional : 0,
+multidimensional : 0
+ },
+ requires : {
 perl : 5.006
  }
+  },
+  test : {
+ requires : {
+Test::More : 0
+ }
   }
},
release_status : stable,
@@ -46,11 +55,14 @@
  mailto : bug-strictu...@rt.cpan.org,
  web : https://rt.cpan.org/Public/Dist/Display.html?Name=strictures;
   },
+  license : [
+ http://dev.perl.org/licenses/;
+  ],
   repository : {
  type : git,
  url : 

commit dhcpcd for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package dhcpcd for openSUSE:Factory checked 
in at 2014-09-17 17:27:10

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


Package is dhcpcd

Changes:

--- /work/SRC/openSUSE:Factory/dhcpcd/dhcpcd.changes2013-01-03 
13:54:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.dhcpcd.new/dhcpcd.changes   2014-09-17 
17:27:42.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 11 15:28:07 UTC 2014 - jeng...@inai.de
+
+- Update homepage URL
+
+---



Other differences:
--
++ dhcpcd.spec ++
--- /var/tmp/diff_new_pack.Tuh3Mu/_old  2014-09-17 17:27:44.0 +0200
+++ /var/tmp/diff_new_pack.Tuh3Mu/_new  2014-09-17 17:27:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dhcpcd
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -22,7 +22,8 @@
 Summary:A DHCP Client Daemon
 License:GPL-2.0+
 Group:  Productivity/Networking/Boot/Clients
-Url:http://developer.berlios.de/projects/dhcpcd/
+Url:http://roy.marples.name/projects/dhcpcd/index
+
 #Source:   http://prdownload.berlios.de/dhcpcd/dhcpcd-3.2.3.tar.bz2
 Source: dhcpcd-%{version}.tar.bz2
 Source1:dhcpcd-1-vs-3

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



commit yast2-auth-client for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package yast2-auth-client for 
openSUSE:Factory checked in at 2014-09-17 17:26:45

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


Package is yast2-auth-client

Changes:

--- /work/SRC/openSUSE:Factory/yast2-auth-client/yast2-auth-client.changes  
2014-09-05 09:34:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new/yast2-auth-client.changes 
2014-09-17 17:27:08.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 16 12:25:58 UTC 2014 - vark...@suse.com
+
+- Fix frame description.
+- 3.1.21 
+
+---

Old:

  yast2-auth-client-3.1.20.tar.bz2

New:

  yast2-auth-client-3.1.21.tar.bz2



Other differences:
--
++ yast2-auth-client.spec ++
--- /var/tmp/diff_new_pack.iAlVqq/_old  2014-09-17 17:27:10.0 +0200
+++ /var/tmp/diff_new_pack.iAlVqq/_new  2014-09-17 17:27:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-auth-client
-Version:3.1.20
+Version:3.1.21
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-auth-client-3.1.20.tar.bz2 - yast2-auth-client-3.1.21.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.20/package/yast2-auth-client.changes 
new/yast2-auth-client-3.1.21/package/yast2-auth-client.changes
--- old/yast2-auth-client-3.1.20/package/yast2-auth-client.changes  
2014-09-04 14:13:10.0 +0200
+++ new/yast2-auth-client-3.1.21/package/yast2-auth-client.changes  
2014-09-16 17:42:11.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Sep 16 12:25:58 UTC 2014 - vark...@suse.com
+
+- Fix frame description.
+- 3.1.21 
+
+---
 Thu Sep  4 11:46:38 UTC 2014 - mvid...@suse.com
 
 - Use a more flexible rubygem requirement syntax (bnc#895069)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.20/package/yast2-auth-client.spec 
new/yast2-auth-client-3.1.21/package/yast2-auth-client.spec
--- old/yast2-auth-client-3.1.20/package/yast2-auth-client.spec 2014-09-04 
14:13:10.0 +0200
+++ new/yast2-auth-client-3.1.21/package/yast2-auth-client.spec 2014-09-16 
17:42:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-auth-client
-Version:3.1.20
+Version:3.1.21
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-auth-client-3.1.20/src/include/dialogs.rb 
new/yast2-auth-client-3.1.21/src/include/dialogs.rb
--- old/yast2-auth-client-3.1.20/src/include/dialogs.rb 2014-08-07 
17:07:42.0 +0200
+++ new/yast2-auth-client-3.1.21/src/include/dialogs.rb 2014-09-16 
17:42:11.0 +0200
@@ -509,7 +509,7 @@
   end
   # Main dialog contents
   contents = Frame(
-  _(SPAM Prevention),
+  _(Authentication Client),
   HBox(
 HWeight(
   7,

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



commit lxtask for openSUSE:Factory

2014-09-17 Thread h_root


binlOkOcFbwoY.bin
Description: Binary data


commit wireshark for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package wireshark for openSUSE:Factory 
checked in at 2014-09-17 17:26:47

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


Package is wireshark

Changes:

--- /work/SRC/openSUSE:Factory/wireshark/wireshark.changes  2014-08-18 
11:24:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.wireshark.new/wireshark.changes 2014-09-17 
17:27:12.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 15 02:24:53 UTC 2014 - crrodrig...@opensuse.org
+
+- Current versions support lua 5.2, so just use lua-devel
+  in BuildRequires.
+- Enable verbose build, rpmlint counts on that.
+
+---



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.PorO8C/_old  2014-09-17 17:27:13.0 +0200
+++ /var/tmp/diff_new_pack.PorO8C/_new  2014-09-17 17:27:13.0 +0200
@@ -64,12 +64,7 @@
 BuildRequires:  libgnutls-devel
 BuildRequires:  libpcap-devel
 BuildRequires:  libsmi-devel
-# required for Lua support in openSUSE 12.2 and later [bnc#780669]
-%if 0%{?suse_version} = 1220
-BuildRequires:  lua51-devel
-%else
 BuildRequires:  lua-devel
-%endif
 BuildRequires:  net-snmp-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel
@@ -197,7 +192,7 @@
 --with-gcrypt=yes \
 --with-plugins=%{_libdir}/%{name}/plugins/%{version}
 
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 make DESTDIR=%{buildroot} install


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



commit python-sqlalchemy-migrate for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-sqlalchemy-migrate for 
openSUSE:Factory checked in at 2014-09-17 17:26:58

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


Package is python-sqlalchemy-migrate

Changes:

--- 
/work/SRC/openSUSE:Factory/python-sqlalchemy-migrate/python-sqlalchemy-migrate.changes
  2014-05-24 07:41:13.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-sqlalchemy-migrate.new/python-sqlalchemy-migrate.changes
 2014-09-17 17:27:28.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 16 06:26:48 UTC 2014 - tbecht...@suse.com
+
+- update to version 0.9.2:
+  * SqlScript: execute multiple statements one by one
+  * Make sure we don't throw away exception on SQL script failure
+  * Pin testtools to  0.9.36
+- update Requires according to requirements.txt
+
+---

Old:

  sqlalchemy-migrate-0.9.1.tar.gz

New:

  sqlalchemy-migrate-0.9.2.tar.gz



Other differences:
--
++ python-sqlalchemy-migrate.spec ++
--- /var/tmp/diff_new_pack.ezMeho/_old  2014-09-17 17:27:29.0 +0200
+++ /var/tmp/diff_new_pack.ezMeho/_new  2014-09-17 17:27:29.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   python-sqlalchemy-migrate
-Version:0.9.1
+Version:0.9.2
 Release:0
 Summary:Database schema migration for SQLAlchemy
 License:MIT
@@ -36,9 +36,12 @@
 BuildRequires:  python-decorator
 #BuildRequires:  python-pysqlite
 #BuildRequires:  python-pytz
-Requires:   python-SQLAlchemy = 0.6
+Requires:   python-SQLAlchemy = 0.7.8
+Requires:   python-Tempita = 0.4
 Requires:   python-Tempita = 0.4
 Requires:   python-decorator
+Requires:   python-six = 1.4.1
+Requires:   python-sqlparse
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}

++ sqlalchemy-migrate-0.9.1.tar.gz - sqlalchemy-migrate-0.9.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlalchemy-migrate-0.9.1/AUTHORS 
new/sqlalchemy-migrate-0.9.2/AUTHORS
--- old/sqlalchemy-migrate-0.9.1/AUTHORS2014-05-06 16:40:25.0 
+0200
+++ new/sqlalchemy-migrate-0.9.2/AUTHORS2014-09-11 18:42:29.0 
+0200
@@ -1,5 +1,43 @@
-
+Alex Favaro alexfav...@gmail.com
+Bob Farrell robertanthonyfarr...@gmail.com
+Chris Withers ch...@simplistix.co.uk
+Cyril Roelandt cyril.roela...@enovance.com
+Dan Prince dpri...@redhat.com
+David Ripton drip...@redhat.com
+Domen Kožar do...@dev.si
+Dustin J. Mitchell dus...@mozilla.com
+Eric Harney ehar...@redhat.com
+Gabriel g2p.code+s...@gmail.com
+Ihar Hrachyshka ihrac...@redhat.com
+Jan Dittberner jan.dittber...@gmail.com
+Jan Dittberner jan.dittber...@googlemail.com
+Jan Dittberner j...@dittberner.info
+Jason Michalski arm...@armooo.net
+Josip Delic delij...@googlemail.com
+Matt Riedemann mrie...@us.ibm.com
+Monty Taylor mord...@inaugust.com
+Pete Keen p...@bugsplat.info
+Pádraig Brady p...@draigbrady.com
 Pádraig Brady pbr...@redhat.com
 Rahul Priyadarshi rahul.priyadar...@in.ibm.com
+Rick Copeland rick...@usa.net
+Roman Podolyaka rpodoly...@mirantis.com
+Sascha Peilicke sasc...@gmx.de
+Sascha Peilicke speili...@suse.com
+Sean Dague sean.da...@samsung.com
 Sheng Bo Hou sb...@cn.ibm.com
+Thomas Goirand tho...@goirand.fr
 Thuy Christenson t...@us.ibm.com
+al.ya...@gmail.com unknown
+asuffi...@gmail.com unknown
+ches.martin unknown
+christian.simms unknown
+chrisw unknown
+emil.kroymann unknown
+hud...@fubarite.fubar.si unknown
+iElectric unknown
+jan.dittberner unknown
+mark...@gmail.com unknown
+percious17 unknown
+r...@fubarite.fubar.si unknown
+wyue...@gmail.com unknown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlalchemy-migrate-0.9.1/ChangeLog 
new/sqlalchemy-migrate-0.9.2/ChangeLog
--- old/sqlalchemy-migrate-0.9.1/ChangeLog  2014-05-06 16:40:25.0 
+0200
+++ new/sqlalchemy-migrate-0.9.2/ChangeLog  2014-09-11 18:42:29.0 
+0200
@@ -1,6 +1,13 @@
 CHANGES
 ===
 
+0.9.2
+-
+
+* SqlScript: execute multiple statements one by one
+* Make sure we don't throw away exception on SQL script failure
+* Pin testtools to  0.9.36
+
 0.9.1
 -
 
@@ -19,6 +26,7 @@
 * Conditionally import ibmdb2/ibm_db_sa
 * migrate needs subunit = 0.0.18
 * UniqueConstraint named and escaped twice
+* Fix 3 files with Windows line endings to Unix line endings
 * Eradicate trailing whitespace
 * Convert tabs to spaces 

commit elementary for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package elementary for openSUSE:Factory 
checked in at 2014-09-17 17:26:30

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


Package is elementary

Changes:

--- /work/SRC/openSUSE:Factory/elementary/elementary.changes2014-07-24 
06:58:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.elementary.new/elementary.changes   
2014-09-17 17:26:53.0 +0200
@@ -1,0 +2,16 @@
+Tue Sep 16 04:45:08 UTC 2014 - si...@simotek.net
+
+- Update to 1.11.2 bugfix release
+   * label: Fix size calculation for wrapped label
+   * elm examples - missing -lm link - fix
+   * elm_map: the widget use efreet cache home to save image files to,
+so efreet should be initialized.
+
+---
+Fri Aug 29 13:37:12 UTC 2014 - si...@simotek.net
+
+- Update to 1.11.1 - No major packaging changes
+  * No major new upstream features according to release notes
+  * Many bug fixes and coverty issues fixed
+  * eo / eolian fixes
+---

Old:

  elementary-1.10.2.tar.bz2

New:

  elementary-1.11.2.tar.xz



Other differences:
--
++ elementary.spec ++
--- /var/tmp/diff_new_pack.GM0TkP/_old  2014-09-17 17:26:55.0 +0200
+++ /var/tmp/diff_new_pack.GM0TkP/_new  2014-09-17 17:26:55.0 +0200
@@ -19,21 +19,24 @@
 %define build_doc 0%{?mandriva_version} == 20101 || 0%{?centos_version} == 6
 
 Name:   elementary
-Version:1.10.2
+Version:1.11.2
 Release:0
 Summary:The widget set for enlightenment
 License:LGPL-2.1
 Group:  System/Libraries
 Url:http://enlightenment.org/
-Source: %{name}-%{version}.tar.bz2
-BuildRequires:  ImageMagick
+Source: %{name}-%{version}.tar.xz
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  doxygen
 
 %if 0%{?suse_version}
 BuildRequires:  fdupes
 %endif
 BuildRequires:  gettext-devel
+BuildRequires:  ImageMagick
 BuildRequires:  libtool
+BuildRequires:  lua-devel
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(ecore)
 BuildRequires:  pkgconfig(ecore-con)
@@ -80,6 +83,8 @@
 Requires:   %{name} = %{version}
 Requires:   gettext-devel
 Requires:   libelementary1 = %{version}
+Requires:   lua-devel
+Requires:   xorg-x11-devel
 Requires:   pkgconfig
 Requires:   pkgconfig(ecore)
 Requires:   pkgconfig(ecore-con)
@@ -174,6 +179,7 @@
 
 mkdir -p  %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/
 mv %{buildroot}%{_datadir}/icons/elementary.png  
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/
+
 find %{buildroot}%{_libdir} -name '*.la' -exec rm -v {} +
 %find_lang %{name}
 %if 0%{?suse_version}
@@ -200,7 +206,6 @@
 %exclude %{_datadir}/elementary/themes/*
 %{_datadir}/icons/hicolor/
 %{_datadir}/applications/elementary*
-%{_datadir}/eolian
 %{_libdir}/edje
 %{_libdir}/elementary
 
@@ -214,6 +219,7 @@
 %{_libdir}/pkgconfig/elementary.pc
 %{_includedir}/elementary-1/
 %{_libdir}/cmake
+%{_datadir}/eolian/
 
 %files -n enlightenment-theme-upstream
 %defattr(-, root, root)

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



  1   2   3   >