commit grub2 for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2015-08-28 08:25:56

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


Package is grub2

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2015-08-05 
06:49:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2015-08-28 
08:26:00.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug 18 09:53:54 UTC 2015 - mch...@suse.com
+
+- add systemd-sleep-plugin subpackage (bsc#941758) 
+- evaluate the menu entry's title string by printf 
+  * modified grub2-once
+  * added grub2-systemd-sleep.sh
+
+---

New:

  grub2-systemd-sleep.sh



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.PHNEig/_old  2015-08-28 08:26:02.0 +0200
+++ /var/tmp/diff_new_pack.PHNEig/_new  2015-08-28 08:26:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package grub2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -147,6 +147,8 @@
 Source14:   80_suse_btrfs_snapshot
 Source15:   grub2-once.service
 Source16:   grub2-xen.cfg
+# required hook for systemd-sleep (bsc#941758)
+Source17:   grub2-systemd-sleep.sh
 Source1000: PATCH_POLICY
 Patch1: rename-grub-info-file-to-grub2.patch
 Patch2: grub2-linux.patch
@@ -386,6 +388,21 @@
 %description snapper-plugin
 Grub2's snapper plugin for advanced btrfs snapshot boot menu management
 
+%if 0%{?has_systemd:1}
+%package systemd-sleep-plugin
+
+Summary:Grub2's systemd-sleep plugin
+Group:  System/Fhs
+Requires:   grub2
+Requires:   util-linux
+Supplements:packageand(systemd:grub2)
+BuildArch:  noarch
+
+%description systemd-sleep-plugin
+Grub2's systemd-sleep plugin for directly booting hibernated kernel image in
+swap partition while in resuming
+%endif
+
 %prep
 # We create (if we build for efi) two copies of the sources in the Builddir
 %setup -q -n grub-%{version} -a 5
@@ -705,6 +722,7 @@
 install -m 755 -D %{SOURCE14} 
$RPM_BUILD_ROOT%{_sysconfdir}/grub.d/80_suse_btrfs_snapshot
 %if 0%{?has_systemd:1}
 install -m 644 -D %{SOURCE15} $RPM_BUILD_ROOT%{_unitdir}/grub2-once.service
+install -m 755 -D %{SOURCE17} 
$RPM_BUILD_ROOT%{_libdir}/systemd/system-sleep/grub2.sleep
 %endif
 
 %ifarch ppc ppc64 ppc64le
@@ -1059,4 +1077,11 @@
 %{_libdir}/%{name}/%{grubxenarch}/*
 %endif
 
+%if 0%{?has_systemd:1}
+%files systemd-sleep-plugin
+%defattr(-,root,root,-)
+%dir %{_libdir}/systemd/system-sleep
+%{_libdir}/systemd/system-sleep/grub2.sleep
+%endif
+
 %changelog

++ grub2-once ++
--- /var/tmp/diff_new_pack.PHNEig/_old  2015-08-28 08:26:02.0 +0200
+++ /var/tmp/diff_new_pack.PHNEig/_new  2015-08-28 08:26:02.0 +0200
@@ -15,12 +15,12 @@
 sub parse_menuentry {
 
 my ($parent, $menu) = @_;
-my @m = $menu =~ /(submenu|menuentry) \s+ '([^']*)' .*? ( \{ (?: [^{}]* | 
(?3))* \} )/sxg;
+my @m = $menu =~ /(submenu|menuentry) \s+ (.*?) ( \{ (?: [^{}]* | (?3))* 
\} )/sxg;
 
 for (my $i = 0; $i = $#m; $i += 3) {
 
 my $type  = $m[$i];
-my $title = $m[$i+1];
+my $title = `printf %s\n $m[$i+1] | head -1 | tr -d '\n'`;
 my $data  = $m[$i+2];
 my $name = ($parent) ? $parent$title : $title;
 

++ grub2-systemd-sleep.sh ++
#!/bin/bash
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.

set -e

GRUB_ONCE=/usr/sbin/grub2-once
GRUB_ENV=/boot/grub2/grubenv
GRUB_EDITENV=/usr/bin/grub2-editenv
GRUB_CONF=/boot/grub2/grub.cfg
BLKID=/usr/sbin/blkid

error_quit()
{
echo $1 2
exit 1
}

check-system()
{
[ -x ${GRUB_ONCE} ] || error_quit ERROR: cannot find or execute 
${GRUB_EDITENV}  
[ -x ${GRUB_EDITENV} ] || error_quit ERROR: cannot find or execute 
${GRUB_EDITENV}
[ -x ${BLKID} ] || error_quit ERROR: cannot find or execute ${BLKID}
[ -r ${GRUB_CONF} ] || error_quit ERROR: cannot find or read 
${GRUB_CONF}
}

#
# gets a list of available kernels from /boot/grub2/grub.cfg
# kernels are in the array $KERNELS
get-kernels()
{
local I DUMMY MNT ROOTDEV
declare -i I=0

# we need the root partition later to decide if this is the kernel to 
select
while read ROOTDEV MNT DUMMY; do
[ $ROOTDEV = rootfs ]  continue # not what we are searching 
for
if [ $MNT 

commit perl-Hash-Util-FieldHash-Compat for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Hash-Util-FieldHash-Compat for 
openSUSE:Factory checked in at 2015-08-28 08:26:24

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


Package is perl-Hash-Util-FieldHash-Compat

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Hash-Util-FieldHash-Compat/perl-Hash-Util-FieldHash-Compat.changes
  2015-04-15 16:24:03.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Hash-Util-FieldHash-Compat.new/perl-Hash-Util-FieldHash-Compat.changes
 2015-08-28 08:26:26.0 +0200
@@ -1,0 +2,9 @@
+Sun Aug 23 08:53:46 UTC 2015 - co...@suse.com
+
+- updated to 0.09
+   see /usr/share/doc/packages/perl-Hash-Util-FieldHash-Compat/Changes
+
+  0.09  2015-08-16 05:34:14Z
+  - update some distribution tooling
+
+---

Old:

  Hash-Util-FieldHash-Compat-0.08.tar.gz

New:

  Hash-Util-FieldHash-Compat-0.09.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Hash-Util-FieldHash-Compat.spec ++
--- /var/tmp/diff_new_pack.h3yqKJ/_old  2015-08-28 08:26:26.0 +0200
+++ /var/tmp/diff_new_pack.h3yqKJ/_new  2015-08-28 08:26:27.0 +0200
@@ -17,20 +17,24 @@
 
 
 Name:   perl-Hash-Util-FieldHash-Compat
-Version:0.08
+Version:0.09
 Release:0
 %define cpan_name Hash-Util-FieldHash-Compat
 Summary:Use Hash::Util::FieldHash or ties, depending on availability
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Hash-Util-FieldHash-Compat/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CPAN::Meta::Requirements) = 2.120620
+BuildRequires:  perl(Module::Metadata)
+BuildRequires:  perl(Tie::RefHash::Weak) = 0.08
 BuildRequires:  perl(parent)
-BuildRequires:  perl(version)
+Requires:   perl(Tie::RefHash::Weak) = 0.08
 Requires:   perl(parent)
 %{perl_requires}
 
@@ -62,6 +66,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ Hash-Util-FieldHash-Compat-0.08.tar.gz - 
Hash-Util-FieldHash-Compat-0.09.tar.gz ++
 3312 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e s,hunspell-X,$hunspell, t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver  make test
#ignore_requires: Bizarre::Module



commit kst for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package kst for openSUSE:Factory checked in 
at 2015-08-28 08:26:31

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


Package is kst

Changes:

--- /work/SRC/openSUSE:Factory/kst/kst.changes  2014-07-31 21:50:29.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kst.new/kst.changes 2015-08-28 
08:26:32.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 24 09:46:34 UTC 2015 - toddrme2...@gmail.com
+
+- Require correct libnetcdf version.
+
+---



Other differences:
--
++ kst.spec ++
--- /var/tmp/diff_new_pack.VHqYSp/_old  2015-08-28 08:26:33.0 +0200
+++ /var/tmp/diff_new_pack.VHqYSp/_new  2015-08-28 08:26:33.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kst
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Christian Trippe ctri...@opensuse.org
 #
 # All modifications and additions to the file contributed by third parties
@@ -36,8 +36,10 @@
 BuildRequires:  libnetcdf_c++-devel
 BuildRequires:  libqt4-devel
 BuildRequires:  netcdf-devel
+BuildRequires:  libnetcdf
 BuildRequires:  readline-devel
 BuildRequires:  update-desktop-files
+Requires:   libnetcdf
 Obsoletes:  python-kst  %{version}
 
 %description




commit perl-MooseX-ConfigFromFile for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-ConfigFromFile for 
openSUSE:Factory checked in at 2015-08-28 08:26:18

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


Package is perl-MooseX-ConfigFromFile

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-ConfigFromFile/perl-MooseX-ConfigFromFile.changes
2013-12-12 11:21:08.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-ConfigFromFile.new/perl-MooseX-ConfigFromFile.changes
   2015-08-28 08:26:19.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 19 09:17:02 UTC 2015 - co...@suse.com
+
+- updated to 0.14
+   see /usr/share/doc/packages/perl-MooseX-ConfigFromFile/Changes
+
+  0.14  2015-08-16 03:11:52Z
+- update some distribution tooling
+
+---

Old:

  MooseX-ConfigFromFile-0.13.tar.gz

New:

  MooseX-ConfigFromFile-0.14.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-MooseX-ConfigFromFile.spec ++
--- /var/tmp/diff_new_pack.mTVYFI/_old  2015-08-28 08:26:19.0 +0200
+++ /var/tmp/diff_new_pack.mTVYFI/_new  2015-08-28 08:26:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-ConfigFromFile
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,37 +17,30 @@
 
 
 Name:   perl-MooseX-ConfigFromFile
-Version:0.13
+Version:0.14
 Release:0
 %define cpan_name MooseX-ConfigFromFile
 Summary:An abstract Moose role for setting attributes from a configfile
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-ConfigFromFile/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Build::Tiny) = 0.030
+BuildRequires:  perl(Module::Build::Tiny) = 0.007
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(MooseX::Types::Moose)
 BuildRequires:  perl(MooseX::Types::Path::Tiny) = 0.005
 BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(Test::Without::Module)
 BuildRequires:  perl(namespace::autoclean)
-#BuildRequires: perl(A)
-#BuildRequires: perl(Generic)
-#BuildRequires: perl(GenericRole)
-#BuildRequires: perl(MooseX::ConfigFromFile)
-#BuildRequires: perl(MooseX::Getopt)
-#BuildRequires: perl(Pod::Wordlist)
-#BuildRequires: perl(Test::Kwalitee)
-#BuildRequires: perl(Test::NoTabs)
-#BuildRequires: perl(Test::Spelling) = 0.12
 Requires:   perl(Moose::Role)
 Requires:   perl(MooseX::Types::Moose)
 Requires:   perl(MooseX::Types::Path::Tiny) = 0.005
@@ -87,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
 
 %changelog

++ MooseX-ConfigFromFile-0.13.tar.gz - MooseX-ConfigFromFile-0.14.tar.gz 
++
 4254 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e s,hunspell-X,$hunspell, t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver  make test
#ignore_requires: Bizarre::Module



commit apache2-mod_wsgi for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package apache2-mod_wsgi for 
openSUSE:Factory checked in at 2015-08-28 08:26:03

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


Package is apache2-mod_wsgi

Changes:

New Changes file:

--- /dev/null   2015-08-24 19:43:32.284261900 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache2-mod_wsgi.new/apache2-mod_wsgi-python3.changes
   2015-08-28 08:26:04.0 +0200
@@ -0,0 +1,154 @@
+---
+Sat Aug 15 17:56:30 CEST 2015 - m...@suse.de
+
+- update to 4.4.8
+- seperate package for python3 to fix module loading errors
+- conflict with mod_wsgi
+
+---
+Thu Aug  6 13:07:16 UTC 2015 - m...@suse.com
+
+- Build subpackage with mod_wsgi_python3 (bsc#939717)
+
+---
+Thu Jul 16 07:22:02 UTC 2015 - pgaj...@suse.com
+
+- Requries: %{apache_suse_maintenance_mmn}
+  This will pull this module to the update (in released distribution) 
+  when apache maintainer thinks it is good (due api/abi changes).
+
+---
+Fri Jan 30 18:12:20 UTC 2015 - rjsch...@suse.com
+
+- Fix build failure on SLE 12 (Apache 2.4.10)
+  + add wsgi_fixVersionCheck.patch
+  + build failed due to improper version check
+
+---
+Thu Jan 29 23:52:14 UTC 2015 - rjsch...@suse.com
+
+- Update to version 4.4.6
+  - Upstream release notes:
++ http://modwsgi.readthedocs.org/en/latest/release-notes/version-4.4.6.html
++ http://modwsgi.readthedocs.org/en/latest/release-notes/version-4.4.5.html
++ http://modwsgi.readthedocs.org/en/latest/release-notes/version-4.4.4.html
+.
+  - As of version 4.2.7 mod_wsgi is effected by
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758035
+
+---
+Mon Nov  3 09:53:08 UTC 2014 - pgaj...@suse.com
+
+- call spec-cleaner
+- use apache rpm macros 
+
+---
+Thu Jul 10 08:43:08 CEST 2014 - m...@suse.de
+
+- change URL to new location
+
+---
+Wed Jul  9 14:13:29 CEST 2014 - m...@suse.de
+
+- provide short module name
+
+---
+Wed Jul  9 11:34:41 CEST 2014 - m...@suse.de
+
+- Update to version 4.2.5
+  - remove mod_wsgi-3.4-connsbh.patch - included in upstream version
+  - remove mod_wsgi-setuid-patch.diff - included in upstream version
+  - No longer support the use of mod_python in conjunction with 
+mod_wsgi
+  - Adding a lot of new configuration option
+  - fix off-by-one error in setgroups (bnc#883229)
+
+---
+Sat May 24 13:49:13 UTC 2014 - m...@suse.com
+
+- fix Local privilege escalation (bnc#878550)
+  CVE-2014-0240
+
+---
+Mon Apr 28 20:16:57 UTC 2014 - adaugher...@tamu.edu
+
+- Fix module name sent to a2enmod/a2dismod and fix/cleanup
+  post/postun scripts.
+
+---
+Sat Nov 30 12:28:43 UTC 2013 - ag...@suse.com
+
+- Add patch mod_wsgi-3.4-connsbh.patch to fix segmentation faults
+  with apache 2.4 (https://bugzilla.redhat.com/show_bug.cgi?id=831701)
+
+---
+Wed Jan 30 14:39:38 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.4:
+  + New support for Apache 2.4
+  + Support for Python 3.2
+  + Is now guaranteed that mod_ssl access handler is run before
+that for mod_wsgi so that any per request variables setup by
+mod_ssl are available in the mod_wsgi access handler as
+implemented by WSGIAccessScript directive.
+  + Added 'python-home' option to WSGIDaemonProcess.
+  + Added 'lang' and 'locale' options to WSGIDaemonProcess.
+  + Split combined WWW-Authenticate header returned from daemon
+process back into separate headers.
+- Introduce build compatibility with apache 2.4: apxs2 was moved
+  from %{_sbindir} to %{_bindir}
+
+---
+Fri Nov 16 08:06:08 UTC 2012 - sasc...@suse.de
+
+- Require apache2, a module makes little sense without
+
+---
+Fri Dec 16 12:59:15 UTC 2011 - ch...@computersalat.de
+
+- add post/postun section
+  * enable module after install (a2enmod)
+  * disable module after deinstall (a2enmod -d)
+- fix License as required by 

commit perl-Mojolicious for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Mojolicious for 
openSUSE:Factory checked in at 2015-08-28 08:26:22

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


Package is perl-Mojolicious

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojolicious/perl-Mojolicious.changes
2015-08-01 11:34:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojolicious.new/perl-Mojolicious.changes   
2015-08-28 08:26:23.0 +0200
@@ -1,0 +2,25 @@
+Sun Aug 23 09:02:18 UTC 2015 - co...@suse.com
+
+- updated to 6.17
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  6.17  2015-08-21
+- Improved slurp method in Mojo::Asset::File to only use one file 
descriptor.
+  
+  6.16  2015-08-19
+- Improved check_box, radio_button and select_field tag helpers to handle 
the
+  attributes checked and selected correctly.
+- Improved performance of slurp function in Mojo::Util slightly.
+
+---
+Wed Aug 19 09:15:05 UTC 2015 - co...@suse.com
+
+- updated to 6.15
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  6.15  2015-08-13
+- Removed deprecated build_body and build_headers methods from 
Mojo::Content.
+- Improved Mojo::Transaction::HTTP performance slightly.
+- Fixed warnings in Mojo::DOM.
+
+---

Old:

  Mojolicious-6.14.tar.gz

New:

  Mojolicious-6.17.tar.gz



Other differences:
--
++ perl-Mojolicious.spec ++
--- /var/tmp/diff_new_pack.NXLkSC/_old  2015-08-28 08:26:24.0 +0200
+++ /var/tmp/diff_new_pack.NXLkSC/_new  2015-08-28 08:26:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious
-Version:6.14
+Version:6.17
 Release:0
 %define cpan_name Mojolicious
 Summary:Real-time web framework

++ Mojolicious-6.14.tar.gz - Mojolicious-6.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-6.14/Changes new/Mojolicious-6.17/Changes
--- old/Mojolicious-6.14/Changes2015-07-12 17:31:04.0 +0200
+++ new/Mojolicious-6.17/Changes2015-08-21 18:49:30.0 +0200
@@ -1,4 +1,17 @@
 
+6.17  2015-08-21
+  - Improved slurp method in Mojo::Asset::File to only use one file descriptor.
+
+6.16  2015-08-19
+  - Improved check_box, radio_button and select_field tag helpers to handle the
+attributes checked and selected correctly.
+  - Improved performance of slurp function in Mojo::Util slightly.
+
+6.15  2015-08-13
+  - Removed deprecated build_body and build_headers methods from Mojo::Content.
+  - Improved Mojo::Transaction::HTTP performance slightly.
+  - Fixed warnings in Mojo::DOM.
+
 6.14  2015-07-12
   - Improved app generator command not to create a log directory.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-6.14/META.json 
new/Mojolicious-6.17/META.json
--- old/Mojolicious-6.14/META.json  2015-07-14 05:25:00.0 +0200
+++ new/Mojolicious-6.17/META.json  2015-08-22 21:37:44.0 +0200
@@ -55,6 +55,6 @@
   },
   x_IRC : irc://irc.perl.org/#mojo
},
-   version : 6.14,
+   version : 6.17,
x_serialization_backend : JSON::PP version 2.27300
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-6.14/META.yml 
new/Mojolicious-6.17/META.yml
--- old/Mojolicious-6.14/META.yml   2015-07-14 05:24:59.0 +0200
+++ new/Mojolicious-6.17/META.yml   2015-08-22 21:37:44.0 +0200
@@ -30,5 +30,5 @@
   homepage: http://mojolicio.us
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo.git
-version: '6.14'
+version: '6.17'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-6.14/examples/microhttpd.pl 
new/Mojolicious-6.17/examples/microhttpd.pl
--- old/Mojolicious-6.14/examples/microhttpd.pl 2015-03-31 19:49:57.0 
+0200
+++ new/Mojolicious-6.17/examples/microhttpd.pl 2015-08-13 03:31:46.0 
+0200
@@ -18,8 +18,8 @@
 
   # Write a minimal HTTP response
   # (the Hello World! message has been optimized away!)
-  $stream-write(HTTP/1.1 200 OK\x0d\x0aContent-Length: 0\x0d\x0a
-  . Connection: keep-alive\x0d\x0a\x0d\x0a);
+  $stream-write(
+HTTP/1.1 200 OK\x0d\x0aContent-Length: 0\x0d\x0a\x0d\x0a);
 }
   }
 );
diff -urN '--exclude=CVS' 

commit kdevelop4 for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-08-28 08:26:37

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


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-08-23 
17:41:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-08-28 
08:26:38.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 26 09:42:43 UTC 2015 - wba...@tmo.at
+
+- Remove requirement on kate4-parts to make the package installable
+  on 13.1 and 13.2 again. kate4-parts is the only provider of
+  libktexteditor in Tumbleweed anyway, so the Requires: libktexteditor
+  should be sufficient. (boo#943213)
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.G6Gejd/_old  2015-08-28 08:26:38.0 +0200
+++ /var/tmp/diff_new_pack.G6Gejd/_new  2015-08-28 08:26:38.0 +0200
@@ -38,7 +38,6 @@
 Requires:   %{name}-lang = %{version}
 Requires:   kdevelop4-cpp-parser
 Requires:   libktexteditor
-Requires:   kate4-parts
 # The kdevelop c++ parser is better for the moment
 Recommends: kdevelop4-plugin-cppsupport
 Recommends: cmake




commit perl-Math-PlanePath for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Math-PlanePath for 
openSUSE:Factory checked in at 2015-08-28 08:26:08

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


Package is perl-Math-PlanePath

Changes:

--- /work/SRC/openSUSE:Factory/perl-Math-PlanePath/perl-Math-PlanePath.changes  
2015-05-15 07:44:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Math-PlanePath.new/perl-Math-PlanePath.changes 
2015-08-28 08:26:10.0 +0200
@@ -1,0 +2,10 @@
+Sun Aug 16 16:29:46 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- updated to 120
+  see /usr/share/doc/packages/perl-Math-PlanePath/Changes
+  Version 120, July 2015
+- new HilbertSides
+- PlanePathTurn new turn_type Straight
+- version changed required for ppc64le architecture build.
+
+---

Old:

  Math-PlanePath-119.tar.gz

New:

  Math-PlanePath-120.tar.gz



Other differences:
--
++ perl-Math-PlanePath.spec ++
--- /var/tmp/diff_new_pack.svCT4d/_old  2015-08-28 08:26:11.0 +0200
+++ /var/tmp/diff_new_pack.svCT4d/_new  2015-08-28 08:26:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Math-PlanePath
-Version:119
+Version:120
 Release:0
 #Upstream: GPL-1.0+
 %define cpan_name Math-PlanePath

++ Math-PlanePath-119.tar.gz - Math-PlanePath-120.tar.gz ++
 14582 lines of diff (skipped)




commit obs-service-set_version for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package obs-service-set_version for 
openSUSE:Factory checked in at 2015-08-28 08:26:33

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
  2015-08-05 06:52:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-set_version.new/obs-service-set_version.changes
 2015-08-28 08:26:34.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 19 09:26:48 UTC 2015 - adr...@suse.de
+
+- Update to version 0.5.2:
+  + - make test suite happy
+
+---
+Mon Aug 17 15:14:11 UTC 2015 - adr...@suse.de
+
+- Update to version 0.5.2:
+  + fix it ... it only worked with disabledrun mode by luck
+
+---

Old:

  obs-service-set_version-0.5.1.tar.gz

New:

  obs-service-set_version-0.5.2.tar.gz



Other differences:
--
++ obs-service-set_version.spec ++
--- /var/tmp/diff_new_pack.T6VdmP/_old  2015-08-28 08:26:34.0 +0200
+++ /var/tmp/diff_new_pack.T6VdmP/_new  2015-08-28 08:26:34.0 +0200
@@ -19,7 +19,7 @@
 %define service set_version
 
 Name:   obs-service-%{service}
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:An OBS source service: Update spec file version
 License:GPL-2.0+

++ _servicedata ++
--- /var/tmp/diff_new_pack.T6VdmP/_old  2015-08-28 08:26:34.0 +0200
+++ /var/tmp/diff_new_pack.T6VdmP/_new  2015-08-28 08:26:34.0 +0200
@@ -1,5 +1,5 @@
 servicedata
   service name=tar_scm
 param 
name=urlg...@github.com:openSUSE/obs-service-set_version.git/param
-  param 
name=changesrevisionc8e7ae6db4619249d226b3cad8151471da6b6de0/param/service
+  param 
name=changesrevisione5b43d3e1562c436fc017536844b93ffbf6193ee/param/service
 /servicedata
\ No newline at end of file

++ debian.dsc ++
--- /var/tmp/diff_new_pack.T6VdmP/_old  2015-08-28 08:26:34.0 +0200
+++ /var/tmp/diff_new_pack.T6VdmP/_new  2015-08-28 08:26:34.0 +0200
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: obs-service-set-version
-Version: 0.5.1
+Version: 0.5.2
 Binary: obs-service-set-version
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: all

++ obs-service-set_version-0.5.1.tar.gz - 
obs-service-set_version-0.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-service-set_version-0.5.1/set_version 
new/obs-service-set_version-0.5.2/set_version
--- old/obs-service-set_version-0.5.1/set_version   2015-07-28 
08:17:48.0 +0200
+++ new/obs-service-set_version-0.5.2/set_version   2015-08-19 
11:26:48.0 +0200
@@ -33,6 +33,7 @@
 HAS_PACKAGING = True
 
 
+outdir = None
 suffixes = ('tar', 'tar.gz', 'tgz', 'tar.bz2', 'tbz2', 'tar.xz', 'zip')
 suffixes_re = |.join(map(lambda x: re.escape(x), suffixes))
 
@@ -146,9 +147,7 @@
 
 def _add_or_replace_define(filename, def_name, def_value):
 # first, modify a copy of filename and then move it
-filename_new = .%s % filename
-shutil.copy(filename, filename_new)
-with open(filename_new, 'r+') as f:
+with open(filename, 'r+') as f:
 contents = f.read()
 f.seek(0)
 contents_new, subs = re.subn(
@@ -167,14 +166,11 @@
 
 f.truncate()
 f.write(contents_new)
-os.rename(filename_new, filename)
 
 
 def _replace_spec_setup(filename, version_define):
 # first, modify a copy of filename and then move it
-filename_new = .%s % filename
-shutil.copy(filename, filename_new)
-with open(filename_new, 'r+') as f:
+with open(filename, 'r+') as f:
 contents = f.read()
 f.seek(0)
 # %setup without -n uses implicit -n as %{name}-%{version}
@@ -193,14 +189,11 @@
 if subs  0:
 f.truncate()
 f.write(contents_new)
-os.rename(filename_new, filename)
 
 
 def _replace_tag(filename, tag, string):
 # first, modify a copy of filename and then move it
-filename_new = .%s % filename
-shutil.copy(filename, filename_new)
-with open(filename_new, 'r+') as f:
+with open(filename, 'r+') as f:
 contents = f.read()
 f.seek(0)
 if filename.endswith(PKGBUILD):
@@ -217,24 +210,20 @@
 if subs  0:
 f.truncate()
 f.write(contents_new)
-os.rename(filename_new, filename)
 
 
 def _replace_debian_changelog_version(filename, version_new):
 # first, modify a copy of filename and then move it
-

commit perl-Net-OpenID-Consumer for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-OpenID-Consumer for 
openSUSE:Factory checked in at 2015-08-28 08:26:45

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


Package is perl-Net-OpenID-Consumer

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Net-OpenID-Consumer/perl-Net-OpenID-Consumer.changes
2014-11-07 09:06:30.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-OpenID-Consumer.new/perl-Net-OpenID-Consumer.changes
   2015-08-28 08:27:03.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 26 08:53:03 UTC 2015 - lnus...@suse.de
+
+- explicitly require perl(CGI) for building. CGI is no longer a core module
+  since perl 5.22.
+
+---



Other differences:
--
++ perl-Net-OpenID-Consumer.spec ++
--- /var/tmp/diff_new_pack.PSh9kG/_old  2015-08-28 08:27:03.0 +0200
+++ /var/tmp/diff_new_pack.PSh9kG/_new  2015-08-28 08:27:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Net-OpenID-Consumer
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CGI)
 BuildRequires:  perl(Digest::SHA)
 BuildRequires:  perl(HTTP::Request)
 BuildRequires:  perl(JSON)




commit perl-MooseX-Types-Path-Class for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types-Path-Class for 
openSUSE:Factory checked in at 2015-08-28 08:26:20

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


Package is perl-MooseX-Types-Path-Class

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Types-Path-Class/perl-MooseX-Types-Path-Class.changes
2015-07-08 06:59:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-Path-Class.new/perl-MooseX-Types-Path-Class.changes
   2015-08-28 08:26:21.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 19 09:19:49 UTC 2015 - co...@suse.com
+
+- updated to 0.08
+   see /usr/share/doc/packages/perl-MooseX-Types-Path-Class/Changes
+
+  0.08  2015-08-16 02:05:52Z
+  - update some distribution tooling
+
+---

Old:

  MooseX-Types-Path-Class-0.07.tar.gz

New:

  MooseX-Types-Path-Class-0.08.tar.gz



Other differences:
--
++ perl-MooseX-Types-Path-Class.spec ++
--- /var/tmp/diff_new_pack.F1hECN/_old  2015-08-28 08:26:21.0 +0200
+++ /var/tmp/diff_new_pack.F1hECN/_new  2015-08-28 08:26:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MooseX-Types-Path-Class
-Version:0.07
+Version:0.08
 Release:0
 %define cpan_name MooseX-Types-Path-Class
 Summary:Path::Class type library for Moose
@@ -30,13 +30,14 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Build::Tiny) = 0.039
+BuildRequires:  perl(Module::Build::Tiny) = 0.007
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(Moose::Util::TypeConstraints)
 BuildRequires:  perl(MooseX::Getopt)
 BuildRequires:  perl(MooseX::Types)
 BuildRequires:  perl(MooseX::Types::Moose)
 BuildRequires:  perl(Path::Class) = 0.16
+BuildRequires:  perl(Test::More) = 0.88
 Requires:   perl(MooseX::Getopt)
 Requires:   perl(MooseX::Types)
 Requires:   perl(MooseX::Types::Moose)

++ MooseX-Types-Path-Class-0.07.tar.gz - 
MooseX-Types-Path-Class-0.08.tar.gz ++
 2030 lines of diff (skipped)




commit texmath for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package texmath for openSUSE:Factory checked 
in at 2015-08-28 08:26:29

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


Package is texmath

Changes:

--- /work/SRC/openSUSE:Factory/texmath/texmath.changes  2015-07-08 
06:59:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.texmath.new/texmath.changes 2015-08-28 
08:26:30.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 23 17:48:29 UTC 2015 - mimi...@gmail.com
+
+- update to 0.8.3
+* Parse uppercase Greek letters as EIdentifier, not ESymbol Op.
+   This fixes handling of things like `$Lambda^1$`, particularly in omml.
+
+---

Old:

  texmath-0.8.2.2.tar.gz

New:

  texmath-0.8.3.tar.gz



Other differences:
--
++ texmath.spec ++
--- /var/tmp/diff_new_pack.ZCnv49/_old  2015-08-28 08:26:31.0 +0200
+++ /var/tmp/diff_new_pack.ZCnv49/_new  2015-08-28 08:26:31.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name texmath
 
 Name:   texmath
-Version:0.8.2.2
+Version:0.8.3
 Release:0
 Summary:Conversion of LaTeX math formulas to MathML or OMML
 License:GPL-2.0

++ texmath-0.8.2.2.tar.gz - texmath-0.8.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.8.2.2/changelog new/texmath-0.8.3/changelog
--- old/texmath-0.8.2.2/changelog   2015-07-05 00:11:08.0 +0200
+++ new/texmath-0.8.3/changelog 2015-08-18 18:44:37.0 +0200
@@ -1,3 +1,8 @@
+texmath (0.8.3)
+
+  * Parse uppercase Greek letters as EIdentifier, not ESymbol Op.
+This fixes handling of things like `$Lambda^1$`, particularly in omml.
+
 texmath (0.8.2.2)
 
   * Handle `.` after number with no following digits.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.8.2.2/src/Text/TeXMath/Readers/TeX.hs 
new/texmath-0.8.3/src/Text/TeXMath/Readers/TeX.hs
--- old/texmath-0.8.2.2/src/Text/TeXMath/Readers/TeX.hs 2015-07-05 
00:11:08.0 +0200
+++ new/texmath-0.8.3/src/Text/TeXMath/Readers/TeX.hs   2015-08-18 
18:44:37.0 +0200
@@ -723,38 +723,38 @@
, (\\beta, EIdentifier \x03B2)
, (\\chi, EIdentifier \x03C7)
, (\\delta, EIdentifier \x03B4)
-   , (\\Delta, ESymbol Op \x0394)
+   , (\\Delta, EIdentifier \x0394)
, (\\epsilon, EIdentifier \x03F5)
, (\\varepsilon, EIdentifier \x03B5)
, (\\eta, EIdentifier \x03B7)
, (\\gamma, EIdentifier \x03B3)
-   , (\\Gamma, ESymbol Op \x0393)
+   , (\\Gamma, EIdentifier \x0393)
, (\\iota, EIdentifier \x03B9)
, (\\kappa, EIdentifier \x03BA)
, (\\lambda, EIdentifier \x03BB)
-   , (\\Lambda, ESymbol Op \x039B)
+   , (\\Lambda, EIdentifier \x039B)
, (\\mu, EIdentifier \x03BC)
, (\\nu, EIdentifier \x03BD)
, (\\omega, EIdentifier \x03C9)
-   , (\\Omega, ESymbol Op \x03A9)
+   , (\\Omega, EIdentifier \x03A9)
, (\\phi, EIdentifier \x03D5)
, (\\varphi, EIdentifier \x03C6)
-   , (\\Phi, ESymbol Op \x03A6)
+   , (\\Phi, EIdentifier \x03A6)
, (\\pi, EIdentifier \x03C0)
-   , (\\Pi, ESymbol Op \x03A0)
+   , (\\Pi, EIdentifier \x03A0)
, (\\psi, EIdentifier \x03C8)
-   , (\\Psi, ESymbol Ord \x03A8)
+   , (\\Psi, EIdentifier \x03A8)
, (\\rho, EIdentifier \x03C1)
, (\\sigma, EIdentifier \x03C3)
-   , (\\Sigma, ESymbol Op \x03A3)
+   , (\\Sigma, EIdentifier \x03A3)
, (\\tau, EIdentifier \x03C4)
, (\\theta, EIdentifier \x03B8)
, (\\vartheta, EIdentifier \x03D1)
-   , (\\Theta, ESymbol Op \x0398)
+   , (\\Theta, EIdentifier \x0398)
, (\\upsilon, EIdentifier \x03C5)
, (\\Upsilon, EIdentifier \x03A5)
, (\\xi, EIdentifier \x03BE)
-   , (\\Xi, ESymbol Op \x039E)
+   , (\\Xi, EIdentifier \x039E)
, (\\zeta, EIdentifier \x03B6)
, (\\pm, ESymbol Bin \x00B1)
, (\\mp, ESymbol Bin \x2213)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.8.2.2/texmath.cabal 
new/texmath-0.8.3/texmath.cabal
--- old/texmath-0.8.2.2/texmath.cabal   2015-07-05 00:11:08.0 +0200
+++ new/texmath-0.8.3/texmath.cabal 2015-08-18 18:44:37.0 +0200
@@ -1,5 +1,5 @@
 Name:texmath
-Version: 0.8.2.2
+Version: 0.8.3
 

commit perl-MooseX-Types-DateTime for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types-DateTime for 
openSUSE:Factory checked in at 2015-08-28 08:26:16

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


Package is perl-MooseX-Types-DateTime

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Types-DateTime/perl-MooseX-Types-DateTime.changes
2014-03-11 07:33:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Types-DateTime.new/perl-MooseX-Types-DateTime.changes
   2015-08-28 08:26:17.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 19 09:18:48 UTC 2015 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-MooseX-Types-DateTime/Changes
+
+  0.11  2015-08-16 01:05:36Z
+  - update some distribution tooling
+
+---

Old:

  MooseX-Types-DateTime-0.10.tar.gz

New:

  MooseX-Types-DateTime-0.11.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-MooseX-Types-DateTime.spec ++
--- /var/tmp/diff_new_pack.7qUxcS/_old  2015-08-28 08:26:17.0 +0200
+++ /var/tmp/diff_new_pack.7qUxcS/_new  2015-08-28 08:26:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Types-DateTime
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   perl-MooseX-Types-DateTime
-Version:0.10
+Version:0.11
 Release:0
 %define cpan_name MooseX-Types-DateTime
-Summary:LDateTime related constraints and coercions for
+Summary:LDateTime related constraints and coercions for Moose
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Types-DateTime/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -33,15 +34,15 @@
 BuildRequires:  perl(DateTime::Duration) = 0.4302
 BuildRequires:  perl(DateTime::Locale) = 0.4001
 BuildRequires:  perl(DateTime::TimeZone) = 0.95
-BuildRequires:  perl(Module::Build::Tiny) = 0.034
+BuildRequires:  perl(Module::Build::Tiny) = 0.007
 BuildRequires:  perl(Moose) = 0.41
 BuildRequires:  perl(Moose::Util::TypeConstraints)
 BuildRequires:  perl(MooseX::Types) = 0.30
 BuildRequires:  perl(MooseX::Types::Moose) = 0.30
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(namespace::clean) = 0.08
+BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  perl(namespace::clean) = 0.19
 BuildRequires:  perl(ok)
-BuildRequires:  perl(version)
 Requires:   perl(DateTime) = 0.4302
 Requires:   perl(DateTime::Duration) = 0.4302
 Requires:   perl(DateTime::Locale) = 0.4001
@@ -49,13 +50,25 @@
 Requires:   perl(Moose) = 0.41
 Requires:   perl(MooseX::Types) = 0.30
 Requires:   perl(MooseX::Types::Moose) = 0.30
-Requires:   perl(namespace::clean) = 0.08
+Requires:   perl(namespace::clean) = 0.19
 %{perl_requires}
 
 %description
 This module packages several the Moose::Util::TypeConstraints manpage with
 coercions, designed to work with the the DateTime manpage suite of objects.
 
+Namespaced Example:
+
+use MooseX::Types::DateTime;
+
+has time_zone = (
+isa = 'DateTime::TimeZone',
+is = rw,
+coerce = 1,
+);
+
+Class-new( time_zone = Africa/Timbuktu );
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
@@ -72,6 +85,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ MooseX-Types-DateTime-0.10.tar.gz - MooseX-Types-DateTime-0.11.tar.gz 
++
 3942 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e s,hunspell-X,$hunspell, t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver  make test
#ignore_requires: 

commit perl-MooseX-Traits for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Traits for 
openSUSE:Factory checked in at 2015-08-28 08:26:12

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


Package is perl-MooseX-Traits

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Traits/perl-MooseX-Traits.changes
2013-12-09 07:15:16.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Traits.new/perl-MooseX-Traits.changes   
2015-08-28 08:26:13.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 19 09:18:10 UTC 2015 - co...@suse.com
+
+- updated to 0.13
+   see /usr/share/doc/packages/perl-MooseX-Traits/Changes
+
+  0.13  2015-08-16 04:10:59Z
+  - update some distribution tooling
+
+---

Old:

  MooseX-Traits-0.12.tar.gz

New:

  MooseX-Traits-0.13.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-MooseX-Traits.spec ++
--- /var/tmp/diff_new_pack.tMU0F1/_old  2015-08-28 08:26:13.0 +0200
+++ /var/tmp/diff_new_pack.tMU0F1/_new  2015-08-28 08:26:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Traits
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,35 +17,30 @@
 
 
 Name:   perl-MooseX-Traits
-Version:0.12
+Version:0.13
 Release:0
 %define cpan_name MooseX-Traits
-Summary:automatically apply roles at object creation time
+Summary:Automatically apply roles at object creation time
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Traits/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Load)
-BuildRequires:  perl(Module::Build::Tiny) = 0.030
+BuildRequires:  perl(Module::Build::Tiny) = 0.007
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(MooseX::Role::Parameterized)
 BuildRequires:  perl(Sub::Exporter)
 BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(namespace::autoclean)
 BuildRequires:  perl(ok)
-#BuildRequires: perl(Foo)
-#BuildRequires: perl(MooseX::Traits)
-#BuildRequires: perl(MooseX::Traits::Util)
-#BuildRequires: perl(Pod::Wordlist)
-#BuildRequires: perl(Test::Kwalitee)
-#BuildRequires: perl(Test::NoTabs)
-#BuildRequires: perl(Test::Spelling) = 0.12
 Requires:   perl(Class::Load)
 Requires:   perl(Moose::Role)
 Requires:   perl(Sub::Exporter)
@@ -95,6 +90,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ MooseX-Traits-0.12.tar.gz - MooseX-Traits-0.13.tar.gz ++
 4386 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e s,hunspell-X,$hunspell, t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver  make test
#ignore_requires: Bizarre::Module



commit kdevplatform for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package kdevplatform for openSUSE:Factory 
checked in at 2015-08-28 08:26:26

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


Package is kdevplatform

Changes:

--- /work/SRC/openSUSE:Factory/kdevplatform/kdevplatform.changes
2015-03-05 18:16:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevplatform.new/kdevplatform.changes   
2015-08-28 08:26:28.0 +0200
@@ -1,0 +2,5 @@
+Sun Aug 23 16:34:52 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Added make-subversion-plugin-compile-with-subversion-1.9.patch
+
+---

New:

  make-subversion-plugin-compile-with-subversion-1.9.patch



Other differences:
--
++ kdevplatform.spec ++
--- /var/tmp/diff_new_pack.sNmWQe/_old  2015-08-28 08:26:29.0 +0200
+++ /var/tmp/diff_new_pack.sNmWQe/_new  2015-08-28 08:26:29.0 +0200
@@ -26,6 +26,8 @@
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM make-subversion-plugin-compile-with-subversion-1.9.patch
+Patch0: make-subversion-plugin-compile-with-subversion-1.9.patch
 BuildRequires:  boost-devel
 BuildRequires:  commoncpp2-devel
 BuildRequires:  db-devel
@@ -50,6 +52,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 echo find_package(Msgfmt REQUIRED)  CMakeLists.txt
 echo find_package(Gettext REQUIRED)  CMakeLists.txt
 

++ make-subversion-plugin-compile-with-subversion-1.9.patch ++
From: Alex Merry alex.me...@kde.org
Date: Sun, 16 Aug 2015 22:59:35 +
Subject: Make subversion plugin compile with subversion 1.9.
X-Git-Url: 
http://quickgit.kde.org/?p=kdevplatform.gita=commitdiffh=8117ca137b45816865554d6e86b96d9e633a7e08
---
Make subversion plugin compile with subversion 1.9.

The plugin was formerly using private API, which was hidden in 1.9.

REVIEW: 124783
(cherry picked from commit cfb7f8d89e4749c7b07c7880b3065bf8a86be22c)
---


--- a/plugins/subversion/kdevsvncpp/client_ls.cpp
+++ b/plugins/subversion/kdevsvncpp/client_ls.cpp
@@ -29,6 +29,7 @@
 #include svn_client.h
 #include svn_path.h
 #include svn_sorts.h
+#include svn_version.h
 //#include svn_utf.h
 
 // svncpp
@@ -36,6 +37,8 @@
 #include kdevsvncpp/dirent.hpp
 #include kdevsvncpp/exception.hpp
 
+
+#if SVN_VER_MAJOR == 1  SVN_VER_MINOR  8
 
 static int
 compare_items_as_paths(const svn_sort__item_t *a, const svn_sort__item_t *b)
@@ -90,6 +93,72 @@
   }
 }
 
+#else
+
+#include algorithm
+
+static svn_error_t* store_entry(
+void *baton,
+const char *path,
+const svn_dirent_t *dirent,
+const svn_lock_t *,
+const char *abs_path,
+const char *,
+const char *,
+apr_pool_t *scratch_pool)
+{
+  svn::DirEntries *entries = reinterpret_castsvn::DirEntries*(baton);
+  if (path[0] == '\0') {
+if (dirent-kind == svn_node_file) {
+  // for compatibility with svn_client_ls behaviour, listing a file
+  // stores that file name
+  entries-push_back(svn::DirEntry(svn_path_basename(abs_path, 
scratch_pool), dirent));
+}
+  } else {
+entries-push_back(svn::DirEntry(path, dirent));
+  }
+  return SVN_NO_ERROR;
+}
+
+static bool sort_by_path(svn::DirEntry const a, svn::DirEntry const b)
+{
+  return svn_path_compare_paths(a.name(), b.name())  0;
+}
+
+namespace svn
+{
+  DirEntries
+  Client::list(const char * pathOrUrl,
+   svn_opt_revision_t * revision,
+   bool recurse) throw(ClientException)
+  {
+Pool pool;
+DirEntries entries;
+
+svn_error_t * error =
+  svn_client_list3(pathOrUrl,
+   revision,
+   revision,
+   SVN_DEPTH_INFINITY_OR_IMMEDIATES(recurse),
+   SVN_DIRENT_ALL,
+   FALSE, // fetch locks
+   FALSE, // include externals
+   store_entry,
+   entries,
+   *m_context,
+   pool);
+
+if (error != SVN_NO_ERROR)
+  throw ClientException(error);
+
+std::sort(entries.begin(), entries.end(), sort_by_path);
+
+return entries;
+  }
+}
+
+#endif
+
 /* -
  * local variables:
  * eval: (load-file ../../rapidsvn-dev.el)

--- a/plugins/subversion/kdevsvncpp/dirent.cpp
+++ b/plugins/subversion/kdevsvncpp/dirent.cpp
@@ -47,7 +47,7 @@
 {
 }
 
-Data(const char * _name, svn_dirent_t * dirEntry)
+Data(const char * _name, const svn_dirent_t * 

commit google-noto-fonts for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package google-noto-fonts for 
openSUSE:Factory checked in at 2015-08-28 08:26:39

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


Package is google-noto-fonts

Changes:

--- /work/SRC/openSUSE:Factory/google-noto-fonts/google-noto-fonts.changes  
2015-05-28 09:56:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.google-noto-fonts.new/google-noto-fonts.changes 
2015-08-28 08:26:53.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 26 09:49:02 UTC 2015 - fcro...@suse.com
+
+- update to version 20150618:
+  + Noto CJK variants
+  + Thaana Sans, Tibetan variants.
+  + update generate-specfile.sh
+  + update url.
+
+---



Other differences:
--
++ google-noto-fonts.spec ++
--- /var/tmp/diff_new_pack.oJxwUX/_old  2015-08-28 08:27:00.0 +0200
+++ /var/tmp/diff_new_pack.oJxwUX/_new  2015-08-28 08:27:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package google-noto-fonts
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
 #
 
 
-%define hyear 2014
-%define hmonth07
-%define hday  16
+%define hyear 2015
+%define hmonth06
+%define hday  18
 %define src_name  NotoFonts
 
 Name:   google-noto-fonts
@@ -27,7 +27,7 @@
 Summary:Noto Font Families
 License:Apache-2.0
 Group:  System/X11/Fonts
-Url:https://code.google.com/p/noto/
+Url:https://github.com/googlei18n/noto-fonts
 Source0:http://www.google.com/get/noto/pkgs/Noto-hinted.zip
 Source2:generate-specfile.sh
 BuildRequires:  fontpackages-devel
@@ -200,6 +200,46 @@
 heights and stroke thicknesses) across languages. This package contains
 Cherokee Sans Serif font, hinted.
 
+%package -n noto-sans-cjkjp
+Summary:Noto CJKjp Sans Serif Font
+Group:  System/X11/Fonts
+Requires:   google-noto-fonts
+
+%description -n noto-sans-cjkjp
+Noto's design goal is to achieve visual harmonization (e.g., compatible
+heights and stroke thicknesses) across languages. This package contains
+CJKjp Sans Serif font, hinted.
+
+%package -n noto-sans-cjkkr
+Summary:Noto CJKkr Sans Serif Font
+Group:  System/X11/Fonts
+Requires:   google-noto-fonts
+
+%description -n noto-sans-cjkkr
+Noto's design goal is to achieve visual harmonization (e.g., compatible
+heights and stroke thicknesses) across languages. This package contains
+CJKkr Sans Serif font, hinted.
+
+%package -n noto-sans-cjksc
+Summary:Noto CJKsc Sans Serif Font
+Group:  System/X11/Fonts
+Requires:   google-noto-fonts
+
+%description -n noto-sans-cjksc
+Noto's design goal is to achieve visual harmonization (e.g., compatible
+heights and stroke thicknesses) across languages. This package contains
+CJKsc Sans Serif font, hinted.
+
+%package -n noto-sans-cjktc
+Summary:Noto CJKtc Sans Serif Font
+Group:  System/X11/Fonts
+Requires:   google-noto-fonts
+
+%description -n noto-sans-cjktc
+Noto's design goal is to achieve visual harmonization (e.g., compatible
+heights and stroke thicknesses) across languages. This package contains
+CJKtc Sans Serif font, hinted.
+
 %package -n noto-sans-coptic
 Summary:Noto Coptic Sans Serif Font
 Group:  System/X11/Fonts
@@ -210,6 +250,16 @@
 heights and stroke thicknesses) across languages. This package contains
 Coptic Sans Serif font, hinted.
 
+%package -n noto-sans-cuneiform
+Summary:Noto Cuneiform Sans Serif Font
+Group:  System/X11/Fonts
+Requires:   google-noto-fonts
+
+%description -n noto-sans-cuneiform
+Noto's design goal is to achieve visual harmonization (e.g., compatible
+heights and stroke thicknesses) across languages. This package contains
+Cuneiform Sans Serif font, hinted.
+
 %package -n noto-sans-cypriot
 Summary:Noto Cypriot Sans Serif Font
 Group:  System/X11/Fonts
@@ -310,31 +360,6 @@
 heights and stroke thicknesses) across languages. This package contains
 Gurmukhi Sans Serif font, hinted.
 
-%package -n noto-sans-hans
-Summary:Noto Hans Sans Serif Font
-Group:  System/X11/Fonts
-Requires:   google-noto-fonts
-Provides:   scalable-font-zh-CN
-Provides:  scalable-font-zh-SG
-Provides:  locale(zh_CN;zh_SG)
-
-%description -n noto-sans-hans
-Noto's design goal is to achieve visual harmonization (e.g., compatible

commit perl-MooseX-Types for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Types for 
openSUSE:Factory checked in at 2015-08-28 08:26:14

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-09-17 17:25:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-MooseX-Types.new/perl-MooseX-Types.changes 
2015-08-28 08:26:15.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 19 09:18:30 UTC 2015 - co...@suse.com
+
+- updated to 0.46
+   see /usr/share/doc/packages/perl-MooseX-Types/Changes
+
+  0.46  2015-08-16 00:43:46Z
+  - make use of Sub::Exporter::ForMethods's new rebless option
+
+---

Old:

  MooseX-Types-0.45.tar.gz

New:

  MooseX-Types-0.46.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-MooseX-Types.spec ++
--- /var/tmp/diff_new_pack.krGBvc/_old  2015-08-28 08:26:16.0 +0200
+++ /var/tmp/diff_new_pack.krGBvc/_new  2015-08-28 08:26:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Types
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,21 @@
 
 
 Name:   perl-MooseX-Types
-Version:0.45
+Version:0.46
 Release:0
 %define cpan_name MooseX-Types
 Summary:Organise your Moose types in libraries
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Types/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Carp::Clan) = 6.00
-BuildRequires:  perl(Module::Build::Tiny) = 0.037
+BuildRequires:  perl(Module::Build::Tiny) = 0.007
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) = 1.06
 BuildRequires:  perl(Moose::Exporter)
@@ -39,6 +40,7 @@
 BuildRequires:  perl(Moose::Util::TypeConstraints)
 BuildRequires:  perl(Scalar::Util) = 1.19
 BuildRequires:  perl(Sub::Exporter)
+BuildRequires:  perl(Sub::Exporter::ForMethods) = 0.100052
 BuildRequires:  perl(Sub::Name)
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::More) = 0.88
@@ -52,6 +54,7 @@
 Requires:   perl(Moose::Util::TypeConstraints)
 Requires:   perl(Scalar::Util) = 1.19
 Requires:   perl(Sub::Exporter)
+Requires:   perl(Sub::Exporter::ForMethods) = 0.100052
 Requires:   perl(Sub::Name)
 Requires:   perl(namespace::autoclean) = 0.16
 %{perl_requires}
@@ -98,6 +101,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README weaver.ini
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ MooseX-Types-0.45.tar.gz - MooseX-Types-0.46.tar.gz ++
 3917 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e s,hunspell-X,$hunspell, t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver  make test
#ignore_requires: Bizarre::Module



commit libinput for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package libinput for openSUSE:Factory 
checked in at 2015-08-28 08:25:42

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


Package is libinput

Changes:

--- /work/SRC/openSUSE:Factory/libinput/libinput.changes2015-08-25 
07:18:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.libinput.new/libinput.changes   2015-08-28 
08:25:43.0 +0200
@@ -1,0 +2,11 @@
+Wed Aug 26 07:01:59 UTC 2015 - mplus...@suse.com
+
+- Update to 1.0.0
+  * doc: inverse event type restriction of x and y accessors
+  * doc: ellipse instead of ellipsis
+  * test: fix gcc warning about missing prototypes
+  * doc: fix more typos
+  * doc: add a diagram for evemu and note that libinput doesn't recordings
+  * configure.ac: libinput 1.0
+
+---

Old:

  libinput-0.99.1.tar.xz
  libinput-0.99.1.tar.xz.sig

New:

  libinput-1.0.0.tar.xz
  libinput-1.0.0.tar.xz.sig



Other differences:
--
++ libinput.spec ++
--- /var/tmp/diff_new_pack.7P1pLp/_old  2015-08-28 08:25:44.0 +0200
+++ /var/tmp/diff_new_pack.7P1pLp/_new  2015-08-28 08:25:44.0 +0200
@@ -18,8 +18,8 @@
 
 Name:   libinput
 %define lname  libinput10
-%define rversion 0.99.1
-Version:0.99
+%define rversion 1.0.0
+Version:1.0
 Release:0
 Summary:Input device and event processing library
 License:MIT

++ libinput-0.99.1.tar.xz - libinput-1.0.0.tar.xz ++
 3235 lines of diff (skipped)




commit dos2unix for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package dos2unix for openSUSE:Factory 
checked in at 2015-08-28 08:25:36

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


Package is dos2unix

Changes:

--- /work/SRC/openSUSE:Factory/dos2unix/dos2unix.changes2015-07-16 
17:13:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.dos2unix.new/dos2unix.changes   2015-08-28 
08:25:37.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug 25 20:01:40 UTC 2015 - water...@xs4all.nl
+
+- Update to 7.3
+  * New: Unicode file name support on Windows.
+  * Fix: Options -ul and -ub caused option -i to report wrong BOM for no_bom.
+
+---

Old:

  dos2unix-7.2.3.tar.gz

New:

  dos2unix-7.3.tar.gz



Other differences:
--
++ dos2unix.spec ++
--- /var/tmp/diff_new_pack.fzOZGC/_old  2015-08-28 08:25:38.0 +0200
+++ /var/tmp/diff_new_pack.fzOZGC/_new  2015-08-28 08:25:38.0 +0200
@@ -20,7 +20,7 @@
 Summary:Text converters to and from DOS/MAC to UNIX
 License:BSD-2-Clause
 Group:  Productivity/Text/Convertors
-Version:7.2.3
+Version:7.3
 Release:0
 Url:http://waterlan.home.xs4all.nl/dos2unix.html
 Source: 
http://waterlan.home.xs4all.nl/dos2unix/dos2unix-%{version}.tar.gz

++ dos2unix-7.2.3.tar.gz - dos2unix-7.3.tar.gz ++
 30571 lines of diff (skipped)




commit perl-XML-DOM for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-DOM for openSUSE:Factory 
checked in at 2015-08-28 08:25:23

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


Package is perl-XML-DOM

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-DOM/perl-XML-DOM.changes
2011-11-21 12:50:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-DOM.new/perl-XML-DOM.changes   
2015-08-28 08:25:24.0 +0200
@@ -1,0 +2,16 @@
+Fri Aug 21 07:36:37 UTC 2015 - cfarr...@suse.com
+
+- license update: Artistic-1.0 or GPL-1.0+
+  CHECK(...) not valid
+
+---
+Wed Aug 19 09:51:00 UTC 2015 - co...@suse.com
+
+- updated to 1.45
+   see /usr/share/doc/packages/perl-XML-DOM/Changes
+
+  1.45 (tjmather) 08/16/2015
+  - Fix pod errors and a typo ( Florian Schlichting )
+  - properly encode output for printToFile ( Martin Ferrari, Gregor Herrmann )
+
+---

Old:

  XML-DOM-1.44.tar.gz

New:

  XML-DOM-1.45.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-XML-DOM.spec ++
--- /var/tmp/diff_new_pack.FcLx3t/_old  2015-08-28 08:25:25.0 +0200
+++ /var/tmp/diff_new_pack.FcLx3t/_new  2015-08-28 08:25:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-XML-DOM
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,22 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-XML-DOM
+Version:1.45
+Release:0
 %define cpan_name XML-DOM
-Summary:Perl module for building DOM Level 1 compliant document 
structures
-Version:1.44
-Release:153
-License:Artistic-1.0
+Summary:Perl Module for Building Dom Level 1 Compliant Document 
Structures
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/XML-DOM/
-#Source: 
http://www.cpan.org/modules/by-module/XML/XML-DOM-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/T/TJ/TJMATHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(LWP::UserAgent)
@@ -41,25 +38,57 @@
 Requires:   perl(XML::Parser) = 2.30
 Requires:   perl(XML::Parser::PerlSAX) = 0.07
 Requires:   perl(XML::RegExp)
-# Provides:   p_xmldom XML-DOM
-# Obsoletes:  p_xmldom
+%{perl_requires}
 
 %description
 This module extends the XML::Parser module by Clark Cooper. The XML::Parser
 module is built on top of XML::Parser::Expat, which is a lower level
 interface to James Clark's expat library.
 
-Authors:
-
-Enno Derksen e...@att.com
-Clark Cooper coope...@netheaven.com
+XML::DOM::Parser is derived from XML::Parser. It parses XML strings or
+files and builds a data structure that conforms to the API of the Document
+Object Model as described at http://www.w3.org/TR/REC-DOM-Level-1. See the
+XML::Parser manpage for other available features of the XML::DOM::Parser
+class. Note that the 'Style' property should not be used (it is set
+internally.)
+
+The XML::Parser _NoExpand_ option is more or less supported, in that it
+will generate EntityReference objects whenever an entity reference is
+encountered in character data. I'm not sure how useful this is. Any
+comments are welcome.
+
+As described in the synopsis, when you create an XML::DOM::Parser object,
+the parse and parsefile methods create an _XML::DOM::Document_ object from
+the specified input. This Document object can then be examined, modified
+and written back out to a file or converted to a string.
+
+When using XML::DOM with XML::Parser version 2.19 and up, setting the
+XML::DOM::Parser option _KeepCDATA_ to 1 will store CDATASections in
+CDATASection nodes, instead of converting them to Text nodes. Subsequent
+CDATASection nodes will be merged into one. Let me know if this is a
+problem.
+
+When using XML::Parser 2.27 and above, you can suppress expansion of
+parameter entity references (e.g. %pent;) in the DTD, by setting
+_ParseParamEnt_ to 1 and _ExpandParamEnt_ to 0. See /_Hidden_Nodes_ for
+details.
+
+A Document has a tree structure consisting of _Node_ objects. A 

commit apache2-mod_wsgi-python3 for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package apache2-mod_wsgi-python3 for 
openSUSE:Factory checked in at 2015-08-28 08:26:06

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


Package is apache2-mod_wsgi-python3

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package=apache2-mod_wsgi cicount=copy /


commit netcfg for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package netcfg for openSUSE:Factory checked 
in at 2015-08-28 08:25:17

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


Package is netcfg

Changes:

--- /work/SRC/openSUSE:Factory/netcfg/netcfg.changes2015-08-21 
07:37:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.netcfg.new/netcfg.changes   2015-08-28 
08:25:18.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 25 09:41:17 UTC 2015 - tchva...@suse.com
+
+- Do not actually replace the hostname if user already has something
+  in there. Thanks to Takashi Iwai for spotting this
+
+---



Other differences:
--
++ netcfg.spec ++
--- /var/tmp/diff_new_pack.wc7kkU/_old  2015-08-28 08:25:19.0 +0200
+++ /var/tmp/diff_new_pack.wc7kkU/_new  2015-08-28 08:25:19.0 +0200
@@ -101,7 +101,7 @@
 
 %files
 %defattr(644,root,root,755)
-%config %{_sysconfdir}/hostname
+%verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/hostname
 %{_sysconfdir}/HOSTNAME
 %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/aliases
 %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/defaultdomain







commit wayland for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package wayland for openSUSE:Factory checked 
in at 2015-08-28 08:25:48

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


Package is wayland

Changes:

--- /work/SRC/openSUSE:Factory/wayland/wayland.changes  2015-06-08 
08:27:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.wayland.new/wayland.changes 2015-08-28 
08:25:49.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 26 09:32:30 UTC 2015 - zai...@opensuse.org
+
+- Update to new upstream release 1.8.1
+* This is just a brown paper bag release. In rolling the wayland
+  1.8.0 distribution tarball some files were set to read-only. This
+  rectifies that. There are no file content changes.
+
+---

Old:

  wayland-1.8.0.tar.xz
  wayland-1.8.0.tar.xz.sig

New:

  wayland-1.8.1.tar.xz
  wayland-1.8.1.tar.xz.sig



Other differences:
--
++ wayland.spec ++
--- /var/tmp/diff_new_pack.qedRZE/_old  2015-08-28 08:25:50.0 +0200
+++ /var/tmp/diff_new_pack.qedRZE/_new  2015-08-28 08:25:50.0 +0200
@@ -18,7 +18,7 @@
 
 %define lname  libwayland0
 Name:   wayland
-Version:1.8.0
+Version:1.8.1
 Release:0
 Summary:Wayland Compositor Infrastructure
 License:HPND

++ wayland-1.8.0.tar.xz - wayland-1.8.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wayland-1.8.0/configure new/wayland-1.8.1/configure
--- old/wayland-1.8.0/configure 2015-06-03 01:08:16.0 +0200
+++ new/wayland-1.8.1/configure 2015-06-12 20:53:32.0 +0200
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for wayland 1.8.0.
+# Generated by GNU Autoconf 2.69 for wayland 1.8.1.
 #
-# Report bugs to 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.0.
+# Report bugs to 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.1.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -275,7 +275,7 @@
 $as_echo $0: be upgraded to zsh 4.3.4 or later.
   else
 $as_echo $0: Please tell bug-autoc...@gnu.org and
-$0: 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.0
+$0: 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.1
 $0: about your system, including any error possibly output
 $0: before this message. Then install a modern shell, or
 $0: manually run the script under such a shell if you do
@@ -651,9 +651,9 @@
 # Identity of this package.
 PACKAGE_NAME='wayland'
 PACKAGE_TARNAME='wayland'
-PACKAGE_VERSION='1.8.0'
-PACKAGE_STRING='wayland 1.8.0'
-PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.0'
+PACKAGE_VERSION='1.8.1'
+PACKAGE_STRING='wayland 1.8.1'
+PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.1'
 PACKAGE_URL='http://wayland.freedesktop.org/'
 
 # Factoring default headers for most tests.
@@ -1421,7 +1421,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures wayland 1.8.0 to adapt to many kinds of systems.
+\`configure' configures wayland 1.8.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1491,7 +1491,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of wayland 1.8.0:;;
+ short | recursive ) echo Configuration of wayland 1.8.1:;;
esac
   cat \_ACEOF
 
@@ -1549,7 +1549,7 @@
 Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
-Report bugs to 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.0.
+Report bugs to 
https://bugs.freedesktop.org/enter_bug.cgi?product=Waylandcomponent=waylandversion=1.8.1.
 wayland home page: http://wayland.freedesktop.org/.
 _ACEOF
 ac_status=$?
@@ -1613,7 +1613,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-wayland configure 1.8.0
+wayland configure 1.8.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2126,7 +2126,7 @@
 { $as_echo $as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the 
compiler's result 5
 $as_echo $as_me: WARNING: $2: proceeding with the compiler's result 2;}
 ( $as_echo ## 

commit tigervnc for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package tigervnc for openSUSE:Factory 
checked in at 2015-08-28 08:25:29

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


Package is tigervnc

Changes:

--- /work/SRC/openSUSE:Factory/tigervnc/tigervnc.changes2015-08-21 
07:36:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.tigervnc.new/tigervnc.changes   2015-08-28 
08:25:30.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug 25 15:14:04 UTC 2015 - m...@suse.com
+
+- Remove commented out DefaultDepth 16 from 10-libvnc.conf file.
+  Using 16 bit depth can cause troubles and does not have any
+  positives anymore, so lets not suggest it to users. (bnc#942982)
+
+---



Other differences:
--
++ 10-libvnc.conf ++
--- /var/tmp/diff_new_pack.yHRp9D/_old  2015-08-28 08:25:31.0 +0200
+++ /var/tmp/diff_new_pack.yHRp9D/_new  2015-08-28 08:25:31.0 +0200
@@ -13,7 +13,6 @@
 
 #Section Screen
 #Identifier Screen0
-#DefaultDepth 16
 #Option SecurityTypes VncAuth
 #Option PasswordFile /root/.vnc/passwd
 #EndSection




commit perl-Data-Peek for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Data-Peek for openSUSE:Factory 
checked in at 2015-08-28 08:27:25

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


Package is perl-Data-Peek

Changes:

--- /work/SRC/openSUSE:Factory/perl-Data-Peek/perl-Data-Peek.changes
2014-03-09 18:37:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Data-Peek.new/perl-Data-Peek.changes   
2015-08-28 08:27:50.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 27 13:20:18 UTC 2015 - h...@imb-jena.de
+
+- updated to 0.44
+* bug fixes, a. o. to make it build on recent perl
+
+---

Old:

  Data-Peek-0.40.tgz

New:

  Data-Peek-0.44.tgz



Other differences:
--
++ perl-Data-Peek.spec ++
--- /var/tmp/diff_new_pack.QU8bJ6/_old  2015-08-28 08:27:51.0 +0200
+++ /var/tmp/diff_new_pack.QU8bJ6/_new  2015-08-28 08:27:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Data-Peek
-Version:0.40
+Version:0.44
 Release:0
 %define cpan_name Data-Peek
 Summary:A collection of low-level debug facilities

++ Data-Peek-0.40.tgz - Data-Peek-0.44.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Peek-0.40/ChangeLog new/Data-Peek-0.44/ChangeLog
--- old/Data-Peek-0.40/ChangeLog2014-02-27 09:03:40.0 +0100
+++ new/Data-Peek-0.44/ChangeLog2015-03-25 11:21:19.0 +0100
@@ -1,3 +1,17 @@
+0.44   - 2015-03-25, H.Merijn Brand   h.m.br...@xs4all.nl
+* DDisplay in void context consistency
+
+0.43   - 2015-02-11, H.Merijn Brand   h.m.br...@xs4all.nl
+* Move repo to github
+* Remove perl recommendation from META as it breaks cpan clients
+
+0.42   - 2015-01-02, H.Merijn Brand   h.m.br...@xs4all.nl
+* Prevent caching of .perltidyrc (RT#99514)
+* Upped copyright to 2015
+
+0.41   - 2014-09-27, H.Merijn Brand   h.m.br...@xs4all.nl
+* Add alternative test results for 5.21.5 and up (PADMY)
+
 0.40   - 2014-02-27, H.Merijn Brand   h.m.br...@xs4all.nl
 * Upped copyright to 2014
 * Guard Perl::Tidy against stupid user options in .perltidyrc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Data-Peek-0.40/META.json new/Data-Peek-0.44/META.json
--- old/Data-Peek-0.40/META.json2014-02-27 10:10:12.0 +0100
+++ new/Data-Peek-0.44/META.json2015-03-25 11:24:19.0 +0100
@@ -1,52 +1,33 @@
 {
-   dynamic_config : 1,
-   resources : {
-  repository : {
- web : http://repo.or.cz/w/Data-Peek.git;,
- type : git,
- url : http://repo.or.cz/r/Data-Peek.git;
-  },
-  license : [
- http://dev.perl.org/licenses/;
-  ]
-   },
abstract : Modified and extended debugging facilities,
-   author : [
-  H.Merijn Brand h.m.br...@xs4all.nl
-   ],
-   version : 0.40,
-   generated_by : Author,
-   release_status : stable,
-   provides : {
-  Data::Peek : {
- file : Peek.pm,
- version : 0.40
-  }
-   },
meta-spec : {
   url : http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
   version : 2
},
-   license : [
-  perl_5
-   ],
+   release_status : stable,
name : Data-Peek,
+   generated_by : Author,
+   provides : {
+  Data::Peek : {
+ version : 0.44,
+ file : Peek.pm
+  }
+   },
prereqs : {
-  build : {
+  runtime : {
+ recommends : {
+Data::Dumper : 2.154,
+Perl::Tidy : 0
+ },
  requires : {
-perl : 5.008
+perl : 5.008,
+Data::Dumper : 0,
+DynaLoader : 0
  }
   },
-  runtime : {
+  build : {
  requires : {
-DynaLoader : 0,
-Data::Dumper : 0,
 perl : 5.008
- },
- recommends : {
-perl : 5.018001,
-Perl::Tidy : 0,
-Data::Dumper : 2.145
  }
   },
   configure : {
@@ -55,13 +36,32 @@
  }
   },
   test : {
- recommends : {
-Test::More : 1.001002
- },
  requires : {
 Test::NoWarnings : 0,
 Test::More : 0.88
+ },
+ recommends : {
+Test::More : 1.001014
  }
   }
-   }
+   },
+   version : 0.44,
+   resources : {
+  license : [
+ http://dev.perl.org/licenses/;
+  ],
+  repository : {
+ url : https://github.com/Tux/Data-Peek;,
+ type : git,
+ web : https://github.com/Tux/Data-Peek;
+  },
+  x_IRC : irc://irc.perl.org/#csv
+  

commit java-1_9_0-openjdk for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package java-1_9_0-openjdk for 
openSUSE:Factory checked in at 2015-08-28 08:27:23

Comparing /work/SRC/openSUSE:Factory/java-1_9_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new (New)


Package is java-1_9_0-openjdk

Changes:

--- /work/SRC/openSUSE:Factory/java-1_9_0-openjdk/java-1_9_0-openjdk.changes
2015-08-21 07:41:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/java-1_9_0-openjdk.changes   
2015-08-28 08:27:30.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 24 08:34:00 UTC 2015 - fst...@suse.com
+
+- Upgrade to upstream tag jdk9-b78
+
+---

Old:

  33cecbc59f2a.tar.bz2
  6ec3d5cb1bfc.tar.bz2
  7972dc8f2a47.tar.bz2
  7fd081100f48.tar.bz2
  8bb2441c0fec.tar.bz2
  bd6ece68cf8a.tar.bz2
  be357705874c.tar.bz2
  e66c3813789d.tar.bz2

New:

  0940ce86c614.tar.bz2
  182bb7accc52.tar.bz2
  20dc06b04fe5.tar.bz2
  5b1899c9822d.tar.bz2
  6f634e84387e.tar.bz2
  7fd155b7041c.tar.bz2
  8c40d4143ee1.tar.bz2
  ac1748bab074.tar.bz2



Other differences:
--
++ java-1_9_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.CTnwfE/_old  2015-08-28 08:27:33.0 +0200
+++ /var/tmp/diff_new_pack.CTnwfE/_new  2015-08-28 08:27:33.0 +0200
@@ -33,17 +33,17 @@
 %global minorver9
 %global microver0
 %global updatever   0
-%global buildverb77
+%global buildverb78
 %global root_projectjdk9
 %global root_repository jdk9
-%global root_revision   7972dc8f2a47
-%global corba_revision  8bb2441c0fec
-%global hotspot_revision e66c3813789d
-%global jaxp_revision   be357705874c
-%global jaxws_revision  bd6ece68cf8a
-%global jdk_revision7fd081100f48
-%global langtools_revision 6ec3d5cb1bfc
-%global nashorn_revision 33cecbc59f2a
+%global root_revision   8c40d4143ee1
+%global corba_revision  182bb7accc52
+%global hotspot_revision 20dc06b04fe5
+%global jaxp_revision   5b1899c9822d
+%global jaxws_revision  ac1748bab074
+%global jdk_revision0940ce86c614
+%global langtools_revision 7fd155b7041c
+%global nashorn_revision 6f634e84387e
 %global icedtea_sound_version 1.0.1
 # priority must be 6 digits in total
 %global priority1905

++ 33cecbc59f2a.tar.bz2 - 0940ce86c614.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/33cecbc59f2a.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/0940ce86c614.tar.bz2 differ: 
char 11, line 1

++ 33cecbc59f2a.tar.bz2 - 182bb7accc52.tar.bz2 ++
 650799 lines of diff (skipped)

++ 33cecbc59f2a.tar.bz2 - 20dc06b04fe5.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/33cecbc59f2a.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/20dc06b04fe5.tar.bz2 differ: 
char 11, line 1

++ 33cecbc59f2a.tar.bz2 - 5b1899c9822d.tar.bz2 ++
 1119344 lines of diff (skipped)

++ 33cecbc59f2a.tar.bz2 - 6f634e84387e.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nashorn-33cecbc59f2a/.hg_archival.txt 
new/nashorn-6f634e84387e/.hg_archival.txt
--- old/nashorn-33cecbc59f2a/.hg_archival.txt   2015-08-06 20:20:39.0 
+0200
+++ new/nashorn-6f634e84387e/.hg_archival.txt   2015-08-13 23:15:11.0 
+0200
@@ -1,4 +1,4 @@
 repo: b8a1b238c77c7c00024daaa2cb7d10838e017b5f
-node: 33cecbc59f2ad78ac0934cbc3e014d346077e848
+node: 6f634e84387e97b2421d5e776e46935784156d1c
 branch: default
-tag: jdk9-b77
+tag: jdk9-b78
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nashorn-33cecbc59f2a/.hgtags 
new/nashorn-6f634e84387e/.hgtags
--- old/nashorn-33cecbc59f2a/.hgtags2015-08-06 20:20:39.0 +0200
+++ new/nashorn-6f634e84387e/.hgtags2015-08-13 23:15:11.0 +0200
@@ -310,3 +310,4 @@
 2e8bb16872d7b15dc0a4f8e45c6ad65f762c1b04 jdk9-b74
 f884dff432a7ac349153f3d1ea1eb222f3764c6c jdk9-b75
 ab231613d7206431ba31917a02e7cedd70e88e70 jdk9-b76
+33cecbc59f2ad78ac0934cbc3e014d346077e848 jdk9-b77
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nashorn-33cecbc59f2a/make/BuildNashorn.gmk 
new/nashorn-6f634e84387e/make/BuildNashorn.gmk
--- old/nashorn-33cecbc59f2a/make/BuildNashorn.gmk  2015-08-06 
20:20:39.0 +0200
+++ new/nashorn-6f634e84387e/make/BuildNashorn.gmk  2015-08-13 
23:15:11.0 +0200
@@ -53,7 +53,10 @@
 SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
 
 # Build nashorn into intermediate directory
-$(eval $(call SetupJavaCompilation,BUILD_NASHORN, \
+# Name the compilation setup the same as the module, as is done in the global
+# CompileJavaModules.gmk, to make dependency checking with other modules work
+# 

commit tor for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package tor for openSUSE:Factory checked in 
at 2015-08-28 08:26:58

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


Package is tor

Changes:

--- /work/SRC/openSUSE:Factory/tor/tor.changes  2015-07-14 17:45:45.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tor.new/tor.changes 2015-08-28 
08:27:13.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 26 20:02:21 UTC 2015 - astie...@suse.com
+
+- Malformed hostnames in socks5 requests were written to the log
+  regardless of SafeLogging option (CWE-532) [boo#943362]
+  add tor-0.2.6.10-malformed-hostname-safe-logging.patch
+
+---

New:

  tor-0.2.6.10-malformed-hostname-safe-logging.patch



Other differences:
--
++ tor.spec ++
--- /var/tmp/diff_new_pack.13jrKO/_old  2015-08-28 08:27:14.0 +0200
+++ /var/tmp/diff_new_pack.13jrKO/_new  2015-08-28 08:27:14.0 +0200
@@ -38,6 +38,7 @@
 Source4:tor.tmpfiles
 Source5:tor.firewall
 Patch0: tor-0.2.5.x-logrotate.patch
+Patch1: tor-0.2.6.10-malformed-hostname-safe-logging.patch
 BuildRequires:  openssl-devel
 BuildRequires:  pwdutils
 BuildRequires:  python-base
@@ -92,6 +93,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure \
@@ -187,7 +189,7 @@
 %files
 %defattr(-,root,root)
 %doc LICENSE README ChangeLog doc/HACKING doc/*.html
-%doc %{_mandir}/man*/*
+%{_mandir}/man*/*
 %{_bindir}/%{name}
 %{_bindir}/%{name}ctl
 %{_bindir}/%{name}ify

++ tor-0.2.6.10-malformed-hostname-safe-logging.patch ++
From 19df037e53331ae528b876f225be08f198e0f8b6 Mon Sep 17 00:00:00 2001
From: Andreas Stieger astie...@suse.com
Date: Mon, 24 Aug 2015 01:04:44 +0200
Subject: Log malformed hostnames in socks5 request respecting SafeLogging


diff --git a/changes/malformed-hostname-safe-logging 
b/changes/malformed-hostname-safe-logging
new file mode 100644
index 000..9300726
--- /dev/null
+++ b/changes/malformed-hostname-safe-logging
@@ -0,0 +1,3 @@
+  o Minor bugfixes:
+- When logging malformed hostnames in socks5 requests, respect
+  SafeLogging configuration
diff --git a/src/or/buffers.c b/src/or/buffers.c
index 2d7dd93..85fcbc6 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -1842,7 +1842,7 @@ parse_socks(const char *data, size_t datalen, 
socks_request_t *req,
 log_warn(LD_PROTOCOL,
  Your application (using socks5 to port %d) gave Tor 
  a malformed hostname: %s. Rejecting the connection.,
- req-port, escaped(req-address));
+ req-port, escaped_safe_str_client(req-address));
 return -1;
   }
   if (log_sockstype)
-- 
cgit v0.10.2





commit patterns-openSUSE for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2015-08-28 08:27:32

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


Package is patterns-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes  
2015-08-07 00:16:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2015-08-28 08:27:52.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug 27 14:00:58 UTC 2015 - lnus...@suse.de
+
+- need to allow binutils in minimal 
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.pBcAGl/_old  2015-08-28 08:27:54.0 +0200
+++ /var/tmp/diff_new_pack.pBcAGl/_new  2015-08-28 08:27:54.0 +0200
@@ -4255,7 +4255,7 @@
 # perl ~ 40MB ## - we can't conflict with that as perl-Bootloader-YAML needs it
 #Conflicts:  perl
 # binutils ~ 30MB
-Conflicts:  binutils
+#Conflicts:  binutils
 # pulls perl
 #Conflicts:  zypper-aptitude
 # pulls perl




commit mate-tweak for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package mate-tweak for openSUSE:Factory 
checked in at 2015-08-28 08:27:39

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


Package is mate-tweak

Changes:

--- /work/SRC/openSUSE:Factory/mate-tweak/mate-tweak.changes2015-08-14 
14:46:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.mate-tweak.new/mate-tweak.changes   
2015-08-28 08:27:54.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 27 14:52:43 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 3.5.2:
+  * Fix Mutter support.
+  * Fix panel backup.
+
+---

Old:

  mate-tweak-3.5.1.tar.gz

New:

  mate-tweak-3.5.2.tar.gz



Other differences:
--
++ mate-tweak.spec ++
--- /var/tmp/diff_new_pack.zJEH3K/_old  2015-08-28 08:27:54.0 +0200
+++ /var/tmp/diff_new_pack.zJEH3K/_new  2015-08-28 08:27:54.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define _name   mate_tweak
-%define _revfafdfa89884e
+%define _rev78307aaa6fc1
 Name:   mate-tweak
-Version:3.5.1
+Version:3.5.2
 Release:0
 Summary:MATE desktop tweak tool
 License:GPL-2.0+

++ mate-tweak-3.5.1.tar.gz - mate-tweak-3.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ubuntu-mate-mate-tweak-fafdfa89884e/mate-tweak 
new/ubuntu-mate-mate-tweak-78307aaa6fc1/mate-tweak
--- old/ubuntu-mate-mate-tweak-fafdfa89884e/mate-tweak  2015-08-13 
13:28:49.0 +0200
+++ new/ubuntu-mate-mate-tweak-78307aaa6fc1/mate-tweak  2015-08-26 
00:46:54.0 +0200
@@ -32,7 +32,7 @@
 from configobj import ConfigObj
 from gi.repository import Gdk, GdkPixbuf, Gio, GObject, Gtk, Notify
 
-__VERSION__=3.5.1
+__VERSION__=3.5.2
 
 # i18n
 gettext.install(mate-tweak, /usr/share/locale)
@@ -412,8 +412,10 @@
 if self.find_on_path('mutter') and self.find_on_path('glxinfo'):
 process = subprocess.Popen(['glxinfo'], stdout=subprocess.PIPE)
 out, err = process.communicate()
-software_rasterizer = out.count(Software Rasterizer)
-texture_from_pixmap = out.count(texture_from_pixmap)
+decoded = out.decode('utf-8')
+
+software_rasterizer = decoded.count(Software Rasterizer)
+texture_from_pixmap = decoded.count(texture_from_pixmap)
 if software_rasterizer == 0 and texture_from_pixmap  2:
 return True
 return False
@@ -499,6 +501,10 @@
 if os.path.exists('usr/lib/linuxmint/mintMenu/mintMenu.py'):
 mint_menu_available = True
 
+mageia_cc_available = False
+if os.path.exists('/usr/share/applications/mageia-drakconf.desktop'):
+mageia_cc_available = True
+
 gnome_menu_available = False
 if os.path.exists('/usr/lib/gnome-main-menu/main-menu'):
 gnome_menu_available = True
@@ -525,29 +531,35 @@
 current_layout = layout.replace('.layout', 
'').replace('/usr/share/mate-panel/layouts/', '');
 panels.append([_('Custom: ') + current_layout, current_layout])
 
+if dock:
+if self.panel_layout_exists('eleven'):
+panels.append([_(Cupertino), eleven])
+
+if self.panel_layout_exists('fedora'):
+panels.append([_(Fedora), fedora])
+
 if self.panel_layout_exists('default'):
 panels.append([_(GNOME2), default])
 
-if self.panel_layout_exists('ubuntu-mate'):
-panels.append([_(Ubuntu MATE), ubuntu-mate])
+if self.panel_layout_exists('linuxmint') and mint_menu_available:
+panels.append([_(Linux Mint), linuxmint])
 
-if self.panel_layout_exists('redmond'):
-panels.append([_(Redmond), redmond])
+if self.panel_layout_exists('mageia') and mageia_cc_available:
+panels.append([_(Mageia), mageia])
 
 if self.maximus_available():
 if self.panel_layout_exists('netbook'):
 panels.append([_(Netbook), netbook])
 
-if dock:
-if self.panel_layout_exists('eleven'):
-panels.append([_(Cupertino), eleven])
-
-if self.panel_layout_exists('linuxmint') and mint_menu_available:
-panels.append([_(Linux Mint), linuxmint])
-
 if self.panel_layout_exists('opensuse') and gnome_menu_available:
 panels.append([_(openSUSE), opensuse])
 
+if self.panel_layout_exists('redmond'):
+panels.append([_(Redmond), redmond])
+
+if self.panel_layout_exists('ubuntu-mate'):
+panels.append([_(Ubuntu MATE), ubuntu-mate])
+
 

commit ghc-rpm-macros for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package ghc-rpm-macros for openSUSE:Factory 
checked in at 2015-08-28 08:27:41

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


Package is ghc-rpm-macros

Changes:

--- /work/SRC/openSUSE:Factory/ghc-rpm-macros/ghc-rpm-macros.changes
2015-08-23 17:39:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-rpm-macros.new/ghc-rpm-macros.changes   
2015-08-28 08:27:55.0 +0200
@@ -1,0 +2,37 @@
+Thu Aug 27 08:45:19 UTC 2015 - mimi...@gmail.com
+
+- update to 1.4.93
+- refreshed:
+add-group.patch
+files-defattr.patch
+fix-gen-filelists.patch
+fix-library-dir.patch
+suse-disable-debug-packages.patch
+suse-docdir.patch
+- dropped:
+version-docdirs.patch
+fix-runpath.patch
+ldflags.patch
+- added:
+remove-flags.patch
+- fix ghc-pkg path in ghc-deps.sh for ghc-7.10
+- local pkgdir macro is redundant
+- use utf8 locale for cabal
+- add explicit --enable-shared again for arm64
+- introduce ghc_pkgdocdir since no _pkgdocdir in RHEL 7 and earlier
+- allow overriding ghc- prefix with ghc_name (for ghc784 etc)
+- version ghc-pkg in ghc_pkg_recache
+- have to turn off hardening in cabal_configure: set _hardened_ldflags to nil
+- add cabal_test macro
+- only run cabal haddock for real libraries with modules
+- make sure basepkg.files is also created for meta packages
+- fix the R*PATH regexp
+- version ghcpkgdocdir
+- add new names ghc_html_dir, ghc_html_libraries_dir, and ghc_html_pkg_dir
+- correct cabal-tweak-flag error message for missing flag
+- update ghc_gen_filelists to use new keyed library filepaths
+  and specify libHS*.so more loosely
+- ghc-dep.sh now just makes versioned devel reqs
+- rename ghc_lib.attr to ghc.attr and drop ghc_bin.attr
+
+---

Old:

  fix-runpath.patch
  ghc-rpm-macros-1.4.8.tar.xz
  ldflags.patch
  version-docdirs.patch

New:

  fix-gen-filelists.patch
  ghc-rpm-macros-1.4.93.tar.xz
  remove-flags.patch



Other differences:
--
++ ghc-rpm-macros.spec ++
--- /var/tmp/diff_new_pack.w0gHID/_old  2015-08-28 08:27:56.0 +0200
+++ /var/tmp/diff_new_pack.w0gHID/_new  2015-08-28 08:27:56.0 +0200
@@ -21,7 +21,7 @@
 %global without_hscolour 1
 
 Name:   ghc-rpm-macros
-Version:1.4.8
+Version:1.4.93
 Release:0
 BuildArch:  noarch
 Summary:RPM Macros for building packages for GHC
@@ -30,6 +30,7 @@
 
 Url:https://fedoraproject.org/wiki/Haskell_SIG
 
+# source prepared manually from github.com/fedora-haskell/ghc-rpm-macros
 Source0:%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE suse-disable-debug-packages.patch 
peter.tromm...@ohm-hochschule.de -- openSUSE way to disable debug packages
 Patch1: suse-disable-debug-packages.patch
@@ -39,17 +40,15 @@
 Patch3: files-defattr.patch
 # PATCH-FIX-OPENSUSE suse-docdir.patch peter.tromm...@ohm-hochschule.de -- fix 
location of docdir
 Patch4: suse-docdir.patch
-# PATCH-FIX-UPSTREAM fix-runpath.patch peter.tromm...@ohm-hochschule.de -- In 
openSUSE we patch binutils to default to the new RUNPATH dynamic tag and not 
the obsolete RPATH. This patch adds support for the former and still works for 
the latter.
-Patch7: fix-runpath.patch  
-# PATCH-FIX-OPENSUSE ldflags.patch peter.tromm...@ohm-hochschule.de -- Remove 
LDFLAGS. TODO: Find the right openSUSE way to do this.
-Patch8: ldflags.patch
+# PATCH-FIX_UPSTREAM fix-gen-filelists.patch
+Patch5: fix-gen-filelists.patch
+# PATCH-FIX-OPENSUSE remove-flags.patch peter.tromm...@ohm-hochschule.de -- Do 
not pass CFLAGS and LDFLAGS to ghc. openSUSE is missing a RPM macro 
%%__global_ldflags.
+Patch8: remove-flags.patch
 # PATCH-FIX-UPSTREAM fix-library-dir.patch peter.tromm...@ohm-hochschule.de -- 
Fix ghc-rpm-macros and ghc build system installing into different library 
directories (package version vs package key).
 Patch9: fix-library-dir.patch 
-# PATCH-FIX-UPSTREAM version-docdir.patch peter.tromm...@ohm-hochschule.de -- 
Include version number in package documentation dir.
-Patch10:version-docdirs.patch
 
-Requires:   rpm
 BuildRequires:  xz
+Requires:   rpm
 %if %{undefined without_hscolour}
 Requires:   hscolour
 %endif
@@ -70,7 +69,6 @@
 Extra macros used for subpackaging of Haskell libraries,
 for example in ghc and haskell-platform.
 
-
 %package -n ghc-srpm-macros
 Summary:RPM macros for building Haskell source packages
 Group:  Development/Libraries/Other
@@ -82,15 +80,14 @@
 Macros used when generating source Haskell rpm packages.
 
 

commit rubygem-gpgme for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package rubygem-gpgme for openSUSE:Factory 
checked in at 2015-08-28 08:27:17

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


Package is rubygem-gpgme

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-gpgme/rubygem-gpgme.changes  
2015-07-28 11:43:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-gpgme.new/rubygem-gpgme.changes 
2015-08-28 08:27:24.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 27 04:29:24 UTC 2015 - co...@suse.com
+
+- updated to version 2.0.10
+  no changelog found
+
+---

Old:

  gpgme-2.0.9.gem

New:

  gpgme-2.0.10.gem



Other differences:
--
++ rubygem-gpgme.spec ++
--- /var/tmp/diff_new_pack.6nb4AS/_old  2015-08-28 08:27:25.0 +0200
+++ /var/tmp/diff_new_pack.6nb4AS/_new  2015-08-28 08:27:25.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-gpgme
-Version:2.0.9
+Version:2.0.10
 Release:0
 %define mod_name gpgme
 %define mod_full_name %{mod_name}-%{version}

++ gpgme-2.0.9.gem - gpgme-2.0.10.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/gpgme/extconf.rb new/ext/gpgme/extconf.rb
--- old/ext/gpgme/extconf.rb2015-07-24 06:50:01.0 +0200
+++ new/ext/gpgme/extconf.rb2015-08-27 03:44:37.0 +0200
@@ -62,7 +62,7 @@
   require 'rubygems'
   require 'mini_portile'
 
-  libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.19').tap do |recipe|
+  libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.20').tap do |recipe|
 recipe.target = File.join(ROOT, ports)
 recipe.files = 
[ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2;]
 recipe.configure_options = [
@@ -96,7 +96,7 @@
 recipe.activate
   end
 
-  gpgme_recipe = MiniPortile.new('gpgme', '1.5.5').tap do |recipe|
+  gpgme_recipe = MiniPortile.new('gpgme', '1.6.0').tap do |recipe|
 recipe.target = File.join(ROOT, ports)
 recipe.files = 
[ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2;]
 recipe.configure_options = [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/gpgme/gpgme_n.c new/ext/gpgme/gpgme_n.c
--- old/ext/gpgme/gpgme_n.c 2015-07-24 06:50:01.0 +0200
+++ new/ext/gpgme/gpgme_n.c 2015-08-27 03:44:37.0 +0200
@@ -622,6 +622,54 @@
   return Qnil;
 }
 
+#if defined(GPGME_VERSION_NUMBER)  GPGME_VERSION_NUMBER = 0x010600
+static gpgme_error_t
+status_cb (void *hook, const char *keyword, const char *args)
+{
+  VALUE vcb = (VALUE)hook, vstatusfunc, vhook_value;
+
+  vstatusfunc = RARRAY_PTR(vcb)[0];
+  vhook_value = RARRAY_PTR(vcb)[1];
+
+  rb_funcall (vstatusfunc, rb_intern (call), 3,
+ vhook_value,
+ keyword ? rb_str_new2 (keyword) : Qnil,
+ args ? rb_str_new2 (args) : Qnil);
+  return gpgme_err_make (GPG_ERR_SOURCE_USER_1, GPG_ERR_NO_ERROR);
+}
+
+static VALUE
+rb_s_gpgme_set_status_cb (VALUE dummy, VALUE vctx, VALUE vstatusfunc,
+ VALUE vhook_value)
+{
+  gpgme_ctx_t ctx;
+  VALUE vcb = rb_ary_new ();
+
+  rb_ary_push (vcb, vstatusfunc);
+  rb_ary_push (vcb, vhook_value);
+  /* Keep a reference to avoid GC. */
+  rb_iv_set (vctx, @status_cb, vcb);
+
+  UNWRAP_GPGME_CTX(vctx, ctx);
+  if (!ctx)
+rb_raise (rb_eArgError, released ctx);
+  gpgme_set_status_cb (ctx, status_cb, (void*)vcb);
+  return Qnil;
+}
+
+static VALUE
+rb_s_gpgme_get_status_cb (VALUE dummy, VALUE vctx, VALUE rstatusfunc,
+ VALUE rhook_value)
+{
+  VALUE vcb = rb_iv_get (vctx, @status_cb);
+
+  /* No need to call gpgme_get_status_cb. */
+  rb_ary_store (rstatusfunc, 0, RARRAY_PTR(vcb)[0]);
+  rb_ary_store (rhook_value, 0, RARRAY_PTR(vcb)[1]);
+  return Qnil;
+}
+#endif
+
 static void
 progress_cb (void *hook, const char *what, int type, int current, int total)
 {
@@ -709,6 +757,35 @@
 }
 #endif
 
