commit docker for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package docker for openSUSE:Factory checked 
in at 2015-07-25 07:44:33

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


Package is "docker"

Changes:

--- /work/SRC/openSUSE:Factory/docker/docker.changes2015-07-23 
15:23:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.docker.new/docker.changes   2015-07-25 
07:44:34.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul 24 14:24:16 UTC 2015 - jmassaguer...@suse.com
+
+- Exclude archs where docker does not build. Otherwise it gets into
+  and infinite loop when building.
+
+  We'll fix that later if we want to release for those archs. 
+
+---



Other differences:
--
++ docker.spec ++
--- /var/tmp/diff_new_pack.j6fEof/_old  2015-07-25 07:44:35.0 +0200
+++ /var/tmp/diff_new_pack.j6fEof/_new  2015-07-25 07:44:35.0 +0200
@@ -83,6 +83,9 @@
 PreReq: %fillup_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:%ix86
+ExcludeArch:s390
+ExcludeArch:s390x
+ExcludeArch:ppc
 
 %description
 Docker complements LXC with a high-level API which operates at the process




commit golang-packaging for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-packaging for 
openSUSE:Factory checked in at 2015-07-25 07:44:32

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


Package is "golang-packaging"

Changes:

--- /work/SRC/openSUSE:Factory/golang-packaging/golang-packaging.changes
2015-07-16 17:18:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.golang-packaging.new/golang-packaging.changes   
2015-07-25 07:44:33.0 +0200
@@ -1,0 +2,16 @@
+Fri Jul 24 01:44:47 UTC 2015 - i...@marguerite.su
+
+- update version 6
+  * fix golang.req to not treat a sentence as importpath
+  * fix golang.attr to correctly detect /usr/bin/*
+
+---
+Wed Jul 22 14:56:07 UTC 2015 - i...@marguerite.su
+
+- update version 5
+  * if a sub-directory doesn't contain any *.go file, do not
+treat it as a Provides candidate.
+  * add /usr/bin to golang.attr for go executes to be handled
+by golang-packaging
+
+---

Old:

  golang-packaging-4.tar.gz

New:

  golang-packaging-6.tar.gz



Other differences:
--
++ golang-packaging.spec ++
--- /var/tmp/diff_new_pack.bFjflc/_old  2015-07-25 07:44:34.0 +0200
+++ /var/tmp/diff_new_pack.bFjflc/_new  2015-07-25 07:44:34.0 +0200
@@ -16,8 +16,12 @@
 #
 
 
+%if %{?sles_version}
+%define _rpmconfigdir %{_libexecdir}/rpm
+%endif
+
 Name:   golang-packaging
-Version:4
+Version:6
 Release:0
 Summary:A toolchain to help packaging golang
 License:GPL-3.0
@@ -25,8 +29,8 @@
 Url:https://github.com/marguerite/%{name}
 Source: 
https://github.com/marguerite/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  rpm
-Requires:   golang(API)
 Requires:   ruby
+Requires:   golang(API)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ golang-packaging-4.tar.gz -> golang-packaging-6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-4/ChangeLog 
new/golang-packaging-6/ChangeLog
--- old/golang-packaging-4/ChangeLog2015-07-12 12:28:42.0 +0200
+++ new/golang-packaging-6/ChangeLog2015-07-24 03:40:05.0 +0200
@@ -1,10 +1,25 @@
+== Version 5 ==
+
+  * if a sub-directory doesn't contain any *.go file, do not
+treat it as a Provides candidate.
+  * add /usr/bin to golang.attr for go executes to be handled
+by golang-packaging
+
+== Version 4 ==
+
+  * fix encoding error in golang-strip-builddep
+  * add macros.go-extra, extra golang macros for packaging
+
 == Version 3 ==
-* skip *example*.go/*test*.go for Requires finding
-* support alias format (import xx "xxx") for importpath 
-* add golang-strip-builddep, a tool to strip unneeded importpath from source 
codes
+
+  * skip *example*.go/*test*.go for Requires finding
+  * support alias format (import xx "xxx") for importpath 
+  * add golang-strip-builddep, a tool to strip unneeded importpath from source 
codes
 
 == Version 2 ==
-* fix pkgname detection
+
+  * fix pkgname detection
 
 == Version 1 ==
-* implement Requires/Provides
+
+  * implement Requires/Provides
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-4/golang.attr 
new/golang-packaging-6/golang.attr
--- old/golang-packaging-4/golang.attr  2015-07-12 12:28:42.0 +0200
+++ new/golang-packaging-6/golang.attr  2015-07-24 03:40:05.0 +0200
@@ -1,3 +1,4 @@
+ndir}/*|/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64)/.*\\.a)$
 %__golang_requires  %{_rpmconfigdir}/golang.req
 %__golang_provides  %{_rpmconfigdir}/golang.prov
-%__golang_path  ^/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64)/.*\\.a$
+%__golang_path  
^(/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64)/.*\\.a|%{_bindir}/.*)$
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-4/golang.prov 
new/golang-packaging-6/golang.prov
--- old/golang-packaging-4/golang.prov  2015-07-12 12:28:42.0 +0200
+++ new/golang-packaging-6/golang.prov  2015-07-24 03:40:05.0 +0200
@@ -13,11 +13,11 @@
 
build_found = 0
 
-   if l.index("Source:") then
+   if l.index(/Source(0)?:/) then
 
unless l.index("%{name}") then
 
-   pkgname = 
l.gsub(/Source:/,'').lstrip!.chomp!.gsub(/^.*\//,'').gsub(/-%.*$/,'')
+   pkgname = 
l.gsub(/Source(0)?:/,'')

commit perl-Sys-Virt for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Sys-Virt for openSUSE:Factory 
checked in at 2015-07-25 07:44:35

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


Package is "perl-Sys-Virt"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes  
2015-06-12 20:30:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new/perl-Sys-Virt.changes 
2015-07-25 07:44:36.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 17 15:11:02 UTC 2015 - jfeh...@suse.com
+
+- Update to 1.2.17
+  - Add all new APIs and constants in libvirt 1.2.17
+
+---

Old:

  Sys-Virt-1.2.16.tar.gz

New:

  Sys-Virt-1.2.17.tar.gz



Other differences:
--
++ perl-Sys-Virt.spec ++
--- /var/tmp/diff_new_pack.82QJV3/_old  2015-07-25 07:44:37.0 +0200
+++ /var/tmp/diff_new_pack.82QJV3/_new  2015-07-25 07:44:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Sys-Virt
-Version:1.2.16
+Version:1.2.17
 Release:0
 %define cpan_name Sys-Virt
 Summary:Represent and manage a libvirt hypervisor connection

++ Sys-Virt-1.2.16.tar.gz -> Sys-Virt-1.2.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/Changes new/Sys-Virt-1.2.17/Changes
--- old/Sys-Virt-1.2.16/Changes 2015-06-01 11:23:37.0 +0200
+++ new/Sys-Virt-1.2.17/Changes 2015-07-17 15:33:30.0 +0200
@@ -1,5 +1,12 @@
 Revision history for perl module Sys::Virt
 
+1.2.17 2015-07-17
+
+ - Add VIR_FROM_ADMIN constant
+ - Add VIR_MIGRATE_PARAM_MIGRATE_DISKS constant
+ - Fix docs typos in migrate_to_uri method
+ - Add VIR_DOMAIN_EVENT_WATCHDOG_INJECTNMI constant
+
 1.2.16 2015-06-01
 
  - Add support for virDomainSetUserPassword
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/MANIFEST new/Sys-Virt-1.2.17/MANIFEST
--- old/Sys-Virt-1.2.16/MANIFEST2015-06-01 11:23:49.0 +0200
+++ new/Sys-Virt-1.2.17/MANIFEST2015-07-17 15:33:52.0 +0200
@@ -5,6 +5,7 @@
 examples/dhcp-leases.pl
 examples/dom-fsinfo.pl
 examples/dom-ifinfo.pl
+examples/dom-migrate.pl
 examples/dom-stats.pl
 examples/dump-info.pl
 examples/dump-xml.pl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/META.yml new/Sys-Virt-1.2.17/META.yml
--- old/Sys-Virt-1.2.16/META.yml2015-06-01 11:23:49.0 +0200
+++ new/Sys-Virt-1.2.17/META.yml2015-07-17 15:33:52.0 +0200
@@ -1,7 +1,7 @@
 --- #YAML:1.0
 name: Sys-Virt
 abstract: Extension for the libvirt library
-version:  1.2.16
+version:  1.2.17
 author:
   - Daniel P. Berrange 
 license: perl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/MYMETA.json 
new/Sys-Virt-1.2.17/MYMETA.json
--- old/Sys-Virt-1.2.16/MYMETA.json 2015-06-01 11:23:40.0 +0200
+++ new/Sys-Virt-1.2.17/MYMETA.json 2015-07-17 15:33:44.0 +0200
@@ -42,5 +42,5 @@
   }
},
"release_status" : "stable",
-   "version" : "v1.2.16"
+   "version" : "v1.2.17"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/MYMETA.yml 
new/Sys-Virt-1.2.17/MYMETA.yml
--- old/Sys-Virt-1.2.16/MYMETA.yml  2015-06-01 11:23:40.0 +0200
+++ new/Sys-Virt-1.2.17/MYMETA.yml  2015-07-17 15:33:44.0 +0200
@@ -24,4 +24,4 @@
   Test::Pod::Coverage: '0'
   Time::HiRes: '0'
   XML::XPath: '0'
-version: v1.2.16
+version: v1.2.17
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sys-Virt-1.2.16/Makefile.PL 
new/Sys-Virt-1.2.17/Makefile.PL
--- old/Sys-Virt-1.2.16/Makefile.PL 2015-06-01 11:23:37.0 +0200
+++ new/Sys-Virt-1.2.17/Makefile.PL 2015-07-17 15:33:30.0 +0200
@@ -3,7 +3,7 @@
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 
-my $libvirtver = "1.2.16";
+my $libvirtver = "1.2.17";
 my $stat = system "pkg-config --atleast-version=$libvirtver libvirt";
 die "cannot run pkg-config to check libvirt version" if $stat == -1;
 die "libvirt >= $libvirtver is required\n" unless $stat == 0;
@@ -26,7 +26,7 @@
  -Wmissing-declarations -Wmissing-field-initializers \\
  -Wmissing-format-attribute -Wmissing-include-dirs \\
  -Wmissing-noreturn -Wmissing-parameter-type \\
- -Wmudflap -Wmultichar -Wnarrowing -Wnonnull \\
+ -Wmultichar -Wnarrowing -Wnonnull \\
  -Wnormalized=nfc -Wold-style-declaration -Wold-style-definit

commit twinkle for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package twinkle for openSUSE:Factory checked 
in at 2015-07-25 07:44:34

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


Package is "twinkle"

Changes:

--- /work/SRC/openSUSE:Factory/twinkle/twinkle.changes  2015-06-09 
08:48:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.twinkle.new/twinkle.changes 2015-07-25 
07:44:35.0 +0200
@@ -1,0 +2,19 @@
+Sat Jul 18 15:15:32 UTC 2015 - mkube...@suse.cz
+
+- update to version 1.9.0
+  * migration to Qt5 and cmake
+  * added in-call OSD
+  * remember window geometry and state
+  * visual feedback when entering DTMF from keyboard
+  * support past into DTMF window
+  * remove boost dependency (if gcc >= 4.9)
+  * eliminated some GUI freezes/stalls
+- dependencies and build phase cleanup
+- twinkle-ucommon.diff:
+  removed (no longer needed)
+- Revert-Build-fix-for-a-probably-broken-std-match_res.patch:
+  Revert-Replaced-Boost-regex-dependency-with-C-11-reg.patch:
+  use boost regex for gcc 4.8 distributions (std::regex is broken
+  in gcc 4.8)
+
+---

Old:

  twinkle-1.4.2.tar.bz2
  twinkle-ucommon.diff

New:

  Revert-Build-fix-for-a-probably-broken-std-match_res.patch
  Revert-Replaced-Boost-regex-dependency-with-C-11-reg.patch
  twinkle-1.9.0.tar.xz



Other differences:
--
++ twinkle.spec ++
--- /var/tmp/diff_new_pack.t6E8d0/_old  2015-07-25 07:44:36.0 +0200
+++ /var/tmp/diff_new_pack.t6E8d0/_new  2015-07-25 07:44:36.0 +0200
@@ -16,30 +16,42 @@
 #
 
 
-%define _prefix /opt/kde3
 Name:   twinkle
-# BRs in openSUSE:
+BuildRequires:  alsa-devel
 BuildRequires:  bison
-BuildRequires:  boost-devel
+BuildRequires:  cmake
+BuildRequires:  fdupes
 BuildRequires:  file-devel
-BuildRequires:  ilbc-devel
-BuildRequires:  kdelibs3-devel
+BuildRequires:  flex
+BuildRequires:  libqt5-qtbase-devel
+BuildRequires:  libqt5-qttools-devel
 BuildRequires:  libsndfile-devel
-BuildRequires:  qt3-devel-tools
+BuildRequires:  libzrtpcpp-devel >= 2.0.0
+BuildRequires:  pkgconfig
 BuildRequires:  readline-devel
+BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-devel
-# BRs in network:telephony
-BuildRequires:  libzrtpcpp2-devel >= 2.0.0
-BuildRequires:  speex-devel
+BuildRequires:  pkgconfig(Qt5Declarative)
+BuildRequires:  pkgconfig(Qt5Quick)
+BuildRequires:  pkgconfig(commoncpp)
+BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(speex)
+BuildRequires:  pkgconfig(speexdsp)
+%if %{?suse_version} > 1320
+BuildRequires:  ilbc-devel
+%else
+BuildRequires:  boost-devel
+BuildRequires:  ilbc
+%endif
 Summary:A SIP Soft Phone
 License:GPL-2.0+
 Group:  Productivity/Telephony/SIP/Clients
-Version:1.4.2
+Version:1.9.0
 Release:0
-Source: %{name}-%{version}.tar.bz2
-Patch0: twinkle-ucommon.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:http://www.twinklephone.com
+Source: %{name}-%{version}.tar.xz
+Patch11:Revert-Build-fix-for-a-probably-broken-std-match_res.patch
+Patch12:Revert-Replaced-Boost-regex-dependency-with-C-11-reg.patch
+Url:https://twinkle.dolezel.info/
 
 %description
 Twinkle is a SIP-based soft phone for making telephone calls over IP
@@ -47,30 +59,33 @@
 
 %prep
 %setup -q
-%patch0 -p1
+# workaround for broken std::regex in gcc 4.8
+%if 0%{?suse_version} <= 1320
+%patch11 -p1
+%patch12 -p1
+%endif
 
 %build
-autoreconf -fi
-. /etc/opt/kde3/common_options
-export QTDIR=/usr/lib/qt3
-export CFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" 
-%configure \
---without-arts --with-qt-libraries=/usr/lib/qt3/%{_lib}
-make
+cmake \
+  -DCMAKE_INSTALL_PREFIX=%{_prefix} \
+  -DCMAKE_CXX_FLAGS="$RPM_OPT_FLAGS" \
+  -DWITH_ZRTP=ON -DWITH_SPEEX=ON -DWITH_ILBC=ON \
+  -DWITH_ALSA=ON -DWITH_QT5=ON .
+make %{?_smp_mflags}
 
 %install
 %makeinstall
 install -d 755 %{buildroot}%{_datadir}/pixmaps
-install -m 644 src/gui/images/twinkle48.png 
%{buildroot}%{_datadir}/pixmaps/twinkle.png
 %suse_update_desktop_file -c twinkle Twinkle "SIP VoIP Phone" twinkle twinkle 
Network Telephony 
+%fdupes %{buildroot}%{_prefix}
 
 %files
 %defattr(-, root, root)
-%doc AUTHORS COPYING README ChangeLog
-%{_bindir}/%{name}
+%doc AUTHORS COPYING README.md
+%{_bindir}/twinkle
+%{_bindir}/twinkle-console
 %{_datadir}/%{name}
 %{_datadir}/pixmaps/twinkle.png
-/usr/share/applications/twinkle.desktop
-%dir %{_datadir}/pixmaps
+%{_datadir}/applications/twinkle.desktop
 
 %changelog

++ Revert-Build-fix-for-a-probably-broken-std-match_res.patch ++
From: Michal Kubecek 
Date: Tue, 14 Jul 201

commit drbd for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package drbd for openSUSE:Factory checked in 
at 2015-07-25 07:44:30

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


Package is "drbd"

Changes:

--- /work/SRC/openSUSE:Factory/drbd/drbd.changes2013-05-13 
17:03:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.drbd.new/drbd.changes   2015-07-25 
07:44:32.0 +0200
@@ -1,0 +2,294 @@
+Mon Jul 20 07:52:36 UTC 2015 - nw...@suse.com
+
+- Fate#317940. Speed up initial sync by supporting zero out
+  device.
+  Patch -cover-letter-fate317940.patch
+  Patch 0001-drbd-Fix-the-wrong-logic-of-moving-history.patch
+  Patch 0002-drbd-Add-options-zap_devices-to-new-current-uuid.patch
+  Patch 0003-drbd-A-function-to-zero-out-drbd-backing-device.patch
+  Patch 0004-drbd-New-packet-P_ZERO_OUT.patch
+  Patch 0005-drbd-Functions-to-notify-peer-node-to-start.patch
+  Patch 0006-drbd-Wapper-for-zeroing-out-device-by-worker.patch
+  Patch 0007-drbd-Flags-for-background-drbd-device-work.patch
+  Patch 0008-drbd-Function-to-work-with-packet-P_ZERO_OUT.patch
+  Patch 0009-drbd-Receive-zero-out-command-from-peer-node.patch
+  Patch 0010-drbd-Handle-new-current-uuid-zap-devices.patch
+- Delete useless patch init-script-fixes.diff
+- ExcludeArch i586 and s390, since user space split into
+  drbd-utils.
+
+---
+Fri Apr 17 06:34:51 UTC 2015 - nw...@suse.com
+
+- Update to 8.4.6 
+- With DRBD module version 8.4.5, we split out the management tools
+  into their own repository. Started out as "drbd-utils version
+  8.9.0". To manage DRBD 8.4.5 kernel modules and above, want
+  drbd-utils >= 8.9.0
+- fix failing of user space helpers since kernel 3.13. This bug is
+  known as 'out of mem, failed to invoke fence-peer helper'
+- fix connection timeouts for resources with multiple volumes
+- fix an issue with DRBD on linux software raid by properly
+  remapping bi_bdev
+- fix a (hard to trigger) race condition between promoting to primary
+  an connection handshake. In case the bug was hit the Primary got
+  stuck in WFBitmapS connection state
+- Fix a NULL deref when resuming IO on a diskless primary
+- Fix compile issues with uncommon architectures
+- improvements to asender performance. With high end backing storage
+  and networking equipment you may see IOPS improvements between 
+  25% to 50%.
+- Highest number on a single drbd seen by LINBIT so far: 16 IOPS
+- backport of events2 and status commands from drbd9. This allows 
+  to be DRBD9 compatible starting with this release, and to get used
+  to DRBD9 compatible status reporting
+- support for lsblk in drbd
+
+- Update to 8.4.5
+- fix potential BUG_ON in mempool_alloc for older kernels (<2.6.23)
+- fix cornercase of resync finished detection
+- fix drbd_ldev_destroy to run exactly once and in worker context
+- fix spurious detach/disconnect: don't announce WRITE_SAME
+- fix NULL pointer deref in blk_add_request_payload
+- (DISCARD/TRIM handling in sd)
+- fix regression: potential NULL pointer dereference
+- fix regression: potential list corruption
+- fix regression: potential deadlock in adm functions (drbdsetup)
+- fix regression: /sbin vs /usr/sbin in scripts
+- fix race stopping the worker thread
+- new debugfs presence expose oldest requests and other details
+- userspace moved to own repository
+- linux 3.13 and 3.14 compatibility
+- improve adaptive resync controler
+- reduce bitmap IO during resync
+- allow write-ordering policy to be bumped up again
+- trigger tcp_flush_pending_frames() for PING/PING_ACK
+- fix potential segfault in drbdadm adjust
+- drbdsetup improvements: fix netlink socket buffers; detect
+  modprobe failure
+
+---
+Fri May 30 04:29:22 UTC 2014 - lw...@suse.com
+
+- modify drbd.rules by removing NAME and adding SYMLINK in case that 
+  configuration has a device name diffrent from kernel node (bnc#878119)
+  add: fix-udev-for-drbd-start-timeout.patch
+
+---
+Tue May 20 09:13:32 UTC 2014 - l...@suse.com
+
+- Packages drbd-xen, drbd-utils, drbd-bash-completion, and
+  drbd-pacemaker were merged into drbd (bnc#878793)
+
+---
+Sun Apr 13 20:10:00 UTC 2014 - mma...@suse.cz
+
+- Add # needssslcertforbuild to use the project's certificate when
+  building in a home project.
+
+---
+Mon Mar 31 21:44:23 UTC 2014 - rgold...@suse.com
+
+- Add Module.supported and preamble (bnc#871132)
+
+---
+Thu Mar 27 07:40:07 UTC 2014 - x...@suse.com
+
+- Update to 8.4.4.

commit libmirage for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package libmirage for openSUSE:Factory 
checked in at 2015-07-25 07:44:29

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


Package is "libmirage"

Changes:

--- /work/SRC/openSUSE:Factory/libmirage/libmirage.changes  2014-10-05 
20:31:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmirage.new/libmirage.changes 2015-07-25 
07:44:31.0 +0200
@@ -1,0 +2,7 @@
+Tue Nov 25 05:46:30 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 3.0.3
+* fixed an out-of-bounds array access when initializing CRC-32
+  table data in mirage_helper_init_crc32_lut()
+
+---

Old:

  libmirage-3.0.2.tar.bz2

New:

  libmirage-3.0.3.tar.bz2



Other differences:
--
++ libmirage.spec ++
--- /var/tmp/diff_new_pack.3KP1sd/_old  2015-07-25 07:44:31.0 +0200
+++ /var/tmp/diff_new_pack.3KP1sd/_new  2015-07-25 07:44:31.0 +0200
@@ -22,7 +22,7 @@
 Summary:A CD-ROM image access library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
-Version:3.0.2
+Version:3.0.3
 Release:0
 Url:http://cdemu.sf.net/about/libmirage/
 

++ libmirage-3.0.2.tar.bz2 -> libmirage-3.0.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmirage-3.0.2/CMakeLists.txt 
new/libmirage-3.0.3/CMakeLists.txt
--- old/libmirage-3.0.2/CMakeLists.txt  2014-09-28 21:19:13.0 +0200
+++ new/libmirage-3.0.3/CMakeLists.txt  2014-11-09 19:01:10.0 +0100
@@ -6,7 +6,7 @@
 # Release versioning:
 set (MIRAGE_VERSION_MAJOR 3)
 set (MIRAGE_VERSION_MINOR 0)
-set (MIRAGE_VERSION_MICRO 2)
+set (MIRAGE_VERSION_MICRO 3)
 set (MIRAGE_VERSION_LONG 
${MIRAGE_VERSION_MAJOR}.${MIRAGE_VERSION_MINOR}.${MIRAGE_VERSION_MICRO})
 set (MIRAGE_VERSION_SHORT ${MIRAGE_VERSION_MAJOR}.${MIRAGE_VERSION_MINOR})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmirage-3.0.2/README new/libmirage-3.0.3/README
--- old/libmirage-3.0.2/README  2014-09-28 21:19:13.0 +0200
+++ new/libmirage-3.0.3/README  2014-11-09 19:01:10.0 +0100
@@ -1,5 +1,5 @@
 libMirage
-3.0.2
+3.0.3
 ~
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmirage-3.0.2/debian/changelog 
new/libmirage-3.0.3/debian/changelog
--- old/libmirage-3.0.2/debian/changelog2014-09-28 21:19:13.0 
+0200
+++ new/libmirage-3.0.3/debian/changelog2014-11-09 19:01:10.0 
+0100
@@ -1,3 +1,3 @@
-libmirage (3.0.2-1) debian; urgency=low
+libmirage (3.0.3-1) debian; urgency=low
   * Initial Release. Closes: #705409
  -- Henrik Stokseth   Sat, 05 Apr 2014 12:00:00 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmirage-3.0.2/mirage/utils.c 
new/libmirage-3.0.3/mirage/utils.c
--- old/libmirage-3.0.2/mirage/utils.c  2014-09-28 21:19:13.0 +0200
+++ new/libmirage-3.0.3/mirage/utils.c  2014-11-09 19:01:10.0 +0100
@@ -628,7 +628,7 @@
 
 /* Generate look-up tables for slice-by-4 (and slice-by-8) */
 if (slices >= 4) {
-for (guint i = 0; i <= 256; i++) {
+for (guint i = 0; i < 256; i++) {
 CRC32_LUT(1, i) = (CRC32_LUT(0, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(0, i) & 0xFF);
 CRC32_LUT(2, i) = (CRC32_LUT(1, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(1, i) & 0xFF);
 CRC32_LUT(3, i) = (CRC32_LUT(2, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(2, i) & 0xFF);
@@ -637,7 +637,7 @@
 
 /* Generate look-up tables for slice-by-8 */
 if (slices >= 8) {
-for (guint i = 0; i <= 256; i++) {
+for (guint i = 0; i < 256; i++) {
 CRC32_LUT(4, i) = (CRC32_LUT(3, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(3, i) & 0xFF);
 CRC32_LUT(5, i) = (CRC32_LUT(4, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(4, i) & 0xFF);
 CRC32_LUT(6, i) = (CRC32_LUT(5, i) >> 8) ^ CRC32_LUT(0, 
CRC32_LUT(5, i) & 0xFF);




commit plasma5-session for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package plasma5-session for openSUSE:Factory 
checked in at 2015-07-25 07:44:26

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


Package is "plasma5-session"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-session/plasma5-session.changes  
2015-07-08 06:58:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-session.new/plasma5-session.changes 
2015-07-25 07:44:27.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 23 10:57:18 UTC 2015 - m...@suse.com
+
+- Fix those version condition for 42
+
+---



Other differences:
--
++ plasma5-session.spec ++
--- /var/tmp/diff_new_pack.tF8QtP/_old  2015-07-25 07:44:27.0 +0200
+++ /var/tmp/diff_new_pack.tF8QtP/_new  2015-07-25 07:44:27.0 +0200
@@ -39,7 +39,7 @@
 Requires:   polkit-kde-agent-5 >= %{version}
 Requires:   powerdevil5 >= %{version}
 Requires:   systemsettings5 >= %{version}
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   kdebase4-session = %{version}
 Obsoletes:  kdebase4-session < %{version}
 %endif
@@ -59,7 +59,7 @@
 %install
 install -m 0755 -d %{buildroot}%{_datadir}/xsessions/
 cp %{SOURCE1} %{buildroot}%{_datadir}/xsessions/
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 cp %{SOURCE3} %{buildroot}%{_datadir}/xsessions/
 %endif
 install -D -m644 %{SOURCE2} 
%{buildroot}%{_datadir}/doc/packages/plasma5-session/COPYING
@@ -67,7 +67,7 @@
 %files
 %defattr(-,root,root)
 %{_datadir}/xsessions/plasma5.desktop
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 %{_datadir}/xsessions/kde-plasma.desktop
 %endif
 %dir %{_datadir}/doc/packages/plasma5-session




commit ntp for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package ntp for openSUSE:Factory checked in 
at 2015-07-25 07:43:46

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


Package is "ntp"

Changes:

--- /work/SRC/openSUSE:Factory/ntp/ntp.changes  2015-04-22 01:16:27.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ntp.new/ntp.changes 2015-07-25 
07:43:47.0 +0200
@@ -1,0 +2,10 @@
+Thu Jul 16 12:30:16 UTC 2015 - m...@suse.com
+
+- Update to version 4.2.8p3 which incorporates all security fixes
+  and most other patches we have so far (fate#319040).
+  More information on:
+  http://archive.ntp.org/ntp4/ChangeLog-stable
+- Disable chroot by default (bnc#926510).
+- Enable ntpdc for backwards compatibility (bnc#920238).
+
+---

Old:

  ntp-4.2.8p2.tar.gz

New:

  ntp-4.2.8p3.tar.gz



Other differences:
--
++ ntp.spec ++
--- /var/tmp/diff_new_pack.sfNPyz/_old  2015-07-25 07:43:48.0 +0200
+++ /var/tmp/diff_new_pack.sfNPyz/_new  2015-07-25 07:43:48.0 +0200
@@ -21,7 +21,7 @@
 %global _ntpunitsdir %{_libexecdir}/systemd/ntp-units.d
 %endif
 Name:   ntp
-Version:4.2.8p2
+Version:4.2.8p3
 Release:0
 Summary:Network Time Protocol daemon (version 4)
 License:(MIT and BSD-3-Clause and BSD-4-Clause) and GPL-2.0

++ conf.ntp.conf ++
--- /var/tmp/diff_new_pack.sfNPyz/_old  2015-07-25 07:43:49.0 +0200
+++ /var/tmp/diff_new_pack.sfNPyz/_new  2015-07-25 07:43:49.0 +0200
@@ -59,6 +59,9 @@
 restrict 127.0.0.1
 restrict ::1
 
+# Allow ntpdc
+enable mode7
+
 # Clients from this (example!) subnet have unlimited access, but only if
 # cryptographically authenticated.
 #restrict 192.168.123.0 mask 255.255.255.0 notrust

++ conf.start-ntpd ++
--- /var/tmp/diff_new_pack.sfNPyz/_old  2015-07-25 07:43:49.0 +0200
+++ /var/tmp/diff_new_pack.sfNPyz/_new  2015-07-25 07:43:49.0 +0200
@@ -138,7 +138,7 @@
 }
 
 function add_runtime_server() {
-  [ "$NTPD_FORCE_SYNC_HWCLOCK_ON_STARTUP" = "yes" ] && /usr/sbin/sntp -s $@
+  [ "$NTPD_FORCE_SYNC_HWCLOCK_ON_STARTUP" = "yes" ] && /usr/sbin/sntp -S -c $@
   NTPC_CMD="keyid $NTP_KEYID\npasswd $NTP_PASSWD\naddserver $@\n"
   NTPDC_LOG=$(echo -e "${NTPC_CMD}quit" | $NTPDC_BIN)
   logger -t $0 "runtime configuration: $NTPDC_LOG"
@@ -203,24 +203,29 @@
   ;;
   ntptimeset)
 NTPD_PROTO="$( get_ntpd_ip_proto )"
-for i in $(gawk '/^server/ { if( $2 !~ "^127.127." ) print $2","$3 }' 
$NTP_CONF)
-do 
-IFS=',' read -ra SERVER <<< "$i"
-if [ ${SERVER[0]} = "-4" ] || [ ${SERVER[0]} = "-6" ]
+while read arg1 arg2 arg3 dummy
+do
+test "$arg1" = "server" || continue
+if [ "$arg2" = "-4" -o "$arg2" = "-6" ]
 then
-if [ -z "${NTPD_PROTO}" ] || [ "${NTPD_PROTO}" = "${SERVER[0]}" ]
-then
-SNTP_OPT="${SERVER[0]} ${SERVER[1]}"
-else
-# ignore servers with conflicting proto
-continue
-fi
+srv="$arg3"
+   proto="$arg2"
+args="$arg2 $arg3"
 else
-# here the usual case with empty NTPD_PROTO (default/yast config)
-SNTP_OPT="$NTPD_PROTO ${SERVER[0]}"
+srv="$arg2"
+   proto=""
+args="$arg2"
 fi
-/usr/sbin/sntp -t 2 -l /dev/null -s $SNTP_OPT 2> /dev/null && { 
SYNCHRONISED=$SNTP_OPT; break; };
-done
+   # ignore servers with conflicting IP version
+   test -n "$NTP_PROTO" -a "NTPD_PROTO" != "$proto" && continue
+   # ignore hardware clock drivers
+test "${srv#127.127.}" != "$srv" && continue
+if sntp -S -c $args &> /dev/null
+then
+SYNCHRONISED=$srv
+break
+fi
+done < /etc/ntp.conf
 if [ "$SYNCHRONISED" ]
 then
echo "Time synchronized with $SYNCHRONISED"

++ conf.sysconfig.ntp ++
--- /var/tmp/diff_new_pack.sfNPyz/_old  2015-07-25 07:43:49.0 +0200
+++ /var/tmp/diff_new_pack.sfNPyz/_new  2015-07-25 07:43:49.0 +0200
@@ -20,7 +20,7 @@
 # 
 # The pid file will be in /var/lib/ntp/var/run/ntpd.pid. 
 #
-NTPD_RUN_CHROOTED="yes"
+NTPD_RUN_CHROOTED="no"
 
 ## Type:   string
 ## Default:""

++ ntp-4.2.8p2.tar.gz -> ntp-4.2.8p3.tar.gz ++
/work/SRC/openSUSE:Factory/ntp/ntp-4.2.8p2.tar.gz 
/work/SRC/openSUSE:Factory/.ntp.new/ntp-4.2.8p3.tar.gz differ: char 5, line 1






commit pinentry for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package pinentry for openSUSE:Factory 
checked in at 2015-07-25 07:44:08

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


Package is "pinentry"

Changes:

--- /work/SRC/openSUSE:Factory/pinentry/pinentry.changes2015-07-16 
17:18:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.pinentry.new/pinentry.changes   2015-07-25 
07:44:09.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 10 08:54:22 UTC 2015 - wer...@suse.de
+
+- Make it build with every ncurses library ABI 
+  adding pinentry-ncurses6.diff
+
+---

New:

  pinentry-ncurses6.diff



Other differences:
--
++ pinentry.spec ++
--- /var/tmp/diff_new_pack.0ZmWrE/_old  2015-07-25 07:44:09.0 +0200
+++ /var/tmp/diff_new_pack.0ZmWrE/_new  2015-07-25 07:44:09.0 +0200
@@ -16,7 +16,6 @@
 #
 
 
-%global ncursesw_config %(set -- %{_bindir}/ncursesw*-config; echo 
${1})
 Name:   pinentry
 Version:0.9.5
 Release:0
@@ -31,6 +30,8 @@
 Patch1: pinentry-0.7.2-gtk+-2.4.diff
 # PATCH-FIX-SUSE fix qt4 password entry not to allow IM (bnc#725471)
 Patch6: qt4-disable-inputmethod-for-passwords.diff
+# PATCH-FIX-SUSE make it build with ncurses ABI 6
+Patch7: pinentry-ncurses6.diff
 BuildRequires:  libassuan-devel >= 2.1.0
 BuildRequires:  libgpg-error-devel >= 1.16
 BuildRequires:  libqt4-devel
@@ -43,6 +44,10 @@
 Requires(post): %{install_info_prereq}
 Provides:   pinentry-dialog
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+#%define nmajor %(xxx="`grep NCURSES_VERSION_MAJOR /usr/include/ncurses.h`"; 
test -z "$xxx" && xxx=leer; echo $xxx)
+#%define nmajor %(xxx="leer"; xxx="`grep NCURSES_VERSION_MAJOR 
/usr/include/ncurses.h 2> /dev/null`"; echo $xxx)
+%define ncurses %(xxx="`readlink -f /usr/include/ncurses.h`"; echo $xxx)
+%define nmajor  %(grep NCURSES_VERSION_MAJOR < /usr/include/ncurses.h)
 
 %description
 This is a collection of simple PIN or passphrase entry dialogs which
@@ -103,14 +108,18 @@
 %setup -q
 %patch1 -p1
 %patch6 -p1
+%patch7 -p0
 
 %build
 # Regenerate moc's
 moc qt4/pinentrydialog.h > qt4/pinentrydialog.moc
 moc qt4/qsecurelineedit.h > qt4/qsecurelineedit.moc
 moc qt4/pinentryconfirm.h > qt4/pinentryconfirm.moc
-export CFLAGS="%{optflags} $(%{ncursesw_config} --cflags)"
-export CXXFLAGS="%{optflags} -std=gnu++11 $(%{ncursesw_config} --cflags)"
+nmajor=$(sed -rn 's/^#define\s+NCURSES_VERSION_MAJOR\s+([0-9]+)/\1/p' 
/usr/include/ncurses.h)
+CFLAGS="%{optflags} $(ncursesw${nmajor}-config --cflags)"
+CXXFLAGS="%{optflags} -std=gnu++11 $(ncursesw${nmajor}-config --cflags)"
+LDFLAGS="$(ncursesw${nmajor}-config --libs)"
+export CFLAGS CXXFLAGS LDFLAGS
 
 %define _configure ../configure
 # build gui version with libsecret (bnc#934214)


++ pinentry-ncurses6.diff ++
---
 pinentry/pinentry.h |1 +
 1 file changed, 1 insertion(+)

--- pinentry/pinentry.h
+++ pinentry/pinentry.h 2015-07-10 08:19:18.801518702 +
@@ -74,6 +74,7 @@ struct pinentry
  supported.  (Assuan: "OPTION ttyname TTYNAME".)  */
   char *ttyname;
   /* The type of the terminal.  (Assuan: "OPTION ttytype TTYTYPE".)  */
+#undef ttytype
   char *ttytype;
   /* The LC_CTYPE value for the terminal.  (Assuan: "OPTION lc-ctype
  LC_CTYPE".)  */



commit qemu for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package qemu for openSUSE:Factory checked in 
at 2015-07-25 07:43:53

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


Package is "qemu"

Changes:

qemu-linux-user.changes: same change
--- /work/SRC/openSUSE:Factory/qemu/qemu-testsuite.changes  2015-07-16 
17:18:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.qemu.new/qemu-testsuite.changes 2015-07-25 
07:43:54.0 +0200
@@ -1,0 +2,8 @@
+Mon Jul 13 16:10:13 UTC 2015 - ag...@suse.com
+
+- Patch queue updated from git://github.com/openSUSE/qemu.git opensuse-2.3
+- Fix -kernel boot for AArch64
+* Patches added:
+  0044-hw-arm-boot-Increase-fdt-alignment.patch
+
+---
qemu.changes: same change

New:

  0044-hw-arm-boot-Increase-fdt-alignment.patch



Other differences:
--
++ libcacard.spec ++
--- /var/tmp/diff_new_pack.dfk3wh/_old  2015-07-25 07:43:56.0 +0200
+++ /var/tmp/diff_new_pack.dfk3wh/_new  2015-07-25 07:43:56.0 +0200
@@ -68,6 +68,7 @@
 Patch0041:  0041-fdc-force-the-fifo-access-to-be-in-.patch
 Patch0042:  0042-rules.mak-Force-CFLAGS-for-all-obje.patch
 Patch0043:  0043-qcow2-Set-MIN_L2_CACHE_SIZE-to-2.patch
+Patch0044:  0044-hw-arm-boot-Increase-fdt-alignment.patch
 # Please do not add patches manually here, run update_git.sh.
 # this is to make lint happy
 Source300:  qemu-rpmlintrc
@@ -170,6 +171,7 @@
 %patch0041 -p1
 %patch0042 -p1
 %patch0043 -p1
+%patch0044 -p1
 
 %build
 ./configure --prefix=%_prefix --sysconfdir=%_sysconfdir \

qemu-linux-user.spec: same change
++ qemu-testsuite.spec ++
--- /var/tmp/diff_new_pack.dfk3wh/_old  2015-07-25 07:43:56.0 +0200
+++ /var/tmp/diff_new_pack.dfk3wh/_new  2015-07-25 07:43:56.0 +0200
@@ -99,6 +99,7 @@
 Patch0041:  0041-fdc-force-the-fifo-access-to-be-in-.patch
 Patch0042:  0042-rules.mak-Force-CFLAGS-for-all-obje.patch
 Patch0043:  0043-qcow2-Set-MIN_L2_CACHE_SIZE-to-2.patch
+Patch0044:  0044-hw-arm-boot-Increase-fdt-alignment.patch
 # Please do not add QEMU patches manually here.
 # Run update_git.sh to regenerate this queue.
 
@@ -604,6 +605,7 @@
 %patch0041 -p1
 %patch0042 -p1
 %patch0043 -p1
+%patch0044 -p1
 
 %if %{build_x86_fw_from_source}
 pushd roms/seabios

qemu.spec: same change
++ 0044-hw-arm-boot-Increase-fdt-alignment.patch ++
>From 90808c2a055b1e6332db307ca34ab682be60cfbf Mon Sep 17 00:00:00 2001
From: Alexander Graf 
Date: Mon, 13 Jul 2015 17:46:04 +0200
Subject: [PATCH] hw/arm/boot: Increase fdt alignment

The Linux kernel on aarch64 creates a page table entry at early bootup
that spans the 2MB range on memory spanning the fdt start address:

  [ ALIGN_DOWN(fdt, 2MB) ... ALIGN_DOWN(fdt, 2MB) + 2MB ]

This means that when our current 4k alignment happens to fall at the end
of the aligned region, Linux tries to access memory that is not mapped.

The easy fix is to instead increase the alignment to 2MB, making Linux's
logic always succeed.

Reported-by: Andreas Schwab 
Signed-off-by: Alexander Graf 
---
 hw/arm/boot.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/arm/boot.c b/hw/arm/boot.c
index a48d1b2..52cbd33 100644
--- a/hw/arm/boot.c
+++ b/hw/arm/boot.c
@@ -739,12 +739,12 @@ void arm_load_kernel(ARMCPU *cpu, struct arm_boot_info 
*info)
  * we point to the kernel args.
  */
 if (have_dtb(info)) {
-/* Place the DTB after the initrd in memory. Note that some
- * kernels will trash anything in the 4K page the initrd
- * ends in, so make sure the DTB isn't caught up in that.
+/* Place the DTB after the initrd in memory. Note that the kernel
+ * maps [ ALIGN_DOWN(fdt, 2MB) ... ALGIN_DOWN(fdt, 2MB) + 2MB ]
+ * and thus needs the fdt be preferably in its own 2MB window.
  */
 hwaddr dtb_start = QEMU_ALIGN_UP(info->initrd_start + initrd_size,
- 4096);
+ 2 * 1024 * 1024);
 if (load_dtb(dtb_start, info, 0) < 0) {
 exit(1);
 }





commit plasma5-openSUSE for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package plasma5-openSUSE for 
openSUSE:Factory checked in at 2015-07-25 07:44:16

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


Package is "plasma5-openSUSE"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-openSUSE/plasma5-openSUSE.changes
2015-07-08 06:58:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-openSUSE.new/plasma5-openSUSE.changes   
2015-07-25 07:44:17.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 23 10:52:52 UTC 2015 - m...@suse.com
+
+- Fix those version condition for 42 
+
+---



Other differences:
--
++ plasma5-openSUSE.spec ++
--- /var/tmp/diff_new_pack.fMh4Bi/_old  2015-07-25 07:44:18.0 +0200
+++ /var/tmp/diff_new_pack.fMh4Bi/_new  2015-07-25 07:44:18.0 +0200
@@ -69,7 +69,7 @@
 Conflicts:  plasma5-desktop-branding-upstream
 Requires:   plasma5-workspace >= %plasma_version
 Requires:   wallpaper-branding-openSUSE
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   kdebase4-openSUSE = %{version}
 Provides:   kdebase4-workspace-branding-openSUSE = %{version}
 Obsoletes:  kdebase4-openSUSE <= %{version}




commit yast2-network for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-07-25 07:44:04

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


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-07-05 17:52:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-07-25 07:44:05.0 +0200
@@ -1,0 +2,7 @@
+Wed Jul  1 11:21:36 UTC 2015 - mfi...@suse.com
+
+- bnc#864264
+  - fixed internal error in adding alias
+- 3.1.122
+
+---

Old:

  yast2-network-3.1.121.tar.bz2

New:

  yast2-network-3.1.122.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.vpYil4/_old  2015-07-25 07:44:06.0 +0200
+++ /var/tmp/diff_new_pack.vpYil4/_new  2015-07-25 07:44:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.121
+Version:3.1.122
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.121.tar.bz2 -> yast2-network-3.1.122.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.121/package/yast2-network.changes 
new/yast2-network-3.1.122/package/yast2-network.changes
--- old/yast2-network-3.1.121/package/yast2-network.changes 2015-07-02 
17:17:43.0 +0200
+++ new/yast2-network-3.1.122/package/yast2-network.changes 2015-07-23 
17:57:12.0 +0200
@@ -1,4 +1,11 @@
 ---
+Wed Jul  1 11:21:36 UTC 2015 - mfi...@suse.com
+
+- bnc#864264
+  - fixed internal error in adding alias
+- 3.1.122
+
+---
 Tue Jun 30 16:18:26 UTC 2015 - mvid...@suse.com
 
 - Fixed warnings like 'duplicated key at line 230 ignored:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.121/package/yast2-network.spec 
new/yast2-network-3.1.122/package/yast2-network.spec
--- old/yast2-network-3.1.121/package/yast2-network.spec2015-07-02 
17:17:43.0 +0200
+++ new/yast2-network-3.1.122/package/yast2-network.spec2015-07-23 
17:57:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.121
+Version:3.1.122
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.121/src/clients/lan.rb 
new/yast2-network-3.1.122/src/clients/lan.rb
--- old/yast2-network-3.1.121/src/clients/lan.rb2015-07-02 
17:17:43.0 +0200
+++ new/yast2-network-3.1.122/src/clients/lan.rb2015-07-23 
17:57:12.0 +0200
@@ -133,6 +133,7 @@
 "type" => "string"
   },
   "bootproto"=> {
+# Commandline option help
 "help" => _("Use static or dynamic configuration"),
 "type" => "string"
   },
@@ -140,11 +141,6 @@
 "help" => _("Configuration Name"),
 "type" => "string"
   },
-  "bootproto"=> {
-# Commandline option help
-"help" => _("Device boot protocol"),
-"type" => "string"
-  },
   "ip"   => {
 # Commandline option help
 "help" => _("Device IP address"),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.121/src/include/network/lan/virtual.rb 
new/yast2-network-3.1.122/src/include/network/lan/virtual.rb
--- old/yast2-network-3.1.121/src/include/network/lan/virtual.rb
2015-07-02 17:17:43.0 +0200
+++ new/yast2-network-3.1.122/src/include/network/lan/virtual.rb
2015-07-23 17:57:12.0 +0200
@@ -97,20 +97,16 @@
 cur = Convert.to_integer(UI.QueryWidget(Id(:table), :CurrentItem))
 case Ops.get_symbol(event, "ID", :nil)
 when :edit
-  @item = VirtualEditDialog(cur, Ops.get(table_items, cur), [])
+  @item = VirtualEditDialog(cur, Ops.get(table_items, cur))
   if !@item.nil?
 Ops.set(table_items, cur, @item)
 UI.ChangeWidget(Id(:table), :Items, table_items)
 UI.ChangeWidget(Id(:table), :CurrentItem, cur)
   end
 when :add
-  @forbidden = Builtins.maplist(table_items) do |e|
-Ops.get_string(e, 1, "")
-  end
   @item2 = VirtualEditDial

commit hdf5 for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package hdf5 for openSUSE:Factory checked in 
at 2015-07-25 07:43:29

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


Package is "hdf5"

Changes:

--- /work/SRC/openSUSE:Factory/hdf5/hdf5.changes2015-05-20 
23:44:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.hdf5.new/hdf5.changes   2015-07-25 
07:43:30.0 +0200
@@ -1,0 +2,94 @@
+Thu Jul 23 11:30:56 UTC 2015 - toddrme2...@gmail.com
+
+- Fix baselibs.conf
+
+---
+Wed Jul 22 11:23:14 UTC 2015 - toddrme2...@gmail.com
+
+- update to 1.8.15
+  * New Features
++ Library
+  - Added Memory Allocation Functions that Use the Library's Allocator
+  - H5Pset_istore_k and H5Pset_sym_k added validation of "ik" to not 
+exceed the max v1 btree entries (2 bytes) to these two routines.
+  - Added Functions to Control the Value of H5PL_no_plugin_g without 
+Using an Environment Variable
++ Parallel Library
+  - Attached an attribute destroy callback to MPI_COMM_SELF that
+shuts down the HDF5 library when MPI_COMM_SELF is destroyed,
+in other words, on MPI_Finalize. This should fix several issues 
+that users see when they forget to close HDF5 objects before 
++ Fortran API
+  - Added Global Variables. These new global variables are equivalent to 
+the C definitions  without the '_F':
+o H5G_UDLINK_F  
+o H5G_SAME_LOC_F
+o H5O_TYPE_UNKNOWN_F
+o H5O_TYPE_GROUP_F
+o H5O_TYPE_DATASET_F
+o H5O_NAMED_DATATYPE_F
+o H5O_TYPE_NTYPES_F
++ C++ API
+  - New Wrappers for C Functions H5P[s/g]et_libver_bounds
+  - New Wrappers to Get the Object Header's Version
+  - New DataType Constructor
++ Support for New Platforms, Languages, and Compilers
+  - Support for Linux 3.10.0-123.20.1.el7 added (LK - 2015/04/01) 
+  * Bug Fixes since HDF5-1.8.14
++ Library
+  - Addition of Error Tracing Functionality to Several C API Calls
+  - H5Rdereference Now Checks for HADDR_UNDEF or Uninitialized References
+  - Fixed Bugs in H5Sextent_copy
++ Parallel Library
+  - Fixed a Potential Memory Error
+  - Parallel Test Problem Fixed
+  - MPE Support
++ Tools
+  - h5repack crashed on enumerated 8-bit type.
+  - h52gif crashed non-8bit images.
+  - perform/benchpar.c retired.
+  - Source perform/ directory moved to tools/perform.
++ Fortran API
+  - Fortran Fails with --enable-fortran2003 and Intel 15.x Compilers
+  - h5tenum_insert_f Does Not Work with Default 8 Byte Integers 
+(xlf compiler)
+  - Some Fortran APIs Never Returned the Error State
+  - Fixed h5pget_class_f 
++ C++ API
+  - Combined Two H5File::getObjCount Overloaded Methods
+The following two methods   
+o ssize_t getObjCount(unsigned types) const;
+o ssize_t getObjCount() const;
+were combined into one:
+o ssize_t getObjCount(unsigned types = H5F_OBJ_ALL) const;
+  - Many Warnings Were Removed
+  - Functionality Deprecation
+ The following two constructors of classes AbstractDs, IdComponent,
+H5Location, and H5Object are no longer appropriate after the data 
member
+"id" had been moved from IdComponent to the sub-classes in previous
+releases.
+o (const hid_t h5_id);
+o (const & original);
+The copy constructors were no-op and removed in 1.8.15.  The other
+constructors will be removed from 1.10 release, and then from 1.8.17
+if their removal does not cause any problems.
++ High-Level APIs:
+  - Suppress Warnings from Flex/Bison-generated Code
+  - Changed hdf5_hl.h to Include the HDF5 Main Library "hdf5.h"
+  - H5PTcreate_fl Does Not Convert to Memory Datatype
+  - Fix for H5LT Attribute Functions
++ Fortran High-Level APIs:
+  - Internal Library Fix for Missing Argument Declaration
+- Build in thread-safe mode to allow parallel reads
+  * These are only unsupported to avoid confusing casual users.  
+The fotran and C++ libraries don't support thread-safe mode, 
+while the C library does.  So you have to explicitly allow
+building the thread-safe C library and the non-thread-safe C++
+and fortran libraries in order to make sure only people who 
+have done their research do so.  Since users are going to be
+accessing this through other programs, this doesn't matter.
+- Build fortran 2003 libraries
+- Rebase hdf5-non_void_return.patch
+- Remove irrelevant hdf5-configure-long-double.patch
+
+---

Old:

  hdf5-1.8.14.tar.bz2
  hd

commit plasma5-desktop for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package plasma5-desktop for openSUSE:Factory 
checked in at 2015-07-25 07:44:11

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


Package is "plasma5-desktop"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-desktop/plasma5-desktop.changes  
2015-07-08 06:58:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-desktop.new/plasma5-desktop.changes 
2015-07-25 07:44:13.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 23 10:50:24 UTC 2015 - m...@suse.com
+
+- Fix those version condition for 42
+
+---



Other differences:
--
++ plasma5-desktop.spec ++
--- /var/tmp/diff_new_pack.Gk5oFX/_old  2015-07-25 07:44:14.0 +0200
+++ /var/tmp/diff_new_pack.Gk5oFX/_new  2015-07-25 07:44:14.0 +0200
@@ -64,7 +64,7 @@
 BuildRequires:  pkgconfig(xkbfile)
 # Needed for Logitech specific mouse systemsettings. Only supports
 # ancient (pre 2004) mice, requires direct device access
-%if 0%{?suse_version} <= 1320
+%if 0%{?suse_version} < 1315 || "%{suse_version}" == "1320"
 BuildRequires:  pkgconfig(libusb)
 %endif
 BuildRequires:  update-desktop-files
@@ -97,7 +97,7 @@
 # hardcode versions of plasma-framework-componets and plasma-framework-private 
packages, as upstream doesn't keep backwards compability there
 %requires_ge plasma-framework-components
 %requires_ge plasma-framework-private
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Requires:   kinfocenter5
 Requires:   kmenuedit5
 Requires:   ksysguard5
@@ -106,7 +106,7 @@
 %if %{with lang}
 Recommends: %{name}-lang
 %endif
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   kdebase4-workspace = 5.3.0
 Obsoletes:  kdebase4-workspace < 5.3.0
 Provides:   kcm-touchpad = %{version}
@@ -163,7 +163,7 @@
 %config %{_kf5_configdir}/icons.knsrc
 %config %{_kf5_configdir}/kfontinst.knsrc
 %config %{_kf5_configdir}/plasma-themes.knsrc
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1314
 %config %{_kf5_configdir}/xcursor.knsrc
 %{_kf5_bindir}/kapplymousetheme
 %endif
@@ -213,7 +213,7 @@
 %{_kf5_servicesdir}/
 %{_kf5_servicetypesdir}/
 %{_kf5_sharedir}/ksmserver/
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1314
 %{_kf5_sharedir}/kcminput/
 %endif
 %{_kf5_sharedir}/solid/




commit pulseaudio for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio for openSUSE:Factory 
checked in at 2015-07-25 07:43:50

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


Package is "pulseaudio"

Changes:

--- /work/SRC/openSUSE:Factory/pulseaudio/pulseaudio.changes2015-06-24 
20:26:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.pulseaudio.new/pulseaudio.changes   
2015-07-25 07:43:51.0 +0200
@@ -1,0 +2,6 @@
+Thu Jul 23 12:38:33 CEST 2015 - ti...@suse.de
+
+- Fix missing speex resampler due to the recent split of speexdsp
+  (boo#939225)
+
+---



Other differences:
--
++ pulseaudio.spec ++
--- /var/tmp/diff_new_pack.dEtZv6/_old  2015-07-25 07:43:53.0 +0200
+++ /var/tmp/diff_new_pack.dEtZv6/_new  2015-07-25 07:43:53.0 +0200
@@ -67,7 +67,11 @@
 BuildRequires:  libwebrtc_audio_processing-devel
 BuildRequires:  lirc-devel
 BuildRequires:  orc >= 0.4.9
+%if 0%{?suse_version} > 1320
+BuildRequires:  speexdsp-devel
+%else
 BuildRequires:  speex-devel
+%endif
 BuildRequires:  systemd
 BuildRequires:  systemd-devel
 BuildRequires:  translation-update-upstream




commit plasma5-addons for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package plasma5-addons for openSUSE:Factory 
checked in at 2015-07-25 07:44:22

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


Package is "plasma5-addons"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-addons/plasma5-addons.changes
2015-07-08 06:58:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-addons.new/plasma5-addons.changes   
2015-07-25 07:44:23.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 23 10:51:47 UTC 2015 - m...@suse.com
+
+- Fix those version condition for 42
+
+---



Other differences:
--
++ plasma5-addons.spec ++
--- /var/tmp/diff_new_pack.eSdIDQ/_old  2015-07-25 07:44:23.0 +0200
+++ /var/tmp/diff_new_pack.eSdIDQ/_new  2015-07-25 07:44:23.0 +0200
@@ -59,7 +59,7 @@
 Recommends: %{name}-lang
 %endif
 Recommends: %{name}-kimpanel
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-addons = %{version}
 Obsoletes:  plasma-addons < %{version}
 %else




commit libstorage for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:Factory 
checked in at 2015-07-25 07:43:06

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


Package is "libstorage"

Changes:

--- /work/SRC/openSUSE:Factory/libstorage/libstorage.changes2015-07-05 
17:51:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.libstorage.new/libstorage.changes   
2015-07-25 07:43:07.0 +0200
@@ -1,0 +2,7 @@
+Fri Jul 10 10:07:26 UTC 2015 - an...@suse.com
+
+- remove partition from efi before destroying it on GPT disks
+  (bnc#929677, bnc#870211)
+- 2.25.26
+
+---

Old:

  libstorage-2.25.25.tar.bz2

New:

  libstorage-2.25.26.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.Ju4u6T/_old  2015-07-25 07:43:08.0 +0200
+++ /var/tmp/diff_new_pack.Ju4u6T/_new  2015-07-25 07:43:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.25.25
+Version:2.25.26
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2

++ libstorage-2.25.25.tar.bz2 -> libstorage-2.25.26.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.25.25/VERSION 
new/libstorage-2.25.26/VERSION
--- old/libstorage-2.25.25/VERSION  2015-06-29 16:45:53.0 +0200
+++ new/libstorage-2.25.26/VERSION  2015-07-17 12:47:43.0 +0200
@@ -1 +1 @@
-2.25.25
+2.25.26
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.25.25/storage/Disk.cc 
new/libstorage-2.25.26/storage/Disk.cc
--- old/libstorage-2.25.25/storage/Disk.cc  2015-06-25 15:18:04.0 
+0200
+++ new/libstorage-2.25.26/storage/Disk.cc  2015-07-17 12:47:43.0 
+0200
@@ -2231,6 +2231,17 @@
getStorage()->removeDmMapsTo( getPartDevice(p->OrigNr()) );
ret = v->prepareRemove();
}
+   // before deleting partitions ensure that efi do not contain it
+   const ArchInfo& ai = getStorage()->getArchInfo();
+   if( ai.is_efiboot() && label == "gpt" && ret==0 && !p->created() )
+   {
+   std::ostringstream cmd_line;
+   cmd_line << EFIBOOTMGRBIN << " -v --delete --disk " << 
quote(device())
+   << " --part " << p->OrigNr();
+   SystemCmd c(cmd_line.str());
+   if ( c.retcode() != 0 )
+   y2war( "Failed to remove entry from efi for " << device() );
+   }
if( ret==0 && !p->created() )
{
std::ostringstream cmd_line;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.25.25/storage/StorageDefines.h 
new/libstorage-2.25.26/storage/StorageDefines.h
--- old/libstorage-2.25.25/storage/StorageDefines.h 2015-06-24 
16:54:56.0 +0200
+++ new/libstorage-2.25.26/storage/StorageDefines.h 2015-07-17 
12:47:43.0 +0200
@@ -90,6 +90,8 @@
 #define RPCBINDBIN  "/sbin/rpcbind"
 #define RPCSTATDBIN "/usr/sbin/rpc.statd"
 
+#define EFIBOOTMGRBIN   "/usr/sbin/efibootmgr"
+
 #define NTFSRESIZEBIN   "/usr/sbin/ntfsresize"
 #define XFSGROWFSBIN"/usr/sbin/xfs_growfs"
 #define REISERRESBIN"/sbin/resize_reiserfs"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.25.25/storage/gen_md5sum.cc 
new/libstorage-2.25.26/storage/gen_md5sum.cc
--- old/libstorage-2.25.25/storage/gen_md5sum.cc2015-06-29 
16:30:36.0 +0200
+++ new/libstorage-2.25.26/storage/gen_md5sum.cc2015-07-17 
13:09:50.0 +0200
@@ -1,5 +1,5 @@
-#define SOURCES_MD5SUM   "c74b7dbd52496a204e931c9fcd2e1a3b"
-#define SOURCES_MD5_DATE " Mon Jun 29 16:30:36 CEST 2015 "
+#define SOURCES_MD5SUM   "264fff2ab6cfc86b11d75d19728c8d8d"
+#define SOURCES_MD5_DATE " Fri Jul 17 13:09:50 CEST 2015 "
 namespace storage
 {
 const char* GetSourceMd5() { return SOURCES_MD5SUM; }




commit vim for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2015-07-25 07:43:10

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


Package is "vim"

Changes:

--- /work/SRC/openSUSE:Factory/vim/vim.changes  2015-07-02 22:46:32.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2015-07-25 
07:43:12.0 +0200
@@ -1,0 +2,26 @@
+Sun Jul 19 12:19:20 UTC 2015 - idon...@suse.com
+
+- Updated to revision 788, fixes the following problems
+  * CTRL-A and CTRL-X in Visual mode do not always work well.
+  * :diffoff only works properly once.
+  * Behavior of :diffoff is not tested.
+  * Background color response with transparency is not ignored.
+  * Search does not handle multi-byte character at the start position 
correctly.
+  * 'langmap' is used in command-line mode when checking for mappings. Issue 
376.
+  * When using the CompleteDone autocommand event it's difficult to get to the 
completed items.
+  * It is not possible to avoid using the first item of completion.
+  * Equivalence class for 'd' does not work correctly.
+  * Coverity warns for uninitialized variable.
+  * Using CTRL-A in a line without a number moves the cursor. 
+May cause a crash when at the start of the line. (Urtica Dioica)
+  * Compiler complains about uninitialized variable and clobbered variables.
+  * line2byte() returns one less when 'bin' and 'noeol' are set.
+  * Still a few problems with CTRL-A and CTRL-X in Visual mode.
+  * copy_chars() and copy_spaces() are inefficient.
+  * Using both "noinsert" and "noselect" in 'completeopt' does not work 
properly.
+  * On some systems automatically adding the missing EOL causes problems.
+Setting 'binary' has too many side effects.
+  * It is not possible for a plugin to adjust to a changed setting.
+  * snprintf() isn't available everywhere.
+
+---

Old:

  v7-4-763.tar.gz

New:

  v7-4-788.tar.gz



Other differences:
--
++ vim.spec ++
--- /var/tmp/diff_new_pack.EJuRd3/_old  2015-07-25 07:43:13.0 +0200
+++ /var/tmp/diff_new_pack.EJuRd3/_new  2015-07-25 07:43:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 %define pkg_version 7.4
-%define patchlevel 763
+%define patchlevel 788
 %define _rversion 7-4-%patchlevel
 %define VIM_SUBDIR vim74
 %define site_runtimepath /usr/share/vim/site


++ v7-4-763.tar.gz -> v7-4-788.tar.gz ++
/work/SRC/openSUSE:Factory/vim/v7-4-763.tar.gz 
/work/SRC/openSUSE:Factory/.vim.new/v7-4-788.tar.gz differ: char 35, line 2




commit patterns-openSUSE for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2015-07-25 07:43:14

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-06-30 10:14:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2015-07-25 07:43:15.0 +0200
@@ -1,0 +2,20 @@
+Sun Jul 19 12:52:54 UTC 2015 - co...@suse.com
+
+- downgrade broken requires from leechcraft pattern
+
+---
+Thu Jul 16 08:16:44 UTC 2015 - m...@suse.com
+
+- drop out dhcpcd
+
+---
+Wed Jul 15 21:31:12 UTC 2015 - sor.ale...@meowr.ru
+
+- Adapt MATE patterns to MATE 1.10+.
+
+---
+Tue Jul 14 12:41:29 UTC 2015 - arn...@versini.eu
+
+- Recommend OpenJDK 8 instead of OpenJDK 7.
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.FA4iPk/_old  2015-07-25 07:43:16.0 +0200
+++ /var/tmp/diff_new_pack.FA4iPk/_new  2015-07-25 07:43:16.0 +0200
@@ -123,7 +123,6 @@
 Provides:   pattern-visible()
 # from data/BASIS
 Requires:   aaa_base
-Requires:   dhcpcd
 Requires:   hwinfo
 Requires:   kbd
 # omit kernel here. Not needed for containers and YaST will add the
@@ -516,7 +515,7 @@
 Recommends: xml-commons-apis
 Recommends: xml-commons-resolver
 Recommends: xml-commons-which10
-Recommends: java-1_7_0-openjdk
+Recommends: java-1_8_0-openjdk
 %ifarch %ix86
 Recommends: icedtea-web
 %endif
@@ -543,7 +542,7 @@
 Suggests:   mysql-connector-java
 # just an editor
 Suggests:   jedit
-Suggests:   java-1_7_0-openjdk-devel
+Suggests:   java-1_8_0-openjdk-devel
 Suggests:   mx4j
 Suggests:   ant-javamail
 Suggests:   geronimo-j2ee-1_4-apis
@@ -3352,7 +3351,7 @@
 # from data/LC-Browser
 Requires:   leechcraft-cstp
 Requires:   leechcraft-poshuku
-Requires:   leechcraft-xproxy
+Recommends: leechcraft-xproxy
 Recommends: leechcraft-anhero
 Recommends: leechcraft-advancednotifications
 Recommends: leechcraft-dbusmanager
@@ -3437,7 +3436,7 @@
 Recommends: pattern() = leechcraft_utilities
 # from data/LC-Messenger
 Requires:   leechcraft-azoth
-Requires:   leechcraft-xproxy
+Recommends: leechcraft-xproxy
 Recommends: leechcraft-anhero
 Recommends: leechcraft-advancednotifications
 Recommends: leechcraft-azoth-acetamide
@@ -3504,7 +3503,7 @@
 Recommends: pattern() = leechcraft_utilities
 # from data/LC-NetUtils
 Requires:   leechcraft-cstp
-Requires:   leechcraft-xproxy
+Recommends: leechcraft-xproxy
 Recommends: leechcraft-advancednotifications
 Recommends: leechcraft-aggregator-bodyfetch
 Recommends: leechcraft-aggregator-webaccess
@@ -3825,46 +3824,44 @@
 Recommends: pattern() = mate_utilities
 #
 # Official upstream
-# As MATE is the continuation of Gnome2, patterns are based on Gnome ones
-# and some Gnome's are required
+# As MATE is the continuation of GNOME 2.x, patterns are based on GNOME ones
+# and some GNOME's are required
 #
-Recommends: mojo
-Recommends: mate-disk-usage-analyzer
-Recommends: mate-system-log
+Recommends: atril
+# For instance, recommending blueberry, will recommend blueman once it's 
approved
+Recommends: blueberry
 Recommends: brasero
+Recommends: caja-sendto
 Recommends: caribou
 Recommends: cheese
-Recommends: empathy
-Recommends: eom
-Recommends: atril
-Recommends: MozillaThunderbird
 Recommends: engrampa
+Recommends: eom
+Recommends: galculator
 Recommends: gcr-viewer
-Recommends: pluma
-# For instance, recommends gnome-bluetooth, then recommends blueman once stable
-Recommends: gnome-bluetooth
-Recommends: mate-calc
-# Support will be added in 1.12
+# Support of gnome-contacts will be added in MATE 1.12
 #Recommends: gnome-contacts
-Recommends: mate-dictionary
 Recommends: gnome-font-viewer
 Recommends: gnome-nettool
 Recommends: gparted
+Recommends: gucharmap
+Recommends: mate-dictionary
+Recommends: mate-disk-usage-analyzer
 Recommends: mate-screenshot
+Recommends: mate-system-log
 Recommends: mate-system-monitor
 Recommends: mate-user-share
-Recommends: gucharmap
 Recommends: mousetweaks
-Recommends: caja-sendto
+

commit openldap2 for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package openldap2 for openSUSE:Factory 
checked in at 2015-07-25 07:43:35

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


Package is "openldap2"

Changes:

--- /work/SRC/openSUSE:Factory/openldap2/openldap2-client.changes   
2015-03-01 14:52:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.openldap2.new/openldap2-client.changes  
2015-07-25 07:43:36.0 +0200
@@ -1,0 +2,9 @@
+Tue Jul 21 08:12:50 UTC 2015 - h...@suse.com
+
+- Upgrade to upstream 2.4.41 release with accumulcated bug fixes and stability 
improvements.
+  * Add patch 0008-In-monitor-backend-do-not-return-Connection0-entries.patch
+  * Remove already applied patch 0008-ITS-7723-fix-reference-counting.patch
+  * Remove already applied patch 0009-gcc5.patch
+  (Implements fate#319301)
+
+---
openldap2.changes: same change

Old:

  0008-ITS-7723-fix-reference-counting.patch
  0009-gcc5.patch
  openldap-2.4.39.tgz

New:

  0008-In-monitor-backend-do-not-return-Connection0-entries.patch
  openldap-2.4.41.tgz



Other differences:
--
++ openldap2-client.spec ++
--- /var/tmp/diff_new_pack.ue1dYN/_old  2015-07-25 07:43:37.0 +0200
+++ /var/tmp/diff_new_pack.ue1dYN/_new  2015-07-25 07:43:37.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openldap2-client
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 %define run_test_suite 0
-%define version_main 2.4.39
+%define version_main 2.4.41
 
 %if ! %{defined _rundir}
 %define _rundir %{_localstatedir}/run
@@ -27,7 +27,7 @@
 Summary:The OpenLDAP commandline client tools
 License:OLDAP-2.8
 Group:  Productivity/Networking/LDAP/Clients
-Version:2.4.39
+Version:2.4.41
 Release:0
 Url:http://www.openldap.org
 Source: openldap-%{version_main}.tgz
@@ -47,8 +47,7 @@
 Patch5: 0005-pie-compile.dif
 Patch6: 0006-No-Build-date-and-time-in-binaries.dif
 Patch7: 0007-Recover-on-DB-version-change.dif
-Patch8: 0008-ITS-7723-fix-reference-counting.patch
-Patch9: 0009-gcc5.patch
+Patch8: 0008-In-monitor-backend-do-not-return-Connection0-entries.patch
 Patch100:   openldap-2.3.37.dif
 Patch101:   openldap-2.3.37-libldap-suid.diff
 Patch102:   openldap-2.3.37-libldap-ldapi_url.dif
@@ -210,7 +209,6 @@
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
-%patch9 -p1
 cp %{SOURCE5} .
 cp %{SOURCE6} .
 cd ../openldap-2.3.37

openldap2.spec: same change
++ 0008-In-monitor-backend-do-not-return-Connection0-entries.patch ++
>From d4b247e43fe1ea1b3713f3d8f493422d5adcc537 Mon Sep 17 00:00:00 2001
From: HouzuoGuo 
Date: Fri, 13 Mar 2015 16:14:10 +0100
Subject: [PATCH] In monitor backend, do not return Connection0 entries as they
 are created for internal use only.

---
 servers/slapd/back-monitor/conn.c | 5 +
 1 file changed, 5 insertions(+)

diff --git a/servers/slapd/back-monitor/conn.c 
b/servers/slapd/back-monitor/conn.c
index c1995b0..2d27738 100644
--- a/servers/slapd/back-monitor/conn.c
+++ b/servers/slapd/back-monitor/conn.c
@@ -454,6 +454,11 @@ monitor_subsys_conn_create(
c != NULL;
c = connection_next( c, &connindex ) )
{
+   /* Connection 0 is created by connection_client_setup 
for internal use only */
+   if (c->c_connid == 0) {
+   continue;
+   }
+
monitor_entry_t *mp;
 
if ( conn_create( mi, c, &e, ms ) != SLAP_CB_CONTINUE
-- 
2.1.4

++ openldap-2.4.39.tgz -> openldap-2.4.41.tgz ++
 34484 lines of diff (skipped)




commit yast2-storage for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2015-07-25 07:43:22

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


Package is "yast2-storage"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2015-07-22 09:19:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2015-07-25 07:43:23.0 +0200
@@ -1,0 +2,6 @@
+Thu Jul 23 11:44:42 CEST 2015 - shundham...@suse.de
+
+- Added NoCoW subvolume for /var/lib/libvirt/images (Fate#319299)
+- 3.1.64
+
+---

Old:

  yast2-storage-3.1.63.tar.bz2

New:

  yast2-storage-3.1.64.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.CSQSKm/_old  2015-07-25 07:43:24.0 +0200
+++ /var/tmp/diff_new_pack.CSQSKm/_new  2015-07-25 07:43:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.63
+Version:3.1.64
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-storage-3.1.63.tar.bz2 -> yast2-storage-3.1.64.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.63/package/yast2-storage.changes 
new/yast2-storage-3.1.64/package/yast2-storage.changes
--- old/yast2-storage-3.1.63/package/yast2-storage.changes  2015-07-20 
13:13:38.0 +0200
+++ new/yast2-storage-3.1.64/package/yast2-storage.changes  2015-07-23 
16:18:10.0 +0200
@@ -1,4 +1,10 @@
 ---
+Thu Jul 23 11:44:42 CEST 2015 - shundham...@suse.de
+
+- Added NoCoW subvolume for /var/lib/libvirt/images (Fate#319299)
+- 3.1.64
+
+---
 Wed Jul 17 13:31:34 CEST 2015 - dval...@suse.com
 
 - Allow /boot on RAID1 (bsc#938170)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.63/package/yast2-storage.spec 
new/yast2-storage-3.1.64/package/yast2-storage.spec
--- old/yast2-storage-3.1.63/package/yast2-storage.spec 2015-07-20 
13:13:38.0 +0200
+++ new/yast2-storage-3.1.64/package/yast2-storage.spec 2015-07-23 
16:18:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.63
+Version:3.1.64
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.63/src/modules/Storage.rb 
new/yast2-storage-3.1.64/src/modules/Storage.rb
--- old/yast2-storage-3.1.63/src/modules/Storage.rb 2015-07-20 
13:13:38.0 +0200
+++ new/yast2-storage-3.1.64/src/modules/Storage.rb 2015-07-23 
16:18:10.0 +0200
@@ -4988,6 +4988,7 @@
 "tmp",
 "usr/local",
 "var/crash",
+"var/lib/libvirt/images",
 "var/lib/mailman",
 "var/lib/mariadb",
 "var/lib/named",
@@ -4998,8 +4999,10 @@
 "var/tmp"
   ]
 
-  # No Copy On Write for SQL databases to minimize performance impact
+  # No Copy On Write for SQL databases and libvirt virtual disks to
+  # minimize performance impact
   nocow_subvols = [
+"var/lib/libvirt/images",
 "var/lib/mariadb",
 "var/lib/pgsql"
   ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.1.63/testsuite/tests/empty-big-ppc64le1.out 
new/yast2-storage-3.1.64/testsuite/tests/empty-big-ppc64le1.out
--- old/yast2-storage-3.1.63/testsuite/tests/empty-big-ppc64le1.out 
2015-07-20 13:13:38.0 +0200
+++ new/yast2-storage-3.1.64/testsuite/tests/empty-big-ppc64le1.out 
2015-07-23 16:18:10.0 +0200
@@ -14,6 +14,7 @@
 Dump   Create subvolume tmp on device /dev/sda3
 Dump   Create subvolume usr/local on device /dev/sda3
 Dump   Create subvolume var/crash on device /dev/sda3
+Dump   Create subvolume var/lib/libvirt/images on device /dev/sda3 with option 
"no copy on write"
 Dump   Create subvolume var/lib/mailman on device /dev/sda3
 Dump   Create subvolume var/lib/mariadb on device /dev/sda3 with option "no 
copy on write"
 Dump   Create subvolume var/lib/named on device /dev/sda3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.1.63/testsuite/tests/empty-big-ppc64le2.out 
new/yast2-storage-3.1.64/testsuite/tests/empty-big-ppc64le2.out
--- old/yast2-storage-3.1.63/testsuite/tests/empty-big-ppc64le2.out

commit perl-HTTP-Message for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package perl-HTTP-Message for 
openSUSE:Factory checked in at 2015-07-25 07:43:18

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


Package is "perl-HTTP-Message"

Changes:

--- /work/SRC/openSUSE:Factory/perl-HTTP-Message/perl-HTTP-Message.changes  
2015-07-16 17:16:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-HTTP-Message.new/perl-HTTP-Message.changes 
2015-07-25 07:43:19.0 +0200
@@ -1,0 +2,22 @@
+Mon Jul 20 08:49:19 UTC 2015 - co...@suse.com
+
+- updated to 6.10
+   see /usr/share/doc/packages/perl-HTTP-Message/Changes
+
+  6.10   2015-07-19
+  
+  - fix uses of qr/.../m in tests that do not work in 5.8.x
+
+---
+Sun Jul 19 08:54:05 UTC 2015 - co...@suse.com
+
+- updated to 6.09
+   see /usr/share/doc/packages/perl-HTTP-Message/Changes
+
+  6.09   2015-07-19
+  
+  - converted all uses of Test.pm to Test::More
+  
+  - fix uninitialized warning in HTTP::Config (RT#105929)
+
+---

Old:

  HTTP-Message-6.08.tar.gz

New:

  HTTP-Message-6.10.tar.gz



Other differences:
--
++ perl-HTTP-Message.spec ++
--- /var/tmp/diff_new_pack.ElUeUk/_old  2015-07-25 07:43:20.0 +0200
+++ /var/tmp/diff_new_pack.ElUeUk/_new  2015-07-25 07:43:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-HTTP-Message
-Version:6.08
+Version:6.10
 Release:0
 %define cpan_name HTTP-Message
 Summary:HTTP style message (base class)

++ HTTP-Message-6.08.tar.gz -> HTTP-Message-6.10.tar.gz ++
 2371 lines of diff (skipped)




commit mozo for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package mozo for openSUSE:Factory checked in 
at 2015-07-24 09:59:03

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


Package is "mozo"

Changes:

--- /work/SRC/openSUSE:Factory/mozo/mozo.changes2015-07-05 
18:02:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.mozo.new/mozo.changes   2015-07-24 
09:59:05.0 +0200
@@ -1,0 +2,9 @@
+Thu Jul 23 16:01:32 UTC 2014 - sor.ale...@meowr.ru
+
+- Update to 1.10.1:
+  * Fix wrong highlighting while moving menu items when separators
+are present.
+  * Remove deprecated GTK properties.
+  * Fix help link.
+
+---

Old:

  mozo-1.10.0.tar.xz

New:

  mozo-1.10.1.tar.xz



Other differences:
--
++ mozo.spec ++
--- /var/tmp/diff_new_pack.AZyqVX/_old  2015-07-24 09:59:06.0 +0200
+++ /var/tmp/diff_new_pack.AZyqVX/_new  2015-07-24 09:59:06.0 +0200
@@ -18,7 +18,7 @@
 
 %define _version 1.10
 Name:   mozo
-Version:1.10.0
+Version:1.10.1
 Release:0
 Summary:MATE Desktop menu editor
 License:LGPL-2.1+

++ mozo-1.10.0.tar.xz -> mozo-1.10.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mozo-1.10.0/Makefile.in new/mozo-1.10.1/Makefile.in
--- old/mozo-1.10.0/Makefile.in 2015-05-20 21:24:07.0 +0200
+++ new/mozo-1.10.1/Makefile.in 2015-07-23 15:08:57.0 +0200
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.15 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2014 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -15,7 +15,17 @@
 @SET_MAKE@
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+false; \
+  elif test -n '$(MAKE_HOST)'; then \
+true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+true; \
+  else \
+false; \
+  fi; \
+}
 am__make_running_with_option = \
   case $${target_option-} in \
   ?) ;; \
@@ -77,15 +87,13 @@
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
 subdir = .
-DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
-   $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-   $(top_srcdir)/configure $(am__configure_deps) \
-   $(srcdir)/config.h.in COPYING compile install-sh missing
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+   $(am__configure_deps) $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
@@ -178,6 +186,9 @@
 CTAGS = ctags
 CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
+   COPYING ChangeLog INSTALL NEWS README compile install-sh \
+   missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -384,7 +395,6 @@
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
$(am__cd) $(top_srcdir) && \
  $(AUTOMAKE) --gnu Makefile
-.PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
  *config.status*) \
@@ -646,15 +656,15 @@
$(am__post_remove_distdir)
 
 dist-tarZ: distdir
-   @echo WARNING: "Support for shar distribution archives is" \
-  "deprecated." >&2
+   @echo WARNING: "Support for distribution archives compressed with" \
+  "legacy program 'compress' is deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__post_remove_distdir)
 
 dist-shar: distdir
-   @echo WARNING: "Support for distribution archives compressed with" \
-  "legacy program 'compress' is deprecated." >&2
+   @echo WARNING: "Support for shar distribution archives is" \
+  "deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
shar $(distdir) | GZIP=$(GZIP_ENV) gzi

commit octave for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package octave for openSUSE:Factory checked 
in at 2015-07-24 09:59:01

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


Package is "octave"

Changes:

--- /work/SRC/openSUSE:Factory/octave/octave.changes2015-06-01 
09:53:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.octave.new/octave.changes   2015-07-24 
09:59:03.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 23 08:19:59 UTC 2015 - dmitr...@opensuse.org
+
+- Add build config for openSUSE:42
+
+---



Other differences:
--
++ octave.spec ++
--- /var/tmp/diff_new_pack.FpTvMY/_old  2015-07-24 09:59:04.0 +0200
+++ /var/tmp/diff_new_pack.FpTvMY/_new  2015-07-24 09:59:04.0 +0200
@@ -30,6 +30,9 @@
 # Sound IO
 %define with_sound 1
 
+# SLE
+%if 0%{?sles_version}
+
 # SLE11
 %if 0%{?suse_version} == 1110
 %define with_gui 0
@@ -44,6 +47,8 @@
 %define with_imagemagick 1
 %endif
 
+%endif
+
 Name:   octave
 Version:4.0.0
 Release:0
@@ -284,7 +289,7 @@
 %{_datadir}/%{name}/%{src_ver}/locale/
 %{_datadir}/appdata/*.xml
 %{_datadir}/applications/*.desktop
-%if 0%{?suse_version} <= 1310
+%if 0%{?suse_version} <= 1315
 %dir %{_datadir}/appdata
 %endif
 %{_datadir}/icons/hicolor/*/apps/octave.*




commit meld for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package meld for openSUSE:Factory checked in 
at 2015-07-24 09:59:02

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


Package is "meld"

Changes:

--- /work/SRC/openSUSE:Factory/meld/meld.changes2015-07-14 
17:46:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.meld.new/meld.changes   2015-07-24 
09:59:04.0 +0200
@@ -1,0 +2,10 @@
+Thu Jul 23 07:14:20 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.14.0:
+  + Fix crash when starting folder comparison on Windows.
+  + Fix bad chunk action behaviour for middle-to-right actions in
+three pane conflicts.
+  + Documentation fixes.
+  + Updated translations.
+
+---

Old:

  meld-3.13.3.tar.xz

New:

  meld-3.14.0.tar.xz



Other differences:
--
++ meld.spec ++
--- /var/tmp/diff_new_pack.3bLgD8/_old  2015-07-24 09:59:05.0 +0200
+++ /var/tmp/diff_new_pack.3bLgD8/_new  2015-07-24 09:59:05.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   meld
-Version:3.13.3
+Version:3.14.0
 Release:0
 Summary:Visual diff and merge tool
 License:GPL-2.0+
 Group:  Development/Tools/Other
 Url:http://meldmerge.org/
-Source: 
http://download.gnome.org/sources/meld/3.13/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/meld/3.14/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE meld-nodocs.patch dims...@opensuse.org -- We do not want 
COPYING and NEWS installed like this
 Patch0: meld-nodocs.patch
 BuildRequires:  fdupes

++ meld-3.13.3.tar.xz -> meld-3.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/meld-3.13.3/NEWS new/meld-3.14.0/NEWS
--- old/meld-3.13.3/NEWS2015-07-12 04:28:22.0 +0200
+++ new/meld-3.14.0/NEWS2015-07-22 23:13:06.0 +0200
@@ -1,4 +1,21 @@
 
+2015-07-23 meld 3.14.0
+==
+
+  Fixes:
+
+   * Fix crash when starting folder comparison on Windows (Kai Willadsen)
+   * Fix bad chunk action behaviour for middle-to-right actions in three
+ pane conflicts (Kai Willadsen)
+   * Documentation fixes (Anders Jonsson)
+
+
+  Translations:
+
+   * Josef Andersson (sv)
+   * Marek Černocký (cs)
+
+
 2015-07-12 meld 3.13.3
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/meld-3.13.3/PKG-INFO new/meld-3.14.0/PKG-INFO
--- old/meld-3.13.3/PKG-INFO2015-07-12 04:28:28.0 +0200
+++ new/meld-3.14.0/PKG-INFO2015-07-22 23:13:19.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: meld
-Version: 3.13.3
+Version: 3.14.0
 Summary: Visual diff and merge tool
 Home-page: http://meldmerge.org
 Author: Kai Willadsen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/meld-3.13.3/README new/meld-3.14.0/README
--- old/meld-3.13.3/README  2015-06-28 03:15:36.0 +0200
+++ new/meld-3.14.0/README  2015-07-22 23:09:07.0 +0200
@@ -17,10 +17,10 @@
 
 
 * Python 2.7
-* GTK+ 3.6
-* GLib 2.34
+* GTK+ 3.12
+* GLib 2.36
 * PyGObject 3.8
-* GtkSourceView 3.6
+* GtkSourceView 3.10
 
 
 Running
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/meld-3.13.3/help/C/preferences.page 
new/meld-3.14.0/help/C/preferences.page
--- old/meld-3.13.3/help/C/preferences.page 2015-06-28 03:14:54.0 
+0200
+++ new/meld-3.14.0/help/C/preferences.page 2015-07-20 21:25:27.0 
+0200
@@ -41,7 +41,7 @@
 non-binary files into memory during the folder comparison. With large text
 files, this can be slow and may cause memory issues.
 
-This option only has an effect if if "Compare files based only on size
+This option only has an effect if "Compare files based only on size
 and timestamp" is not enabled.
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/meld-3.13.3/help/cs/cs.po 
new/meld-3.14.0/help/cs/cs.po
--- old/meld-3.13.3/help/cs/cs.po   2015-06-28 03:15:57.0 +0200
+++ new/meld-3.14.0/help/cs/cs.po   2015-07-21 23:30:23.0 +0200
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: meld master\n"
-"POT-Creation-Date: 2015-05-31 10:40+\n"
-"PO-Revision-Date: 2015-05-31 20:01+0200\n"
+"POT-Creation-Date: 2015-07-20 19:42+\n"
+"PO-Revision-Date: 2015-07-21 11:57+0200\n"
 "Last-Translator: Marek Černocký \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
@@ -709,10 +709,10 @@
 msgstr ""
 "Název příkazu, který p

commit calibre for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2015-07-24 09:59:05

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


Package is "calibre"

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2015-07-12 
22:52:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2015-07-24 
09:59:09.0 +0200
@@ -1,0 +2,64 @@
+Thu Jul 23 17:03:04 UTC 2015 - corne...@solcon.nl
+
+- Update to 2.32.1:
+  New Features:
+  * E-book viewer: Automatically save the current reading position
+every ten seconds. Prevents loss of reading position on crash/
+forced shutdown.
+  * Edit Book: Check Book: Add checks for missing OPF version and
+toc references and for text placed directly inside the 
+tag.
+  * calibredb: Add a new search sub-command that can be used to
+generate a list of book ids from a search expression.
+  * Tag Editor: Place the keyboard focus on the last edited field.
+  * Edit metadata dialog: When clicking Next and Previous preserve
+the current tab of the edit comments widget.
+  * Linux: Various fixes to make calibre work when compiled
+against the latest versions of Qt and PyQt.
+  * Edit Book: Allow drag and drop of files onto dock icon on OS X
+  Bug Fixes
+  * Fix error in template dialog when using {id} in send to device
+preferences.
+  * Edit Book/Book polishing: Fix EPUB books with opf files that
+use a non-default namespace for the OPF namespace being
+corrupted.
+  * OS X: Workaround for Qt 5 regression that causes any errors
+during startup to be hidden behind the splash screen.
+  * Conversion: Fix incorrect relative URLs being generated when
+an HTML or CSS file is placed higher in the folder hierarchy
+than the opf file.
+  * FB2 Output: Fix error when using the sectionize with toc
+option and the input documents Table of Contents contains
+multiple items pointing to the same HTML file.
+  * Conversion: Fix error when input document contains a font size
+exactly one point away from the base size.
+  * Device drivers: Handle devices with undecodeable filenames in
+their filesystem. Simply ignore those files.
+  * Fix Cmd+Left/Right keyboard shortcut not working when editing
+items in the book list on OS X.
+  * Fix corrupted text in the jobs list on some non-English
+windows installs.
+  * Edit Book: Workaround for a Qt regression that caused 'See
+what changed' after a search and replace on OS X causing the
+application to become unresponsive.
+  * Edit Book: Fix smarten punctuation not working for books with
+non-ascii characters in internal file names on OS X.
+  New news sources
+  * Slate Star Codex by Ned Letcher
+  * Hurriyet by Adrian Tennessee
+  Improved news sources
+  * Harvard Business Review
+  * Psychology Today
+  * NRC Handelsblad
+  * Entrepeneur Magazine
+  * 20 minutes
+  * Economia
+  * Accountancy Age
+  * Jakarta Post
+  * Foreign Affairs
+  * Spectator Magazine
+  * Daily Express
+  * The Onion AV Club
+  * Metro UK
+
+---

Old:

  calibre-2.31.0.tar.xz

New:

  calibre-2.32.1.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.ojAeGL/_old  2015-07-24 09:59:10.0 +0200
+++ /var/tmp/diff_new_pack.ojAeGL/_new  2015-07-24 09:59:10.0 +0200
@@ -20,7 +20,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.31.0
+Version:2.32.1
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.31.0.tar.xz -> calibre-2.32.1.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.31.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.32.1.tar.xz differ: char 26, 
line 1




commit yara for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package yara for openSUSE:Factory checked in 
at 2015-07-24 09:59:06

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


Package is "yara"

Changes:

--- /work/SRC/openSUSE:Factory/yara/yara.changes2014-09-26 
11:21:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.yara.new/yara.changes   2015-07-24 
09:59:11.0 +0200
@@ -1,0 +2,45 @@
+Thu Jul 23 16:05:05 UTC 2015 - greg.freem...@gmail.com
+
+- add yara.pc to the libyara subpackage
+- remove sed command previously needed to properly link Yara and libyara.  No 
longer needed with latest upstream source.
+- update to v3.4.0
+  * Short-circuit evaluation for conditions
+  * New yr_rules_save_stream/yr_rules_load_stream APIs.
+  * load() and save() methods in yara-python accept file-like objects
+  * Improvements to the PE and ELF modules
+  * Some performance improvements
+  * New command-line option --print-module-data
+  * Multiple bug fixes.
+- v3.3.0
+  * Added support for negative integers and floating point numbers
+  * Implemented operators >,<, >=, <= for strings
+  * Implemented word boundary anchors (\b, \B) in regular expressions
+  * New features in PE module
+  * Math module
+  * New --print-namespace command line argument
+  * Better error handling in low memory conditions
+  * BUGFIX: "at" operator not working with certain strings containing wildcards
+  * BUGFIX: precedence of bitwise operators was incorrect
+  * BUGFIX: incorrect imphash result for certain PE files importing functions 
by ordinal
+  * BUGFIX: handle and memory leaks
+  * BUGFIX: multiple segfaults
+- v3.2.0
+  * ELF module
+  * Hash module
+  * New features in PE module
+  * Big-endian version of intXX and uintXX functions
+  * Modules can declare dictionary objects
+  * Modules accept overloaded functions
+  * Performance improvements
+  * BUGFIX: "and" operator not working properly with integer operands
+  * BUGFIX: False positive with strings declared as "fullword wide ascii"
+  * BUGFIX: False positive with "wide fullword" strings shorter than 5 bytes
+  * BUGFIX: Functions declared in a structure array not working properly
+  * BUGFIX: "contains" operator causing segfault if operand is an undefined 
string
+
+---
+Fri Sep 26 16:32:42 UTC 2014 - greg.freem...@gmail.com
+
+- split off a -doc sub-project
+
+---

Old:

  v3.1.0.tar.gz

New:

  v3.4.0.tar.gz



Other differences:
--
++ yara.spec ++
--- /var/tmp/diff_new_pack.m9OqTl/_old  2015-07-24 09:59:12.0 +0200
+++ /var/tmp/diff_new_pack.m9OqTl/_new  2015-07-24 09:59:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yara
 #
-# 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
@@ -18,19 +18,19 @@
 
 %define soname 3
 Name:   yara
-Version:3.1.0
+Version:3.4.0
 Release:0
 Summary:A malware identification and classification tool
 License:Apache-2.0
 Group:  System/Filesystems
 Url:http://plusvic.github.io/yara/
-Source: https://github.com/plusvic/yara/archive/v3.1.0.tar.gz
+Source: https://github.com/plusvic/yara/archive/v3.4.0.tar.gz
+BuildRequires:  file-devel
 BuildRequires:  flex
+BuildRequires:  libjansson-devel
 BuildRequires:  libtool
-BuildRequires:  file-devel
 BuildRequires:  pcre-devel
 BuildRequires:  python-devel
-BuildRequires:  libjansson-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -59,6 +59,16 @@
 %description -n libyara-devel
 YARA is a tool aimed at helping malware researchers to identify and classify 
malware samples. With YARA you can create descriptions of malware families 
based on textual or binary patterns contained on samples of those families. 
Each description consists of a set of strings and a Boolean expression which 
determines its logic. Let's see an example:
 
+%package doc
+Summary:Documentation files to support the YARA malware identification 
tool
+Group:  Development/Libraries/C and C++
+Requires:   libyara%{soname} = %{version}-%{release}
+
+%description doc
+Documentation and guideslines to support YARA.
+
+YARA is a tool aimed at helping malware researchers to identify and classify 
malware samples. With YARA you can create descriptions of malware families 
based on textual or binary patterns contained on sample

commit perl-B-Utils for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package perl-B-Utils for openSUSE:Factory 
checked in at 2015-07-24 09:59:07

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


Package is "perl-B-Utils"

Changes:

--- /work/SRC/openSUSE:Factory/perl-B-Utils/perl-B-Utils.changes
2015-04-28 20:48:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-B-Utils.new/perl-B-Utils.changes   
2015-07-24 09:59:12.0 +0200
@@ -1,0 +2,12 @@
+Thu Jul 23 09:27:11 UTC 2015 - co...@suse.com
+
+- updated to 0.27
+   see /usr/share/doc/packages/perl-B-Utils/Changes
+
+ - remove build/IFiles.pm from the shipped dist, as it is meant to be
+   auto-generated at install time (was added in 0.26)
+ - Support native B::OP::parent with 5.21.2 -DPERL_OP_PARENT (Reini Urban)
+ - fix t/utils/40walk.t with 5.6 (Reini Urban)
+ - Add $op->_parent method as fallback to our parent method since 5.21.2.
+
+---

Old:

  B-Utils-0.26.tar.gz

New:

  B-Utils-0.27.tar.gz



Other differences:
--
++ perl-B-Utils.spec ++
--- /var/tmp/diff_new_pack.lJRUHn/_old  2015-07-24 09:59:12.0 +0200
+++ /var/tmp/diff_new_pack.lJRUHn/_new  2015-07-24 09:59:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-B-Utils
-Version:0.26
+Version:0.27
 Release:0
 %define cpan_name B-Utils
 Summary:Helper functions for op tree manipulation
@@ -58,6 +58,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc build Changes LICENSE README
+%doc Changes LICENSE README
 
 %changelog

++ B-Utils-0.26.tar.gz -> B-Utils-0.27.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Utils-0.26/Changes new/B-Utils-0.27/Changes
--- old/B-Utils-0.26/Changes2015-04-27 03:59:50.0 +0200
+++ new/B-Utils-0.27/Changes2015-07-22 21:33:22.0 +0200
@@ -1,13 +1,20 @@
 Revision history for Perl extension B::Utils.
 
+   - remove build/IFiles.pm from the shipped dist, as it is meant to be
+ auto-generated at install time (was added in 0.26)
+   - Support native B::OP::parent with 5.21.2 -DPERL_OP_PARENT (Reini Urban)
+   - fix t/utils/40walk.t with 5.6 (Reini Urban)
+   - Add $op->_parent method as fallback to our parent method since 5.21.2.
+
 0.26
- fix tests for perl 5.21.7 (change to nulled COPs) (RT#100508, Father
  Chrysostomos)
 
 0.25
-   - Export C symbols, breakage from 0.22
+   - Re-expose symbols by setting dl_load_flags. Hope this is ok for HP-UX
 
 0.24
+   - Export C symbols, breakage from 0.22
 
 0.23
- 5.10, 5.12, 5.14 compatibile syntax
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Utils-0.26/MANIFEST new/B-Utils-0.27/MANIFEST
--- old/B-Utils-0.26/MANIFEST   2015-04-27 03:59:50.0 +0200
+++ new/B-Utils-0.27/MANIFEST   2015-07-22 21:33:22.0 +0200
@@ -1,15 +1,15 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.035.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.037.
 BUtils.h
 BUtils_op.h
 Changes
 LICENSE
 MANIFEST
+META.json
 META.yml
 Makefile.PL
 OP.xs
 README
 Utils.xs
-build/IFiles.pm
 dist.ini
 lib/B/Utils.pm
 lib/B/Utils/OP.pm
@@ -17,7 +17,6 @@
 t/10use.t
 t/11export.t
 t/regression_walkallops_filtered.t
-t/release-pod-syntax.t
 t/utils/20all_starts.t
 t/utils/21all_roots.t
 t/utils/22anon_subs.t
@@ -39,4 +38,5 @@
 typemap
 weaver.ini
 xt/ppport.t
-xt/version.t
+xt/release/changes_has_content.t
+xt/release/pod-syntax.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Utils-0.26/META.json new/B-Utils-0.27/META.json
--- old/B-Utils-0.26/META.json  1970-01-01 01:00:00.0 +0100
+++ new/B-Utils-0.27/META.json  2015-07-22 21:33:22.0 +0200
@@ -0,0 +1,59 @@
+{
+   "abstract" : "Helper functions for op tree manipulation",
+   "author" : [
+  "Josh Jore "
+   ],
+   "dynamic_config" : 0,
+   "generated_by" : "Dist::Zilla version 5.037, CPAN::Meta::Converter version 
2.150005",
+   "license" : [
+  "perl_5"
+   ],
+   "meta-spec" : {
+  "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
+  "version" : 2
+   },
+   "name" : "B-Utils",
+   "prereqs" : {
+  "build" : {
+ "requires" : {
+"ExtUtils::CBuilder" : "0",
+"Test::More" : "0"
+ }
+  },
+  "configure" : {
+ "requires" : {
+"ExtUtils::CBuilder" : "0",
+"ExtUtils::Depends" : "0.301"
+ }
+  },
+  "develop" : {
+ "requires" : {
+

commit mksusecd for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2015-07-24 09:58:59

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


Package is "mksusecd"

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2015-07-23 
15:23:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2015-07-24 
09:59:02.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul 23 16:36:06 CEST 2015 - snw...@suse.com
+
+- integrate isozipl in mksusecd
+- add some options to isohybrid to make it more flexible
+- add zipl binary blobs
+- 1.30
+
+---

Old:

  mksusecd-1.29.tar.xz

New:

  mksusecd-1.30.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.uSd1MC/_old  2015-07-24 09:59:03.0 +0200
+++ /var/tmp/diff_new_pack.uSd1MC/_new  2015-07-24 09:59:03.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.29
+Version:1.30
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+

++ mksusecd-1.29.tar.xz -> mksusecd-1.30.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.29/VERSION new/mksusecd-1.30/VERSION
--- old/mksusecd-1.29/VERSION   2015-07-22 17:14:04.0 +0200
+++ new/mksusecd-1.30/VERSION   2015-07-23 16:33:12.0 +0200
@@ -1 +1 @@
-1.29
+1.30
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.29/changelog new/mksusecd-1.30/changelog
--- old/mksusecd-1.29/changelog 2015-07-22 17:14:04.0 +0200
+++ new/mksusecd-1.30/changelog 2015-07-23 16:33:12.0 +0200
@@ -1,3 +1,8 @@
+2015-07-23:1.30
+   - integrate isozipl in mksusecd
+   - add some options to isohybrid to make it more flexible
+   - add zipl binary blobs
+
 2015-07-22:1.29
- added isozipl to make an iso zipl bootable
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.29/isohybrid.c 
new/mksusecd-1.30/isohybrid.c
--- old/mksusecd-1.29/isohybrid.c   2015-07-22 17:14:04.0 +0200
+++ new/mksusecd-1.30/isohybrid.c   2015-07-23 16:33:12.0 +0200
@@ -72,6 +72,13 @@
 off_t iso_size = 0;
 off_t iso_filesize = 0;
 
+struct {
+  unsigned no_mbr:1;   /* gpt: don't write protective mbr */
+  unsigned no_code:1;  /* no mbr boot code */
+  unsigned no_chs:1;   /* fill in 0xff instead of real chs values 
*/
+} opt;
+
+
 /* boot catalogue parameters */
 uint32_t de_lba = 0;
 uint16_t de_seg = 0, de_count = 0, de_mbz2 = 0;
@@ -242,6 +249,9 @@
 printf(FMT, "   -m --mac", "Add AFP table support");
 printf(FMT, "   --gpt", "Force GPT");
 printf(FMT, "   --mbr", "Force MBR");
+printf(FMT, "   --no-mbr", "Don't write protective MBR for GPT");
+printf(FMT, "   --no-code", "Don't include MBR boot code");
+printf(FMT, "   --no-chs", "Don't fill in CHS values, use 0xff 
instead");
 
 printf("\n");
 printf(FMT, "   --forcehd0", "Assume we are loaded as disk ID 0");
@@ -273,6 +283,9 @@
 { "id", required_argument, NULL, 'i' },
 { "gpt", no_argument, NULL, 1001 },
 { "mbr", no_argument, NULL, 1002 },
+{ "no-mbr", no_argument, NULL, 1003 },
+{ "no-code", no_argument, NULL, 1004 },
+{ "no-chs", no_argument, NULL, 1005 },
 
 { "forcehd0", no_argument, NULL, 'f' },
 { "ctrlhd0", no_argument, NULL, 'c' },
@@ -360,6 +373,18 @@
 mode |= MODE_MBR;
 break;
 
+case 1003:
+opt.no_mbr = 1;
+break;
+
+case 1004:
+opt.no_code = 1;
+break;
+
+case 1005:
+opt.no_chs = 1;
+break;
+
 case 'V':
 printf("%s version %s\n", prog, VERSION);
 exit(0);
@@ -585,6 +610,8 @@
 {
   unsigned c, h, s;
 
+  if(opt.no_chs) return 0xff00;
+
   s = (ofs % sector) + 1;
   h = (ofs / sector) % head;
   c = ofs / (sector * head);
@@ -600,9 +627,11 @@
 uint32_t tmp = 0, chs;
 uint8_t *rbm = mbr;
 
+if(opt.no_mbr) return 0x200;
+
 extern unsigned char isohdpfx[][MBRSIZE];
 
-if (catoffset) memcpy(mbr, &isohdpfx[hd0 + 3 * partok], MBRSIZE);
+if (catoffset && !opt.no_code) memcpy(mbr, &isohdpfx[hd0 + 3 * partok], 
MBRSIZE);
 
 if (mode & MAC) {
 memcpy(mbr, afp_header, sizeof(afp_header));
@@ -611,7 +640,7 @@
 mbr += MBRSIZE; /* offset 432 */
 
 tmp = lendian_int(de_lba * 4)

commit golang-org-x-text for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-org-x-text for 
openSUSE:Factory checked in at 2015-07-24 09:58:52

Comparing /work/SRC/openSUSE:Factory/golang-org-x-text (Old)
 and  /work/SRC/openSUSE:Factory/.golang-org-x-text.new (New)


Package is "golang-org-x-text"

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ /work/SRC/openSUSE:Factory/.golang-org-x-text.new/golang-org-x-text.changes 
2015-07-24 09:58:53.0 +0200
@@ -0,0 +1,17 @@
+---
+Tue Jul  7 15:43:08 UTC 2015 - i...@marguerite.su
+
+- rename golang-org-x-text
+- update version 1.4.2+git20150710.7c0e16d
+- use golang-packaging for packaging
+
+---
+Sat Mar 21 06:39:16 UTC 2015 - i...@marguerite.su
+
+- add xz as BuildRequires
+
+---
+Sun Mar  8 05:25:30 UTC 2015 - i...@marguerite.su
+
+- initial version 1.4.2+git20150306.f3f2426
+

New:

  _service
  golang-org-x-text.changes
  golang-org-x-text.spec
  text-1.4.2+git20150710.7c0e16d.tar.xz



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

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


Name:   golang-org-x-text
Version:1.4.2+git20150710.7c0e16d
Release:0
Summary:Go text processing support
License:BSD-3-Clause
Group:  Development/Languages/Other
Url:https://github.com/golang/text
Source: text-%{version}.tar.xz
BuildRequires:  golang-packaging
BuildRequires:  xz
Provides:   go-text = %{version}
Obsoletes:  go-text < %{version}
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{go_provides}

%description
This repository holds supplementary Go libraries for text processing, 
many involving Unicode.

%gosrc_package

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

%build
%goprep golang.org/x/text
%gobuild ...

%install
%goinstall
%gosrc

%files
%defattr(-,root,root)
%doc LICENSE
%{_bindir}/colcmp
%{go_contribdir}/*

%files source
%defattr(-,root,root)
%{go_contribsrcdir}/*

%changelog
++ _service ++

  
https://github.com/golang/text/
git
.git
1.4.2+git%cd.%h
master
  
  
text-*.tar
xz
  
  
text
  




commit golang-github-bmizerany-assert for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-github-bmizerany-assert for 
openSUSE:Factory checked in at 2015-07-24 09:58:16

Comparing /work/SRC/openSUSE:Factory/golang-github-bmizerany-assert (Old)
 and  /work/SRC/openSUSE:Factory/.golang-github-bmizerany-assert.new (New)


Package is "golang-github-bmizerany-assert"

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-github-bmizerany-assert.new/golang-github-bmizerany-assert.changes
   2015-07-24 09:58:18.0 +0200
@@ -0,0 +1,50 @@
+---
+Sun Jul 12 09:58:32 UTC 2015 - i...@marguerite.su
+
+- rename to golang-github-bmizerany-assert
+- updaate version 0.0.0+git20120716.e17e998
+- use golang-packaging for packaging
+
+---
+Tue Aug 13 10:12:57 UTC 2013 - speili...@suse.com
+
+- Update to version 0.0.0+git20120716.e17e998:
+  + pretty-printuse goinstall-friendly make target
+  + show diffs when equality test fails
+  + fix example
+  + remove Makefiles
+  + github.com/kr/pretty.go has been renamed to github.com/kr/pretty
+  + update README
+  + update output on README
+- Add _service file
+
+---
+Tue Aug 13 07:56:04 UTC 2013 - speili...@suse.com
+
+- Use %go_exclusivearch macro
+
+---
+Tue Apr  3 22:48:51 UTC 2012 - gra...@andtech.eu
+
+- Update project to use pretty instead of pretty.go for Go 1
+
+---
+Thu Mar  8 05:29:40 UTC 2012 - gra...@andtech.eu
+
+- update to use new go rpm macros, tweak specfile
+
+---
+Wed Jun  8 15:13:37 UTC 2011 - sasc...@suse.de
+
+- Use new %go_disable_brp_strip_static_archive macro
+
+---
+Sun May 22 12:21:09 UTC 2011 - sasc...@gmx.de
+
+- Disable tests on Mandriva
+
+---
+Sat May 21 14:26:10 UTC 2011 - sasc...@gmx.de
+
+- Initial version
+

New:

  _service
  assert-0.0.0+git20120716.e17e998.tar.xz
  golang-github-bmizerany-assert.changes
  golang-github-bmizerany-assert.spec



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

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


Name:   golang-github-bmizerany-assert
Version:0.0.0+git20120716.e17e998
Release:0
Summary:Asserts to Go testing
License:MIT
Group:  Development/Languages/Other
Url:https://github.com/bmizerany/assert
Source: assert-%{version}.tar.xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  golang-packaging
BuildRequires:  golang(github.com/kr/pretty)
BuildRequires:  xz
Provides:   go-assert = %{version}
Obsoletes:  go-assert < %{version}
%{go_provides}

%description
Assertions for Go tests.

%gosrc_package

%prep
%setup -q -n assert-%{version}
rm example/point_test.go

%build
%goprep github.com/bmizerany/assert
%gobuild

%install
%goinstall
%gosrc

%check
%gotest github.com/bmizerany/assert

%files
%defattr(-,root,root,-)
%doc README.md example
%{go_contribdir}/*

%files source
%defattr(-,root,root,-)
%{go_contribsrcdir}/*

%changelog
++ _service ++

  
https://github.com/bmizerany/assert.git
git
.git
0.0.0+git%cd.%h
master
  

  
assert-*.tar
xz
  

  
assert
  




commit freshplayerplugin for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package freshplayerplugin for 
openSUSE:Factory checked in at 2015-07-24 09:58:57

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


Package is "freshplayerplugin"

Changes:

--- /work/SRC/openSUSE:Factory/freshplayerplugin/freshplayerplugin.changes  
2015-07-12 22:53:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.freshplayerplugin.new/freshplayerplugin.changes 
2015-07-24 09:58:59.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 23 11:32:54 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.3.1:
+  * Add video decoding through VDPAU.
+  * Bugfixes.
+
+---

Old:

  freshplayerplugin-0.3.0.tar.gz

New:

  freshplayerplugin-0.3.1.tar.gz



Other differences:
--
++ freshplayerplugin.spec ++
--- /var/tmp/diff_new_pack.UXHbP4/_old  2015-07-24 09:59:00.0 +0200
+++ /var/tmp/diff_new_pack.UXHbP4/_new  2015-07-24 09:59:00.0 +0200
@@ -15,22 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%bcond_with restricted
-%define use_gtk3 0
-%if 0%{?suse_version} < 1310
-%define use_gtk3 0
-%endif
 
+%bcond_with restricted
+%bcond_with gtk3
 Name:   freshplayerplugin
-Version:   0.3.0
+Version:0.3.1
 Release:   0
-License:   MIT
 Summary:   PPAPI2NPAPI compatibility layer
-Url:   https://github.com/i-rinat/freshplayerplugin
+License:MIT
 Group: Productivity/Networking/Web/Browsers
+Url:https://github.com/i-rinat/freshplayerplugin
 Source:
https://github.com/i-rinat/freshplayerplugin/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
-#PATCH-FIX-UPSTREAM add install options to CMakeLists.txt
-Patch: cmake-install.patch
+# PATCH-FIX-UPSTREAM i@marguerite.suadd i...@marguerite.su -- Install options 
to CMakeLists.txt
+Patch0: cmake-install.patch
+# PATCH-FIX-UPSTREAM clean.patch i...@marguerite.su -- Fix boo#937244
 Patch1:clean.patch
 BuildRequires: cmake
 BuildRequires: gcc-c++
@@ -42,28 +40,30 @@
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(jack)
 BuildRequires:  pkgconfig(libconfig)
 BuildRequires:  pkgconfig(libevent)
 BuildRequires:  pkgconfig(libevent_pthreads)
+BuildRequires:  pkgconfig(libpulse)
 BuildRequires:  pkgconfig(libv4l2)
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(pango)
 BuildRequires:  pkgconfig(pangocairo)
 BuildRequires:  pkgconfig(pangoft2)
+BuildRequires:  pkgconfig(soxr)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcursor)
 BuildRequires:  pkgconfig(xrandr)
 BuildRequires:  pkgconfig(xrender)
-BuildRequires:  pkgconfig(gtk+-2.0)
-%if %{use_gtk3}
+Provides:   flash-player
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with gtk3}
 BuildRequires:  pkgconfig(gtk+-3.0)
 %endif
 %if 0%{?suse_version} > 1140
 BuildRequires:  pkgconfig(glesv2)
 %endif
-BuildRequires:  pkgconfig(libpulse)
-BuildRequires:  pkgconfig(jack)
-BuildRequires:  pkgconfig(soxr)
 %if 0%{with restricted}
 # Hardware accelerated decoding.
 BuildRequires:  pkgconfig(libavcodec)
@@ -82,8 +82,6 @@
 BuildRequires:  Mesa-libGLESv2-2
 BuildRequires:  Mesa-libGLESv2-devel
 %endif
-Provides:  flash-player
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The main goal of this project is to get PPAPI (Pepper) Flash player
@@ -93,23 +91,24 @@
 
 %prep
 %setup -q
-%patch -p1
+%patch0 -p1
 %patch1 -p1
 
-#append chromium-pepperflash to pepperflash_path
+# Append chromium-pepperflash to pepperflash_path.
 sed -i 
's|^\(.*\)\.so"|\1\.so:%{_libdir}/chromium/PepperFlash/libpepflashplayer.so"|' 
data/freshwrapper.conf.example
-#enable hardware accelerated decoding for pmbs
+# Enable hardware accelerated decoding for PMBS.
 %if %{with restricted}
 sed -i 's|^\(enable_hwdec = \)0|\11|' data/freshwrapper.conf.example
 %endif
 
 %build
 mkdir build
-cd build
-cmake -DLIB_INSTALL_DIR=%{_libdir} \
+pushd build
+cmake \
+  -DLIB_INSTALL_DIR=%{_libdir} \
-DWITH_NACL=TRUE \
-DWITH_LIBPDF=TRUE \
-%if %{use_gtk3}
+%if %{with gtk3}
-DWITH_GTK=3 \
 %else
-DWITH_GTK=2 \
@@ -121,23 +120,23 @@
 %endif
..
 make %{?_smp_mflags}
+popd
 
 %install
-cd build
-make install DESTDIR=%{buildroot} %{?_smp_mflags}
+%make_install -C build
 
 %post 
 /sbin/ldconfig
-# tweak for plasma 5
+# A tweak for Plasma 5.
 if [ ! -f "%{_bindir}/plasmashell" ]; then
-sed -i 's|^\(quirk_plasma5_screensaver = \)0|\11|' 
%{_sysconfdir}/freshwrapper.conf 
+sed -i 's|^\(quirk_plasma5_screensave

commit obs-service-verify_file for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package obs-service-verify_file for 
openSUSE:Factory checked in at 2015-07-24 09:58:58

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


Package is "obs-service-verify_file"

Changes:

--- 
/work/SRC/openSUSE:Factory/obs-service-verify_file/obs-service-verify_file.changes
  2013-04-22 14:13:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-verify_file.new/obs-service-verify_file.changes
 2015-07-24 09:59:01.0 +0200
@@ -1,0 +2,5 @@
+Wed Jun  3 13:08:40 UTC 2015 - suse-...@gmx.de
+
+- added "file" parameter to the service definition
+
+---



Other differences:
--
++ obs-service-verify_file.spec ++
--- /var/tmp/diff_new_pack.okAJBv/_old  2015-07-24 09:59:02.0 +0200
+++ /var/tmp/diff_new_pack.okAJBv/_new  2015-07-24 09:59:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package obs-service-verify_file
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ verify_file.service ++
--- /var/tmp/diff_new_pack.okAJBv/_old  2015-07-24 09:59:02.0 +0200
+++ /var/tmp/diff_new_pack.okAJBv/_new  2015-07-24 09:59:02.0 +0200
@@ -11,5 +11,9 @@
 Used check sum to compare with
 
   
+  
+File that should be verified
+
+  
 
 




commit gnome-settings-daemon for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2015-07-24 09:58:03

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


Package is "gnome-settings-daemon"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2015-07-05 18:01:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
 2015-07-24 09:58:05.0 +0200
@@ -1,0 +2,9 @@
+Tue Jul 21 20:13:15 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.3:
+  + Make device type presence checks work on libinput and wayland.
+  + Power: Fix a crash when reading invalid backlight values.
+  + Print notifications: Don't show error for job in progress.
+  + Wacom: Fix possible crash when Wacom tablet is plugged in.
+
+---

Old:

  gnome-settings-daemon-3.16.2.tar.xz

New:

  gnome-settings-daemon-3.16.3.tar.xz



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.hxo3QZ/_old  2015-07-24 09:58:06.0 +0200
+++ /var/tmp/diff_new_pack.hxo3QZ/_new  2015-07-24 09:58:06.0 +0200
@@ -30,7 +30,7 @@
 %endif
 
 Name:   gnome-settings-daemon
-Version:3.16.2
+Version:3.16.3
 Release:0
 Summary:Settings daemon for the GNOME desktop
 License:GPL-2.0+

++ gnome-settings-daemon-3.16.2.tar.xz -> 
gnome-settings-daemon-3.16.3.tar.xz ++
 11603 lines of diff (skipped)




commit gtk3 for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2015-07-24 09:58:08

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


Package is "gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2015-07-19 
11:45:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2015-07-24 
09:58:10.0 +0200
@@ -1,0 +2,13 @@
+Tue Jul 21 19:54:46 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.6:
+  + OS X: Partial aspect ratio support.
+  + Revert a problematic change to scroll event handling.
+  + Bugs fixed: bgo#741800, bgo#751401, bgo#751625, bgo#752016,
+bgo#752093, bgo#752520.
+  + Updated translations.
+- Drop
+  gtk3-Revert-x11-Query-pointer-devices-scroll-valuators.patch:
+  Fixed upstream.
+
+---

Old:

  gtk+-3.16.5.tar.xz
  gtk3-Revert-x11-Query-pointer-devices-scroll-valuators.patch

New:

  gtk+-3.16.6.tar.xz



Other differences:
--
++ gtk3.spec ++
--- /var/tmp/diff_new_pack.YCVeWR/_old  2015-07-24 09:58:11.0 +0200
+++ /var/tmp/diff_new_pack.YCVeWR/_new  2015-07-24 09:58:11.0 +0200
@@ -29,7 +29,7 @@
 
 Name:   gtk3
 %define _name gtk+
-Version:3.16.5
+Version:3.16.6
 Release:0
 Summary:The GTK+ toolkit library (version 3)
 License:LGPL-2.1+
@@ -47,12 +47,10 @@
 ## PATCH-DISABLED gtk3-bnc130159-bgo319483-async-font-selection.patch - 
Upstream bug was closed as obsolete in 2011, lets see if anyone complains. 
 # PATCH-FIX-UPSTREAM gtk3-bnc130159-bgo319483-async-font-selection.patch 
bnc130159 bgo319483 feder...@novell.com - Load fonts asynchronously in 
GtkFontSelection to make it appear faster for CJK languages
 Patch3: gtk3-bnc130159-bgo319483-async-font-selection.patch
-# PATCH-FIX-UPSTREAM 
gtk3-Revert-x11-Query-pointer-devices-scroll-valuators.patch bgo#752184 
zai...@opensuse.org -- Revert a commit that makes hardware mice scrollwheel 
jumpy.
-Patch4: gtk3-Revert-x11-Query-pointer-devices-scroll-valuators.patch
 BuildRequires:  cups-devel >= 1.2
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  fdupes
-# Needed for patch1 and patch4
+# Needed for patch1
 BuildRequires:  gettext-tools
 BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
@@ -340,7 +338,6 @@
 %patch1 -p0
 ## PATCH-DISABLED - Upstream bug was closed as obsolete in 2011, as there was 
a new fontchooser, lets disable the patch and see if anyone complains.
 #%%patch3 -p1
-%patch4 -p1
 
 %build
 # Needed for patch1 and patch4

++ gtk+-3.16.5.tar.xz -> gtk+-3.16.6.tar.xz ++
/work/SRC/openSUSE:Factory/gtk3/gtk+-3.16.5.tar.xz 
/work/SRC/openSUSE:Factory/.gtk3.new/gtk+-3.16.6.tar.xz differ: char 26, line 1




commit golang-googlecode-couch-go for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-googlecode-couch-go for 
openSUSE:Factory checked in at 2015-07-24 09:58:35

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


Package is "golang-googlecode-couch-go"

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-googlecode-couch-go.new/golang-googlecode-couch-go.changes
   2015-07-24 09:58:36.0 +0200
@@ -0,0 +1,51 @@
+---
+Sun Jul 12 14:00:48 UTC 2015 - i...@marguerite.su
+
+- rename to golang-googlecode-couch-go
+- use golang-packaging for packaging
+
+---
+Tue Sep 17 07:40:59 UTC 2013 - speili...@suse.com
+
+- Only recommend couchdb to not depend on having it on the same
+  machine
+
+---
+Tue Aug 13 11:45:25 UTC 2013 - speili...@suse.com
+
+- Update to version 0.0.0+hg20120329.56.80177d89e264:
+  + Upstream provides no changelog
+- Use _service file
+- Drop rpmlintrc, both issues are obvious Go issues
+
+---
+Tue Aug 13 07:59:11 UTC 2013 - speili...@suse.com
+
+- Use %{go_exclusivearch} macro
+
+---
+Sat Jun 29 10:52:05 UTC 2013 - gra...@andtech.eu
+
+- Update package to latest mercurial
+
+---
+Fri Oct  7 10:23:09 UTC 2011 - gra...@andtech.eu
+
+- update API to Go r60 (via patch, changes submitted upstream)
+
+---
+Wed Jun  8 15:14:17 UTC 2011 - sasc...@suse.de
+
+- Use new %go_disable_brp_strip_static_archive macro
+
+---
+Sun May 22 10:31:34 UTC 2011 - sasc...@gmx.de
+
+- Require couchdb
+- Disable tests, they need a running CouchDB
+
+---
+Sat May 21 14:36:27 UTC 2011 - sasc...@gmx.de
+
+- Initial version
+

New:

  README.SUSE
  _service
  couch-go-0.0.0+hg20120329.56.80177d89e264.tar.xz
  golang-googlecode-couch-go.changes
  golang-googlecode-couch-go.spec



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

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


Name:   golang-googlecode-couch-go
Version:0.0.0+hg20120329.56.80177d89e264
Release:0
Summary:Simple CouchDB API for Google Go
License:MIT
Group:  Development/Languages/Other
Url:http://code.google.com/p/couch-go/
Source: couch-go-%{version}.tar.xz
Source1:README.SUSE
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  golang-packaging
BuildRequires:  xz
%if 0%{?suse_version} >= 1100
Recommends: couchdb
%endif
Provides:   go-couch-go = %{version}-%{release}
Obsoletes:  go-couch-go < %{version}-%{release}
%{go_provides}

%description
Couch-go is a simple CouchDB (0.9+) API for the Google Go language. It
supports basic operations on documents.

%gosrc_package

%prep
%setup -q -n couch-go-%{version}

%build
%goprep code.google.com/p/couch-go
%gobuild

%install
%goinstall
%gosrc

%files
%defattr(-,root,root,-)
%doc LICENSE
%{go_contribdir}/*

%files source
%defattr(-,root,root,-)
%{go_contribsrcdir}/*

%changelog
++ README.SUSE ++
Basic usage

First, create a Database object to represent the DB you'll be interacting with

db, err := couch.NewDatabase("127.0.0.1", "5984", "databasename")

A CouchDB document is represented by a Go struct

type Record struct {
Type string
Countuint64
Elements []string
MyMapmap[string]string
}

You can Insert these documents directly

r := Record{...}
id, rev, err := db.Insert(r)

and Re

commit golang-google-golangorg-appengine for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-google-golangorg-appengine 
for openSUSE:Factory checked in at 2015-07-24 09:58:31

Comparing /work/SRC/openSUSE:Factory/golang-google-golangorg-appengine (Old)
 and  /work/SRC/openSUSE:Factory/.golang-google-golangorg-appengine.new 
(New)


Package is "golang-google-golangorg-appengine"

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-google-golangorg-appengine.new/golang-google-golangorg-appengine.changes
 2015-07-24 09:58:32.0 +0200
@@ -0,0 +1,5 @@
+---
+Sun Jul 12 05:23:22 UTC 2015 - i...@marguerite.su
+
+- initial version 0.0.0+git20150702.e335b53
+

New:

  _service
  appengine-0.0.0+git20150702.e335b53.tar.xz
  golang-google-golangorg-appengine.changes
  golang-google-golangorg-appengine.spec



Other differences:
--
++ golang-google-golangorg-appengine.spec ++
#
# spec file for package golang-google-golangorg-appengine
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


Name:   golang-google-golangorg-appengine
Version:0.0.0+git20150702.e335b53
Release:0
Summary:Go App Engine for Managed VMs
License:Apache-2.0
Group:  Development/Languages/Other
Url:https://github.com/golang/appengine
Source: appengine-%{version}.tar.xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  golang-packaging
BuildRequires:  golang(golang.org/x/net)
BuildRequires:  golang(github.com/golang/protobuf)
BuildRequires:  xz
%{go_provides}

%description
This package supports the Go runtime for Managed VMs on App Engine. 
It provides APIs for interacting with App Engine services.

%gosrc_package

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

%build
%goprep google.golang.org/appengine
%gobuild ...

%install
%goinstall
%gosrc

# remove demos
rm -rf %{buildroot}%{_bindir}/{helloworld,guestbook}

%files
%defattr(-,root,root,-)
%doc LICENSE README.md
%{_bindir}/aebundler
%{_bindir}/aedeploy
%{go_contribdir}/*

%files source
%defattr(-,root,root,-)
%{go_contribsrcdir}/*

%changelog
++ _service ++

  
https://github.com/golang/appengine
git
.git
0.0.0+git%cd.%h
master
  
  
appengine-*.tar
xz
  
  
appengine
  




commit golang-googlecode-freetype-go for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package golang-googlecode-freetype-go for 
openSUSE:Factory checked in at 2015-07-24 09:58:37

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


Package is "golang-googlecode-freetype-go"

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-googlecode-freetype-go.new/golang-googlecode-freetype-go.changes
 2015-07-24 09:58:39.0 +0200
@@ -0,0 +1,99 @@
+---
+Sun Jul 12 06:57:27 UTC 2015 - i...@marguerite.su
+
+- rename to golang-googlecode-freetype-go
+- update version 0.0.0+hg20150309.128.46c3056cafbb
+- use golang-packaging for packaging
+
+---
+Thu Jul 31 16:10:48 UTC 2014 - dims...@opensuse.org
+
+- Rename rpmlintrc to %{name}-rpmlintrc.
+  Follow the packaging guidelines.
+
+---
+Thu Sep 19 14:28:49 UTC 2013 - speili...@suse.com
+
+- Fix license: FTL or GPL-2.0+
+
+---
+Tue Aug 13 14:10:19 UTC 2013 - speili...@suse.com
+
+- Update to version 0.0.0+hg20130813.72.38e23dc4a845:
+  + Upstream provides no changelog
+- Add _service file
+
+---
+Tue Aug 13 08:12:52 UTC 2013 - speili...@suse.com
+
+- Use %{exclusivearch} macro
+- Install binaries with "go-" prefix
+
+---
+Fri Dec 23 20:18:17 UTC 2011 - gra...@andtech.eu
+
+- Update to 23.12.2011 mercurial 
+
+---
+Mon Oct 10 16:45:40 UTC 2011 - gra...@andtech.eu
+
+- Fudge a $GOROOT build env so freetype sub-package types have a
+  good looking signature for packaging. This is a messy solution
+  and needs tidied up into real packages.
+
+---
+Fri Oct  7 11:49:18 UTC 2011 - gra...@andtech.eu
+
+- Update to HG 18.07.2011 (for Go r60)
+- image.Pix changes
+
+---
+Fri Jun 10 08:50:43 UTC 2011 - sasc...@suse.de
+
+- Update to 10/06/2011 mercurial version
+  * Rename exp/draw to image/draw
+  * Follow go stdlib changes for os.Open and Stderr/Println
+- Rebased include-fix patch to upstream changes
+
+---
+Wed Jun  8 15:19:02 UTC 2011 - sasc...@suse.de
+
+- Use new %go_disable_brp_strip_static_archive macro
+
+---
+Fri May 20 12:26:48 UTC 2011 - sasc...@suse.de
+
+- Use Go RPM macros instead of custom ones
+- Use proper package versioning scheme (needs reinstall)
+- Drop provides/obsoletes of old package, needs reinstall anyway
+
+---
+Thu May 19 14:32:39 UTC 2011 - sasc...@suse.de
+
+- Remove rpmlintrc, not needed anymore
+
+---
+Thu May 19 12:01:31 UTC 2011 - sasc...@suse.de
+
+- Simpler build
+
+---
+Thu May 19 11:21:06 UTC 2011 - sasc...@suse.de
+
+- Don't require 'go'
+- Disable brp-strip-static-archive on Fedora, RHEL and CentOS
+- Provide devel and devel-static packages
+- Remove devel-file-in-non-devel-package rpmlint filter
+- Added include path patch
+
+---
+Mon Mar 21 15:18:50 UTC 2011 - sasc...@suse.de
+
+- Removed authors from description
+- Removed pkg_version macro, use %%{version} directly
+
+---
+Tue Nov  9 21:28:30 UTC 2010 - speili...@novell.com
+
+- Initial commit
+

New:

  _service
  freetype-go-0.0.0+hg20150309.128.46c3056cafbb.tar.xz
  golang-googlecode-freetype-go-rpmlintrc
  golang-googlecode-freetype-go.changes
  golang-googlecode-freetype-go.spec



Other differences:
--
++ golang-googlecode-freetype-go.spec ++
#
# spec file for package golang-googlecode-freetype-go
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c), 2011, Sascha Peilicke 
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# l

commit sudo for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package sudo for openSUSE:Factory checked in 
at 2015-07-24 09:57:59

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


Package is "sudo"

Changes:

--- /work/SRC/openSUSE:Factory/sudo/sudo.changes2015-05-16 
20:08:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.sudo.new/sudo.changes   2015-07-24 
09:58:00.0 +0200
@@ -1,0 +2,5 @@
+Wed Jul 22 18:27:35 UTC 2015 - crrodrig...@opensuse.org
+
+- BuildRequires zlib-devel, support zlib compressed I/O logs. 
+
+---



Other differences:
--
++ sudo.spec ++
--- /var/tmp/diff_new_pack.2gSzFe/_old  2015-07-24 09:58:01.0 +0200
+++ /var/tmp/diff_new_pack.2gSzFe/_new  2015-07-24 09:58:01.0 +0200
@@ -38,6 +38,7 @@
 BuildRequires:  libsss_sudo
 BuildRequires:  openldap2-devel
 BuildRequires:  pam-devel
+BuildRequires:  zlib-devel
 Requires(pre):  coreutils
 Requires(pre):  permissions
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit apparmor for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package apparmor for openSUSE:Factory 
checked in at 2015-07-24 09:57:46

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


Package is "apparmor"

Changes:

--- /work/SRC/openSUSE:Factory/apparmor/apparmor.changes2015-06-24 
20:23:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.apparmor.new/apparmor.changes   2015-07-24 
09:57:48.0 +0200
@@ -1,0 +2,20 @@
+Thu Jul 16 20:51:00 UTC 2015 - opens...@cboltz.de
+
+- update to AppArmor 2.10 (trunk r3205)
+  - profile names can now contain variables
+  - improved profile compile time in apparmor_parser
+  - lots of improvements, refactoring and bugfixes in the aa-* tools
+  - new apis for managing and loading profile caches into the kernel in
+libapparmor
+  - lots of profile updates
+  - see http://wiki.apparmor.net/index.php/ReleaseNotes_2_10 for the
+complete changelog with more details
+- add new apparmor_private.h and the aa_query_label(2), aa_features(3),
+  aa_kernel_interface(3), aa_policy_cache(3), aa_splitcon(3) manpages
+  to libapparmor-devel
+- drop apparmor-2.5.1-edirectory-profile patch - it's most probably
+  no longer needed (see boo#621394 for details)
+- drop upstreamed samba-4.2-profiles.diff
+- refresh apparmor-samba-include-permissions-for-shares.diff
+
+---

Old:

  apparmor-2.5.1-edirectory-profile
  apparmor-2.9.2.tar.gz
  apparmor-2.9.2.tar.gz.asc
  samba-4.2-profiles.diff

New:

  apparmor-2.10.tar.gz
  apparmor-2.10.tar.gz.asc



Other differences:
--
++ apparmor.spec ++
--- /var/tmp/diff_new_pack.HCGYR6/_old  2015-07-24 09:57:49.0 +0200
+++ /var/tmp/diff_new_pack.HCGYR6/_new  2015-07-24 09:57:49.0 +0200
@@ -60,7 +60,7 @@
 %if ! %{?distro:1}0
   %define distro suse
 %endif
-Version:2.9.2
+Version:2.10
 Release:0
 Summary:AppArmor userlevel parser utility
 License:GPL-2.0+
@@ -82,11 +82,6 @@
 # split a long string in AppArmor.pm. Not accepted upstream because they want 
a solution without hardcoded width.
 Patch3: apparmor-utils-string-split
 
-# Add support for eDirectory calls in abstractions/nameservice. Not accepted 
upstream (yet) because of open questions
-# as discussed with Jeff on #apparmor 2015-03-16, disable when packaging the 
next major release
-# (Is this really needed in abstractions/nameservice or only in the nscd 
profile? bnc#621394 only shows nscd.)
-Patch4: apparmor-2.5.1-edirectory-profile
-
 # Ruby 2.0 mkmf prefixes everything with $(DESTDIR), bnc#822277, 
kkae...@suse.de
 Patch5: ruby-2_0-mkmf-destdir.patch
 
@@ -97,10 +92,6 @@
 # bug 906858 - confine lessopen.sh (submitted upstream 2014-12-21)
 Patch7: apparmor-lessopen-profile.patch
 
-# update samba (winbindd and nmb) profiles for samba 4.2 (boo#921098, 
boo#923201)
-# commited upstream trunk r3038, 2.9 r2917 (2.9 commit doesn't include the 
/var/lib/samba/... cleanup in the winbindd profile)
-Patch10:samba-4.2-profiles.diff
-
 Url:https://launchpad.net/apparmor
 PreReq: sed
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -437,7 +428,6 @@
 %patch1 -p1
 %patch2
 %patch3 -p1
-%patch4
 
 # Ruby 2.0 mkmf prefixes every path with $(DESTDIR)
 %if 0%{?suse_version} > 1230
@@ -446,7 +436,6 @@
 
 %patch6
 %patch7 -p1
-%patch10
 # search for left-over multiline rules
 test -z "$(grep -r '^\s*\(unix\|dbus\)[^,]\(([^)]*)\)*[^,]*$' 
profiles/apparmor.d/)"
 
@@ -671,8 +660,14 @@
 %doc %{_mandir}/man2/change_hat.2.gz
 %doc %{_mandir}/man2/aa_find_mountpoint.2.gz
 %doc %{_mandir}/man2/aa_getcon.2.gz
+%doc %{_mandir}/man2/aa_query_label.2.gz
+%doc %{_mandir}/man3/aa_features.3.gz
+%doc %{_mandir}/man3/aa_kernel_interface.3.gz
+%doc %{_mandir}/man3/aa_policy_cache.3.gz
+%doc %{_mandir}/man3/aa_splitcon.3.gz
 %dir %{_includedir}/aalogparse
 %{_includedir}/sys/apparmor.h
+%{_includedir}/sys/apparmor_private.h
 %{_includedir}/aalogparse/*
 
 %files abstractions

++ apparmor-2.9.2.tar.gz -> apparmor-2.10.tar.gz ++
 38947 lines of diff (skipped)

++ apparmor-samba-include-permissions-for-shares.diff ++
--- /var/tmp/diff_new_pack.HCGYR6/_old  2015-07-24 09:57:50.0 +0200
+++ /var/tmp/diff_new_pack.HCGYR6/_new  2015-07-24 09:57:50.0 +0200
@@ -20,7 +20,7 @@
 === modified file 'profiles/apparmor.d/usr.sbin.smbd'
 --- profiles/apparmor.d/usr.sbin.smbd  2011-08-27 18:50:42 +
 +++ profiles/apparmor.d/usr.sbin.smbd  2011-10-19 09:37:04 +
-@@ -47,6 +47,10 @@
+@@ -46,6 +46,10 @@
  
@{HOMEDIRS}/** lrwk,
  





commit net-snmp for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package net-snmp for openSUSE:Factory 
checked in at 2015-07-24 09:57:55

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


Package is "net-snmp"

Changes:

--- /work/SRC/openSUSE:Factory/net-snmp/net-snmp.changes2015-07-21 
13:26:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.net-snmp.new/net-snmp.changes   2015-07-24 
09:57:56.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 22 07:19:05 UTC 2015 - jeng...@inai.de
+
+- Request pkgconfig(libssl) instead of openssl-devel to support
+  using LibreSSL as well.
+
+---



Other differences:
--
++ net-snmp.spec ++
--- /var/tmp/diff_new_pack.xrYCd9/_old  2015-07-24 09:57:57.0 +0200
+++ /var/tmp/diff_new_pack.xrYCd9/_new  2015-07-24 09:57:57.0 +0200
@@ -121,12 +121,12 @@
 %package devel
 Requires:   %{library_name} = %{version}
 # for mib2c
-Requires:   libopenssl-devel
 Requires:   perl
 Requires:   perl-SNMP = %{version}
 Requires:   rpm-devel
 Requires:   tcpd-devel
 Requires:   zlib-devel
+Requires:   pkgconfig(libssl)
 %if 0%{?netsnmp_with_sensors}
 Requires:   libsensors4-devel
 %endif




commit python-Jinja2 for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package python-Jinja2 for openSUSE:Factory 
checked in at 2015-07-24 09:57:41

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


Package is "python-Jinja2"

Changes:

--- /work/SRC/openSUSE:Factory/python-Jinja2/python-Jinja2.changes  
2015-05-15 09:02:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Jinja2.new/python-Jinja2.changes 
2015-07-24 09:57:43.0 +0200
@@ -1,0 +2,5 @@
+Wed Jul 22 14:20:45 UTC 2015 - jeng...@inai.de
+
+- Use %python_version over %py_ver: better portability to RHEL
+
+---



Other differences:
--
++ python-Jinja2.spec ++
--- /var/tmp/diff_new_pack.B58sok/_old  2015-07-24 09:57:44.0 +0200
+++ /var/tmp/diff_new_pack.B58sok/_new  2015-07-24 09:57:44.0 +0200
@@ -99,7 +99,7 @@
 %defattr(-,root,root,-)
 %doc AUTHORS CHANGES LICENSE artwork examples
 %{python_sitelib}/jinja2
-%{python_sitelib}/Jinja2-%{version}-py%{py_ver}.egg-info
+%{python_sitelib}/Jinja2-%{version}-py%{python_version}.egg-info
 
 %files vim
 %defattr(-,root,root,-)




commit git for openSUSE:Factory

2015-07-24 Thread h_root
Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2015-07-24 09:57:51

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


Package is "git"

Changes:

--- /work/SRC/openSUSE:Factory/git/git.changes  2015-07-21 13:25:31.0 
+0200
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes 2015-07-24 
09:57:52.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 22 09:39:51 UTC 2015 - jsl...@suse.com
+
+- put git-credential-cache--daemon into git-core -- it is needed
+  for git-credential-cache (bnc#939065)
+
+---



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.JfOdP4/_old  2015-07-24 09:57:53.0 +0200
+++ /var/tmp/diff_new_pack.JfOdP4/_new  2015-07-24 09:57:53.0 +0200
@@ -283,9 +283,9 @@
 ###
 ./.make -C contrib/subtree install
 %{!?_without_docs: ./.make -C contrib/subtree install-doc}
-(find $RPM_BUILD_ROOT%{_bindir} -type f -o -type l | grep -vE 
"archimport|svn|cvs|email|gitk|daemon|gui" | sed -e s@^$RPM_BUILD_ROOT@@)   
> bin-man-doc-files
-(find $RPM_BUILD_ROOT%{gitexecdir} ! -type d | grep -vE 
"archimport|svn|cvs|email|gitk|daemon|gui" | sed -e s@^$RPM_BUILD_ROOT@@)   
>> bin-man-doc-files
-(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep 
-vE "archimport|svn|git-cvs|email|gitk|daemon|gui" | sed -e 
s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
+(find $RPM_BUILD_ROOT%{_bindir} -type f -o -type l | grep -vE 
"archimport|svn|cvs|email|gitk|git-daemon|gui" | sed -e s@^$RPM_BUILD_ROOT@@)   
> bin-man-doc-files
+(find $RPM_BUILD_ROOT%{gitexecdir} ! -type d | grep -vE 
"archimport|svn|cvs|email|gitk|git-daemon|gui" | sed -e s@^$RPM_BUILD_ROOT@@)   
>> bin-man-doc-files
+(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep 
-vE "archimport|svn|git-cvs|email|gitk|git-daemon|gui" | sed -e 
s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
 ( pushd perl
   perl Makefile.PL
   make -f perl.mak DESTDIR=%{buildroot}  install_vendor
@@ -397,14 +397,14 @@
 
 %files daemon
 %defattr(-,root,root)
-%doc Documentation/*daemon*.txt
-%{gitexecdir}/*daemon*
+%doc Documentation/git-daemon.txt
+%{gitexecdir}/git-daemon
 /etc/init.d/git-daemon
 %{_sbindir}/rcgit-daemon
 %dir /srv/git
 /var/adm/fillup-templates/sysconfig.git-daemon
-%{!?_without_docs: %{_mandir}/man1/*daemon*.1*}
-%{!?_without_docs: %doc Documentation/*daemon*.html }
+%{!?_without_docs: %{_mandir}/man1/git-daemon.1*}
+%{!?_without_docs: %doc Documentation/git-daemon.html }
 %config(noreplace) /etc/xinetd.d/git
 %config %{_fwdefdir}/*