+#if defined(GPGME_VERSION_NUMBER)  GPGME_VERSION_NUMBER = 0x010600
+static VALUE
+rb_s_gpgme_set_offline (VALUE dummy, VALUE vctx, VALUE vyes)
+{
+  gpgme_ctx_t ctx;
+
+  UNWRAP_GPGME_CTX(vctx, ctx);
+  if (!ctx)
+rb_raise (rb_eArgError, released ctx);
+
+  gpgme_set_offline (ctx, vyes == Qtrue);
+  return Qnil;
+}
+
+static VALUE
+rb_s_gpgme_get_offline (VALUE dummy, VALUE vctx)
+{
+  gpgme_ctx_t ctx;
+  int yes;
+
+  UNWRAP_GPGME_CTX(vctx, ctx);
+  if (!ctx)
+rb_raise (rb_eArgError, released ctx);
+
+  yes = gpgme_get_offline (ctx);
+  return yes ? Qtrue : Qfalse;
+}

commit crmsh for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2015-08-28 08:27:05

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


Package is crmsh

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2015-08-15 
11:39:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2015-08-28 
08:27:17.0 +0200
@@ -1,0 +2,30 @@
+Wed Aug 26 22:01:24 UTC 2015 - kgronl...@suse.com
+
+- Update to version 2.2.0~rc3+git.1440626270.8872dbc:
+  + low: hb_report: Increase time to wait for the logmark
+  + medium: log_patterns: Remove reference to function name in log patterns 
(bsc#942906)
+  + low: hb_report: Collect libqb version (bsc#943327)
+  + medium: report: Reintroduce empty transition pruning (bsc#943291)
+  + medium: scripts: Ensure that the Filesystem resource exists [nfsserver] 
(bsc#898658)
+  + low: scripts: Make virtual IP optional [nfsserver]
+  + high: scripts: Add force parameter to cib and crm actions, and don't pass 
--force by default
+  + high: scripts: Default to passing --force to crm after all
+  + medium: options: Add --no option
+  + medium: scripts: Use --no option over --force unless force: true is set in 
the script
+  + high: ui_script: Print cached errors in json run
+
+---
+Tue Aug 25 12:53:22 UTC 2015 - kgronl...@suse.com
+
+- Update to version 2.2.0~rc3+git.1440506835.395dad0:
+  + high: report: Update transition edge regexes (bsc#942906)
+  + high: hb_report: Always prefer syslog if available (bsc#942906)
+
+---
+Tue Aug 25 10:35:17 UTC 2015 - kgronl...@suse.com
+
+- Update to version 2.2.0~rc3+git.1440493477.255685f:
+  + low: scripts: Catch attempt to pass dict as parameter value
+  + medium: scripts: Switch install default to false (fate#318482)
+
+---

Old:

  crmsh-2.2.0~rc3+git.1439547680.0877a90.tar.bz2

New:

  crmsh-2.2.0~rc3+git.1440626270.8872dbc.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.az9hc4/_old  2015-08-28 08:27:18.0 +0200
+++ /var/tmp/diff_new_pack.az9hc4/_new  2015-08-28 08:27:18.0 +0200
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.2.0~rc3+git.1439547680.0877a90
+Version:2.2.0~rc3+git.1440626270.8872dbc
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.az9hc4/_old  2015-08-28 08:27:18.0 +0200
+++ /var/tmp/diff_new_pack.az9hc4/_new  2015-08-28 08:27:18.0 +0200
@@ -1,4 +1,4 @@
 servicedata
 service name=tar_scm
 param name=urlgit://github.com/ClusterLabs/crmsh.git/param
-  param 
name=changesrevision0877a90483d83aa98af93af0389701c8a22b01b3/param/service/servicedata
\ No newline at end of file
+  param 
name=changesrevision8872dbc78204535d7b544393bef03c7bf485441f/param/service/servicedata
\ No newline at end of file

++ crmsh-2.2.0~rc3+git.1439547680.0877a90.tar.bz2 - 
crmsh-2.2.0~rc3+git.1440626270.8872dbc.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0~rc3+git.1439547680.0877a90/hb_report/hb_report.in 
new/crmsh-2.2.0~rc3+git.1440626270.8872dbc/hb_report/hb_report.in
--- old/crmsh-2.2.0~rc3+git.1439547680.0877a90/hb_report/hb_report.in   
2015-08-14 12:22:33.0 +0200
+++ new/crmsh-2.2.0~rc3+git.1440626270.8872dbc/hb_report/hb_report.in   
2015-08-27 00:01:24.0 +0200
@@ -295,10 +295,6 @@
 #
 findlog() {
local logf=
-   if [ -f $PCMK_LOG ]; then
-   echo $PCMK_LOG
-   return
-   fi
 
if [ $HA_LOGFACILITY ]; then
logf=`findmsg $UNIQUE_MSG | awk '{print $1}'`
@@ -308,13 +304,16 @@
return
fi
 
-
-   collect_journal $FROM_TIME $TO_TIME $WORKDIR/$JOURNAL_F
if [ -f $WORKDIR/$JOURNAL_F ]; then
echo $WORKDIR/$JOURNAL_F
return
fi
 
+   if [ -f $PCMK_LOG ]; then
+   echo $PCMK_LOG
+   return
+   fi
+
echo ${HA_DEBUGFILE:-$HA_LOGFILE}
[ ${HA_DEBUGFILE:-$HA_LOGFILE} ] 
debug will try with ${HA_DEBUGFILE:-$HA_LOGFILE}
@@ -1051,6 +1050,9 @@
local outf
outf=$WORKDIR/$HALOG_F
 
+   # collect journal from systemd
+   collect_journal $FROM_TIME $TO_TIME $WORKDIR/$JOURNAL_F
+
   

commit ghc-cabal-helper for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package ghc-cabal-helper for 
openSUSE:Factory checked in at 2015-08-28 08:26:52

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


Package is ghc-cabal-helper

Changes:

--- /work/SRC/openSUSE:Factory/ghc-cabal-helper/ghc-cabal-helper.changes
2015-08-25 07:19:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-cabal-helper.new/ghc-cabal-helper.changes   
2015-08-28 08:27:09.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 26 20:05:13 UTC 2015 - mimi...@gmail.com
+
+- update to 0.5.2.0
+
+---

Old:

  cabal-helper-0.5.0.0.tar.gz

New:

  cabal-helper-0.5.2.0.tar.gz



Other differences:
--
++ ghc-cabal-helper.spec ++
--- /var/tmp/diff_new_pack.Q2KHJt/_old  2015-08-28 08:27:09.0 +0200
+++ /var/tmp/diff_new_pack.Q2KHJt/_new  2015-08-28 08:27:09.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name cabal-helper
 %bcond_with tests
 Name:   ghc-cabal-helper
-Version:0.5.0.0
+Version:0.5.2.0
 Release:0
 Summary:Simple interface to some of Cabal's configuration state used 
by ghc-mod
 License:AGPL-3.0+
@@ -85,11 +85,9 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 mkdir %{buildroot}%{_prefix}/bin
@@ -100,15 +98,12 @@
 %cabal test
 %endif
 
-
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE

++ cabal-helper-0.5.0.0.tar.gz - cabal-helper-0.5.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cabal-helper-0.5.0.0/CabalHelper/Main.hs 
new/cabal-helper-0.5.2.0/CabalHelper/Main.hs
--- old/cabal-helper-0.5.0.0/CabalHelper/Main.hs2015-08-12 
09:25:45.0 +0200
+++ new/cabal-helper-0.5.2.0/CabalHelper/Main.hs2015-08-20 
04:02:22.0 +0200
@@ -168,15 +168,7 @@
   return $ Just $ ChResponseVersion (show comp) ver
 
 ghc-options:flags - do
-  res - componentsMap lbi v distdir $ \c clbi bi - let
-   outdir = componentOutDir lbi c
-   (clbi', adopts) = case flags of
-   [--with-inplace] - (clbi, mempty)
-   [] - removeInplaceDeps v lbi pd clbi
-
-
-   opts = componentGhcOptions normal lbi bi clbi' outdir
- in renderGhcOptions' lbi v (opts `mappend` adopts)
+  res - componentOptions lvd True flags id
   return $ Just $ ChResponseCompList (res ++ [(ChSetupHsName, [])])
 
 ghc-src-options:flags - do
@@ -204,12 +196,15 @@
 ghc-merged-pkg-options:flags - do
   let pd = localPkgDescr lbi
   res - mconcat . map snd $ (componentOptions' lvd True flags (\_ _ o 
- return o) $ \opts - mempty {
-   ghcOptPackageDBs = ghcOptPackageDBs opts,
-   ghcOptPackages   = ghcOptPackages opts,
-   ghcOptHideAllPackages = ghcOptHideAllPackages opts
+   ghcOptPackageDBs = [],
+   ghcOptHideAllPackages = NoFlag,
+   ghcOptPackages   = ghcOptPackages opts
})
 
-  let res' = res { ghcOptPackageDBs = nub $ ghcOptPackageDBs res }
+  let res' = res { ghcOptPackageDBs = withPackageDB lbi
+ , ghcOptHideAllPackages = Flag True
+ , ghcOptPackages   = nub $ ghcOptPackages res
+ }
 
   Just . ChResponseList $ renderGhcOptions' lbi v res'
 
@@ -304,7 +299,7 @@
opts = componentGhcOptions normal lbi bi clbi' outdir
opts' = f opts
 
- in rf lbi v $ opts' `mappend` adopts
+ in rf lbi v $ nubPackageFlags $ opts' `mappend` adopts
 
 componentOptions (lbi, v, distdir) inplaceFlag flags f =
 componentOptions' (lbi, v, distdir) inplaceFlag flags renderGhcOptions' f
@@ -380,6 +375,8 @@
isInplaceDep :: (InstalledPackageId, PackageId) - Bool
isInplaceDep (ipid, pid) = inplacePackageId pid == ipid
 
+nubPackageFlags opts = opts { ghcOptPackages = nub $ ghcOptPackages opts }
+
 renderGhcOptions' lbi v opts = do
 #if CABAL_MAJOR == 1  CABAL_MINOR  20
   (ghcProg, _) - requireProgram v ghcProgram (withPrograms lbi)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cabal-helper-0.5.0.0/Distribution/Helper.hs 
new/cabal-helper-0.5.2.0/Distribution/Helper.hs
--- old/cabal-helper-0.5.0.0/Distribution/Helper.hs 2015-08-12 
09:25:45.0 +0200
+++ new/cabal-helper-0.5.2.0/Distribution/Helper.hs 2015-08-20 

commit erlang for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package erlang for openSUSE:Factory checked 
in at 2015-08-28 08:26:50

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


Package is erlang

Changes:

--- /work/SRC/openSUSE:Factory/erlang/erlang.changes2015-08-01 
11:37:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.erlang.new/erlang.changes   2015-08-28 
08:27:07.0 +0200
@@ -1,0 +2,14 @@
+Wed Aug 26 17:23:03 UTC 2015 - kru...@zib.de
+
+- update to 18.0.3:
+  * erts: Fixed a binary memory leak when printing to shell using
+  the tty driver (i.e. not -oldshell).
+  * erts: Fix a bug where the standard error port sometimes
+  crashes with eagain as the reason.
+
+---
+Thu Aug 13 14:11:34 UTC 2015 - kru...@zib.de
+
+- add erts_fix_unlock_status_lock.patch to fix a rare deadlock in erts
+
+---

Old:

  OTP-18.0.2.tar.gz

New:

  OTP-18.0.3.tar.gz
  erts_fix_unlock_status_lock.patch



Other differences:
--
++ erlang.spec ++
--- /var/tmp/diff_new_pack.z3tWsP/_old  2015-08-28 08:27:08.0 +0200
+++ /var/tmp/diff_new_pack.z3tWsP/_new  2015-08-28 08:27:08.0 +0200
@@ -21,7 +21,7 @@
 %endif
 
 Name:   erlang
-Version:18.0.2
+Version:18.0.3
 Release:0
 Summary:General-purpose programming language and runtime environment
 License:Apache-2.0
@@ -41,6 +41,8 @@
 Patch4: erlang-not-install-misc.patch
 # PATCH-FIX-UPSTREAM crypto.patch - matwey.korni...@gmail.com -- fix 
compilation with disabled EC in openssl
 Patch5: crypto.patch
+# PATCH-FIX-UPSTREAM erts_fix_unlock_status_lock.patch - 
lukas.lars...@erlang-solutions.com -- erts: Make sure to unlock status lock 
when setting process prio
+Patch6: erts_fix_unlock_status_lock.patch
 BuildRequires:  autoconf
 BuildRequires:  gcc-c++
 BuildRequires:  ncurses-devel
@@ -295,6 +297,7 @@
 %patch0 -p1 -b .rpath
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 cp %{S:9} .
 
 ./otp_build autoconf

++ OTP-18.0.2.tar.gz - OTP-18.0.3.tar.gz ++
/work/SRC/openSUSE:Factory/erlang/OTP-18.0.2.tar.gz 
/work/SRC/openSUSE:Factory/.erlang.new/OTP-18.0.3.tar.gz differ: char 18, line 1

++ erts_fix_unlock_status_lock.patch ++
From 02380778fd2a9d6af85865a89ef0747351cc0f88 Mon Sep 17 00:00:00 2001
From: Lukas Larsson lukas.lars...@erlang-solutions.com
Date: Thu, 13 Aug 2015 14:52:20 +0200
Subject: [PATCH] erts: Make sure to unlock status lock when setting process
 prio

---
 erts/emulator/beam/erl_process.c | 4 
 1 file changed, 4 insertions(+)

diff --git a/erts/emulator/beam/erl_process.c b/erts/emulator/beam/erl_process.c
index 7b3d12c..98f01bb 100644
--- a/erts/emulator/beam/erl_process.c
+++ b/erts/emulator/beam/erl_process.c
@@ -9177,6 +9177,10 @@ erts_set_process_priority(Process *p, Eterm value)
 
a = erts_smp_atomic32_cmpxchg_mb(p-state, n, e);
} while (a != e);
+
+if (slocked)
+erts_smp_proc_unlock(p, ERTS_PROC_LOCK_STATUS);
+
 }
 
 switch (oprio) {



commit wxMaxima for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package wxMaxima for openSUSE:Factory 
checked in at 2015-08-28 08:27:12

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


Package is wxMaxima

Changes:

--- /work/SRC/openSUSE:Factory/wxMaxima/wxMaxima.changes2015-02-13 
08:35:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.wxMaxima.new/wxMaxima.changes   2015-08-28 
08:27:20.0 +0200
@@ -1,0 +2,72 @@
+Wed Aug 19 10:08:15 UTC 2015 - badshah...@gmail.com
+
+- Update to version 15.08.0:
+  + MathJAX now provides scaleable equations and extended
+drag-and-drop for the html export.
+  + The table-of-contents-sidebar now shows the current cursor
+position.
+  + Fixed a few instances of cursors jumping out of the screen.
+  + Fixed a few instances of cursors jumping to the beginning or
+end of the worksheet.
+  + Better detection which cell maxima is processing and if it
+still is doing so.
+  + Regression: Hiding the toolbar didn't work on some systems.
+  + Markdown support for =, =, =, -, -, -, = and +/-
+symbols.
+  + An option to not export maxima's input as well as the output.
+  + An option to use High-resolution bitmaps for the HTML export.
+  + Images that are too big for the window now are displayed in a
+scaled-down version.
+  + Fixed the support for out-of-tree-bulds that was broken in 15.04.
+  + Meaningful ALT texts for the HTML export to provide accessibility.
+  + An option to include the .wxmx file in the .html export.
+  + Performance fixes that are espectionally effective for MSW
+  + Unification of some platform-specific code.
+  * bash autocompletion.
+  + A fourth sectioning level.
+  + Made entering uppercase greek letters easier and documented
+how to input special unicode symbols.
+  + Syntax highlighting in code cells.
+  + Automatic highlighting of text equal to the currrently
+selected one.
+  + A batch mode that pauses evaluation if maxima asks a question.
+  + A halt on error feature.
+  + Now evaluation of a new command is only triggered if
+evaluation of the last command has finished. This means that
+output from maxima is always appended to the right cell.
+  + Un-broke error and question handling for multiple commands per
+cell. Sincewe now send maxima's input command-per-command this
+means a cell with multiple commands is no more evaluated
+faster than multiple cells with single commands each.
+  + If ever a end-of-evaluation marker gets lost there is a new
+trigger evaluation menu entry in the maxima menu.
+  + On wxGtk autocompletion was replaced by a content assistant
+that is based on the surprisingly powerful autocompletion
+feature.
+  + Ctrl+Tab now launches the autocompletion (or content
+assistant, if available).
+  + Tab and Shift+Tab now indent and unindent regions.
+  + Ctrl+Mouse wheel and Ctrl++/- now zoom in and out of the
+worksheet.
+  + Allow Extending selection from part of a single cell to
+multiple cells.
+  + An Autoindent functionality.
+- Changes from version 15.04.0:
+  + See /usr/doc/packages/wxMaxima/ChangeLog file.
+- Explicit dependency on wxwidgets = 3.0.
+- Update maxima version required for building.
+- Package ChangeLog file available in upstream tarball since
+  version 15.04.0.
+- Add patch required because upstream missed a few files from
+  the tarball:
+  + wxMaxima-missing-make-targets.patch (touches autotool files
+BR on autoreconf required).
+- Generate and install hicolor icons from the bundled svg icon
+  file; introduces BR on inkscape, hicolor-icon-theme.
+- Use %post and %postun scriptlets as necessary.
+- Update filelist to include new files installed by upstream, as
+  well as hicolor icons.
+- Update desktop menu filename to be consistent with upstream; add
+  Mimetypes specification to .desktop file.
+
+---

Old:

  wxmaxima-14.12.1.tar.gz
  wxmaxima.desktop

New:

  wxMaxima-missing-make-targets.patch
  wxMaxima.desktop
  wxmaxima-15.08.0.tar.gz



Other differences:
--
++ wxMaxima.spec ++
--- /var/tmp/diff_new_pack.CVjEie/_old  2015-08-28 08:27:22.0 +0200
+++ /var/tmp/diff_new_pack.CVjEie/_new  2015-08-28 08:27:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wxMaxima
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,35 +19,36 @@
 %define tarname wxmaxima
 
 Name:   wxMaxima
-Version:  

commit monitoring-plugins-zypper for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package monitoring-plugins-zypper for 
openSUSE:Factory checked in at 2015-08-28 08:27:30

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-zypper (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-zypper.new (New)


Package is monitoring-plugins-zypper

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-zypper/monitoring-plugins-zypper.changes
  2015-03-11 09:58:58.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-zypper.new/monitoring-plugins-zypper.changes
 2015-08-28 08:27:52.0 +0200
@@ -1,0 +2,11 @@
+Thu Aug 20 12:20:47 UTC 2015 - l...@linux-schulserver.de
+
+- also include the local changes file in some subprofiles, so people
+  can overwrite the settings there (bnc #914493)
+- Update to 1.83:
+  + Tumbleweed is a rolling release - so asume it is not outdated 
+at any time. Need to be clarified if we should check actively if
+the installed Tumbleweed is outdated or not. Maybe we can use 
+/etc/products.d/baseproduct to check for end-of-life information?
+
+---



Other differences:
--
++ check_zypper.pl ++
--- /var/tmp/diff_new_pack.cpDlsM/_old  2015-08-28 08:27:52.0 +0200
+++ /var/tmp/diff_new_pack.cpDlsM/_new  2015-08-28 08:27:52.0 +0200
@@ -4,7 +4,8 @@
 # check_zypper - nagios plugin
 #
 # Copyright (C) 2008-2010, Novell, Inc.
-# Copyright (C) 2011-2013, SUSE Linux Products GmbH
+# Copyright (C) 2011-2014, SUSE Linux Products GmbH
+# Copyright (C) 2015, SUSE Linux GmbH
 # Author: Lars Vogdt
 #
 # All rights reserved.
@@ -35,8 +36,6 @@
 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 # POSSIBILITY OF SUCH DAMAGE.
 #
-# $Id$
-#
 
 use strict;
 use warnings;
@@ -50,7 +49,7 @@
 
 # constants
 $PROGNAME = check_zypper;
-$VERSION  = '1.82';
+$VERSION  = '1.83';
 $DEBUG= 0;
 
 # variables
@@ -62,6 +61,7 @@
 our $refresh_wrapper = '/usr/sbin/zypp-refresh-wrapper';
 our $use_sudo= 'unset LANG; ';
 our $releasefile = '/etc/SuSE-release';
+our $productfile = '/etc/products.d/baseproduct';
 our $rpm = '/bin/rpm';
 our $awk = '/bin/awk';
 our $grep= '/bin/grep';
@@ -89,6 +89,7 @@
 our %supported_release = (
 'openSUSE' = [ '12.3', '13.1', '13.2', '13.3' ],
 'SLE'  = [ '10.4', '11.3', '11.4', '12.0', '12.1' ],
+   'Tumbleweed' = [ '2015*' ],
 );
 $opt_w = 'recommended,optional,unsupported,local_package';
 $opt_c = 'security';
@@ -136,6 +137,9 @@
 elsif (/^openSUSE/){
 $dist{'name'} = 'openSUSE';
 }
+   elsif (/^CODENAME\s+=\s+Tumbleweed/){
+   $dist{'name'} = 'Tumbleweed';
+   }
 if (/^VERSION/) {
 my ($version) = $_ =~ m/VERSION = (.*)/;
 $dist{'version'}=trim($version);
@@ -149,6 +153,23 @@
 return ( \%dist );
 }
 
+sub endoflife($){
+my ($file) = @_;
+   my $eol='1970-01-01';
+if (-r $file){
+   open(PRODFILE, $file) || warn(Could not open $file\n);
+   while (PRODFILE){
+   chomp;
+   if (/endoflife(.*)\/endoflife/){
+  $eol=$1;
+   }
+   }
+   }
+   my ($d, $m, $y) = (localtime(time()))[3,4,5];
+   my $year=1900+$y;
+print STDERR INFO: Current: $year-$m-$d; End of life: $eol\n if ($DEBUG);
+}
+
 sub print_usage () {
 print This plugin checks for software updates on systems that use 
package\n;
 print management systems based on the zypper command found in 
openSUSE.\n\n;
@@ -733,7 +754,12 @@
 }
 else {
 my ( $ret_str, $error ) = check($dist);
-if ( grep {/\Q$dist-{'name'}\E/} keys %supported_release ) {
+   if ($dist-{'name'} eq Tumbleweed){
+   print STDERR INFO: found Tumbleweed $version_release in 
\%supported_release\n;
+   print STDERR INFO: without parsing 
http://download.opensuse.org/tumbleweed/repo/oss/media.1/media I can not say 
more\n;
+   print STDERR INFO: at the moment. So a FIXME for the script - 
but until then, don't be evil and say OK.\n;
+   }
+elsif ( grep {/\Q$dist-{'name'}\E/} keys %supported_release ) {
 print STDERR INFO: found $dist-{'name'} - checking supportstatus\n 
if ($DEBUG);
 if ( grep {/\Q$version_release\E/} @{ 
$supported_release{$dist-{'name'}} } ) {
 print STDERR INFO: found $version_release for $dist-{'name'} in 
\%supported_release - OK\n if ($DEBUG);

++ usr.lib.nagios.plugins.check_zypper ++
--- /var/tmp/diff_new_pack.cpDlsM/_old  2015-08-28 08:27:52.0 +0200
+++ 

commit batctl for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package batctl for openSUSE:Factory checked 
in at 2015-08-28 08:27:27

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


Package is batctl

Changes:

--- /work/SRC/openSUSE:Factory/batctl/batctl.changes2015-08-01 
11:37:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.batctl.new/batctl.changes   2015-08-28 
08:27:51.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 27 12:16:38 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 2015.1
+  * No changelog available
+
+---

Old:

  batctl-2015.0.tar.gz

New:

  batctl-2015.1.tar.gz



Other differences:
--
++ batctl.spec ++
--- /var/tmp/diff_new_pack.PpJBoI/_old  2015-08-28 08:27:51.0 +0200
+++ /var/tmp/diff_new_pack.PpJBoI/_new  2015-08-28 08:27:51.0 +0200
@@ -22,7 +22,7 @@
 
 Name:   batctl
 Summary:B.A.T.M.A.N. advanced control and management tool
-Version:2015.0
+Version:2015.1
 Release:2
 License:GPL-2.0
 Group:  Productivity/Networking/Other

++ batctl-2015.0.tar.gz - batctl-2015.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/batctl-2015.0/main.h new/batctl-2015.1/main.h
--- old/batctl-2015.0/main.h2015-04-26 13:32:22.0 +0200
+++ new/batctl-2015.1/main.h2015-04-28 20:49:20.0 +0200
@@ -23,7 +23,7 @@
 #define _BATCTL_MAIN_H
 
 #ifndef SOURCE_VERSION
-#define SOURCE_VERSION 2015.0
+#define SOURCE_VERSION 2015.1
 #endif
 
 #define SOCKET_PATH_FMT %s/batman_adv/%s/socket
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/batctl-2015.0/packet.h new/batctl-2015.1/packet.h
--- old/batctl-2015.0/packet.h  2015-04-26 13:32:22.0 +0200
+++ new/batctl-2015.1/packet.h  2015-04-28 20:49:20.0 +0200
@@ -18,6 +18,9 @@
 #ifndef _NET_BATMAN_ADV_PACKET_H_
 #define _NET_BATMAN_ADV_PACKET_H_
 
+#include asm/byteorder.h
+#include linux/types.h
+
 /**
  * enum batadv_packettype - types for batman-adv encapsulated packets
  * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/batctl-2015.0/ping.c new/batctl-2015.1/ping.c
--- old/batctl-2015.0/ping.c2015-04-26 13:32:22.0 +0200
+++ new/batctl-2015.1/ping.c2015-04-28 20:49:20.0 +0200
@@ -34,7 +34,7 @@
 #include stdint.h
 #include sys/select.h
 #include sys/time.h
-#include linux/if_ether.h
+#include netinet/if_ether.h
 
 #include main.h
 #include ping.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/batctl-2015.0/tcpdump.h new/batctl-2015.1/tcpdump.h
--- old/batctl-2015.0/tcpdump.h 2015-04-26 13:32:22.0 +0200
+++ new/batctl-2015.1/tcpdump.h 2015-04-28 20:49:20.0 +0200
@@ -23,7 +23,7 @@
 #define _BATCTL_TCPDUMP_H
 
 #include netpacket/packet.h
-#include linux/if_ether.h
+#include netinet/if_ether.h
 #include net/if_arp.h
 #include sys/types.h
 #include main.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/batctl-2015.0/traceroute.c 
new/batctl-2015.1/traceroute.c
--- old/batctl-2015.0/traceroute.c  2015-04-26 13:32:22.0 +0200
+++ new/batctl-2015.1/traceroute.c  2015-04-28 20:49:20.0 +0200
@@ -22,13 +22,13 @@
 
 
 #include netinet/in.h
+#include netinet/if_ether.h
 #include errno.h
 #include stdio.h
 #include stdlib.h
 #include unistd.h
 #include fcntl.h
 #include string.h
-#include linux/if_ether.h
 #include stddef.h
 #include sys/select.h
 #include sys/time.h




commit rsyslog for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package rsyslog for openSUSE:Factory checked 
in at 2015-08-28 08:26:55

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


Package is rsyslog

Changes:

--- /work/SRC/openSUSE:Factory/rsyslog/rsyslog.changes  2015-07-14 
17:44:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.rsyslog.new/rsyslog.changes 2015-08-28 
08:27:10.0 +0200
@@ -1,0 +2,24 @@
+Wed Aug 26 19:41:39 UTC 2015 - astie...@suse.com
+
+- rsyslog 8.12.0:
+  * Harmonize resetConfigVariables values and defaults
+  * GT/KSI: fix some issues in signature file format and add conversion tool
+  * bugfix: ommysql did not work when gnutls was enabled
+  * bugfix omfile: potential memory leak on file close
+  * bugfix omfile: potential race in dynafile detection/creation
+  * bugfix omfile: Fix race-condition detection in path-creation code
+  * bugfix parser subsystem: potential misadressing in SanitizeMsg()
+  * imfile: files moved outside of directory are now (properly) handled
+  * bugfix: imfile: segfault when using startmsg.regex
+  * bugfix imfile: file table was corrupted when on file deletion
+  * bugfix ompgsql: transaction were improperly handled
+  * bugfix mmjsonparse: memory leak if non-cee-json message is processed
+  * testbench: remove raciness from UDP based tests
+  * testbench: added bash into all scripts makign it mandatory
+  * bugfix testbench: Fixed problem building syslog_caller util when 
+liblogging-stdlog is not available. 
+- add upstream patches:
+  * rsyslog-8.12.0-gnutls.patch to fix build with gnutls
+  * rsyslog-8.12.0-parallel-build.patch to fix parallel build
+
+---

Old:

  rsyslog-8.11.0.tar.gz
  rsyslog-doc-8.11.0.tar.gz

New:

  rsyslog-8.12.0-gnutls.patch
  rsyslog-8.12.0-parallel-build.patch
  rsyslog-8.12.0.tar.gz
  rsyslog-doc-8.12.0.tar.gz



Other differences:
--
++ rsyslog.spec ++
--- /var/tmp/diff_new_pack.l1isNn/_old  2015-08-28 08:27:12.0 +0200
+++ /var/tmp/diff_new_pack.l1isNn/_new  2015-08-28 08:27:12.0 +0200
@@ -20,7 +20,7 @@
 Summary:The enhanced syslogd for Linux and Unix
 License:(GPL-3.0+ and Apache-2.0)
 Group:  System/Daemons
-Version:8.11.0
+Version:8.12.0
 Release:0
 %if 0%{?suse_version} = 1210
 %bcond_without  systemd
@@ -94,6 +94,11 @@
 Requires(pre):  %insserv_prereq %fillup_prereq /etc/init.d/syslog
 BuildRequires:  klogd
 %endif
+# for patch1
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
+#
 BuildRequires:  bison
 BuildRequires:  flex
 BuildRequires:  openssl-devel = 0.9.7
@@ -138,7 +143,8 @@
 %endif
 %if %{with guardtime}
 BuildRequires:  libgt-devel = 0.3.1
-BuildRequires:  pkgconfig(libksi)
+BuildRequires:  pkgconfig(libksi) = 3.2.2.0
+BuildConflicts: libksi = 3.3.0.0
 %endif
 %if %{with dbi}
 BuildRequires:  libdbi-devel
@@ -213,6 +219,8 @@
 
 # PATCH-FIX-OPENSUSE rsyslog-unit.patch crrodrig...@opensuse.org Customize 
upstream systemd unit for openSUSE needs.
 Patch0: rsyslog-unit.patch
+Patch1: rsyslog-8.12.0-gnutls.patch
+Patch2: rsyslog-8.12.0-parallel-build.patch
 
 # this is a dirty hack since % dir does only work for the specified directory 
and nothing above
 # but I want to be able to switch this to /etc/apparmor.d once the profiles 
received more testing
@@ -521,6 +529,8 @@
 %prep
 %setup -q -n %{name}-%{upstream_version} -a 14
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 #
 %if %{with systemd}
 for file in rsyslog-service-prepare; do
@@ -535,6 +545,10 @@
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing -W -Wall -I../grammar 
-I../../grammar
 # needs java
 #--enable-gui\
+
+# for patch1
+autoreconf -fiv
+
 %configure \
--with-moddirs=%{rsyslog_module_dir_withdeps} \
 %if ! %{with rst2man}
@@ -1120,7 +1134,6 @@
 %defattr(-,root,root)
 %{rsyslog_module_dir_withdeps}/lmcry_gcry.so
 %{_bindir}/rscryutil
-%{_mandir}/man1/rscryutil.1*
 %endif
 
 %if %{with guardtime}
@@ -1130,7 +1143,6 @@
 %{rsyslog_module_dir_withdeps}/lmsig_gt.so
 %{rsyslog_module_dir_withdeps}/lmsig_ksi.so
 %{_bindir}/rsgtutil
-%{_mandir}/man1/rsgtutil.1*
 %endif
 
 %changelog

++ rsyslog-8.12.0-gnutls.patch ++
From 588b4ca7412326abd51a5b2060eafbc04611e419 Mon Sep 17 00:00:00 2001
From: Radovan Sroka rsr...@redhat.com
Date: Tue, 11 Aug 2015 17:09:15 +0200
Subject: [PATCH] Fix detection of the GnuTLS package

This commit fixes a number of issues that cropped up from these changes:
23c5b3e replace deprecated GnuTLS functions with newer ones if available
88f0651 bugfix: ommysql did not work when gnutls 

commit syncthing for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package syncthing for openSUSE:Factory 
checked in at 2015-08-28 08:26:48

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


Package is syncthing

Changes:

--- /work/SRC/openSUSE:Factory/syncthing/syncthing.changes  2015-08-25 
08:57:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing.new/syncthing.changes 2015-08-28 
08:27:04.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 26 13:05:27 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.11.22:
+  * Fix events timeout errors.
+- Correct TCP and UDP ports once again.
+
+---

Old:

  syncthing-0.11.21.tar.gz

New:

  syncthing-0.11.22.tar.gz



Other differences:
--
++ syncthing.spec ++
--- /var/tmp/diff_new_pack.5S6n4i/_old  2015-08-28 08:27:05.0 +0200
+++ /var/tmp/diff_new_pack.5S6n4i/_new  2015-08-28 08:27:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syncthing
-Version:0.11.21
+Version:0.11.22
 Release:0
 Summary:FOSS Continuous File Synchronization
 License:MPL-2.0

++ syncthing-0.11.21.tar.gz - syncthing-0.11.22.tar.gz ++
 8305 lines of diff (skipped)

++ syncthing.firewall ++
--- /var/tmp/diff_new_pack.5S6n4i/_old  2015-08-28 08:27:05.0 +0200
+++ /var/tmp/diff_new_pack.5S6n4i/_new  2015-08-28 08:27:05.0 +0200
@@ -2,8 +2,7 @@
 ## Description: Opens ports for Syncthing.
 
 # space separated list of allowed TCP ports
-TCP=21025
+TCP=22000
 
 # space separated list of allowed UDP ports
-TCP=21026 22000
-
+UDP=21025:21026




commit jondofox for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package jondofox for openSUSE:Factory 
checked in at 2015-08-28 08:27:02

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


Package is jondofox

Changes:

--- /work/SRC/openSUSE:Factory/jondofox/jondofox.changes2015-06-30 
10:15:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.jondofox.new/jondofox.changes   2015-08-28 
08:27:16.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 25 14:54:39 UTC 2015 - nemy...@opensuse.org
+
+- Update to 2.12.0, no changelog entry
+- Add BuildRequires for xz
+
+---



Other differences:
--
++ jondofox.spec ++
--- /var/tmp/diff_new_pack.zOCV0K/_old  2015-08-28 08:27:17.0 +0200
+++ /var/tmp/diff_new_pack.zOCV0K/_new  2015-08-28 08:27:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   jondofox
-Version:2.11.0
+Version:2.12.0
 Release:0
 Summary:Secure Firefox profile for anonymous web browsing
 License:GPL-3.0+
@@ -29,6 +29,7 @@
 BuildRequires:  update-desktop-files
 %endif
 BuildRequires:  dos2unix
+BuildRequires:  xz
 Requires:   firefox
 Recommends: jondo
 Recommends: tor
@@ -57,7 +58,7 @@
 
 %prep
 %setup -q -T -c
-ar p %{S:0} data.tar.gz | tar zx
+ar p %{S:0} data.tar.xz | tar Jx
 
 # Convert to unix line end
 find -name *.js -print0 -or -name *.cfg -print0 -or -name *.manifest 
-print0 -or -name *.rdf -print0 -or -name *.txt -print0 | xargs -0 dos2unix

++ jondofox-en_all.deb ++
Files /var/tmp/diff_new_pack.zOCV0K/_old and /var/tmp/diff_new_pack.zOCV0K/_new 
differ




commit hawk2 for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2015-08-28 08:27:09

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


Package is hawk2

Changes:

--- /work/SRC/openSUSE:Factory/hawk2/hawk2.changes  2015-08-15 
11:39:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2015-08-28 
08:27:19.0 +0200
@@ -1,0 +2,40 @@
+Wed Aug 26 22:03:39 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1440623163.e6e2342:
+  + Primitive: Remove debug inspect (bsc#940194)
+  + CrmScript: error output is not line-by-line, report as a single error 
notification
+
+---
+Wed Aug 26 16:13:00 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1440604736.8fb27d9:
+  + Dashboard: Add details pane, now at feature parity with old UI (bsc#808703)
+  + Cib: Remove tags and constraints from mini CIB
+  + Status: Show tickets in constraints list
+  + Stylesheets: Fixed multiple alert boxes
+  + CrmScript: Pass data to crm via tempfile
+  + CrmScript: Handle output from script correctly
+  + Wizard: Implemented views for wizards (fate#318482) (fate#318211) 
(fate#318281)
+  + Status: Clone resources may not have a default instance (bsc#938798)
+
+---
+Tue Aug 25 10:39:26 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1440497150.ec9656c:
+  + Wizard: html-escape descriptions since they may contain , , etc., and 
simple_format would strip them
+  + Wizard: @loaded should not be an accessible attribute
+  + Wizard: Reworked wizard model structure
+  + Wizard: Improved client-side validation for wizards
+  + Wizard: Fix styling of generated form controls
+  + Wizard: Improved handling for substeps
+  + Config: Require fileutils in puma.rb
+  + Create Node model objects via Cib to get correct node state (fate#318281)
+  + Node: Hide fence control if STONITH is disabled
+  + View: Very basic implementation of resources and constraints tabs in 
status display
+  + Show all resources, not just groups
+  + Don't hide the help text on mouseleave
+  + Explorer: Report::Upload now saves report correctly
+  + Render graph as svg instead of png
+- Add provides for ha-cluster-webui (bsc#942723)
+
+---

Old:

  hawk2-1.0.0~alpha1+git.1439476251.f3c7344.tar.bz2

New:

  hawk2-1.0.0~alpha1+git.1440623163.e6e2342.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.cpSFeL/_old  2015-08-28 08:27:20.0 +0200
+++ /var/tmp/diff_new_pack.cpSFeL/_new  2015-08-28 08:27:20.0 +0200
@@ -39,13 +39,14 @@
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:1.0.0~alpha1+git.1439476251.f3c7344
+Version:1.0.0~alpha1+git.1440623163.e6e2342
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2
 Source100:  hawk-rpmlintrc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Conflicts:  hawk
+Provides:   ha-cluster-webui
 Requires:   crmsh
 Requires:   graphviz
 Requires:   graphviz-gd

++ _servicedata ++
--- /var/tmp/diff_new_pack.cpSFeL/_old  2015-08-28 08:27:20.0 +0200
+++ /var/tmp/diff_new_pack.cpSFeL/_new  2015-08-28 08:27:20.0 +0200
@@ -1,4 +1,4 @@
 servicedata
 service name=tar_scm
 param name=urlgit://github.com/ClusterLabs/hawk.git/param
-  param 
name=changesrevisionf3c7344f23d9b22ae3ec267bdde0208c8337288a/param/service/servicedata
\ No newline at end of file
+  param 
name=changesrevisione6e2342f3f4ec9b52c444362d6735b1333da0ff6/param/service/servicedata
\ No newline at end of file

++ hawk2-1.0.0~alpha1+git.1439476251.f3c7344.tar.bz2 - 
hawk2-1.0.0~alpha1+git.1440623163.e6e2342.tar.bz2 ++
/work/SRC/openSUSE:Factory/hawk2/hawk2-1.0.0~alpha1+git.1439476251.f3c7344.tar.bz2
 
/work/SRC/openSUSE:Factory/.hawk2.new/hawk2-1.0.0~alpha1+git.1440623163.e6e2342.tar.bz2
 differ: char 11, line 1




commit unrar for openSUSE:Factory:NonFree

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package unrar for openSUSE:Factory:NonFree 
checked in at 2015-08-28 08:27:43

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


Package is unrar

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/unrar/unrar.changes  2015-08-05 
06:52:14.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.unrar.new/unrar.changes 2015-08-28 
08:27:56.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 27 17:42:59 UTC 2015 - idon...@suse.com
+
+- Update to 5.3.3
+  * No changelog available.
+
+---

Old:

  unrarsrc-5.3.2.tar.gz

New:

  unrarsrc-5.3.3.tar.gz



Other differences:
--
++ unrar.spec ++
--- /var/tmp/diff_new_pack.sYu3vj/_old  2015-08-28 08:27:58.0 +0200
+++ /var/tmp/diff_new_pack.sYu3vj/_new  2015-08-28 08:27:58.0 +0200
@@ -18,10 +18,10 @@
 
 # majorversion should match the major version number.
 %define majorversion 5
-%define libsuffix 5_3_2
+%define libsuffix 5_3_3
 
 Name:   unrar
-Version:5.3.2
+Version:5.3.3
 Release:0
 Summary:A program to extract, test, and view RAR archives
 License:SUSE-NonFree

++ unrarsrc-5.3.2.tar.gz - unrarsrc-5.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/dll.rc new/unrar/dll.rc
--- old/unrar/dll.rc2015-08-04 11:51:02.0 +0200
+++ new/unrar/dll.rc2015-08-27 14:37:41.0 +0200
@@ -2,8 +2,8 @@
 #include commctrl.h
 
 VS_VERSION_INFO VERSIONINFO
-FILEVERSION 5, 30, 2, 1679
-PRODUCTVERSION 5, 30, 2, 1679
+FILEVERSION 5, 30, 3, 1702
+PRODUCTVERSION 5, 30, 3, 1702
 FILEOS VOS__WINDOWS32
 FILETYPE VFT_APP
 {
@@ -14,8 +14,8 @@
   VALUE CompanyName, Alexander Roshal\0
   VALUE ProductName, RAR decompression library\0
   VALUE FileDescription, RAR decompression library\0
-  VALUE FileVersion, 5.30.2\0
-  VALUE ProductVersion, 5.30.2\0
+  VALUE FileVersion, 5.30.3\0
+  VALUE ProductVersion, 5.30.3\0
   VALUE LegalCopyright, Copyright � Alexander Roshal 1993-2015\0
   VALUE OriginalFilename, Unrar.dll\0
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/errhnd.cpp new/unrar/errhnd.cpp
--- old/unrar/errhnd.cpp2015-08-04 12:22:40.0 +0200
+++ new/unrar/errhnd.cpp2015-08-27 14:40:59.0 +0200
@@ -12,9 +12,9 @@
   ErrCount=0;
   EnableBreak=true;
   Silent=false;
-  DoShutdown=false;
   UserBreak=false;
   MainExit=false;
+  DisableShutdown=false;
 }
 
 
@@ -64,7 +64,10 @@
   if (!Silent)
   {
 SysErrMsg();
-return uiAskRepeatRead(FileName);
+bool Repeat=uiAskRepeatRead(FileName);
+if (!Repeat) // Disable shutdown if user pressed Cancel in error dialog.
+  DisableShutdown=true;
+return Repeat;
   }
 #endif
   return false;
@@ -100,7 +103,10 @@
   if (!Silent)
   {
 SysErrMsg();
-return uiAskRepeatWrite(FileName,DiskFull);
+bool Repeat=uiAskRepeatWrite(FileName,DiskFull);
+if (!Repeat) // Disable shutdown if user pressed Cancel in error dialog.
+  DisableShutdown=true;
+return Repeat;
   }
 #endif
   return false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/errhnd.hpp new/unrar/errhnd.hpp
--- old/unrar/errhnd.hpp2015-08-04 12:22:40.0 +0200
+++ new/unrar/errhnd.hpp2015-08-27 14:40:59.0 +0200
@@ -25,7 +25,7 @@
 uint ErrCount;
 bool EnableBreak;
 bool Silent;
-bool DoShutdown;
+bool DisableShutdown; // Shutdown is not suitable after last error.
   public:
 ErrorHandler();
 void Clean();
@@ -57,11 +57,12 @@
 void SetSignalHandlers(bool Enable);
 void Throw(RAR_EXIT Code);
 void SetSilent(bool Mode) {Silent=Mode;};
-void SetShutdown(bool Mode) {DoShutdown=Mode;};
 void SysErrMsg();
 int GetSystemErrorCode();
 void SetSystemErrorCode(int Code);
-bool UserBreak;
+bool IsShutdownEnabled() {return !DisableShutdown;}
+
+bool UserBreak; // Ctrl+Break is pressed.
 bool MainExit; // main() is completed.
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/filcreat.cpp new/unrar/filcreat.cpp
--- old/unrar/filcreat.cpp  2015-08-04 12:22:40.0 +0200
+++ new/unrar/filcreat.cpp  2015-08-27 14:40:59.0 +0200
@@ -63,7 +63,7 @@
 Ext=Name+NameLength;
   for (uint FileVer=1;;FileVer++)
   {
-#ifdef _ANDROID // No swprintf in Android NDK r9.
+#ifdef _ANDROID // No swprintf in Android prior to Android 5.0.
 uint 

commit ghc-mod for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package ghc-mod for openSUSE:Factory checked 
in at 2015-08-28 08:27:00

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


Package is ghc-mod

Changes:

--- /work/SRC/openSUSE:Factory/ghc-mod/ghc-mod.changes  2015-05-27 
12:44:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-mod.new/ghc-mod.changes 2015-08-28 
08:27:14.0 +0200
@@ -1,0 +2,19 @@
+Wed Aug 26 20:09:08 UTC 2015 - mimi...@gmail.com
+
+- update to 5.3.0.0
+* Re-license majority of code under the AGPL-3
+* Add support for GHC 7.10 and Cabal 1.22
+* Remove `cabalDependPackages', `cabalAllTargets'
+* Fix finding sandbox config file and directory.
+* Re-add output line separator global option for expand command.
+* Support for overriding the package-db stack
+* Fix ineffective cache invalidation for `find`
+
+---
+Thu Aug 13 21:05:42 UTC 2015 - mimi...@gmail.com
+
+- update to git master version from 13.08.2015- to get version compactible
+   with ghc-7.10+
+* better changelog after release stable version 5.3.+
+
+---

Old:

  ghc-mod-5.2.1.2.tar.gz

New:

  ghc-mod-5.3.0.0.tar.gz



Other differences:
--
++ ghc-mod.spec ++
--- /var/tmp/diff_new_pack.0JnGQc/_old  2015-08-28 08:27:15.0 +0200
+++ /var/tmp/diff_new_pack.0JnGQc/_new  2015-08-28 08:27:15.0 +0200
@@ -15,19 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %global pkg_name ghc-mod
 
 %bcond_with tests
 
-Name:   %{pkg_name}
-Version:5.2.1.2
+Name:   ghc-mod 
+Version:5.3.0.0
 Release:0
 Summary:Happy Haskell Programming
+License:AGPL-3.0+ and BSD-3-Clause
 Group:  Development/Languages/Other
 
-License:BSD-3-Clause
 Url:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  ghc-Cabal-devel
@@ -35,11 +37,14 @@
 # Begin cabal-rpm deps:
 BuildRequires:  chrpath
 BuildRequires:  ghc-async-devel
+BuildRequires:  ghc-cabal-helper-devel
+BuildRequires:  ghc-cereal-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-data-default-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-djinn-ghc-devel
+BuildRequires:  ghc-fclabels-devel
 BuildRequires:  ghc-filepath-devel
 BuildRequires:  ghc-ghc-devel
 BuildRequires:  ghc-ghc-paths-devel
@@ -97,46 +102,36 @@
 %prep
 %setup -q
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
 %ghc_fix_dynamic_rpath %{pkg_name} ghc-modi
 
-
 %check
 %if %{with tests}
 %cabal test
 %endif
 
-
 %post -n ghc-%{name}-devel
 %ghc_pkg_recache
 
-
 %postun -n ghc-%{name}-devel
 %ghc_pkg_recache
 
-
 %files
 %defattr(-,root,root,-)
-%doc LICENSE
+%doc LICENSE COPYING.AGPL3 COPYING.BSD3
 %{_bindir}/%{name}
 %{_bindir}/ghc-modi
 %{_datadir}/%{name}-%{version}
 
-
 %files -n ghc-%{name} -f ghc-%{name}.files
 %defattr(-,root,root,-)
-%doc LICENSE
-
 
 %files -n ghc-%{name}-devel -f ghc-%{name}-devel.files
 %defattr(-,root,root,-)
 
-
 %changelog

++ ghc-mod-5.2.1.2.tar.gz - ghc-mod-5.3.0.0.tar.gz ++
 12206 lines of diff (skipped)




commit python3-setuptools for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package python3-setuptools for 
openSUSE:Factory checked in at 2015-08-28 08:24:14

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


Package is python3-setuptools

Changes:

--- /work/SRC/openSUSE:Factory/python3-setuptools/python3-setuptools.changes
2015-08-11 08:24:46.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-setuptools.new/python3-setuptools.changes   
2015-08-28 08:24:15.0 +0200
@@ -1,0 +2,6 @@
+Sun Aug 23 00:13:57 UTC 2015 - a...@gmx.de
+
+- update to version 18.2:
+  * Issue #412: More efficient directory search in find_packages.
+
+---

Old:

  setuptools-18.1.tar.gz

New:

  setuptools-18.2.tar.gz



Other differences:
--
++ python3-setuptools.spec ++
--- /var/tmp/diff_new_pack.h2Lta0/_old  2015-08-28 08:24:16.0 +0200
+++ /var/tmp/diff_new_pack.h2Lta0/_new  2015-08-28 08:24:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-setuptools
-Version:18.1
+Version:18.2
 Release:0
 Url:http://pypi.python.org/pypi/setuptools
 Summary:Easily download, build, install, upgrade, and uninstall Python 
packages

++ setuptools-18.1.tar.gz - setuptools-18.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/CHANGES.txt 
new/setuptools-18.2/CHANGES.txt
--- old/setuptools-18.1/CHANGES.txt 2015-08-02 20:51:01.0 +0200
+++ new/setuptools-18.2/CHANGES.txt 2015-08-19 18:45:47.0 +0200
@@ -3,6 +3,12 @@
 ===
 
 
+18.2
+
+
+* Issue #412: More efficient directory search in ``find_packages``.
+
+
 18.1
 
 
@@ -85,7 +91,7 @@
 15.1
 
 
-* Updated Packaging to 15.1 to address Packaging #28.
+* Updated to Packaging 15.1 to address Packaging #28.
 * Fix ``setuptools.sandbox._execfile()`` with Python 3.1.
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/PKG-INFO new/setuptools-18.2/PKG-INFO
--- old/setuptools-18.1/PKG-INFO2015-08-02 20:51:43.0 +0200
+++ new/setuptools-18.2/PKG-INFO2015-08-19 18:46:16.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: setuptools
-Version: 18.1
+Version: 18.2
 Summary: Easily download, build, install, upgrade, and uninstall Python 
packages
 Home-page: https://bitbucket.org/pypa/setuptools
 Author: Python Packaging Authority
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/docs/conf.py 
new/setuptools-18.2/docs/conf.py
--- old/setuptools-18.1/docs/conf.py2015-06-18 14:36:06.0 +0200
+++ new/setuptools-18.2/docs/conf.py2015-08-19 18:40:51.0 +0200
@@ -246,6 +246,10 @@
pattern=rPackaging #(?Ppackaging\d+),
url='{GH}/pypa/packaging/issues/{packaging}',
),
+   dict(
+   pattern=r[Pp]ackaging 
(?Ppackaging_ver\d+(\.\d+)+),
+   
url='{GH}/pypa/packaging/blob/{packaging_ver}/CHANGELOG.rst',
+   ),
],
),
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/ez_setup.py 
new/setuptools-18.2/ez_setup.py
--- old/setuptools-18.1/ez_setup.py 2015-08-02 20:51:39.0 +0200
+++ new/setuptools-18.2/ez_setup.py 2015-08-07 20:01:18.0 +0200
@@ -30,7 +30,7 @@
 except ImportError:
 USER_SITE = None
 
-DEFAULT_VERSION = 18.1
+DEFAULT_VERSION = 18.2
 DEFAULT_URL = https://pypi.python.org/packages/source/s/setuptools/;
 DEFAULT_SAVE_DIR = os.curdir
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/setup.cfg 
new/setuptools-18.2/setup.cfg
--- old/setuptools-18.1/setup.cfg   2015-08-02 20:51:43.0 +0200
+++ new/setuptools-18.2/setup.cfg   2015-08-19 18:46:16.0 +0200
@@ -1,7 +1,7 @@
 [egg_info]
 tag_build = 
-tag_svn_revision = 0
 tag_date = 0
+tag_svn_revision = 0
 
 [aliases]
 release = egg_info -RDb ''
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.1/setuptools/__init__.py 
new/setuptools-18.2/setuptools/__init__.py
--- old/setuptools-18.1/setuptools/__init__.py  2015-06-18 14:36:06.0 
+0200
+++ new/setuptools-18.2/setuptools/__init__.py  2015-08-07 20:05:29.0 
+0200
@@ -73,21 +73,24 @@
 yield pkg
 
 @staticmethod
- 

commit yast2-bootloader for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2015-08-28 08:24:58

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


Package is yast2-bootloader

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2015-08-21 12:42:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2015-08-28 08:24:59.0 +0200
@@ -1,0 +2,22 @@
+Thu Aug 27 13:21:25 UTC 2015 - jreidin...@suse.com
+
+- use extended partition to boot even for non software raids
+  (bnc#940765)
+- for separate boot partition with btrfs prefer MBR bootloader
+  location (bnc#940797)
+- 3.1.145
+
+---
+Tue Aug 25 07:31:56 UTC 2015 - igonzalezs...@suse.com
+
+- Add support for kernel parameter with multiple values
+  (bsc#882082)
+- 3.1.144
+
+---
+Mon Aug 24 12:44:51 UTC 2015 - jreidin...@suse.com
+
+- fix removing password protection (bnc#942867)
+- 3.1.143
+
+---

Old:

  yast2-bootloader-3.1.142.tar.bz2

New:

  yast2-bootloader-3.1.145.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.iqAbod/_old  2015-08-28 08:25:00.0 +0200
+++ /var/tmp/diff_new_pack.iqAbod/_new  2015-08-28 08:25:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.142
+Version:3.1.145
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-3.1.142.tar.bz2 - yast2-bootloader-3.1.145.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.142/package/yast2-bootloader.changes 
new/yast2-bootloader-3.1.145/package/yast2-bootloader.changes
--- old/yast2-bootloader-3.1.142/package/yast2-bootloader.changes   
2015-08-19 15:07:13.0 +0200
+++ new/yast2-bootloader-3.1.145/package/yast2-bootloader.changes   
2015-08-27 15:42:09.0 +0200
@@ -1,4 +1,26 @@
 ---
+Thu Aug 27 13:21:25 UTC 2015 - jreidin...@suse.com
+
+- use extended partition to boot even for non software raids
+  (bnc#940765)
+- for separate boot partition with btrfs prefer MBR bootloader
+  location (bnc#940797)
+- 3.1.145
+
+---
+Tue Aug 25 07:31:56 UTC 2015 - igonzalezs...@suse.com
+
+- Add support for kernel parameter with multiple values
+  (bsc#882082)
+- 3.1.144
+
+---
+Mon Aug 24 12:44:51 UTC 2015 - jreidin...@suse.com
+
+- fix removing password protection (bnc#942867)
+- 3.1.143
+
+---
 Wed Aug 19 12:42:41 UTC 2015 - jreidin...@suse.com
 
 - do not require parted on target system (bnc#937066)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.142/package/yast2-bootloader.spec 
new/yast2-bootloader-3.1.145/package/yast2-bootloader.spec
--- old/yast2-bootloader-3.1.142/package/yast2-bootloader.spec  2015-08-19 
15:07:13.0 +0200
+++ new/yast2-bootloader-3.1.145/package/yast2-bootloader.spec  2015-08-27 
15:42:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.142
+Version:3.1.145
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.142/src/include/bootloader/routines/misc.rb 
new/yast2-bootloader-3.1.145/src/include/bootloader/routines/misc.rb
--- old/yast2-bootloader-3.1.142/src/include/bootloader/routines/misc.rb
2015-08-19 15:07:13.0 +0200
+++ new/yast2-bootloader-3.1.145/src/include/bootloader/routines/misc.rb
2015-08-27 15:42:09.0 +0200
@@ -139,35 +139,51 @@
   ret
 end
 
-# get kernel parameter from kernel command line
+# get kernel parameter values from kernel command line
+#
 # @param [String] line string original line
 # @param [String] key string parameter key
-# @return [String] value, false if not present,
-#   true if present key without value
+# @return [String,ArrayString] value, false if not present or true 
if present without
+#   value. If the parameter has on more than 1 value, an array will be 
returned.
 def 

commit python-cryptography for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package python-cryptography for 
openSUSE:Factory checked in at 2015-08-28 08:25:04

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


Package is python-cryptography

Changes:

--- /work/SRC/openSUSE:Factory/python-cryptography/python-cryptography.changes  
2015-08-10 09:12:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cryptography.new/python-cryptography.changes 
2015-08-28 08:25:07.0 +0200
@@ -1,0 +2,61 @@
+Sat Aug 22 10:30:08 UTC 2015 - tbecht...@suse.com
+
+- update to 1.0 (fate#318838):
+  * Switched to the new `cffi`_ ``set_source`` out-of-line API mode for
+compilation. This results in significantly faster imports and lowered
+memory consumption. Due to this change we no longer support PyPy releases
+older than 2.6 nor do we support any released version of PyPy3 (until a
+version supporting cffi 1.0 comes out).
+  * Fix parsing of OpenSSH public keys that have spaces in comments.
+  * Support serialization of certificate signing requests using the
+``public_bytes`` method of
+:class:`~cryptography.x509.CertificateSigningRequest`.
+  * Support serialization of certificates using the ``public_bytes`` method of
+:class:`~cryptography.x509.Certificate`.
+  * Add ``get_provisioning_uri`` method to
+:class:`~cryptography.hazmat.primitives.twofactor.hotp.HOTP` and
+:class:`~cryptography.hazmat.primitives.twofactor.totp.TOTP` for generating
+provisioning URIs.
+  * Add :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHash`
+and :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHMAC`.
+  * Raise a ``TypeError`` when passing objects that are not text as the value 
to
+:class:`~cryptography.x509.NameAttribute`.
+  * Add support for :class:`~cryptography.x509.OtherName` as a general name
+type.
+  * Added new X.509 extension support in 
:class:`~cryptography.x509.Certificate`
+The following new extensions are now supported:
+
+* :class:`~cryptography.x509.OCSPNoCheck`
+* :class:`~cryptography.x509.InhibitAnyPolicy`
+* :class:`~cryptography.x509.IssuerAlternativeName`
+* :class:`~cryptography.x509.NameConstraints`
+
+  * Extension support was added to
+:class:`~cryptography.x509.CertificateSigningRequest`.
+  * Add support for creating signed certificates with
+:class:`~cryptography.x509.CertificateBuilder`. This includes support for
+the following extensions:
+
+* :class:`~cryptography.x509.BasicConstraints`
+* :class:`~cryptography.x509.SubjectAlternativeName`
+* :class:`~cryptography.x509.KeyUsage`
+* :class:`~cryptography.x509.ExtendedKeyUsage`
+* :class:`~cryptography.x509.SubjectKeyIdentifier`
+* :class:`~cryptography.x509.AuthorityKeyIdentifier`
+* :class:`~cryptography.x509.AuthorityInformationAccess`
+* :class:`~cryptography.x509.CRLDistributionPoints`
+* :class:`~cryptography.x509.InhibitAnyPolicy`
+* :class:`~cryptography.x509.IssuerAlternativeName`
+* :class:`~cryptography.x509.OCSPNoCheck`
+
+  * Add support for creating certificate signing requests with
+:class:`~cryptography.x509.CertificateSigningRequestBuilder`. This includes
+support for the same extensions supported in the ``CertificateBuilder``.
+  * Deprecate ``encode_rfc6979_signature`` and ``decode_rfc6979_signature`` in
+favor of
+
:func:`~cryptography.hazmat.primitives.asymmetric.utils.encode_dss_signature`
+and
+
:func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.
+- Adjust Requires according to requires.txt
+
+---

Old:

  cryptography-0.9.3.tar.gz
  cryptography-0.9.3.tar.gz.asc
  cryptography_vectors-0.9.3.tar.gz
  cryptography_vectors-0.9.3.tar.gz.asc

New:

  cryptography-1.0.tar.gz
  cryptography-1.0.tar.gz.asc
  cryptography_vectors-1.0.tar.gz
  cryptography_vectors-1.0.tar.gz.asc



Other differences:
--
++ python-cryptography.spec ++
--- /var/tmp/diff_new_pack.vDj6o7/_old  2015-08-28 08:25:08.0 +0200
+++ /var/tmp/diff_new_pack.vDj6o7/_new  2015-08-28 08:25:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-cryptography
-Version:0.9.3
+Version:1.0
 Release:0
 Summary:Python library which exposes cryptographic recipes and 
primitives
 License:Apache-2.0
@@ -29,10 +29,10 @@
 Source3:
https://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-%{version}.tar.gz
 Source4:

commit yast2-vm for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-vm for openSUSE:Factory 
checked in at 2015-08-28 08:24:52

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


Package is yast2-vm

Changes:

--- /work/SRC/openSUSE:Factory/yast2-vm/yast2-vm.changes2015-08-05 
06:48:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-vm.new/yast2-vm.changes   2015-08-28 
08:24:53.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 11 13:24:12 MDT 2015 - carn...@suse.com
+
+- bsc#941125 - yast2-vm: uses /etc/inittab
+- 3.1.24
+
+---

Old:

  yast2-vm-3.1.23.tar.bz2

New:

  yast2-vm-3.1.24.tar.bz2



Other differences:
--
++ yast2-vm.spec ++
--- /var/tmp/diff_new_pack.4cgjxu/_old  2015-08-28 08:24:54.0 +0200
+++ /var/tmp/diff_new_pack.4cgjxu/_new  2015-08-28 08:24:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-vm
-Version:3.1.23
+Version:3.1.24
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-vm-3.1.23.tar.bz2 - yast2-vm-3.1.24.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.23/package/yast2-vm.changes 
new/yast2-vm-3.1.24/package/yast2-vm.changes
--- old/yast2-vm-3.1.23/package/yast2-vm.changes2015-07-31 
15:41:11.0 +0200
+++ new/yast2-vm-3.1.24/package/yast2-vm.changes2015-08-26 
14:07:40.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Aug 11 13:24:12 MDT 2015 - carn...@suse.com
+
+- bsc#941125 - yast2-vm: uses /etc/inittab
+- 3.1.24
+
+---
 Tue Jul 21 15:13:29 UTC 2015 - jreidin...@suse.com
 
 - fix crash when installing kvm virtualization pattern (bnc#938530)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.23/package/yast2-vm.spec 
new/yast2-vm-3.1.24/package/yast2-vm.spec
--- old/yast2-vm-3.1.23/package/yast2-vm.spec   2015-07-31 15:41:11.0 
+0200
+++ new/yast2-vm-3.1.24/package/yast2-vm.spec   2015-08-26 14:07:40.0 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-vm
-Version:3.1.23
+Version:3.1.24
 Release:0
 Group: System/YaST
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.23/src/clients/vm_finish.rb 
new/yast2-vm-3.1.24/src/clients/vm_finish.rb
--- old/yast2-vm-3.1.23/src/clients/vm_finish.rb2015-07-31 
15:41:12.0 +0200
+++ new/yast2-vm-3.1.24/src/clients/vm_finish.rb2015-08-26 
14:07:40.0 +0200
@@ -104,7 +104,9 @@
 
   # Allow a console in addition to VNC with the PV framebuffer
   Builtins.y2milestone(check for xvc0 in inittab and securetty)
-  if !Builtins.contains(SCR.Dir(path(.etc.inittab)), x0)
+  @etc_inittab = /etc/inittab
+  if FileUtils.Exists(@etc_inittab) 
+  !Builtins.contains(SCR.Dir(path(.etc.inittab)), x0)
 # On an upgrade, don't add new entry if existing one is commented 
out - bnc#720929
 if 0 !=
 SCR.Execute(




commit speex for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package speex for openSUSE:Factory checked 
in at 2015-08-28 08:24:08

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


Package is speex

Changes:

--- /work/SRC/openSUSE:Factory/speex/speex.changes  2015-03-18 
12:59:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.speex.new/speex.changes 2015-08-28 
08:24:09.0 +0200
@@ -1,0 +2,5 @@
+Sat Aug 22 03:13:28 UTC 2015 - bwiedem...@suse.com
+
+- make speex-devel require speexdsp-devel to be backward compatible
+
+---



Other differences:
--
++ speex.spec ++
--- /var/tmp/diff_new_pack.YsXt4J/_old  2015-08-28 08:24:10.0 +0200
+++ /var/tmp/diff_new_pack.YsXt4J/_new  2015-08-28 08:24:10.0 +0200
@@ -55,7 +55,7 @@
 Summary:Development package for SpeeX
 Group:  Development/Libraries/C and C++
 Requires:   %{libname} = %{version}
-Recommends: libspeexdsp-devel
+Requires:   speexdsp-devel
 Provides:   libspeex-devel = %{version}-%{release}
 Obsoletes:  libspeex-devel  %{version}-%{release}
 

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.YsXt4J/_old  2015-08-28 08:24:10.0 +0200
+++ /var/tmp/diff_new_pack.YsXt4J/_new  2015-08-28 08:24:10.0 +0200
@@ -1,3 +1,2 @@
 libspeex1
obsoletes libspeex-targettype = 1.1.99.91
-libspeexdsp1




commit perl-Text-Diff for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Text-Diff for openSUSE:Factory 
checked in at 2015-08-28 08:24:20

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


Package is perl-Text-Diff

Changes:

--- /work/SRC/openSUSE:Factory/perl-Text-Diff/perl-Text-Diff.changes
2012-01-10 14:51:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Text-Diff.new/perl-Text-Diff.changes   
2015-08-28 08:24:21.0 +0200
@@ -1,0 +2,6 @@
+Sun Aug 23 09:26:53 UTC 2015 - co...@suse.com
+
+- updated to 1.43
+   see /usr/share/doc/packages/perl-Text-Diff/Changes
+
+---

Old:

  Text-Diff-1.41.tar.gz

New:

  Text-Diff-1.43.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Text-Diff.spec ++
--- /var/tmp/diff_new_pack.Eh4pWj/_old  2015-08-28 08:24:22.0 +0200
+++ /var/tmp/diff_new_pack.Eh4pWj/_new  2015-08-28 08:24:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Text-Diff
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,20 @@
 
 
 Name:   perl-Text-Diff
-Version:1.41
+Version:1.43
 Release:0
 %define cpan_name Text-Diff
 Summary:Perform diffs on files and record sets
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Text-Diff/
-Source: 
http://www.cpan.org/authors/id/O/OV/OVID/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/N/NE/NEILB/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Algorithm::Diff) = 1.19
-#BuildRequires: perl(Text::Diff)
-#BuildRequires: perl(Text::Diff::Config)
 Requires:   perl(Algorithm::Diff) = 1.19
 %{perl_requires}
 
@@ -48,6 +47,18 @@
 differences between Algorithm::Diff's logic and GNU diff's, but we have not
 examined them to make sure they are indeed identical.
 
+*Note*: If you don't want to import the 'diff' function, do one of the
+following:
+
+   use Text::Diff ();
+
+   require Text::Diff;
+
+That's a pretty rare occurence, so 'diff()' is exported by default.
+
+If you pass a filename, but the file can't be read, then 'diff()' will
+'croak'.
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
 

++ Text-Diff-1.41.tar.gz - Text-Diff-1.43.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Text-Diff-1.41/Changes new/Text-Diff-1.43/Changes
--- old/Text-Diff-1.41/Changes  2011-04-17 06:18:19.0 +0200
+++ new/Text-Diff-1.43/Changes  2015-08-21 22:44:12.0 +0200
@@ -1,58 +1,86 @@
-Changes for Perl extension Text-Diff
+Revision history for Perl module Text::Diff
 
-1.41 Sun 17 Apr 2011
+1.43 2015-08-21 NEILB
+- Got rid of the Redundant argument in sprintf warnings from
+  Text:Diff::Table on Perl 5.021+. RT#100505 and RT#106602.
+- Metadata and doc now refer to NEILB's repo rather than OVID's.
+
+1.42 2015-08-20 NEILB
+- Fixed pod link that was referring to the wrong place.
+  Thanks to KENTNL for RT#106150.
+- First non-developer released of the changes listed against 1.41_01.
+
+1.41_01 2015-06-02 NEILB
+- Developer release with changes I submitted for my January PRC assignment.
+- Updated all modules to use warnings, and use our ..., so bumped
+  min perl version to 5.006, and added MIN_PERL_VERSION to Makefile.PL
+- RT#73505: if a file doesn't exist, you't get a warning about trying
+  to read a closed filehandle. Now we croak.
+- RT#94895: blank line needed for =head1 OPTIONS to format properly.
+- RT#51612: the '' character needed escaping inside pod formatting code.
+- RT#25283: fixed syntax error in SYNOPSIS of Text::Diff::Table
+- RT#101553: updated FSF postal address in LICENSE
+- Added SEE ALSO section to doc, with links to a bunch of Diff modules.
+- Added link to github repository in the doc
+- Deleted META.yml from the repo -- EUMM will generate it for us
+- Reformatted this file as per CPAN::Changes::Spec
+- Added TODO.md, with two further things I can see need doing.
+- Removed all tab characters from source
+
+1.41 2011-04-17 OVID
 - Add Text::Dif::Config to MANIFEST.
 
-1.40 Sat 16 Apr 2011
+1.40 2011-04-16 

commit Mesa for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2015-08-28 08:24:28

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


Package is Mesa

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2015-08-17 
15:33:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2015-08-28 
08:24:29.0 +0200
@@ -1,0 +2,10 @@
+Sat Aug 22 14:17:01 UTC 2015 - zai...@opensuse.org
+
+- Update to version 10.6.5:
+  * Apart from the usual nouveau, i965 and radeon driver fixes,
+this time around we have a nouveau_vieux fix for a regression
+introduced with mesa 10.6.0 and a few even older big endian
+related bug-fixes.
+- Replace libvdpau-devel for pkgconfig(vdpau) BuildRequires.
+
+---

Old:

  mesa-10.6.4.tar.xz

New:

  mesa-10.6.5.tar.xz



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.aforLb/_old  2015-08-28 08:24:31.0 +0200
+++ /var/tmp/diff_new_pack.aforLb/_new  2015-08-28 08:24:31.0 +0200
@@ -18,7 +18,7 @@
 
 %define glamor 1
 %define _name_archive mesa
-%define _version 10.6.4
+%define _version 10.6.5
 %ifarch %ix86 x86_64 %arm ppc ppc64 ppc64le s390x
 %define gallium_loader 1
 %else
@@ -37,7 +37,7 @@
 %define with_nine 1
 %endif
 Name:   Mesa
-Version:10.6.4
+Version:10.6.5
 Release:0
 Summary:System for rendering interactive 3-D graphics
 License:MIT
@@ -66,7 +66,6 @@
 BuildRequires:  libXvMC-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  libtool
-BuildRequires:  libvdpau-devel
 BuildRequires:  pkgconfig
 BuildRequires:  python-base
 BuildRequires:  python-mako
@@ -81,6 +80,7 @@
 BuildRequires:  pkgconfig(libudev)  151
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(presentproto)
+BuildRequires:  pkgconfig(vdpau) = 0.4.1
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(x11-xcb)
 BuildRequires:  pkgconfig(xcb-dri2)

++ mesa-10.6.4.tar.xz - mesa-10.6.5.tar.xz ++
/work/SRC/openSUSE:Factory/Mesa/mesa-10.6.4.tar.xz 
/work/SRC/openSUSE:Factory/.Mesa.new/mesa-10.6.5.tar.xz differ: char 27, line 1




commit speech-dispatcher for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package speech-dispatcher for 
openSUSE:Factory checked in at 2015-08-28 08:24:02

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


Package is speech-dispatcher

Changes:

--- /work/SRC/openSUSE:Factory/speech-dispatcher/speech-dispatcher.changes  
2015-04-22 01:11:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.speech-dispatcher.new/speech-dispatcher.changes 
2015-08-28 08:24:03.0 +0200
@@ -1,0 +2,19 @@
+Sun Jul 19 08:50:46 UTC 2015 - opensuse.lietuviu.ka...@gmail.com
+
+- Update to version 0.8.3:
+* Add API methods to get language, rate, pitch, and volume.
+* A lot of code cleanup, and compatibility improvements.
+* Removed all references to GNOME Speech, since it has long since been
+  deprecated.
+* Fix some inconsistancy in the SSIP API for voice type.
+* The SET VOICE SSIP command is now deprecated, and will be removed in 0.9.
+* The C library API now provides macro definitions for major, minor, and micro
+  versions in libspeechd_versions.h.
+* The libsndfile library is now a mandetory dependency to improve the user
+  experience around sound icons.
+* Fix a possible crash in the festival driver (drop 
bnc-831609-festival-crash.patch).
+* Add a configuration option to the espeak driver to show voice variants in the
+  voice list. This will remain until a proper variants retrieval API is added
+  for compatible synthesizers.
+
+---

Old:

  bnc-831609-festival-crash.patch
  speech-dispatcher-0.8.2.tar.gz

New:

  speech-dispatcher-0.8.3.tar.gz



Other differences:
--
++ speech-dispatcher.spec ++
--- /var/tmp/diff_new_pack.9l8qtU/_old  2015-08-28 08:24:04.0 +0200
+++ /var/tmp/diff_new_pack.9l8qtU/_new  2015-08-28 08:24:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   speech-dispatcher
-Version:0.8.2
+Version:0.8.3
 Release:0
 # FIXME missing backends: festival lite, ibmeci (ibm tts), dumbtts/ivona, nas
 # Almost all files are under GPLv2+, however src/c/clients/spdsend/spdsend.h is
@@ -32,7 +32,6 @@
 # Logrotate file taken from Debian
 Source2:speech-dispatcher.logrotate
 # PATCH-FIX-UPSTREAM bnc-831609-festival-crash.patch bnc#831609 
mgo...@suse.com -- fix crash when unable to init festival module
-Patch0: bnc-831609-festival-crash.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dotconf-devel
 BuildRequires:  espeak-devel
@@ -162,7 +161,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 # dummy module must almost never be dissabled
 sed -i s/#AddModule \dummy\/AddModule \dummy\/ -i config/speechd.conf
 # you must enable at least one module (except dummy), otherwise it will load

++ speech-dispatcher-0.8.2.tar.gz - speech-dispatcher-0.8.3.tar.gz ++
 14148 lines of diff (skipped)




commit mutter for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package mutter for openSUSE:Factory checked 
in at 2015-08-28 08:23:54

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


Package is mutter

Changes:

--- /work/SRC/openSUSE:Factory/mutter/mutter.changes2015-07-16 
17:18:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.mutter.new/mutter.changes   2015-08-28 
08:23:55.0 +0200
@@ -1,0 +2,12 @@
+Thu Aug 13 13:15:16 UTC 2015 - idon...@suse.com
+
+- Fix screen flickering on nvidia devices (bgo#728464).
+  + Add the following commits from the 3.16 branch:
+- build_fix_return_value_in_meta-sync-ring.c.patch
+- compositor_add_support_for_GL_EXT_x11_sync_object.patch
+- compositor_fix_GL_EXT_x11_sync_object_race_condition.patch
+- compositor_handle_fences_in_the_frontend_X_connection.patch
+- Added autoconf and automake BuildRequires and run autoreconf for
+  the patches above.
+
+---

New:

  build_fix_return_value_in_meta-sync-ring.c.patch
  compositor_add_support_for_GL_EXT_x11_sync_object.patch
  compositor_fix_GL_EXT_x11_sync_object_race_condition.patch
  compositor_handle_fences_in_the_frontend_X_connection.patch



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.9M1wMg/_old  2015-08-28 08:23:57.0 +0200
+++ /var/tmp/diff_new_pack.9M1wMg/_new  2015-08-28 08:23:57.0 +0200
@@ -30,6 +30,17 @@
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/mutter/3.16/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM compositor_add_support_for_GL_EXT_x11_sync_object.patch 
bgo#728464
+Patch1: compositor_add_support_for_GL_EXT_x11_sync_object.patch
+# PATCH-FIX-UPSTREAM 
compositor_fix_GL_EXT_x11_sync_object_race_condition.patch bgo#728464
+Patch2: compositor_fix_GL_EXT_x11_sync_object_race_condition.patch
+# PATCH-FIX-UPSTREAM build_fix_return_value_in_meta-sync-ring.c.patch 
bgo#728464
+Patch3: build_fix_return_value_in_meta-sync-ring.c.patch
+# PATCH-FIX-UPSTREAM 
compositor_handle_fences_in_the_frontend_X_connection.patch bgo#728464
+Patch4: compositor_handle_fences_in_the_frontend_X_connection.patch
+# autoconf and automake only needed for patches 1-4
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel = 0.9.5
 BuildRequires:  intltool
@@ -142,9 +153,15 @@
 %lang_package
 %prep
 %setup -q
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
 translation-update-upstream
 
 %build
+# Only needed for patches 1-4
+autoreconf
 %configure \
 --disable-static \
 --enable-compile-warnings=maximum

++ build_fix_return_value_in_meta-sync-ring.c.patch ++
From a54b1261d3ec5ccf7a8262c88557b6b952bc8a2e Mon Sep 17 00:00:00 2001
From: Ting-Wei Lan la...@src.gnome.org
Date: Sat, 8 Aug 2015 20:12:09 +0800
Subject: build: Fix return value in meta-sync-ring.c

https://bugzilla.gnome.org/show_bug.cgi?id=753380

diff --git a/src/compositor/meta-sync-ring.c b/src/compositor/meta-sync-ring.c
index 44b1c41..217ebe5 100644
--- a/src/compositor/meta-sync-ring.c
+++ b/src/compositor/meta-sync-ring.c
@@ -499,7 +499,7 @@ meta_sync_ring_after_frame (void)
   if (!ring)
 return FALSE;
 
-  g_return_if_fail (ring-xdisplay != NULL);
+  g_return_val_if_fail (ring-xdisplay != NULL, FALSE);
 
   if (ring-warmup_syncs = NUM_SYNCS / 2)
 {
@@ -542,7 +542,7 @@ meta_sync_ring_insert_wait (void)
   if (!ring)
 return FALSE;
 
-  g_return_if_fail (ring-xdisplay != NULL);
+  g_return_val_if_fail (ring-xdisplay != NULL, FALSE);
 
   if (ring-current_sync-state != META_SYNC_STATE_READY)
 {
-- 
cgit v0.10.2

++ compositor_add_support_for_GL_EXT_x11_sync_object.patch ++
 840 lines (skipped)

++ compositor_fix_GL_EXT_x11_sync_object_race_condition.patch ++
From c77e482b60bea40a422691b16af02a429d9c2edc Mon Sep 17 00:00:00 2001
From: Aaron Plattner aplatt...@nvidia.com
Date: Mon, 3 Aug 2015 21:15:15 -0700
Subject: compositor: Fix GL_EXT_x11_sync_object race condition

The compositor maintains a ring of shared fences with the X server in order to
properly synchronize rendering between the X server and the compositor's GPU
channel.  When all of the fences have been used, the compositor needs to reset
one so that it can be reused.  It does this by first waiting on the CPU for the
fence to become triggered, and then sending a request to the X server to reset
the fence.

If the compositor's GPU channel is busy processing other work (e.g. the desktop
switcher animation), then the X server may process the reset 

commit kiwi for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2015-08-28 08:24:34

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


Package is kiwi

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2015-08-07 
00:17:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2015-08-28 
08:24:37.0 +0200
@@ -1,0 +2,32 @@
+Mon Aug 24 11:16:49 CEST 2015 - m...@suse.de
+
+- v7.03.14 released
+  
+---
+Mon Aug 24 11:09:59 CEST 2015 - m...@suse.de
+  
+- Skip loopback nic in interface selection
+  
+  setupNetworkStatic selects the last interface to be used for
+  the setup. This is not a smart selection but it should not
+  select the loopback interface in any case. Whether or not it's
+  possible to automatically just select the right nic is still
+  an open task.
+  
+---
+Mon Aug 24 10:59:56 CEST 2015 - m...@suse.de
+  
+- Fixed reading of search path for editboot* scripts
+  
+  In build and create mode the origin path of the XML description was
+  not correctly initialized. kiwi skipped reading the meta information
+  from the unpacked image root tree because it already has a pointer
+  to the XML description, however this data set does not provide the
+  origin path of the kiwi call
+  
+---
+Tue Aug 18 14:52:28 CEST 2015 - sch...@suse.de
+  
+- Remove duplicate provide of kiwi-image:tbz
+  
+---
@@ -6,0 +39,5 @@
+Mon Aug  3 09:50:24 CEST 2015 - rjsch...@suse.de
+  
+- Add a line that helps solver debugging, commented out by default
+  
+---
@@ -2600,0 +2638,2 @@
+  
+- Activate new swap after repartitioning



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.tDKbEE/_old  2015-08-28 08:24:40.0 +0200
+++ /var/tmp/diff_new_pack.tDKbEE/_new  2015-08-28 08:24:40.0 +0200
@@ -27,7 +27,7 @@
 Name:   kiwi
 License:GPL-2.0
 Group:  System/Management
-Version:7.03.13
+Version:7.03.14
 Provides:   kiwi-schema = 6.2
 Provides:   kiwi-image:aci
 Provides:   kiwi-image:lxc
@@ -203,7 +203,6 @@
 Provides:   kiwi-filesystem:squashfs
 Provides:   kiwi-packagemanager:zypper
 Provides:   kiwi-image:docker
-Provides:   kiwi-image:tbz
 Requires:   btrfsprogs
 Requires:   e2fsprogs
 Requires:   kiwi = %{version}

++ kiwi-docu.tar.bz2 ++

++ kiwi-repo.tar.bz2 ++

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2014-12-15 14:32:44.0 +0100
+++ new/kiwi/.revision  2014-12-15 14:32:44.0 +0100
@@ -1 +1 @@
-64fe4cbfc9fb134ad088a10d4213a56d9386fa97
+1f478cf99e795a2e5b81ea5585f5e39b25c499d4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIBoot.pm new/kiwi/modules/KIWIBoot.pm
--- old/kiwi/modules/KIWIBoot.pm2015-07-27 16:47:50.0 +0200
+++ new/kiwi/modules/KIWIBoot.pm2015-08-24 10:58:39.0 +0200
@@ -272,9 +272,13 @@
 if ($read_result{sysz_size}) {
 $syszip = $read_result{sysz_size};
 }
-if ($read_result{originXMLPath}) {
-$this-{originXMLPath} = $read_result{originXMLPath};
-}
+}
+#==
+# read origin path of XML description
+#--
+if (($system)  (open my $FD, '', $system/image/main::Prepare)) {
+my $idesc = $FD; close $FD;
+$this-{originXMLPath} = $idesc;
 }
 #==
 # store systemdisk information
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm 2015-08-03 10:56:33.0 +0200
+++ new/kiwi/modules/KIWIGlobals.pm 2015-08-24 11:16:44.0 +0200
@@ -1811,7 +1811,6 @@
 my $global = KIWIGlobals - instance();
 my $profile= $cmdL - getBuildProfiles();
 my $syszSize = 0;
-my $originXMLPath;
 if ((! $system) || (! $cmdL)) {
 return;
 }
@@ -1854,13 +1853,6 @@
 $rootpath = $tmpdir;
 }
 #==
-# read origin path of XML description
-

commit MozillaThunderbird for openSUSE:13.1:Update

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:13.1:Update checked in at 2015-08-28 17:38:50

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


Package is MozillaThunderbird

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.aohY2W/_old  2015-08-28 17:38:55.0 +0200
+++ /var/tmp/diff_new_pack.aohY2W/_new  2015-08-28 17:38:55.0 +0200
@@ -1 +1 @@
-link package='MozillaThunderbird.3918' cicount='copy' /
+link package='MozillaThunderbird.3977' cicount='copy' /




commit ansible for openSUSE:13.2:Update

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package ansible for openSUSE:13.2:Update 
checked in at 2015-08-28 17:38:40

Comparing /work/SRC/openSUSE:13.2:Update/ansible (Old)
 and  /work/SRC/openSUSE:13.2:Update/.ansible.new (New)


Package is ansible

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.T1wsvo/_old  2015-08-28 17:38:41.0 +0200
+++ /var/tmp/diff_new_pack.T1wsvo/_new  2015-08-28 17:38:41.0 +0200
@@ -1 +1 @@
-link package='ansible.3921' cicount='copy' /
+link package='ansible.3974' cicount='copy' /




commit MozillaThunderbird for openSUSE:13.2:Update

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:13.2:Update checked in at 2015-08-28 17:38:56

Comparing /work/SRC/openSUSE:13.2:Update/MozillaThunderbird (Old)
 and  /work/SRC/openSUSE:13.2:Update/.MozillaThunderbird.new (New)


Package is MozillaThunderbird

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.CEro65/_old  2015-08-28 17:39:00.0 +0200
+++ /var/tmp/diff_new_pack.CEro65/_new  2015-08-28 17:39:00.0 +0200
@@ -1 +1 @@
-link package='MozillaThunderbird.3918' cicount='copy' /
+link package='MozillaThunderbird.3976' cicount='copy' /