commit netcfg for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package netcfg for openSUSE:Factory checked 
in at 2014-12-19 09:38:12

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


Package is netcfg

Changes:

--- /work/SRC/openSUSE:Factory/netcfg/netcfg.changes2014-12-03 
22:53:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.netcfg.new/netcfg.changes   2014-12-19 
09:37:03.0 +0100
@@ -1,0 +2,11 @@
+Wed Dec 17 10:32:15 UTC 2014 - tchva...@suse.com
+
+- Try different approach to fix failing migration from 13.1.
+  This one is from locilka
+
+---
+Wed Dec 17 10:19:29 UTC 2014 - tchva...@suse.com
+
+- Keep the condition posix as it is shorter :)
+
+---



Other differences:
--
++ netcfg.spec ++
--- /var/tmp/diff_new_pack.pCclBj/_old  2014-12-19 09:37:05.0 +0100
+++ /var/tmp/diff_new_pack.pCclBj/_new  2014-12-19 09:37:05.0 +0100
@@ -77,15 +77,12 @@
 # If hostname and HOSTNAME both exist HOSTNAME wins.
 # Nothing apart from content of the document is preserved
 # REMOVE after SLE11/openSUSE-13.1 out of MIGRATION support
-if [ 0$1 -ge 2 ]; then
+if [ $1 -gt 1 ]; then
   if [ -f %{_sysconfdir}/HOSTNAME -a ! -L %{_sysconfdir}/HOSTNAME ]; then
-cp %{_sysconfdir}/HOSTNAME %{_sysconfdir}/hostname.rpmsave
-rm %{_sysconfdir}/HOSTNAME
-  fi
-  # As some people are really on pills and did the link themselves other
-  # way around ensure the package will install for them.
-  if [ -f %{_sysconfdir}/hostname -a -f %{_sysconfdir}/hostname.rpmsave ]; then
-rm %{_sysconfdir}/hostname
+cat %{_sysconfdir}/HOSTNAME  %{_sysconfdir}/hostname.rpmsave
+rm -rf %{_sysconfdir}/HOSTNAME %{_sysconfdir}/hostname
+touch %{_sysconfdir}/hostname
+ln -s %{_sysconfdir}/hostname %{_sysconfdir}/HOSTNAME
   fi
 fi
 exit 0
@@ -93,13 +90,12 @@
 %post
 # If the defaultdomain changed just prune it, user is not interested in
 # 0 size file anyway
-if [ -f etc/defaultdomain.rpmnew ]; then
-  rm -f etc/defaultdomain.rpmnew
+if [ -f %{_sysconfdir}/defaultdomain.rpmnew ]; then
+  rm -f %{_sysconfdir}/defaultdomain.rpmnew
 fi
-
-# Put backuped HOSTNAME into the current hostname file
 if [ -f %{_sysconfdir}/hostname.rpmsave ]; then
-  mv %{_sysconfdir}/hostname.rpmsave %{_sysconfdir}/hostname
+  cat %{_sysconfdir}/hostname.rpmsave  %{_sysconfdir}/hostname
+  rm -rf %{_sysconfdir}/HOSTNAME.rpmsave %{_sysconfdir}/hostname.rpmsave
 fi
 exit 0
 



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



commit lftp for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package lftp for openSUSE:Factory checked in 
at 2014-12-19 09:38:29

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


Package is lftp

Changes:

--- /work/SRC/openSUSE:Factory/lftp/lftp.changes2014-11-04 
17:28:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.lftp.new/lftp.changes   2014-12-19 
09:37:19.0 +0100
@@ -1,0 +2,11 @@
+Thu Dec 11 13:30:28 UTC 2014 - vci...@suse.com
+
+- build with openssl instead of gnutls as suggested in bnc#792456
+  * don't default to /etc/ssl/ca-bundle.pem (bnc#907803)
+  * drop lftp-ca-bundle-path.patch
+- fix a curl vulnerability CVE-2014-0139
+  * that's because lftp uses code borrowed from curl 7.21.3 which
+contains this incorrect wildcard certificate validation
+  * added lftp-CVE-2014-0139.patch
+
+---

Old:

  lftp-ca-bundle-path.patch

New:

  lftp-CVE-2014-0139.patch



Other differences:
--
++ lftp.spec ++
--- /var/tmp/diff_new_pack.ZaHcyJ/_old  2014-12-19 09:37:20.0 +0100
+++ /var/tmp/diff_new_pack.ZaHcyJ/_new  2014-12-19 09:37:20.0 +0100
@@ -37,17 +37,15 @@
 Patch4: lftp-autoconf-req.patch
 Patch6: lftp-completion.patch
 Patch7: lftp-stdio.h.patch
-# PATCH-FEATURE-OPENSUSE lftp-ca-bundle-path.patch dims...@opensuse.org -- Use 
/etc/ssl/ca-bundle.pem as root CA store.
-Patch8: lftp-ca-bundle-path.patch
 # PATCH-FIX-UPSTREAM -- Include config.h where needed.
 Patch9: lftp-config_h.patch
 # PATCH-FEATURE-OPENSUSE lftp-ssl-cipher.patch pgaj...@suse.cz -- use stronger 
cipher [bnc#857148]
 Patch10:lftp-default-ssl-cipher.patch
+Patch11:lftp-CVE-2014-0139.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  gzip
-BuildRequires:  libgnutls-devel
 BuildRequires:  libstdc++-devel
 BuildRequires:  libtool
 BuildRequires:  make
@@ -92,9 +90,9 @@
 %patch6
 popd #src
 %patch7 -p1
-%patch8 -p1
 %patch9 -p1
 %patch10
+%patch11
 
 %build
 autoreconf -fi
@@ -104,7 +102,8 @@
 LDFLAGS=' ' \
 %configure \
--with-modules \
-   --with-gnutls --without-openssl \
+   --without-gnutls \
+   --with-openssl \
--with-modules \
--with-debug \
--without-profiling \


++ lftp-CVE-2014-0139.patch ++
From f44e3a4d0df9397278735d1520f7681715b83b59 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg dan...@haxx.se
Date: Mon, 3 Mar 2014 11:46:36 +0100
Subject: [PATCH] Curl_cert_hostcheck: reject IP address wildcard matches

There are server certificates used with IP address in the CN field, but
we MUST not allow wild cart certs for hostnames given as IP addresses
only. Therefore we must make Curl_cert_hostcheck() fail such attempts.

Bug: http://curl.haxx.se/docs/adv_20140326B.html
Reported-by: Richard Moore
---
 lib/hostcheck.c | 13 +
 1 file changed, 13 insertions(+)

Index: src/lftp_ssl.cc
===
--- src/lftp_ssl.cc.orig2014-12-11 14:23:30.412572378 +0100
+++ src/lftp_ssl.cc 2014-12-11 14:23:30.422572496 +0100
@@ -1185,10 +1185,22 @@ static int hostmatch(const char *hostnam
 {
   for(;;) {
 char c = *pattern++;
+  struct in_addr ignored;
+#ifdef ENABLE_IPV6
+  struct sockaddr_in6 si6;
+#endif
 
 if(c == '\0')
   return (*hostname ? HOST_NOMATCH : HOST_MATCH);
 
+  /* detect IP address as hostname and fail the match if so */
+  if(Curl_inet_pton(AF_INET, hostname, ignored)  0)
+return HOST_NOMATCH;
+#ifdef ENABLE_IPV6
+  else if(Curl_inet_pton(AF_INET6, hostname, si6.sin6_addr)  0)
+return HOST_NOMATCH;
+#endif
+
 if(c == '*') {
   c = *pattern;
   if(c == '\0')  /* *\0 matches anything remaining */


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



commit powertop for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package powertop for openSUSE:Factory 
checked in at 2014-12-19 09:38:08

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


Package is powertop

Changes:

--- /work/SRC/openSUSE:Factory/powertop/powertop.changes2014-11-15 
12:24:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.powertop.new/powertop.changes   2014-12-19 
09:36:57.0 +0100
@@ -1,0 +2,9 @@
+Tue Dec 16 20:05:20 UTC 2014 - p.drou...@gmail.com
+
+- Update to version 2.7
+  + RAPL: powercap sysfs used for power measurements.
+  + Arm support for devfreq stats. 
+  + Added support to new Intel platforms. 
+  + Several bug fixes
+
+---

Old:

  powertop-2.6.1.tar.gz

New:

  powertop-2.7.tar.gz



Other differences:
--
++ powertop.spec ++
--- /var/tmp/diff_new_pack.H4ZS1A/_old  2014-12-19 09:36:58.0 +0100
+++ /var/tmp/diff_new_pack.H4ZS1A/_new  2014-12-19 09:36:58.0 +0100
@@ -22,7 +22,7 @@
 Summary:A Linux Tool to Find out What is Using Power on a Laptop
 License:GPL-2.0+
 Group:  System/Monitoring
-Version:2.6.1
+Version:2.7
 Release:0
 Source: 
https://01.org/sites/default/files/downloads/%name/%name-%version.tar.gz
 Patch2: powertop-1.98-always-create-params.patch

++ powertop-2.6.1.tar.gz - powertop-2.7.tar.gz ++
 24609 lines of diff (skipped)

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



commit xf86-input-mouse for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package xf86-input-mouse for 
openSUSE:Factory checked in at 2014-12-19 09:38:17

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


Package is xf86-input-mouse

Changes:

--- /work/SRC/openSUSE:Factory/xf86-input-mouse/xf86-input-mouse.changes
2013-09-23 11:23:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-input-mouse.new/xf86-input-mouse.changes   
2014-12-19 09:37:08.0 +0100
@@ -1,0 +2,19 @@
+Tue Dec 16 19:26:01 UTC 2014 - zai...@opensuse.org
+
+- Update to version 1.9.1:
+  + Update some outdated language in a comment on obsolete
+hardware.
+  + Make absolute input reporting in Solaris aware of resolution
+changes.
+  + Do not drop the result of protocol detection.
+  + Add support for absolute positioning (tablets).
+  + For wsmouse, keep 3-button emulation status.
+  + Make wsmouse (re-)init the version.
+  + Enable MSE_MISC on NetBSD as well. Otherwise we can't find
+WSMouse.
+  + Add AC_SYSTEM_EXTENSIONS to expose asprintf with GNU libc.
+  + Use asprintf (or Xprintf on old servers) instead of
+strdup+sprintf.
+  + Wrap some overly long lines.
+
+---

Old:

  xf86-input-mouse-1.9.0.tar.bz2

New:

  xf86-input-mouse-1.9.1.tar.bz2



Other differences:
--
++ xf86-input-mouse.spec ++
--- /var/tmp/diff_new_pack.w90a3E/_old  2014-12-19 09:37:09.0 +0100
+++ /var/tmp/diff_new_pack.w90a3E/_new  2014-12-19 09:37:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-input-mouse
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-input-mouse
-Version:1.9.0
+Version:1.9.1
 Release:0
 Summary:Mouse input driver for the Xorg X server
 License:MIT

++ xf86-input-mouse-1.9.0.tar.bz2 - xf86-input-mouse-1.9.1.tar.bz2 ++
 33277 lines of diff (skipped)

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



commit vim for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2014-12-19 09:38:04

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  2014-12-05 21:07:42.0 
+0100
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2014-12-19 
09:36:53.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec 16 21:55:48 UTC 2014 - l...@linux-schulserver.de
+
+- use SUSE LINUX GmbH everywhere
+
+---



Other differences:
--

++ spec.skeleton ++
--- /var/tmp/diff_new_pack.qQCiKK/_old  2014-12-19 09:36:55.0 +0100
+++ /var/tmp/diff_new_pack.qQCiKK/_new  2014-12-19 09:36:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package specRPM_CREATION_NAME
 #
-# Copyright (c) specCURRENT_YEAR SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) specCURRENT_YEAR 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

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



commit dracut for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2014-12-19 09:38:10

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


Package is dracut

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2014-11-26 
10:35:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2014-12-19 
09:36:59.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec 17 09:15:56 UTC 2014 - sch...@suse.de
+
+- 0001-kernel-modules-Fix-storage-module-selection-for-sdhc.patch: fix
+  storage module selection for sdhci/mmc/ahci
+
+---

New:

  0001-kernel-modules-Fix-storage-module-selection-for-sdhc.patch



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.lOGAQA/_old  2014-12-19 09:37:03.0 +0100
+++ /var/tmp/diff_new_pack.lOGAQA/_new  2014-12-19 09:37:03.0 +0100
@@ -31,6 +31,7 @@
 Source5:purge-kernels.service
 Source6:dracut-installkernel
 Patch1: dracut_v37_to_HEAD.patch
+Patch2: 0001-kernel-modules-Fix-storage-module-selection-for-sdhc.patch
 Patch11:0011-Correct-paths-for-openSUSE.patch
 Patch12:0012-Check-for-plymouth-lib-directories.patch
 Patch13:0013-mkinitrd-suse-do-not-update-bootloader-if-no-kernel-.patch
@@ -239,6 +240,7 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1

++ 0001-kernel-modules-Fix-storage-module-selection-for-sdhc.patch ++
From 827ec27a9c36755095dda899eff75cdae78b2120 Mon Sep 17 00:00:00 2001
From: Peter Robinson pbrobin...@gmail.com
Date: Fri, 23 May 2014 11:54:01 +0100
Subject: [PATCH] kernel-modules: Fix storage module selection for
 sdhci/mmc/ahci

Currently the block driver detection for generic initrd doesn't include
the SD/MMC drivers so we fail to boot generic images on any device using
those platforms as boot devices when using a generic initrd. Add logic
to detect those modules. This primarily fixes embedded ARM devices but
also likely intel tablets/dev boards and enterprise hypervisors that
have the ability to boot from SD.

Also the ahci_init_controller misses a number of drivers that use the
libahci_platform module for the init so this fixes some missing achi
moduless too.

Finally it cleans up the ARM storage module hacks that the above now
deals with in a more generic manner.

Signed-off-by: pbrobin...@gmail.com
---
 modules.d/90kernel-modules/module-setup.sh | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/modules.d/90kernel-modules/module-setup.sh 
b/modules.d/90kernel-modules/module-setup.sh
index 2378663..5271438 100755
--- a/modules.d/90kernel-modules/module-setup.sh
+++ b/modules.d/90kernel-modules/module-setup.sh
@@ -6,7 +6,7 @@
 installkernel() {
 if [[ -z $drivers ]]; then
 block_module_filter() {
-local 
_blockfuncs='ahci_init_controller|ata_scsi_ioctl|scsi_add_host|blk_cleanup_queue|register_mtd_blktrans|scsi_esp_register|register_virtio_device|usb_stor_disconnect'
+local 
_blockfuncs='ahci_platform_get_resources|ata_scsi_ioctl|scsi_add_host|blk_cleanup_queue|register_mtd_blktrans|scsi_esp_register|register_virtio_device|usb_stor_disconnect|mmc_add_host|sdhci_pltfm_init'
 # subfunctions inherit following FDs
 local _merge=8 _side2=9
 function bmf1() {
@@ -51,9 +51,7 @@ installkernel() {
 
 if [[ $(uname -p) == arm* ]]; then
 # arm specific modules
-hostonly='' instmods sdhci_esdhc_imx mmci sdhci_tegra mvsdio omap 
omapdrm \
-omap_hsmmc panel-tfp410 sdhci_dove ahci_platform pata_imx 
sata_mv \
-ehci-tegra mmc_block usb_storage
+hostonly='' instmods omapdrm panel-tfp410
 fi
 
 # install virtual machine support
-- 
2.2.0

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



commit hyper-v for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package hyper-v for openSUSE:Factory checked 
in at 2014-12-19 09:38:05

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


Package is hyper-v

Changes:

--- /work/SRC/openSUSE:Factory/hyper-v/hyper-v.changes  2014-12-06 
13:47:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.hyper-v.new/hyper-v.changes 2014-12-19 
09:36:55.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec 17 09:06:33 UTC 2014 - oher...@suse.de
+
+- Start hv_kvp_daemon after network-online.target (bnc#910353)
+- ignore ENOBUFS and ENOMEM in the KVP daemon
+- vssdaemon: skip all filesystems mounted readonly (bnc#909864)
+- vssdaemon: report freeze errors
+
+---



Other differences:
--
++ hyper-v.spec ++
--- /var/tmp/diff_new_pack.Kpj0bY/_old  2014-12-19 09:36:56.0 +0100
+++ /var/tmp/diff_new_pack.Kpj0bY/_new  2014-12-19 09:36:56.0 +0100
@@ -129,15 +129,17 @@
 # started via %{_udevrulesdir}/%{hv_kvp_daemon}.rules
 [Unit]
 Description=Hyper-V KVP Daemon
+# During startup the current hostname is cached, so start very late
+Requires=network-online.target
+After=network-online.target
 ConditionVirtualization=microsoft
 
 [Service]
 Environment=PATH=%{helper_dir}/bin:/usr/sbin:/usr/bin:/sbin:/bin
-Type=forking
 # Restart appears to work, but its unsupported
 # Reboot required until kernel-user protocol is fixed
 ExecStartPre=/usr/bin/mkdir /run/%{hv_kvp_daemon}
-ExecStart=${bindir}/%{hv_kvp_daemon}
+ExecStart=${bindir}/%{hv_kvp_daemon} --no-daemon
 ExecReload=/usr/bin/false
 Restart=no
 
@@ -152,11 +154,10 @@
 ConditionVirtualization=microsoft
 
 [Service]
-Type=forking
 # Restart appears to work, but its unsupported
 # Reboot required until kernel-user protocol is fixed
 ExecStartPre=/usr/bin/mkdir /run/%{hv_vss_daemon}
-ExecStart=${bindir}/%{hv_vss_daemon}
+ExecStart=${bindir}/%{hv_vss_daemon} --no-daemon
 ExecReload=/usr/bin/false
 Restart=no
 
@@ -171,8 +172,7 @@
 ConditionVirtualization=microsoft
 
 [Service]
-Type=forking
-ExecStart=${bindir}/%{hv_fcopy_daemon}
+ExecStart=${bindir}/%{hv_fcopy_daemon} --no-daemon
 
 [Install]
 WantedBy=default.target

++ hyper-v.tools.hv.hv_kvp_daemon.c ++
--- /var/tmp/diff_new_pack.Kpj0bY/_old  2014-12-19 09:36:56.0 +0100
+++ /var/tmp/diff_new_pack.Kpj0bY/_new  2014-12-19 09:36:56.0 +0100
@@ -1561,8 +1561,15 @@
addr_p, addr_l);
 
if (len  0) {
+   int saved_errno = errno;
syslog(LOG_ERR, recvfrom failed; pid:%u error:%d %s,
addr.nl_pid, errno, strerror(errno));
+
+   if (saved_errno == ENOBUFS) {
+   syslog(LOG_ERR, receive error: ignored);
+   continue;
+   }
+
close(fd);
return -1;
}
@@ -1765,8 +1772,15 @@
 
len = netlink_send(fd, incoming_cn_msg);
if (len  0) {
+   int saved_errno = errno;
syslog(LOG_ERR, net_link send failed; error: %d %s, 
errno,
strerror(errno));
+
+   if (saved_errno == ENOMEM || saved_errno == ENOBUFS) {
+   syslog(LOG_ERR, send error: ignored);
+   continue;
+   }
+
exit(EXIT_FAILURE);
}
}

++ hyper-v.tools.hv.hv_vss_daemon.c ++
--- /var/tmp/diff_new_pack.Kpj0bY/_old  2014-12-19 09:36:56.0 +0100
+++ /var/tmp/diff_new_pack.Kpj0bY/_new  2014-12-19 09:36:56.0 +0100
@@ -83,7 +83,7 @@
FILE *mounts;
struct mntent *ent;
unsigned int cmd;
-   int error = 0, root_seen = 0;
+   int error = 0, root_seen = 0, save_errno = 0;
 
switch (operation) {
case VSS_OP_FREEZE:
@@ -103,7 +103,7 @@
while ((ent = getmntent(mounts))) {
if (strncmp(ent-mnt_fsname, match, strlen(match)))
continue;
-   if (strcmp(ent-mnt_type, iso9660) == 0)
+   if (hasmntopt(ent, MNTOPT_RO) != NULL)
continue;
if (strcmp(ent-mnt_type, vfat) == 0)
continue;
@@ -115,7 +115,6 @@
if (error  operation == VSS_OP_FREEZE)
goto err;
}
-   endmntent(mounts);
 
if (root_seen) {
error |= vss_do_freeze(/, cmd);
@@ -123,10 +122,19 @@
goto err;
 

commit opus-tools for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package opus-tools for openSUSE:Factory 
checked in at 2014-12-19 09:38:48

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


Package is opus-tools

Changes:

--- /work/SRC/openSUSE:Factory/opus-tools/opus-tools.changes2014-02-15 
08:06:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.opus-tools.new/opus-tools.changes   
2014-12-19 09:37:44.0 +0100
@@ -1,0 +2,8 @@
+Thu Dec 18 12:55:35 UTC 2014 - zai...@opensuse.org
+
+- Update to version 0.1.9:
+  + Add support in opusdec to write out 32-bit floating-point.
+  + opusrtp: fix memory leaks.
+  + Misc minor bugfixes.
+
+---

Old:

  opus-tools-0.1.8.tar.gz

New:

  opus-tools-0.1.9.tar.gz



Other differences:
--
++ opus-tools.spec ++
--- /var/tmp/diff_new_pack.DngDfD/_old  2014-12-19 09:37:45.0 +0100
+++ /var/tmp/diff_new_pack.DngDfD/_new  2014-12-19 09:37:45.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   opus-tools
-Version:0.1.8
+Version:0.1.9
 Release:0
 Summary:A set of tools for the opus audio codec
 License:BSD-2-Clause and GPL-2.0

++ opus-tools-0.1.8.tar.gz - opus-tools-0.1.9.tar.gz ++
 5485 lines of diff (skipped)

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



commit acpid for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package acpid for openSUSE:Factory checked 
in at 2014-12-19 09:38:42

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


Package is acpid

Changes:

--- /work/SRC/openSUSE:Factory/acpid/acpid.changes  2014-08-13 
08:49:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.acpid.new/acpid.changes 2014-12-19 
09:37:38.0 +0100
@@ -1,0 +2,9 @@
+Tue Dec 16 12:11:57 UTC 2014 - p.drou...@gmail.com
+
+- Update to version 2.0.23
+  + Avoid using KEY_MICMUTE if it doesn't exist.
+(input_layer.c)  (Lonnie Abelbeck)
+  + Add troubleshooting section to man page.
+(acpid.8)  (Ted Felix)
+
+---

Old:

  acpid-2.0.22.tar.xz

New:

  acpid-2.0.23.tar.xz



Other differences:
--
++ acpid.spec ++
--- /var/tmp/diff_new_pack.gtRgnv/_old  2014-12-19 09:37:39.0 +0100
+++ /var/tmp/diff_new_pack.gtRgnv/_new  2014-12-19 09:37:39.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   acpid
-Version:2.0.22
+Version:2.0.23
 Release:0
 Summary:Executes Actions at ACPI Events
 License:GPL-2.0+

++ acpid-2.0.22.tar.xz - acpid-2.0.23.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/acpid-2.0.22/Changelog new/acpid-2.0.23/Changelog
--- old/acpid-2.0.22/Changelog  2014-03-15 18:55:24.0 +0100
+++ new/acpid-2.0.23/Changelog  2014-08-23 19:51:13.0 +0200
@@ -1,3 +1,11 @@
+* Sat Aug 23 2014  Ted Felix t...@tedfelix.com
+  - 2.0.23 release
+(configure.ac)  (Ted Felix)
+  - Avoid using KEY_MICMUTE if it doesn't exist.
+(input_layer.c)  (Lonnie Abelbeck)
+  - Add troubleshooting section to man page.
+(acpid.8)  (Ted Felix)
+
 * Sat March 15 2014  Ted Felix t...@tedfelix.com
   - 2.0.22 release
 (configure.ac)  (Ted Felix)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/acpid-2.0.22/Makefile.in new/acpid-2.0.23/Makefile.in
--- old/acpid-2.0.22/Makefile.in2014-03-15 18:58:15.0 +0100
+++ new/acpid-2.0.23/Makefile.in2014-08-23 19:53:10.0 +0200
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.3 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
@@ -421,8 +421,8 @@
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-   @if test ! -f $@; then rm -f stamp-h1; else :; fi
-   @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
+   @test -f $@ || rm -f stamp-h1
+   @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
@@ -811,10 +811,16 @@
$(am__post_remove_distdir)
 
 dist-tarZ: distdir
+   @echo WARNING: Support for shar distribution archives 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: It will be removed altogether in Automake 2.0 2
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c $(distdir).shar.gz
$(am__post_remove_distdir)
 
@@ -856,9 +862,10 @@
   dc_destdir=$${TMPDIR-/tmp}/am-dc-/ \
   am__cwd=`pwd` \
   $(am__cd) $(distdir)/_build \
-  ../configure --srcdir=.. --prefix=$$dc_install_base \
+  ../configure \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \
+   --srcdir=.. --prefix=$$dc_install_base \
   $(MAKE) $(AM_MAKEFLAGS) \
   $(MAKE) $(AM_MAKEFLAGS) dvi \
   $(MAKE) $(AM_MAKEFLAGS) check \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/acpid-2.0.22/aclocal.m4 new/acpid-2.0.23/aclocal.m4
--- old/acpid-2.0.22/aclocal.m4 2014-03-15 18:58:13.0 +0100
+++ new/acpid-2.0.23/aclocal.m4 2014-08-23 19:53:08.0 +0200
@@ -1,4 +1,4 @@
-# generated automatically by aclocal 1.13.3 -*- Autoconf -*-
+# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
 
 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
 
@@ -32,10 +32,10 @@
 # generated from the m4 files accompanying Automake X.Y.
 # (This private macro should not be called outside this file.)
 AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.13'

commit python3-django-picklefield for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package python3-django-picklefield for 
openSUSE:Factory checked in at 2014-12-19 09:38:43

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


Package is python3-django-picklefield

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-django-picklefield/python3-django-picklefield.changes
2013-06-21 19:01:39.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-django-picklefield.new/python3-django-picklefield.changes
   2014-12-19 09:37:39.0 +0100
@@ -1,0 +2,10 @@
+Sun Dec 14 19:51:54 UTC 2014 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * update source url to point to pypi tar.gz
+
+- update to version 0.3.1:
+  * Favor the built in json module (thanks to Simon Charette).
+
+---

Old:

  django-picklefield-0.3.0.tar.bz2

New:

  django-picklefield-0.3.1.tar.gz



Other differences:
--
++ python3-django-picklefield.spec ++
--- /var/tmp/diff_new_pack.LvbARq/_old  2014-12-19 09:37:40.0 +0100
+++ /var/tmp/diff_new_pack.LvbARq/_new  2014-12-19 09:37:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-django-picklefield
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,14 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python3-django-picklefield
-Version:0.3.0
+Version:0.3.1
 Release:0
 Url:http://github.com/gintas/django-picklefield
 Summary:Pickled object field for Django
 License:MIT
 Group:  Development/Languages/Python
-Source: django-picklefield-%{version}.tar.bz2
+Source: 
https://pypi.python.org/packages/source/d/django-picklefield/django-picklefield-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python3
 BuildRequires:  python3-devel

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



commit mailx for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package mailx for openSUSE:Factory checked 
in at 2014-12-19 09:38:14

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


Package is mailx

Changes:

--- /work/SRC/openSUSE:Factory/mailx/mailx.changes  2014-05-02 
09:51:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.mailx.new/mailx.changes 2014-12-19 
09:37:05.0 +0100
@@ -1,0 +2,11 @@
+Thu Dec 11 11:46:53 UTC 2014 - wer...@suse.de
+
+- Add patches
+  0001-outof-Introduce-expandaddr-flag.patch
+  0002-unpack-Disable-option-processing-for-email-addresses.patch
+  0003-fio.c-Unconditionally-require-wordexp-support.patch
+  0004-globname-Invoke-wordexp-with-WRDE_NOCMD-CVE-2004-277.patch
+  to fix bsc#909208 -- CVE-2004-2771, CVE-2014-7844: mailx: shell
+  command injection via crafted email addresses
+
+---
@@ -11 +22 @@
-- Correct commnet in spec file 
+- Correct comment in spec file 

New:

  0001-outof-Introduce-expandaddr-flag.patch
  0002-unpack-Disable-option-processing-for-email-addresses.patch
  0003-fio.c-Unconditionally-require-wordexp-support.patch
  0004-globname-Invoke-wordexp-with-WRDE_NOCMD-CVE-2004-277.patch



Other differences:
--
++ mailx.spec ++
--- /var/tmp/diff_new_pack.r93ErQ/_old  2014-12-19 09:37:06.0 +0100
+++ /var/tmp/diff_new_pack.r93ErQ/_new  2014-12-19 09:37:06.0 +0100
@@ -43,6 +43,14 @@
 Patch7: mailx-12.5-parentheses.dif
 #PATCH-FIX-SUSE: Fix IPv6 address handling
 Patch8: mailx-12.5-ipv6.dif
+#PATCH-FIX-SUSE: bsc#909208 -- CVE-2004-2771, CVE-2014-7844: mailx: shell 
command injection via crafted email addresses
+Patch9: 0001-outof-Introduce-expandaddr-flag.patch
+#PATCH-FIX-SUSE: bsc#909208 -- CVE-2004-2771, CVE-2014-7844: mailx: shell 
command injection via crafted email addresses
+Patch10:0002-unpack-Disable-option-processing-for-email-addresses.patch
+#PATCH-FIX-SUSE: bsc#909208 -- CVE-2004-2771, CVE-2014-7844: mailx: shell 
command injection via crafted email addresses
+Patch11:0003-fio.c-Unconditionally-require-wordexp-support.patch
+#PATCH-FIX-SUSE: bsc#909208 -- CVE-2004-2771, CVE-2014-7844: mailx: shell 
command injection via crafted email addresses
+Patch12:0004-globname-Invoke-wordexp-with-WRDE_NOCMD-CVE-2004-277.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -62,6 +70,10 @@
 %patch6 -p0 -b .ssl
 %patch7 -p0 -b .par
 %patch8 -p0 -b .ipv6
+%patch9 -p1 -b .0001
+%patch10 -p1 -b .0002
+%patch11 -p1 -b .0003
+%patch12 -p1 -b .0004
 %patch  -p0 -b .0
 
 %build

++ 0001-outof-Introduce-expandaddr-flag.patch ++
From 9984ae5cb0ea0d61df1612b06952a61323c083d9 Mon Sep 17 00:00:00 2001
From: Florian Weimer fwei...@redhat.com
Date: Mon, 17 Nov 2014 11:13:38 +0100
Subject: [PATCH 1/4] outof: Introduce expandaddr flag

Document that address expansion is disabled unless the expandaddr
binary option is set.

This has been assigned CVE-2014-7844 for BSD mailx, but it is not
a vulnerability in Heirloom mailx because this feature was documented.
---
 mailx.1 | 14 ++
 names.c |  3 +++
 2 files changed, 17 insertions(+)

diff --git a/mailx.1 b/mailx.1
index 70a7859..22a171b 100644
--- a/mailx.1
+++ b/mailx.1
@@ -656,6 +656,14 @@ but any reply returned to the machine
 will have the system wide alias expanded
 as all mail goes through sendmail.
 .SS Recipient address specifications
+If the
+.I expandaddr
+option is not set (the default), recipient addresses must be names of
+local mailboxes or Internet mail addresses.
+.PP
+If the
+.I expandaddr
+option is set, the following rules apply:
 When an address is used to name a recipient
 (in any of To, Cc, or Bcc),
 names of local mail folders
@@ -2391,6 +2399,12 @@ and exits immediately.
 If this option is set,
 \fImailx\fR starts even with an empty mailbox.
 .TP
+.B expandaddr
+Causes
+.I mailx
+to expand message recipient addresses, as explained in the section,
+Recipient address specifications.
+.TP
 .B flipr
 Exchanges the
 .I Respond
diff --git a/names.c b/names.c
index 66e976b..c69560f 100644
--- a/names.c
+++ b/names.c
@@ -268,6 +268,9 @@ outof(struct name *names, FILE *fo, struct header *hp)
FILE *fout, *fin;
int ispipe;
 
+   if (value(expandaddr) == NULL)
+   return names;
+
top = names;
np = names;
time(now);
-- 
1.9.3

++ 0002-unpack-Disable-option-processing-for-email-addresses.patch ++
From e34e2ac67b80497080ebecccec40c3b61456167d Mon Sep 17 00:00:00 2001
From: Florian Weimer fwei...@redhat.com
Date: Mon, 17 Nov 2014 11:14:06 +0100
Subject: [PATCH 2/4] unpack: Disable 

commit yast2-firstboot for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:Factory 
checked in at 2014-12-19 09:38:52

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


Package is yast2-firstboot

Changes:

--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes  
2014-12-05 21:04:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-firstboot.new/yast2-firstboot.changes 
2014-12-19 09:37:49.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec 18 18:35:37 UTC 2014 - lsle...@suse.cz
+
+- fixed bashisms in S09-cleanup script (authored by Ledest)
+- 3.1.7
+
+---

Old:

  yast2-firstboot-3.1.6.tar.bz2

New:

  yast2-firstboot-3.1.7.tar.bz2



Other differences:
--
++ yast2-firstboot.spec ++
--- /var/tmp/diff_new_pack.6XLEbo/_old  2014-12-19 09:37:50.0 +0100
+++ /var/tmp/diff_new_pack.6XLEbo/_new  2014-12-19 09:37:50.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:3.1.6
+Version:3.1.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firstboot-3.1.6.tar.bz2 - yast2-firstboot-3.1.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-3.1.6/package/yast2-firstboot.changes 
new/yast2-firstboot-3.1.7/package/yast2-firstboot.changes
--- old/yast2-firstboot-3.1.6/package/yast2-firstboot.changes   2014-12-04 
13:32:11.0 +0100
+++ new/yast2-firstboot-3.1.7/package/yast2-firstboot.changes   2014-12-18 
19:37:08.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Dec 18 18:35:37 UTC 2014 - lsle...@suse.cz
+
+- fixed bashisms in S09-cleanup script (authored by Ledest)
+- 3.1.7
+
+---
 Thu Dec  4 09:50:10 UTC 2014 - jreidin...@suse.com
 
 - remove X-KDE-Library from desktop file (bnc#899104)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-3.1.6/package/yast2-firstboot.spec 
new/yast2-firstboot-3.1.7/package/yast2-firstboot.spec
--- old/yast2-firstboot-3.1.6/package/yast2-firstboot.spec  2014-12-04 
13:32:11.0 +0100
+++ new/yast2-firstboot-3.1.7/package/yast2-firstboot.spec  2014-12-18 
19:37:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:3.1.6
+Version:3.1.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-3.1.6/scripts/Firstboot-Stage/S09-cleanup 
new/yast2-firstboot-3.1.7/scripts/Firstboot-Stage/S09-cleanup
--- old/yast2-firstboot-3.1.6/scripts/Firstboot-Stage/S09-cleanup   
2014-12-04 13:32:11.0 +0100
+++ new/yast2-firstboot-3.1.7/scripts/Firstboot-Stage/S09-cleanup   
2014-12-18 19:37:08.0 +0100
@@ -8,12 +8,12 @@
 # 13.1) kill shell on second virtual console
 if test ! -z $SPID ; then
log \tkill X-Server with PID: $SPID
-   kill -KILL $SPID /dev/null
+   kill -KILL $SPID /dev/null 21
 fi
 # 13.2) kill VNC server and remove VNC passwd
 if [ ! -z $VNC ] ; then
log \tkill all VNC sessions...
-   killall Xvnc /dev/null
+   killall Xvnc /dev/null 21
rm -fv /root/.vnc/passwd
 fi
 # 13.3) stop network and sshd
@@ -54,5 +54,3 @@
 rm /var/lib/YaST2/firstboot_reboot_after_finish
 /sbin/reboot
 fi
-
-

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



commit openlmi-networking for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package openlmi-networking for 
openSUSE:Factory checked in at 2014-12-19 09:38:40

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


Package is openlmi-networking

Changes:

--- /work/SRC/openSUSE:Factory/openlmi-networking/openlmi-networking.changes
2014-10-31 18:27:47.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.openlmi-networking.new/openlmi-networking.changes   
2014-12-19 09:37:36.0 +0100
@@ -1,0 +2,9 @@
+Thu Dec 11 07:59:19 UTC 2014 - kkae...@suse.com
+
+- Update to 0.3.1
+  * Documentation reworked to have same lookfeel for all OpenLMI
+providers.
+  * More useful error messages.
+  * Bugfixes and minor improvements.
+
+---

Old:

  openlmi-networking-0.3.0.tar.gz

New:

  openlmi-networking-0.3.1.tar.gz



Other differences:
--
++ openlmi-networking.spec ++
--- /var/tmp/diff_new_pack.mVNXz9/_old  2014-12-19 09:37:37.0 +0100
+++ /var/tmp/diff_new_pack.mVNXz9/_new  2014-12-19 09:37:37.0 +0100
@@ -24,7 +24,7 @@
 %global logfile %{_localstatedir}/log/openlmi-install.log
 
 Name:   openlmi-networking
-Version:0.3.0
+Version:0.3.1
 Release:1%{?dist}
 Summary:CIM providers for network management
 License:LGPL-2.1+

++ openlmi-networking-0.3.0.tar.gz - openlmi-networking-0.3.1.tar.gz ++
 6244 lines of diff (skipped)

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



commit perl-Mojolicious for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package perl-Mojolicious for 
openSUSE:Factory checked in at 2014-12-19 09:38:32

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


Package is perl-Mojolicious

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojolicious/perl-Mojolicious.changes
2014-11-12 15:48:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojolicious.new/perl-Mojolicious.changes   
2014-12-19 09:37:23.0 +0100
@@ -1,0 +2,34 @@
+Thu Dec 18 07:23:02 UTC 2014 - co...@suse.com
+
+- updated to 5.70
+   - Improved Mojo::Template performance.
+   - Fixed error handling bugs in Mojo::IOLoop::Stream.
+   - Fixed a few limit bugs in Mojo::Message.
+   - Fixed Windows bug in Mojo::IOLoop::Client. (OlegG)
+ 
+ 5.69  2014-12-13
+   - Deprecated Mojo::DOM::siblings.
+   - Added following, following_siblings, preceding and preceding_siblings
+ methods to Mojo::DOM.
+   - Added port method to Mojo::IOLoop::Server.
+   - Removed deprecated emit_safe method from Mojo::EventEmitter.
+   - Removed deprecated render_static method from Mojolicious::Controller.
+   - Removed deprecated has_conditions method from Mojolicious::Routes::Route.
+   - Updated Net::DNS::Native requirement to 0.14 for some important bug fixes.
+   - Improved Mojo::DOM::HTML performance slightly.
+   - Fixed parent combinator bug in Mojo::DOM::CSS.
+   - Fixed whitespace bug in Mojo::DOM::HTML.
+   - Fixed Mojo::UserAgent::Transactor to handle query parameters more like
+ most common browsers.
+ 
+ 5.68  2014-12-02
+   - Improved Mojo::DOM::CSS performance significantly.
+   - Fixed deprecation warnings in get command.
+   - Fixed bug in Mojolicious::Controller where sending a WebSocket message
+ would cause multiple resume events.
+ 
+ 5.67  2014-11-27
+   - Improved overall performance by deserializing sessions only on demand.
+   - Fixed bug where embedded applications would deserialize sessions twice.
+
+---

Old:

  Mojolicious-5.60.tar.gz

New:

  Mojolicious-5.70.tar.gz



Other differences:
--
++ perl-Mojolicious.spec ++
--- /var/tmp/diff_new_pack.GQjmvO/_old  2014-12-19 09:37:24.0 +0100
+++ /var/tmp/diff_new_pack.GQjmvO/_new  2014-12-19 09:37:24.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious
-Version:5.60
+Version:5.70
 Release:0
 %define cpan_name Mojolicious
 Summary:Real-time web framework

++ Mojolicious-5.60.tar.gz - Mojolicious-5.70.tar.gz ++
 10645 lines of diff (skipped)

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



commit seccheck for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package seccheck for openSUSE:Factory 
checked in at 2014-12-19 09:38:36

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


Package is seccheck

Changes:

--- /work/SRC/openSUSE:Factory/seccheck/seccheck.changes2014-12-17 
19:15:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.seccheck.new/seccheck.changes   2014-12-19 
09:37:31.0 +0100
@@ -1,0 +2,9 @@
+Wed Dec 17 19:19:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in scripts
+- fix chebang of autologout.sh script than contains bash-specific
+  constructions
+- add patches:
+  * seccheck-3.0-fix-bashisms.patch
+
+---

New:

  seccheck-3.0-fix-bashisms.patch



Other differences:
--
++ seccheck.spec ++
--- /var/tmp/diff_new_pack.a7Gf9S/_old  2014-12-19 09:37:32.0 +0100
+++ /var/tmp/diff_new_pack.a7Gf9S/_new  2014-12-19 09:37:32.0 +0100
@@ -26,6 +26,7 @@
 Source1:sysconfig.seccheck
 Source2:cron_entries
 Patch0: daily-mailer.patch
+Patch1: %{name}-3.0-fix-bashisms.patch
 Requires:   bash
 Requires:   cron
 # FIXME: use proper Requires(pre/post/preun/...)
@@ -42,6 +43,7 @@
 %setup -q
 
 %patch0 -p1
+%patch1 -p1 -F2
 
 %install
 install -d -m 700 %{buildroot}%{_localstatedir}/lib/secchk

++ seccheck-3.0-fix-bashisms.patch ++
diff -Ndur seccheck-3.0/autologout.sh seccheck-3.0-fix-bashisms/autologout.sh
--- seccheck-3.0/autologout.sh  2014-08-25 12:36:55.0 +0300
+++ seccheck-3.0-fix-bashisms/autologout.sh 2014-11-16 01:16:35.375287266 
+0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # Small shellscript by Alexander Bergmann abergm...@suse.com which checks 
 # for idle user terminals and kills them where applicable. Parameters can be
diff -Ndur seccheck-3.0/helper.inc seccheck-3.0-fix-bashisms/helper.inc
--- seccheck-3.0/helper.inc 2014-08-25 12:36:55.0 +0300
+++ seccheck-3.0-fix-bashisms/helper.inc2014-11-16 01:22:19.370263995 
+0200
@@ -2,22 +2,22 @@
 # functions used by all modules
 #
 # param: prefix for filename
-function set_tmpdir () {
+set_tmpdir () {
 TMPDIR=`/bin/mktemp -d /tmp/$1.XX` || exit 1
 }
 
-function run_sysconfig_seccheck () {
+run_sysconfig_seccheck () {
 test -e /etc/sysconfig/seccheck  . /etc/sysconfig/seccheck
 }
 
-function syntax () {
+syntax () {
 /bin/echo Syntax: $0 'daily|weekly|monthly'
 exit 1
 }
 
 
 # set which mailer should be used
-function set_mailer () {
+set_mailer () {
 test -z $MAILER  test -x /usr/sbin/sendmail  
MAILER=/usr/sbin/sendmail
 test -z $MAILER  test -x /usr/bin/mailx  MAILER=/usr/bin/mailx
 test -z $MAILER  test -x /usr/lib/sendmail  
MAILER=/usr/lib/sendmail
@@ -26,7 +26,7 @@
 }
 
 # create necessary directories
-function create_secdir () {
+create_secdir () {

 if [ ! -d $SEC_VAR ]; then
 rm -rf $SEC_VAR
@@ -43,14 +43,14 @@
 # param a username
 # template engine to substitute a variable in a text and prepare it
 # to be sent per email
-function guessable_password_email {
+guessable_password_email {
 ret_tmpl=`sed s/{guessable_account}/$1/ blurbs/guessable_passwd.txt`
 echo $ret_tmpl
 }
 
 # those files are needed 
 # param $1 = SEC_DATA, normally /var/lib/seccheck/data
-function initialize_secfiles () {
+initialize_secfiles () {
 for i in rpm-md5 sbit write devices write-bin; do
 if [ ! -e $1/$i ] ; then
 touch $1/$i
@@ -61,7 +61,7 @@
 # daily changes per email
 # params
 # OLD1, OUT1
-function send_daily_changes () {
+send_daily_changes () {
 local old1=$1
 local out1=$2
 
@@ -84,13 +84,14 @@
 # use john the ripper to check guessable passwords
 # if you pass quick as argument it will simple try to find easy 
 # guessable passwords. otherwise it will use a dictionary
-function check_guessable_passwords () {
+check_guessable_passwords () {
 
-if type -p john /dev/null  type -p unshadow /dev/null ; then
+if type john /dev/null 21  type unshadow /dev/null 21; then
 # Copy passwd file. Use unique name to avoid races when john takes 
very long
 SEC_PASSWD=$SEC_VAR/passwd.$$
 OUT=$TMPDIR/security.out # random name please
-echo -e '\nComplete list of user accounts with guessable passwords:'
+echo
+echo Complete list of user accounts with guessable passwords:
 unshadow /etc/passwd /etc/shadow  $SEC_PASSWD
 if [ $1 != quick ]; then
 nice -n 1 john -single $SEC_PASSWD 1 /dev/null 21
@@ -115,7 +116,7 @@
 
 
 # param mount points
-function check_new_devices () {
+check_new_devices () {
 mnt_point=$1
 

commit yast2-services-manager for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package yast2-services-manager for 
openSUSE:Factory checked in at 2014-12-19 09:38:15

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


Package is yast2-services-manager

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-services-manager/yast2-services-manager.changes
2014-12-06 13:47:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-services-manager.new/yast2-services-manager.changes
   2014-12-19 09:37:07.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec 17 12:18:46 CET 2014 - sch...@suse.de
+
+- AutoYaST import: initialize Yast::I18n correctly
+  (bnc#909768)
+- 3.1.38
+
+---
+

Old:

  yast2-services-manager-3.1.38.tar.bz2

New:

  yast2-services-manager-3.1.39.tar.bz2



Other differences:
--
++ yast2-services-manager.spec ++
--- /var/tmp/diff_new_pack.2wf7CA/_old  2014-12-19 09:37:08.0 +0100
+++ /var/tmp/diff_new_pack.2wf7CA/_new  2014-12-19 09:37:08.0 +0100
@@ -24,7 +24,7 @@
 ##
 
 Name:   yast2-services-manager
-Version:3.1.38
+Version:3.1.39
 Release:0
 
 BuildArch:  noarch

++ yast2-services-manager-3.1.38.tar.bz2 - 
yast2-services-manager-3.1.39.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-services-manager-3.1.38/package/yast2-services-manager.changes 
new/yast2-services-manager-3.1.39/package/yast2-services-manager.changes
--- old/yast2-services-manager-3.1.38/package/yast2-services-manager.changes
2014-12-04 13:31:41.0 +0100
+++ new/yast2-services-manager-3.1.39/package/yast2-services-manager.changes
2014-12-17 13:36:12.0 +0100
@@ -1,4 +1,12 @@
 ---
+Wed Dec 17 12:18:46 CET 2014 - sch...@suse.de
+
+- AutoYaST import: initialize Yast::I18n correctly
+  (bnc#909768)
+- 3.1.38
+
+---
+
 Thu Dec  4 09:51:33 UTC 2014 - jreidin...@suse.com
 
 - remove X-KDE-Library from desktop file (bnc#899104)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-services-manager-3.1.38/package/yast2-services-manager.spec 
new/yast2-services-manager-3.1.39/package/yast2-services-manager.spec
--- old/yast2-services-manager-3.1.38/package/yast2-services-manager.spec   
2014-12-04 13:31:41.0 +0100
+++ new/yast2-services-manager-3.1.39/package/yast2-services-manager.spec   
2014-12-17 13:36:12.0 +0100
@@ -24,7 +24,7 @@
 ##
 
 Name:   yast2-services-manager
-Version:3.1.38
+Version:3.1.39
 
 Release:0
 BuildArch:  noarch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-services-manager-3.1.38/src/lib/services-manager/services_manager_profile.rb
 
new/yast2-services-manager-3.1.39/src/lib/services-manager/services_manager_profile.rb
--- 
old/yast2-services-manager-3.1.38/src/lib/services-manager/services_manager_profile.rb
  2014-12-03 11:51:12.0 +0100
+++ 
new/yast2-services-manager-3.1.39/src/lib/services-manager/services_manager_profile.rb
  2014-12-17 13:36:12.0 +0100
@@ -1,7 +1,6 @@
 require yast
 
 module Yast
-  import Report
 
   ###  Supported profiles
   #
@@ -57,9 +56,8 @@
 
   class ServicesManagerProfile
 include Yast::Logger
-
-extend Yast::I18n
-textdomain services-manager
+include Yast::I18n
+Yast.import Report
 
 ENABLE  = 'enable'
 DISABLE = 'disable'
@@ -82,6 +80,7 @@
 attr_reader :target
 
 def initialize autoyast_profile
+  textdomain services-manager
   @autoyast_profile = autoyast_profile
   @services = []
   extract_services
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-services-manager-3.1.38/test/services_manager_profile_test.rb 
new/yast2-services-manager-3.1.39/test/services_manager_profile_test.rb
--- old/yast2-services-manager-3.1.38/test/services_manager_profile_test.rb 
2014-12-03 11:51:12.0 +0100
+++ new/yast2-services-manager-3.1.39/test/services_manager_profile_test.rb 
2014-12-17 13:36:12.0 +0100
@@ -138,5 +138,21 @@
 expect(profile.services).to be_empty
   end
 end
+
+context wrong services entries in profile do
+  before do
+@autoyast_profile = {
+  'services' = {
+   

commit opusfile for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package opusfile for openSUSE:Factory 
checked in at 2014-12-19 09:38:49

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


Package is opusfile

Changes:

--- /work/SRC/openSUSE:Factory/opusfile/opusfile.changes2014-02-19 
07:22:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.opusfile.new/opusfile.changes   2014-12-19 
09:37:45.0 +0100
@@ -1,0 +2,8 @@
+Thu Dec 18 13:05:05 UTC 2014 - zai...@opensuse.org
+
+- Update to version 0.6:
+  + Fix bugs with comment handling.
+  + Fix build for BSD.
+  + Fix bugs handling invalid and non-opus streams.
+
+---

Old:

  opusfile-0.5.tar.gz

New:

  opusfile-0.6.tar.gz



Other differences:
--
++ opusfile.spec ++
--- /var/tmp/diff_new_pack.7kIsKX/_old  2014-12-19 09:37:46.0 +0100
+++ /var/tmp/diff_new_pack.7kIsKX/_new  2014-12-19 09:37:46.0 +0100
@@ -17,7 +17,7 @@
 #
 
 Name:   opusfile
-Version:0.5
+Version:0.6
 Release:0
 %define soname  0
 License:BSD-3-Clause

++ opusfile-0.5.tar.gz - opusfile-0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opusfile-0.5/Makefile.in new/opusfile-0.6/Makefile.in
--- old/opusfile-0.5/Makefile.in2014-01-10 20:41:19.0 +0100
+++ new/opusfile-0.6/Makefile.in2014-06-11 19:30:41.0 +0200
@@ -969,8 +969,8 @@
 maintainer-clean-generic:
@echo This command is intended for maintainers to use
@echo it deletes files that may require special tools to rebuild.
-@HAVE_DOXYGEN_FALSE@install-data-local:
 @HAVE_DOXYGEN_FALSE@clean-local:
+@HAVE_DOXYGEN_FALSE@install-data-local:
 @HAVE_DOXYGEN_FALSE@uninstall-local:
 clean: clean-am
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opusfile-0.5/configure new/opusfile-0.6/configure
--- old/opusfile-0.5/configure  2014-01-10 20:41:19.0 +0100
+++ new/opusfile-0.6/configure  2014-06-11 19:30:40.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for opusfile 0.5.
+# Generated by GNU Autoconf 2.69 for opusfile 0.6.
 #
 # Report bugs to o...@xiph.org.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='opusfile'
 PACKAGE_TARNAME='opusfile'
-PACKAGE_VERSION='0.5'
-PACKAGE_STRING='opusfile 0.5'
+PACKAGE_VERSION='0.6'
+PACKAGE_STRING='opusfile 0.6'
 PACKAGE_BUGREPORT='o...@xiph.org'
 PACKAGE_URL=''
 
@@ -1346,7 +1346,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures opusfile 0.5 to adapt to many kinds of systems.
+\`configure' configures opusfile 0.6 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1416,7 +1416,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of opusfile 0.5:;;
+ short | recursive ) echo Configuration of opusfile 0.6:;;
esac
   cat \_ACEOF
 
@@ -1541,7 +1541,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-opusfile configure 0.5
+opusfile configure 0.6
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1910,7 +1910,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by opusfile $as_me 0.5, which was
+It was created by opusfile $as_me 0.6, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -4288,7 +4288,7 @@
 
 # Define the identity of the package.
  PACKAGE='opusfile'
- VERSION='0.5'
+ VERSION='0.6'
 
 
 # Some tools Automake needs.
@@ -6778,10 +6778,10 @@
  x86_64-*linux*)
LD=${LD-ld} -m elf_i386
;;
- powerpcle-*linux*)
+ powerpc64le-*linux*)
LD=${LD-ld} -m elf32lppclinux
;;
- powerpc-*linux*)
+ powerpc64-*linux*)
LD=${LD-ld} -m elf32ppclinux
;;
  s390x-*linux*)
@@ -11718,7 +11718,7 @@
 
 
 OP_LT_CURRENT=3
-OP_LT_REVISION=0
+OP_LT_REVISION=1
 OP_LT_AGE=3
 
 
@@ -11897,6 +11897,64 @@
 fi
 
 fi
+{ $as_echo $as_me:${as_lineno-$LINENO}: checking for library containing 
ftime 5
+$as_echo_n checking for library containing ftime...  6; }
+if ${ac_cv_search_ftime+:} false; then :
+  $as_echo_n (cached)  6
+else
+  ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - _ACEOF 

commit freeipmi for openSUSE:Factory

2014-12-19 Thread h_root


binbzNRzgjinG.bin
Description: Binary data


commit gnome-chess for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package gnome-chess for openSUSE:Factory 
checked in at 2014-12-19 09:38:35

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


Package is gnome-chess

Changes:

--- /work/SRC/openSUSE:Factory/gnome-chess/gnome-chess.changes  2014-11-18 
22:47:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-chess.new/gnome-chess.changes 
2014-12-19 09:37:29.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec 17 13:31:53 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.14.2:
+  + Regression: broken timer after Resign - Keep Playing.
+  + Regression: broken timer after Pause - Unpause.
+  + Updated translations.
+
+---

Old:

  gnome-chess-3.14.1.tar.xz

New:

  gnome-chess-3.14.2.tar.xz



Other differences:
--
++ gnome-chess.spec ++
--- /var/tmp/diff_new_pack.Uc4iPV/_old  2014-12-19 09:37:30.0 +0100
+++ /var/tmp/diff_new_pack.Uc4iPV/_new  2014-12-19 09:37:30.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-chess
-Version:3.14.1
+Version:3.14.2
 Release:0
 Summary:Chess Game for GNOME
 License:GPL-2.0+

++ gnome-chess-3.14.1.tar.xz - gnome-chess-3.14.2.tar.xz ++
 8386 lines of diff (skipped)

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



commit setconf for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package setconf for openSUSE:Factory checked 
in at 2014-12-19 09:38:55

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


Package is setconf

Changes:

--- /work/SRC/openSUSE:Factory/setconf/setconf.changes  2014-10-22 
16:23:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.setconf.new/setconf.changes 2014-12-19 
09:37:54.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec 19 21:39:18 UTC 2014 - sor.ale...@meowr.ru
+
+- Update to 0.6.4:
+  * Better error messages when write permissions are denied.
+
+---

Old:

  setconf-0.6.3.tar.xz

New:

  setconf-0.6.4.tar.xz



Other differences:
--
++ setconf.spec ++
--- /var/tmp/diff_new_pack.xdoRuy/_old  2014-12-19 09:37:56.0 +0100
+++ /var/tmp/diff_new_pack.xdoRuy/_new  2014-12-19 09:37:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   setconf
-Version:0.6.3
+Version:0.6.4
 Release:0
 Summary:Utility to easily change settings in configuration files
 License:GPL-2.0+

++ setconf-0.6.3.tar.xz - setconf-0.6.4.tar.xz ++
Files old/setconf-0.6.3/setconf.1.gz and new/setconf-0.6.4/setconf.1.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setconf-0.6.3/setconf.py new/setconf-0.6.4/setconf.py
--- old/setconf-0.6.3/setconf.py2014-10-13 16:23:10.0 +0200
+++ new/setconf-0.6.4/setconf.py2014-12-03 13:25:32.0 +0100
@@ -19,6 +19,7 @@
 # Nov 2013
 # Aug 2014
 # Oct 2014
+# Dec 2014
 #
 
 from sys import argv
@@ -30,7 +31,7 @@
 
 # TODO: Use optparse or argparse if shedskin is no longer a target.
 
-VERSION = 0.6.3
+VERSION = 0.6.4
 ASSIGNMENTS = ['==', '=', '=', ':=', '::', ':']
 
 def get_encoding(filename):
@@ -171,7 +172,11 @@
 changed_contents += linesep
 if dummyrun:
 return data != changed_contents
-file = open(filename, w)
+try:
+file = open(filename, w)
+except IOError:
+print(No write permission: %s % (filename))
+sysexit(2)
 file.write(changed_contents)
 file.close()
 
@@ -188,7 +193,11 @@
 print(Can't read %s % (filename))
 sysexit(2)
 # Change and write the file
-file = open(filename, w)
+try:
+file = open(filename, w)
+except IOError:
+print(No write permission: %s % (filename))
+sysexit(2)
 lines.append(line)
 added_data = linesep.join(lines) + linesep
 file.write(added_data)
@@ -487,7 +496,11 @@
 
 def create_if_missing(filename):
 if not exists(filename):
-f = open(filename, w)
+try:
+f = open(filename, w)
+except IOError:
+print(No write permission: %s % (filename))
+sysexit(2)
 f.close()
 
 

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



commit python3-CherryPy for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package python3-CherryPy for 
openSUSE:Factory checked in at 2014-12-19 09:38:45

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


Package is python3-CherryPy

Changes:

--- /work/SRC/openSUSE:Factory/python3-CherryPy/python3-CherryPy.changes
2014-05-21 16:21:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-CherryPy.new/python3-CherryPy.changes   
2014-12-19 09:37:40.0 +0100
@@ -1,0 +2,22 @@
+Tue Dec 16 05:54:57 UTC 2014 - a...@gmx.de
+
+- update to version 3.6.0:
+  * Fixed HTTP range headers for negative length larger than content size.
+  * Disabled universal wheel generation as wsgiserver has Python duality.
+  * Pull Request #42: Correct TypeError in ``check_auth`` when encrypt is used.
+  * Pull Request #59: Correct signature of HandlerWrapperTool.
+  * Pull Request #60: Fix error in SessionAuth where login_screen was
+incorrectly used.
+* Issue #1077: Support keyword-only arguments in dispatchers (Python 3).
+* Issue #1019: Allow logging host name in the access log.
+* Pull Request #50: Fixed race condition in session cleanup.
+
+- changes from version 3.5.0:
+  * Issue #1301: When the incoming queue is full, now reject additional
+connections. This functionality was added to CherryPy 3.0, but
+  unintentionally lost in 3.1.
+
+- changes from version 3.4.0:
+  * Miscellaneous quality improvements.
+
+---

Old:

  CherryPy-3.3.0.tar.gz

New:

  CherryPy-3.6.0.tar.gz



Other differences:
--
++ python3-CherryPy.spec ++
--- /var/tmp/diff_new_pack.lGUKs9/_old  2014-12-19 09:37:41.0 +0100
+++ /var/tmp/diff_new_pack.lGUKs9/_new  2014-12-19 09:37:41.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-CherryPy
-Version:3.3.0
+Version:3.6.0
 Release:0
 Url:http://www.cherrypy.org
 Summary:Object-Oriented HTTP framework

++ CherryPy-3.3.0.tar.gz - CherryPy-3.6.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-3.3.0/CherryPy.egg-info/PKG-INFO 
new/CherryPy-3.6.0/CherryPy.egg-info/PKG-INFO
--- old/CherryPy-3.3.0/CherryPy.egg-info/PKG-INFO   2014-04-16 
23:53:55.0 +0200
+++ new/CherryPy-3.6.0/CherryPy.egg-info/PKG-INFO   2014-09-14 
06:05:58.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CherryPy
-Version: 3.3.0
+Version: 3.6.0
 Summary: Object-Oriented HTTP framework
 Home-page: http://www.cherrypy.org
 Author: CherryPy Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-3.3.0/CherryPy.egg-info/SOURCES.txt 
new/CherryPy-3.6.0/CherryPy.egg-info/SOURCES.txt
--- old/CherryPy-3.3.0/CherryPy.egg-info/SOURCES.txt2014-04-16 
23:53:56.0 +0200
+++ new/CherryPy-3.6.0/CherryPy.egg-info/SOURCES.txt2014-09-14 
06:06:03.0 +0200
@@ -87,6 +87,7 @@
 cherrypy/test/test_http.py
 cherrypy/test/test_httpauth.py
 cherrypy/test/test_httplib.py
+cherrypy/test/test_iterator.py
 cherrypy/test/test_json.py
 cherrypy/test/test_logging.py
 cherrypy/test/test_mime.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-3.3.0/PKG-INFO new/CherryPy-3.6.0/PKG-INFO
--- old/CherryPy-3.3.0/PKG-INFO 2014-04-16 23:53:56.0 +0200
+++ new/CherryPy-3.6.0/PKG-INFO 2014-09-14 06:06:03.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CherryPy
-Version: 3.3.0
+Version: 3.6.0
 Summary: Object-Oriented HTTP framework
 Home-page: http://www.cherrypy.org
 Author: CherryPy Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-3.3.0/cherrypy/__init__.py 
new/CherryPy-3.6.0/cherrypy/__init__.py
--- old/CherryPy-3.3.0/cherrypy/__init__.py 2014-04-16 23:53:44.0 
+0200
+++ new/CherryPy-3.6.0/cherrypy/__init__.py 2014-09-14 06:05:54.0 
+0200
@@ -56,7 +56,7 @@
 These API's are described in the `CherryPy specification 
https://bitbucket.org/cherrypy/cherrypy/wiki/CherryPySpec`_.
 
 
-__version__ = 3.3.0
+__version__ = 3.6.0
 
 from cherrypy._cpcompat import urljoin as _urljoin, urlencode as _urlencode
 from cherrypy._cpcompat import basestring, unicodestr, set
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-3.3.0/cherrypy/_cpdispatch.py 
new/CherryPy-3.6.0/cherrypy/_cpdispatch.py
--- old/CherryPy-3.3.0/cherrypy/_cpdispatch.py  2014-04-12 15:33:59.0 
+0200
+++ new/CherryPy-3.6.0/cherrypy/_cpdispatch.py  2014-09-14 

commit shorewall for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package shorewall for openSUSE:Factory 
checked in at 2014-12-19 09:38:33

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


Package is shorewall

Changes:

--- /work/SRC/openSUSE:Factory/shorewall/shorewall.changes  2014-12-16 
14:47:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.shorewall.new/shorewall.changes 2014-12-19 
09:37:25.0 +0100
@@ -1,0 +2,18 @@
+Thu Dec 18 00:10:54 UTC 2014 - tog...@opensuse.org
+
+- Update to version 4.6.5.3 For more details see changelog.txt and
+  releasenotes.txt
+
+  * The Shorewall-init scripts were using the incorrect
+variable to set the state directory. Correction provided by
+Roberto Sanchez.
+  * For normal dynamic zones, the 'add' command failed with a
+diagnostic such as:
+
+  ERROR: Zone ast, interface net0 does not have a dynamic host
+  list
+  * When a mark range was used in the marks (tcrules) file, a
+run-time error occurred while attempting to load the generated
+ ruleset. 
+
+---

Old:

  shorewall-4.6.5.2.tar.bz2
  shorewall-core-4.6.5.2.tar.bz2
  shorewall-docs-html-4.6.5.2.tar.bz2
  shorewall-init-4.6.5.2.tar.bz2
  shorewall-lite-4.6.5.2.tar.bz2
  shorewall6-4.6.5.2.tar.bz2
  shorewall6-lite-4.6.5.2.tar.bz2

New:

  shorewall-4.6.5.3.tar.bz2
  shorewall-core-4.6.5.3.tar.bz2
  shorewall-docs-html-4.6.5.3.tar.bz2
  shorewall-init-4.6.5.3.tar.bz2
  shorewall-lite-4.6.5.3.tar.bz2
  shorewall6-4.6.5.3.tar.bz2
  shorewall6-lite-4.6.5.3.tar.bz2



Other differences:
--
++ shorewall.spec ++
--- /var/tmp/diff_new_pack.mtzVau/_old  2014-12-19 09:37:26.0 +0100
+++ /var/tmp/diff_new_pack.mtzVau/_new  2014-12-19 09:37:26.0 +0100
@@ -20,7 +20,7 @@
 %define have_systemd 1
 
 Name:   shorewall
-Version:4.6.5.2
+Version:4.6.5.3
 Release:0
 Summary:Shoreline Firewall is an iptables-based firewall for Linux 
systems
 License:GPL-2.0

++ shorewall-4.6.5.2.tar.bz2 - shorewall-4.6.5.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-4.6.5.2/Perl/Shorewall/Config.pm 
new/shorewall-4.6.5.3/Perl/Shorewall/Config.pm
--- old/shorewall-4.6.5.2/Perl/Shorewall/Config.pm  2014-11-17 
16:17:15.0 +0100
+++ new/shorewall-4.6.5.3/Perl/Shorewall/Config.pm  2014-12-17 
04:10:04.0 +0100
@@ -711,7 +711,7 @@
TC_SCRIPT   = '',
EXPORT  = 0,
KLUDGEFREE  = '',
-   VERSION = 4.6.5.2,
+   VERSION = 4.6.5.3,
CAPVERSION  = 40600 ,
  );
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-4.6.5.2/Perl/Shorewall/Tc.pm 
new/shorewall-4.6.5.3/Perl/Shorewall/Tc.pm
--- old/shorewall-4.6.5.2/Perl/Shorewall/Tc.pm  2014-11-17 16:17:15.0 
+0100
+++ new/shorewall-4.6.5.3/Perl/Shorewall/Tc.pm  2014-12-17 04:10:04.0 
+0100
@@ -260,6 +260,8 @@
$chain ||= $designator;
$chain ||= $default_chain;
 
+   $option ||= ( $and_or eq '|' ? '--or-mark' : $and_or ? '--and-mark' 
: '--set-mark' );
+
my $chainref = ensure_chain( 'mangle', $chain = $chainnames{$chain} 
);
 
for ( my $packet = 0; $packet  $marks; $packet++, $markval += 
$increment ) {
@@ -763,7 +765,7 @@
 
for ( @state ) {
fatal_error Invalid STATE ($_)   unless exists $state{$_};
-   fatal_error Duplicate STATE ($_) if $state{$_};
+   fatal_error Duplicate STATE ($_) if $state{$_}++;
}
 } else {
$state = 'ALL';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-4.6.5.2/changelog.txt 
new/shorewall-4.6.5.3/changelog.txt
--- old/shorewall-4.6.5.2/changelog.txt 2014-11-17 16:17:15.0 +0100
+++ new/shorewall-4.6.5.3/changelog.txt 2014-12-17 04:10:03.0 +0100
@@ -1,4 +1,15 @@
-Changes in 4.6.5.1
+Changes in 4.6.5.3
+
+1)  Update release documents.
+
+2)  Correct shorewall-init scripts to use VARLIB rather than VARDIR
+(Roberto Sanchez)
+
+3)  Correct handling of dynamic zones
+
+4)  Correct handling of mark ranges
+
+Changes in 4.6.5.2
 
 1)  Update release documents.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-4.6.5.2/configure 
new/shorewall-4.6.5.3/configure
--- old/shorewall-4.6.5.2/configure 2014-11-17 

commit exaile for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package exaile for openSUSE:Factory checked 
in at 2014-12-19 09:38:54

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


Package is exaile

Changes:

--- /work/SRC/openSUSE:Factory/exaile/exaile.changes2014-11-11 
01:11:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.exaile.new/exaile.changes   2014-12-19 
09:37:51.0 +0100
@@ -1,0 +2,7 @@
+Thu Dec 18 21:25:12 UTC 2014 - sor.ale...@meowr.ru
+
+- Update to 3.4.3:
+  * Smart Playlists with criteria involving timestamps now work.
+  * Significant translations update.
+
+---

Old:

  3.4.2.tar.gz

New:

  exaile-3.4.3.tar.gz



Other differences:
--
++ exaile.spec ++
--- /var/tmp/diff_new_pack.hRxcmf/_old  2014-12-19 09:37:53.0 +0100
+++ /var/tmp/diff_new_pack.hRxcmf/_new  2014-12-19 09:37:53.0 +0100
@@ -18,13 +18,13 @@
 
 Name:   exaile
 %define _name   Exaile
-Version:3.4.2
+Version:3.4.3
 Release:0
 Summary:Gtk2 Amarok-like music player
 License:GPL-3.0+
 Group:  Productivity/Multimedia/Sound/Players
 Url:http://exaile.org/
-Source: https://github.com/exaile-dev/exaile/archive/%{version}.tar.gz
+Source: 
https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  help2man

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



commit python3-pandas for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2014-12-19 09:38:46

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


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2014-11-10 17:29:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2014-12-19 09:37:41.0 +0100
@@ -1,0 +2,176 @@
+Tue Dec 16 05:24:44 UTC 2014 - a...@gmx.de
+
+- update to version 0.15.2:
+  * API changes:
+- Indexing in MultiIndex beyond lex-sort depth is now supported,
+  though a lexically sorted index will have a better
+  performance. (GH2646)
+- Bug in unique of Series with category dtype, which returned all
+  categories regardless whether they were used or not (see
+  GH8559 for the discussion). Previous behaviour was to return all
+  categories.
+- Series.all and Series.any now support the level and skipna
+  parameters. Series.all, Series.any, Index.all, and Index.any no
+  longer support the out and keepdims parameters, which existed
+  for compatibility with ndarray. Various index types no longer
+  support the all and any aggregation functions and will now raise
+  TypeError. (GH8302).
+- Allow equality comparisons of Series with a categorical dtype
+  and object dtype; previously these would raise TypeError
+  (GH8938)
+- Bug in NDFrame: conflicting attribute/column names now behave
+  consistently between getting and setting. Previously, when both
+  a column and attribute named y existed, data.y would return the
+  attribute, while data.y = z would update the column (GH8994)
+- Timestamp('now') is now equivalent to Timestamp.now() in that it
+  returns the local time rather than UTC. Also, Timestamp('today')
+  is now equivalent to Timestamp.today() and both have tz as a
+  possible argument. (GH9000)
+- Fix negative step support for label-based slices (GH8753)
+  * Enhancements:
+- Added ability to export Categorical data to Stata (GH8633). See
+  here for limitations of categorical variables exported to Stata
+  data files.
+- Added flag order_categoricals to StataReader and read_stata to
+  select whether to order imported categorical data (GH8836). See
+  here for more information on importing categorical variables
+  from Stata data files.
+- Added ability to export Categorical data to to/from HDF5
+  (GH7621). Queries work the same as if it was an object
+  array. However, the category dtyped data is stored in a more
+  efficient manner. See here for an example and caveats
+  w.r.t. prior versions of pandas.
+- Added support for searchsorted() on Categorical class (GH8420).
+- Added the ability to specify the SQL type of columns when
+  writing a DataFrame to a database (GH8778). For example,
+  specifying to use the sqlalchemy String type instead of the
+  default Text type for string columns.
+- Series.all and Series.any now support the level and skipna
+  parameters (GH8302).
+- Panel now supports the all and any aggregation
+  functions. (GH8302).
+- Added support for utcfromtimestamp(), fromtimestamp(), and
+  combine() on Timestamp class (GH5351).
+- Added Google Analytics (pandas.io.ga) basic documentation
+  (GH8835).
+- Timedelta arithmetic returns NotImplemented in unknown cases,
+  allowing extensions by custom classes (GH8813).
+- Timedelta now supports arithemtic with numpy.ndarray objects of
+  the appropriate dtype (numpy 1.8 or newer only) (GH8884).
+- Added Timedelta.to_timedelta64() method to the public API
+  (GH8884).
+- Added gbq.generate_bq_schema() function to the gbq module
+  (GH8325).
+- Series now works with map objects the same way as generators
+  (GH8909).
+- Added context manager to HDFStore for automatic closing
+  (GH8791).
+- to_datetime gains an exact keyword to allow for a format to not
+  require an exact match for a provided format string (if its
+  False). exact defaults to True (meaning that exact matching is
+  still the default) (GH8904)
+- Added axvlines boolean option to parallel_coordinates plot
+  function, determines whether vertical lines will be printed,
+  default is True
+- Added ability to read table footers to read_html (GH8552).
+- to_sql now infers datatypes of non-NA values for columns that
+  contain NA values and have dtype object (GH8778).
+  * Performance:
+- Reduce memory usage when skiprows is an integer in read_csv
+  (GH8681)
+- Performance boost for to_datetime 

commit aria2 for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package aria2 for openSUSE:Factory checked 
in at 2014-12-19 09:38:31

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


Package is aria2

Changes:

--- /work/SRC/openSUSE:Factory/aria2/aria2.changes  2014-07-12 
17:14:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.aria2.new/aria2.changes 2014-12-19 
09:37:20.0 +0100
@@ -1,0 +2,22 @@
+Wed Dec 17 10:12:43 UTC 2014 - p.drou...@gmail.com
+
+- Update to version 1.18.8
+  + WinTLS: Fix abrupt connection closing and closing in general.
+  + Fixes GH-277
+  + LibsslTLSSession: Treat 0 from readData as EOF
+  + Enable dynamicbase and nxcompat in Windows binaries
+  + Fix crash in OpenedFileCounter::ensureMaxOpenFileLimit()
+  + The crash happens if PieceStorage and/or DiskAdaptor are not 
+initialized in one of active RequestGroups.
+  + mingw32: Fix bug that aria2 does not read piped stdin
+  + Fix std::length_error when no_proxy is used
+  + This is regression introduced in 8cada497.
+  + Try to set sane limits for RLIMIT_NO_FILE
+E.g. on OSX the default is 256, which isn't exactly compatible
+with torrent downloads.
+Closes GH-257
+  + Delay auth failures instead of PBKDF2
+Closes GH-256
+- Split out language files and recommend the subpackage 
+
+---

Old:

  aria2-1.18.5.tar.xz

New:

  aria2-1.18.8.tar.xz



Other differences:
--
++ aria2.spec ++
--- /var/tmp/diff_new_pack.Z45euG/_old  2014-12-19 09:37:21.0 +0100
+++ /var/tmp/diff_new_pack.Z45euG/_new  2014-12-19 09:37:21.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with make_check
 
 Name:   aria2
-Version:1.18.5
+Version:1.18.8
 Release:0
 Summary:Parallelizing Multi-Protocol Utility for Downloading Files
 License:SUSE-GPL-2.0-with-openssl-exception
@@ -45,6 +45,7 @@
 %if 0%{?suse_version} = 1130
 Recommends: ca-certificates
 %endif
+Recommends: %{name}-lang
 
 %description
 aria2 is a utility for downloading files. It has completely new design
@@ -57,6 +58,8 @@
 
 aria2 currently supports HTTP, FTP, and BitTorrent.
 
+%lang_package
+
 %prep
 %setup -q
 
@@ -85,11 +88,12 @@
 make check
 %endif
 
-%files -f aria2.lang
+%files
 %defattr(-,root,root)
 %doc AUTHORS ChangeLog COPYING NEWS
 %{_bindir}/aria2c
 %config %{_sysconfdir}/bash_completion.d/aria2c
 %{_mandir}/man1/aria2c.1*
 
+%files lang -f %{name}.lang
 %changelog

++ aria2-1.18.5.tar.xz - aria2-1.18.8.tar.xz ++
 128791 lines of diff (skipped)

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



commit subversion for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package subversion for openSUSE:Factory 
checked in at 2014-12-19 09:38:51

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


Package is subversion

Changes:

--- /work/SRC/openSUSE:Factory/subversion/subversion.changes2014-11-24 
11:09:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.subversion.new/subversion.changes   
2014-12-19 09:37:47.0 +0100
@@ -1,0 +2,34 @@
+Thu Dec 18 14:33:55 UTC 2014 - andreas.stie...@gmx.de
+
+- Apache Subversion 1.8.11
+- This release addresses two security issues: [boo#909935]
+  * CVE-2014-3580: mod_dav_svn DoS from invalid REPORT requests.
+  * CVE-2014-8108: mod_dav_svn DoS from use of invalid transaction
+names.
+- Client-side bugfixes:
+  * checkout/update: fix file externals failing to follow history
+and subsequently silently failing
+  * patch: don't skip targets in valid --git difs
+  * diff: make property output in diffs stable
+  * diff: fix diff of local copied directory with props
+  * diff: fix changelist filter for repos-WC and WC-WC
+  * remove broken conflict resolver menu options that always error
+out
+  * improve gpg-agent support
+  * fix crash in eclipse IDE with GNOME Keyring
+  * fix externals shadowing a versioned directory
+  * fix problems working on unix file systems that don't support
+permissions
+  * upgrade: keep external registrations
+  * cleanup: iprove performance of recorded timestamp fixups
+  * translation updates for German
+- Server-side bugfixes:
+  * disable revprop caching feature due to cache invalidation
+problems
+  * skip generating uniquifiers if rep-sharing is not supported
+  * mod_dav_svn: reject requests with missing repository paths
+  * mod_dav_svn: reject requests with invalid virtual transaction
+names
+  * mod_dav_svn: avoid unneeded memory growth in resource walking
+
+---

Old:

  subversion-1.8.10.tar.bz2
  subversion-1.8.10.tar.bz2.asc

New:

  subversion-1.8.11.tar.bz2
  subversion-1.8.11.tar.bz2.asc



Other differences:
--
++ subversion.spec ++
--- /var/tmp/diff_new_pack.AIMRUS/_old  2014-12-19 09:37:49.0 +0100
+++ /var/tmp/diff_new_pack.AIMRUS/_new  2014-12-19 09:37:49.0 +0100
@@ -36,7 +36,7 @@
 %bcond_without python_ctypes
 %bcond_withall_regression_tests
 Name:   subversion
-Version:1.8.10
+Version:1.8.11
 Release:0
 Summary:Subversion version control system
 License:Apache-2.0


++ subversion-1.8.10.tar.bz2 - subversion-1.8.11.tar.bz2 ++
/work/SRC/openSUSE:Factory/subversion/subversion-1.8.10.tar.bz2 
/work/SRC/openSUSE:Factory/.subversion.new/subversion-1.8.11.tar.bz2 differ: 
char 11, line 1

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



commit patterns-openSUSE for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2014-12-19 09:39:50

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  
2014-12-03 22:53:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2014-12-19 09:38:40.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec  9 14:02:35 UTC 2014 - dims...@opensuse.org
+
+- Reorder patterns in the Desktop Environment group: GNOME. KDE4,
+  Plasma5, XFCE, LXDE, Enlightment, MATE, Fonts, X Windows System.
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.pMtjHd/_old  2014-12-19 09:38:41.0 +0100
+++ /var/tmp/diff_new_pack.pMtjHd/_new  2014-12-19 09:38:41.0 +0100
@@ -1457,7 +1457,7 @@
 Group:  Metapackages
 Provides:   pattern() = e17
 Provides:   pattern-icon() = pattern-e17
-Provides:   pattern-order() = 1350
+Provides:   pattern-order() = 1500
 Provides:   pattern-visible()
 Requires:   pattern() = x11
 Recommends: pattern() = multimedia
@@ -1809,7 +1809,7 @@
 Group:  Metapackages
 Provides:   pattern() = fonts
 Provides:   pattern-icon() = yast-x11
-Provides:   pattern-order() = 1740
+Provides:   pattern-order() = 1700
 Provides:   pattern-visible()
 Recommends: pattern() = fonts_opt
 # from data/FONTS
@@ -1916,7 +1916,7 @@
 Group:  Metapackages
 Provides:   pattern() = gnome
 Provides:   pattern-icon() = pattern-gnome
-Provides:   pattern-order() = 1400
+Provides:   pattern-order() = 1010
 Provides:   pattern-visible()
 Requires:   pattern() = gnome_basis
 Recommends: pattern() = games
@@ -2035,7 +2035,7 @@
 Group:  Metapackages
 Provides:   pattern() = gnome_basis
 Provides:   pattern-icon() = pattern-gnome
-Provides:   pattern-order() = 1440
+Provides:   pattern-order() = 1000
 Provides:   pattern-visible()
 Requires:   pattern() = basesystem
 Requires:   pattern() = x11
@@ -2614,7 +2614,7 @@
 Provides:   patterns-openSUSE-kde4 = %{version}
 Provides:   pattern() = kde
 Provides:   pattern-icon() = pattern-kde4
-Provides:   pattern-order() = 1520
+Provides:   pattern-order() = 1110
 Provides:   pattern-visible()
 Obsoletes:  patterns-openSUSE-kde4  %{version}
 Requires:   pattern() = kde4_basis
@@ -2676,7 +2676,7 @@
 Group:  Metapackages
 Provides:   pattern() = kde4_basis
 Provides:   pattern-icon() = pattern-kde4
-Provides:   pattern-order() = 1600
+Provides:   pattern-order() = 1100
 Provides:   pattern-visible()
 Requires:   pattern() = basesystem
 Requires:   pattern() = x11
@@ -3527,7 +3527,7 @@
 Group:  Metapackages
 Provides:   pattern() = lxde
 Provides:   pattern-icon() = pattern-lxde
-Provides:   pattern-order() = 1280
+Provides:   pattern-order() = 1410
 Provides:   pattern-visible()
 Requires:   pattern() = x11
 Recommends: pattern() = lxde_office
@@ -3724,7 +3724,7 @@
 Group:  Metapackages
 Provides:   pattern() = mate
 Provides:   pattern-icon() = pattern-mate
-Provides:   pattern-order() = 1410
+Provides:   pattern-order() = 1610
 Provides:   pattern-visible()
 Requires:   pattern() = mate_basis
 Recommends: pattern() = games
@@ -3832,7 +3832,7 @@
 Group:  Metapackages
 Provides:   pattern() = mate_basis
 Provides:   pattern-icon() = pattern-mate
-Provides:   pattern-order() = 1460
+Provides:   pattern-order() = 1600
 Provides:   pattern-visible()
 Requires:   pattern() = basesystem
 Requires:   pattern() = x11
@@ -4352,7 +4352,7 @@
 Group:  Metapackages
 Provides:   pattern() = plasma5_basis
 Provides:   pattern-icon() = pattern-kde4
-Provides:   pattern-order() = 1610
+Provides:   pattern-order() = 1200
 Provides:   pattern-visible()
 Requires:   pattern() = basesystem
 Requires:   pattern() = x11
@@ -6612,7 +6612,7 @@
 Group:  Metapackages
 Provides:   pattern() = x11
 Provides:   pattern-icon() = yast-x11
-Provides:   pattern-order() = 1700
+Provides:   pattern-order() = 1800
 Provides:   pattern-visible()
 Requires:   pattern() = basesystem
 Requires:   pattern() = enhanced_base
@@ -6796,7 +6796,7 @@
 Group:  Metapackages
 Provides:   pattern() = xfce
 Provides:   pattern-icon() = pattern-xfce

commit upower for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package upower for openSUSE:Factory checked 
in at 2014-12-19 09:39:51

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


Package is upower

Changes:

--- /work/SRC/openSUSE:Factory/upower/upower.changes2014-08-25 
11:54:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.upower.new/upower.changes   2014-12-19 
09:38:41.0 +0100
@@ -1,0 +2,10 @@
+Thu Dec  4 11:54:02 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to latest git head, to resolve various memleaks,
+  (fdo#82659, boo#904520)
+- Added autoconf, automake and libtool BuildRequires, needed with
+  git packaging
+- Comment out the full Source URL, the updated tarball is not
+  available at fdo URL
+
+---

Old:

  upower-0.99.1.tar.xz

New:

  upower-0.99.2~git20141204.tar.xz



Other differences:
--
++ upower.spec ++
--- /var/tmp/diff_new_pack.xqP3EO/_old  2014-12-19 09:38:43.0 +0100
+++ /var/tmp/diff_new_pack.xqP3EO/_new  2014-12-19 09:38:43.0 +0100
@@ -23,16 +23,20 @@
 Summary:Power Device Enumeration Framework
 License:GPL-2.0+
 Group:  System/Daemons
-Version:0.99.1
+Version:0.99.2~git20141204
 Release:0
 Url:http://upower.freedesktop.org/
-Source: 
http://upower.freedesktop.org/releases/%{name}-%{version}.tar.xz
+#Source: 
http://upower.freedesktop.org/releases/%{name}-%{version}.tar.xz
+Source: %{name}-%{version}.tar.xz
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  gobject-introspection-devel = 0.9.9
 BuildRequires:  gtk-doc = 1.11
 BuildRequires:  intltool
 BuildRequires:  libgudev-1_0-devel
 BuildRequires:  libimobiledevice-devel
+BuildRequires:  libtool
 BuildRequires:  libusb-devel
 BuildRequires:  pkgconfig(systemd)
 BuildRequires:  pkgconfig(udev)
@@ -97,6 +101,7 @@
 
 %build
 export V=1
+sh autogen.sh
 %configure\
   --disable-static \
   --libexecdir=%{_libexecdir}/upower \

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



commit tracker for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package tracker for openSUSE:Factory checked 
in at 2014-12-19 09:39:56

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


Package is tracker

Changes:

--- /work/SRC/openSUSE:Factory/tracker/tracker-extras.changes   2014-11-18 
22:44:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.tracker.new/tracker-extras.changes  
2014-12-19 09:38:45.0 +0100
@@ -1,0 +2,17 @@
+Wed Dec 10 11:41:36 UTC 2014 - dims...@opensuse.org
+
+- Update to version 1.2.5:
+  + tracker-extract:
+- Fixed potential use of uninitialised hash table in
+  persistence_invalidate().
+- Fixed possible invalid memory read/write in
+  tracker_keywords_parse().
+- Fixed memory leak of MediaArt object for TrackerExtractInfo.
+  + libtracker-fts:
+- Make property list per-thread data to fix uninitialisation
+  issues.
+- Fixed compilation errors when --disable-tracker-fts is used.
+  + Bugs fixed: bgo#741141, bgo#733536, bgo#740268, bgo#739149,
+rh#1133042.
+
+---
tracker.changes: same change

Old:

  tracker-1.2.4.tar.xz

New:

  tracker-1.2.5.tar.xz



Other differences:
--
++ tracker-extras.spec ++
--- /var/tmp/diff_new_pack.dBigrr/_old  2014-12-19 09:38:47.0 +0100
+++ /var/tmp/diff_new_pack.dBigrr/_new  2014-12-19 09:38:47.0 +0100
@@ -45,7 +45,7 @@
 # Do not edit this auto generated file! Edit tracker.spec.
 Name:   tracker-extras
 %define _name   tracker
-Version:1.2.4
+Version:1.2.5
 Release:0
 %define TrackerAPI1.0
 %define RPMTrackerAPI 1_0

++ tracker.spec ++
--- /var/tmp/diff_new_pack.dBigrr/_old  2014-12-19 09:38:47.0 +0100
+++ /var/tmp/diff_new_pack.dBigrr/_new  2014-12-19 09:38:47.0 +0100
@@ -44,7 +44,7 @@
 
 Name:   tracker
 %define _name   tracker
-Version:1.2.4
+Version:1.2.5
 Release:0
 %define TrackerAPI1.0
 %define RPMTrackerAPI 1_0

++ tracker-1.2.4.tar.xz - tracker-1.2.5.tar.xz ++
 4242 lines of diff (skipped)

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



commit PackageKit for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package PackageKit for openSUSE:Factory 
checked in at 2014-12-19 09:39:53

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


Package is PackageKit

Changes:

--- /work/SRC/openSUSE:Factory/PackageKit/PackageKit.changes2014-11-28 
08:46:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.PackageKit.new/PackageKit.changes   
2014-12-19 09:38:43.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov 22 17:39:00 UTC 2014 - Led led...@gmail.com
+
+- fix using 'echo' command in search-name.sh script
+- add patches:
+  * PackageKit-1.0.1-fix-bashisms.patch
+
+---

New:

  PackageKit-1.0.1-fix-bashisms.patch



Other differences:
--
++ PackageKit.spec ++
--- /var/tmp/diff_new_pack.ktx3Ao/_old  2014-12-19 09:38:44.0 +0100
+++ /var/tmp/diff_new_pack.ktx3Ao/_new  2014-12-19 09:38:44.0 +0100
@@ -34,6 +34,7 @@
 Patch1: 0001-Change-the-configuration-of-the-cron-script-to-a-sys.patch
 # PATCH-FIX-UPSTREAM PackageKit-dbus-location.patch bnc#829944 
dims...@opensuse.org -- Look for dbus socket in /run instead of /var/run. Sent 
to upstream.
 Patch3: PackageKit-dbus-location.patch
+Patch4: PackageKit-1.0.1-fix-bashisms.patch
 BuildRequires:  NetworkManager-devel
 BuildRequires:  automake
 BuildRequires:  docbook-utils
@@ -232,6 +233,7 @@
 %setup -q
 %patch1 -p1
 %patch3 -p1
+%patch4 -p1
 translation-update-upstream
 
 %build

++ PackageKit-1.0.1-fix-bashisms.patch ++
diff -Ndur PackageKit-1.0.1/backends/test/helpers/search-name.sh 
PackageKit-1.0.1-fix-bashisms/backends/test/helpers/search-name.sh
--- PackageKit-1.0.1/backends/test/helpers/search-name.sh   2014-09-09 
19:45:45.0 +0300
+++ PackageKit-1.0.1-fix-bashisms/backends/test/helpers/search-name.sh  
2014-11-16 23:31:29.322207783 +0200
@@ -9,17 +9,16 @@
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 
-echo -e no-percentage-updates
+echo no-percentage-updates
 sleep 1
-echo -e percentage\t10
-echo -e status\tquery
+echo percentage   10
+echo status   query
 sleep 1
-echo -e percentage\t30
-echo -e package\tavailable\tglib2;2.14.0;i386;fedora\tThe GLib library
+echo percentage   30
+echo package  available   glib2;2.14.0;i386;fedoraThe GLib 
library
 sleep 1
-echo -e percentage\t70
-echo -e package\tinstalled\tgtk2;gtk2-2.11.6-6.fc8;i386;fedora\tGTK+ 
Libraries for GIMP
+echo percentage   70
+echo package  installed   gtk2;gtk2-2.11.6-6.fc8;i386;fedora  GTK+ 
Libraries for GIMP
 sleep 1
-echo -e percentage\t100
+echo percentage   100
 exit 0
-
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libyaml for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package libyaml for openSUSE:Factory checked 
in at 2014-12-19 09:39:57

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


Package is libyaml

Changes:

--- /work/SRC/openSUSE:Factory/libyaml/libyaml.changes  2014-04-01 
11:34:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.libyaml.new/libyaml.changes 2014-12-19 
09:38:49.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec  3 12:49:34 UTC 2014 - jmassaguer...@suse.com
+
+- fix CVE-2014-9130: libyaml: assert failure when processing
+  wrapped strings (bnc#907809)
+
+  CVE-2014-9130.patch contains the fix
+
+---

New:

  CVE-2014-9130.patch



Other differences:
--
++ libyaml.spec ++
--- /var/tmp/diff_new_pack.AHbmE6/_old  2014-12-19 09:38:50.0 +0100
+++ /var/tmp/diff_new_pack.AHbmE6/_new  2014-12-19 09:38:50.0 +0100
@@ -22,6 +22,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pyyaml.org/wiki/LibYAML
 Source: http://pyyaml.org/download/libyaml/yaml-%{version}.tar.gz
+Patch0: CVE-2014-9130.patch 
 BuildRequires:  pkg-config
 Summary:A YAML 1.1 parser and emitter written in C
 License:MIT
@@ -53,6 +54,7 @@
 
 %prep
 %setup -n yaml-%{version}
+%patch0 -p1
 
 %build
 %configure --with-pic --disable-static

++ CVE-2014-9130.patch ++
diff --git a/src/scanner.c b/src/scanner.c
index 88d4fa5..c5f3d2f 100644
--- a/src/scanner.c
+++ b/src/scanner.c
@@ -1110,7 +1110,9 @@ yaml_parser_save_simple_key(yaml_parser_t *parser)
  * line.  Therefore it is always allowed.  But we add a check anyway.
  */
 
-assert(parser-simple_key_allowed || !required);/* Impossible. */
+/* XXX This caused:
+ * 
https://bitbucket.org/xi/libyaml/issue/10/wrapped-strings-cause-assert-failure
+assert(parser-simple_key_allowed || !required); *//* Impossible. */
 
 /*
  * If the current position may start a simple key, save it.

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



commit resource-agents for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package resource-agents for openSUSE:Factory 
checked in at 2014-12-19 09:39:58

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


Package is resource-agents

Changes:

--- /work/SRC/openSUSE:Factory/resource-agents/resource-agents.changes  
2014-12-08 16:56:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.resource-agents.new/resource-agents.changes 
2014-12-19 09:38:50.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec  4 06:50:35 UTC 2014 - lw...@suse.com
+
+- fix fix-sg_persist-devs-required-and-not-defined.patch 
+  to eliminate build warning: script-without-shebang  
+
+---



Other differences:
--
++ fix-sg_persist-devs-required-and-not-defined.patch ++
--- /var/tmp/diff_new_pack.BETWll/_old  2014-12-19 09:38:51.0 +0100
+++ /var/tmp/diff_new_pack.BETWll/_new  2014-12-19 09:38:51.0 +0100
@@ -2,12 +2,7 @@
 ===
 --- resource-agents-3.9.5+git404.orig/heartbeat/sg_persist
 +++ resource-agents-3.9.5+git404/heartbeat/sg_persist
-@@ -1,3 +1,4 @@
-+
- #!/bin/bash
- #
- #
-@@ -114,7 +115,7 @@ Resorce init functions for several sg_pe
+@@ -114,7 +114,7 @@ Resorce init functions for several sg_pe
  content type=string default=/etc/sg_persist.conf/
  /parameter
  
@@ -16,7 +11,7 @@
  longdesc lang=en
  Device list. Shell wildcars are allowed.
  /longdesc
-@@ -261,28 +262,36 @@ sg_persist_init() {
+@@ -261,28 +261,36 @@ sg_persist_init() {
  # default configure file path
  SG_PERSIST_CONF=${OCF_RESKEY_config_file:=/etc/sg_persist.conf}
  
@@ -64,7 +59,7 @@
  ocf_log debug $RESOURCE: DEVS=$DEVS
  ocf_log debug $RESOURCE: REQUIRED_DEVS_NOF=$REQUIRED_DEVS_NOF
  ocf_log debug $RESOURCE: RESERVATION_TYPE=$RESERVATION_TYPE
-@@ -588,7 +597,7 @@ sg_persist_action_monitor() {
+@@ -588,7 +596,7 @@ sg_persist_action_monitor() {
  fi
  
  if [ ${#REGISTERED_DEVS[*]} -eq ${#WORKING_DEVS[*]} ]; then 

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



commit pm-utils for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package pm-utils for openSUSE:Factory 
checked in at 2014-12-19 09:41:24

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


Package is pm-utils

Changes:

--- /work/SRC/openSUSE:Factory/pm-utils/pm-utils.changes2014-11-28 
08:47:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.pm-utils.new/pm-utils.changes   2014-12-19 
09:40:21.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov 29 02:03:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in sleep.d/* scripts
+- add patches:
+  * pm-utils-fix-bashisms.patch
+
+---

New:

  pm-utils-fix-bashisms.patch



Other differences:
--
++ pm-utils.spec ++
--- /var/tmp/diff_new_pack.wziLle/_old  2014-12-19 09:40:22.0 +0100
+++ /var/tmp/diff_new_pack.wziLle/_new  2014-12-19 09:40:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pm-utils
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -35,6 +35,7 @@
 Source1:
http://pm-utils.freedesktop.org/releases/pm-quirks-20100316.tar.bz2
 # PATCH-FIX-OPENSUSE fix-99Zgrub-resume.patch boo#856391 wba...@tmo.at -- fix 
removal of set boot entry on resume in 99Zgrub
 Patch:  fix-99Zgrub-resume.patch
+Patch1: pm-utils-fix-bashisms.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 # hooks requires some external tools
@@ -70,6 +71,7 @@
 %prep
 %setup -n %{name} -a 1
 %patch -p1
+%patch1 -p1
 
 %build
 %{configure} \

++ pm-utils-fix-bashisms.patch ++
diff -Ndur pm-utils/pm/sleep.d/02rtcwake 
pm-utils-fix-bashisms/pm/sleep.d/02rtcwake
--- pm-utils/pm/sleep.d/02rtcwake   2013-10-24 17:28:13.0 +0300
+++ pm-utils-fix-bashisms/pm/sleep.d/02rtcwake  2014-11-29 03:39:14.481291580 
+0200
@@ -18,19 +18,19 @@
 
 rtcwake_config_file=/etc/pm/config.d/rtcwake.config
 
-function start_of_day {
+start_of_day() {
echo `date -d $1 +%D`
 }
 
-function since_epoch {
+since_epoch() {
echo `date -d $1 +%s`
 }
 
-function day_of_week {
+day_of_week() {
echo `date -d $1 +%u`
 }
 
-function isAlarmDow {
+isAlarmDow() {
is=0
for dow in $RTCWAKE_DAYS; do
if test x$dow = x$1; then
@@ -41,7 +41,7 @@
echo $is
 }
 
-function set_alarm
+set_alarm()
 {
# If USER_RTCWAKE_ALLOWED is yes and the user passed in a 
num_seconds_to_sleep variable, then
# we will respect it (and ignore the system config)
diff -Ndur pm-utils/pm/sleep.d/05nfscheck 
pm-utils-fix-bashisms/pm/sleep.d/05nfscheck
--- pm-utils/pm/sleep.d/05nfscheck  2013-10-24 17:28:13.0 +0300
+++ pm-utils-fix-bashisms/pm/sleep.d/05nfscheck 2014-11-29 03:40:01.152288422 
+0200
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 # Abort the hibernation process of there are NFS mounts
 # https://bugzilla.novell.com/show_bug.cgi?id=568132
 # Author Carlos Robinson carlos@opensuse.org
@@ -6,7 +6,7 @@
 . ${PM_FUNCTIONS}
 
 
-function checknfsmount() {
+checknfsmount() {
 [ -n `mount | grep type nfs | grep -v /proc/fs/nfsd` ]
 }
 
diff -Ndur pm-utils/pm/sleep.d/06autofs 
pm-utils-fix-bashisms/pm/sleep.d/06autofs
--- pm-utils/pm/sleep.d/06autofs2013-10-24 17:28:13.0 +0300
+++ pm-utils-fix-bashisms/pm/sleep.d/06autofs   2014-11-29 03:40:12.300287668 
+0200
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 . ${PM_FUNCTIONS}
 
diff -Ndur pm-utils/pm/sleep.d/30s2disk-check 
pm-utils-fix-bashisms/pm/sleep.d/30s2disk-check
--- pm-utils/pm/sleep.d/30s2disk-check  2013-10-24 17:28:13.0 +0300
+++ pm-utils-fix-bashisms/pm/sleep.d/30s2disk-check 2014-11-29 
03:41:14.318283473 +0200
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # Stefan Seyfried, SUSE Linux Products GmbH, 2006
 # mostly taken from the powersave project
@@ -47,9 +47,9 @@
fi
[ $TYPE != partition ]  continue
[ $DEV != $RESUME ]  continue
-   FREE=$[($SIZE-$USED)*1024]  # get free space on DEV
+   FREE=$((($SIZE - $USED) * 1024))  # get free space on DEV
if [ $FREE -lt $IMAGE_SIZE ]; then
-   IMAGE_SIZE=$[$FREE-10*1024*1024]
+   IMAGE_SIZE=$(($FREE - 10 * 1024 * 1024))
fi
 OK=1
break   # we found the partition, no need to look further
diff -Ndur pm-utils/pm/sleep.d/45pcmcia 
pm-utils-fix-bashisms/pm/sleep.d/45pcmcia
--- pm-utils/pm/sleep.d/45pcmcia  

commit installation-images-openSUSE for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2014-12-19 09:41:31

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


Package is installation-images-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2014-11-26 10:35:41.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2014-12-19 09:40:29.0 +0100
@@ -1,0 +2,50 @@
+Tue Dec 11 15:03:53 UTC 2014 - lmue...@suse.com
+
+- Drop bind-libs from BuildRequires as they got separated into single packages.
+
+---
+Thu Dec 11 15:01:55 CET 2014 - snw...@suse.de
+
+- i586: give up on xen-kmp
+
+---
+Thu Dec 11 09:11:11 CET 2014 - snw...@suse.com
+
+- improve git2log to work with sub-branches
+- 14.155
+
+---
+Thu Dec 11 09:06:13 CET 2014 - snw...@suse.com
+
+- Rescue: bind-libs is in fact just a collection of libraries, that are 
automatically required by dependencies.
+- 14.154
+
+---
+Tue Dec  9 14:42:10 UTC 2014 - sch...@suse.de
+
+- No longer exclude valgrind and ltrace on ppc64le and aarch64
+
+---
+Mon Dec  8 12:10:49 CET 2014 - snw...@suse.com
+
+- adjust s390x module config
+- 14.153
+
+---
+Mon Dec  8 10:55:50 CET 2014 - snw...@suse.com
+
+- fix Makefile
+- 14.152
+
+---
+Mon Dec  8 10:50:52 CET 2014 - snw...@suse.com
+
+- aarch64: move kernel and initrd back to boot/aarch64
+- 14.151
+
+---
+Tue Nov 25 14:17:08 CET 2014 - snw...@suse.de
+
+- enable xen on i586 (bnc #906248)
+
+---

Old:

  installation-images-14.150.tar.xz

New:

  installation-images-14.155.tar.xz



Other differences:
--
++ installation-images-openSUSE.spec ++
--- /var/tmp/diff_new_pack.Ou76CA/_old  2014-12-19 09:40:30.0 +0100
+++ /var/tmp/diff_new_pack.Ou76CA/_new  2014-12-19 09:40:30.0 +0100
@@ -33,7 +33,7 @@
 %bcond_without vnc
 %ifarch %ix86
 # FIXME: xen not working on i586
-%bcond_with xen
+%bcond_without xen
 %else
 %bcond_without xen  
 %endif
@@ -58,7 +58,6 @@
 BuildRequires:  arabic-kacst-fonts
 BuildRequires:  audit-libs
 BuildRequires:  bc
-BuildRequires:  bind-libs
 BuildRequires:  bind-utils
 BuildRequires:  blueprint-cursor-theme
 BuildRequires:  btrfsprogs
@@ -224,10 +223,8 @@
 BuildRequires:  usbutils
 BuildRequires:  util-linux
 BuildRequires:  util-linux-systemd
-%ifnarch ppc64le aarch64
 BuildRequires:  ltrace
 BuildRequires:  valgrind
-%endif
 BuildRequires:  skelcd-control-%theme
 BuildRequires:  vim
 BuildRequires:  wget
@@ -268,7 +265,9 @@
 BuildRequires:  tftp
 %if %{with xen}
 BuildRequires:  kernel-xen
+%ifnarch %ix86
 BuildRequires:  xen-kmp-default
+%endif
 %else
 ##BuildIgnore: kernel-xen
 %endif
@@ -361,7 +360,7 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.150
+Version:14.155
 Release:0
 Provides:   installation-images = %version-%release
 Source: installation-images-%{version}.tar.xz

++ installation-images-14.150.tar.xz - installation-images-14.155.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.150/Makefile 
new/installation-images-14.155/Makefile
--- old/installation-images-14.150/Makefile 2014-11-25 13:04:33.0 
+0100
+++ new/installation-images-14.155/Makefile 2014-12-11 09:09:40.0 
+0100
@@ -6,7 +6,7 @@
 GIT2LOG := $(shell if [ -x ./git2log ] ; then echo ./git2log --update ; else 
echo true ; fi)
 GITDEPS := $(shell [ -d .git ]  echo .git/HEAD .git/refs/heads 
.git/refs/tags)
 VERSION := $(shell $(GIT2LOG) --version VERSION ; cat VERSION)
-BRANCH  := $(shell git branch | perl -ne 'print $$_ if s/^\*\s*//')
+BRANCH  := $(shell [ -d .git ]  git branch | perl -ne 'print $$_ if 
s/^\*\s*//')
 PREFIX  := installation-images-$(VERSION)
 
 COMMON_TARGETS  := rescue root root+rescue bind gdb mini-iso-rmlist
@@ -227,6 +227,7 @@
./install.debuginfo
 
 archive: changelog
+  

commit bind for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package bind for openSUSE:Factory checked in 
at 2014-12-19 09:41:28

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


Package is bind

Changes:

--- /work/SRC/openSUSE:Factory/bind/bind.changes2014-09-15 
17:40:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.bind.new/bind.changes   2014-12-19 
09:40:23.0 +0100
@@ -1,0 +2,250 @@
+Thu Dec 11 13:03:30 UTC 2014 - jeng...@inai.de
+
+- Corrections to baselibs.conf
+
+---
+Tue Dec  9 21:45:10 UTC 2014 - lmue...@suse.com
+
+- Update to version 9.10.1-P1
+  - A flaw in delegation handling could be exploited to put named into an
+infinite loop.  This has been addressed by placing limits on the number of
+levels of recursion named will allow (default 7), and the number of
+iterative queries that it will send (default 50) before terminating a
+recursive query (CVE-2014-8500); (bnc#908994).
+The recursion depth limit is configured via the max-recursion-depth
+option, and the query limit via the max-recursion-queries option.
+[RT #37580]
+  - When geoip-directory was reconfigured during named run-time, the
+previously loaded GeoIP data could remain, potentially causing wrong ACLs
+to be used or wrong results to be served based on geolocation
+(CVE-2014-8680). [RT #37720]; (bnc#908995).
+  - Lookups in GeoIP databases that were not loaded could cause an assertion
+failure (CVE-2014-8680). [RT #37679]; (bnc#908995).
+  - The caching of GeoIP lookups did not always handle address families
+correctly, potentially resulting in an assertion failure (CVE-2014-8680).
+[RT #37672]; (bnc#908995).
+
+---
+Sun Dec  7 16:54:03 UTC 2014 - jeng...@inai.de
+
+- Convert some hard PreReq to leaner Requires(pre).
+- Typographical and orthographic fixes to description texts.
+
+---
+Fri Dec 05 19:35:00 UTC 2014 - Led led...@gmail.com
+
+- Fix bashisms in the createNamedConfInclude script.
+- Post scripts: remove '-e' option of 'echo' that may be unsupported
+  in some POSIX-compliant shells.
+
+---
+Fri Dec  5 14:54:53 UTC 2014 - lmue...@suse.com
+
+- Add openssl engines to the lwresd chroot.
+- Add /etc/lwresd.conf with attribute ghost to the list of files.
+- Add /run/lwresd to the list of files of the lwresd package.
+- Shift /run/named from the chroot sub to the main bind package.
+- Drop /proc from the chroot as multi CPU systems work fine even without it.
+
+---
+Thu Dec  4 18:36:41 UTC 2014 - lmue...@suse.com
+
+- Add a versioned dependency when obsoleting packages.
+
+---
+Thu Dec  4 18:15:01 UTC 2014 - lmue...@suse.com
+
+- Remove superfluous obsoletes *-64bit in the ifarch ppc64 case; (bnc#437293).
+
+---
+Wed Dec  3 16:58:24 UTC 2014 - lmue...@suse.com
+
+- Fix gssapi_krb configure time header detection.
+
+---
+Sun Nov 30 13:52:44 UTC 2014 - lmue...@suse.com
+
+- Update root zone (dated Nov 5, 2014).
+
+---
+Sat Nov 29 19:35:53 UTC 2014 - lmue...@suse.com
+
+- Update to version 9.10.1
+  - This release addresses the security flaws described in CVE-2014-3214 and
+CVE-2014-3859.
+- Update to version 9.10.0
+  - DNS Response-rate limiting (DNS RRL), which blunts the impact of
+reflection and amplification attacks, is always compiled in and no longer
+requires a compile-time option to enable it.
+  - An experimental Source Identity Token (SIT) EDNS option is now available.
+  - A new zone file format, map, stores zone data in a
+format that can be mapped directly into memory, allowing
+significantly faster zone loading.
+  - delv (domain entity lookup and validation) is a new tool with dig-like
+semantics for looking up DNS data and performing internal DNSSEC
+validation.
+  - Improved EDNS(0) processing for better resolver performance
+and reliability over slow or lossy connections.
+  - Substantial improvement in response-policy zone (RPZ) performance.  Up to
+32 response-policy zones can be configured with minimal performance loss.
+  - To improve recursive resolver performance, cache records which are still
+being requested by clients can now be automatically refreshed from the
+authoritative server before they expire, reducing or eliminating 

commit sqlite3 for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package sqlite3 for openSUSE:Factory checked 
in at 2014-12-19 09:41:29

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


Package is sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/sqlite3/sqlite3.changes  2014-11-24 
11:14:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.sqlite3.new/sqlite3.changes 2014-12-19 
09:40:26.0 +0100
@@ -1,0 +2,21 @@
+Thu Dec 11 11:11:29 UTC 2014 - andreas.stie...@gmx.de
+
+- SQLite 3.8.7.4:
+  * Bug fix: Add in a mutex that was omitted from the previous
+release.
+
+---
+Sat Dec  6 17:21:43 UTC 2014 - andreas.stie...@gmx.de
+
+- SQLite 3.8.7.3:
+  * Ensure the cached KeyInfo objects (an internal abstraction not
+visible to the application) do not go stale when operating in
+shared cache mode and frequently closing and reopening some
+database connections while leaving other database connections
+on the same shared cache open continuously.
+  * Recognize that any column in the right-hand table of a LEFT
+JOIN can be NULL even if the column has a NOT NULL constraint.
+Do not apply optimizations that assume the column is never
+NULL.
+
+---

Old:

  sqlite-autoconf-3080702.tar.gz
  sqlite-doc-3080702.zip

New:

  sqlite-autoconf-3080704.tar.gz
  sqlite-doc-3080704.zip



Other differences:
--
++ sqlite3.spec ++
--- /var/tmp/diff_new_pack.dIXz0Y/_old  2014-12-19 09:40:28.0 +0100
+++ /var/tmp/diff_new_pack.dIXz0Y/_new  2014-12-19 09:40:28.0 +0100
@@ -21,9 +21,9 @@
 %define oname sqlite
 
 Name:   %pname
-Version:3.8.7.2
+Version:3.8.7.4
 Release:0
-%define tarversion 3080702
+%define tarversion 3080704
 Summary:Embeddable SQL Database Engine
 License:SUSE-Public-Domain
 Group:  Productivity/Databases/Servers

++ sqlite-autoconf-3080702.tar.gz - sqlite-autoconf-3080704.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlite-autoconf-3080702/configure 
new/sqlite-autoconf-3080704/configure
--- old/sqlite-autoconf-3080702/configure   2014-11-19 08:13:54.0 
+0100
+++ new/sqlite-autoconf-3080704/configure   2014-12-09 15:21:04.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for sqlite 3.8.7.2.
+# Generated by GNU Autoconf 2.69 for sqlite 3.8.7.4.
 #
 # Report bugs to http://www.sqlite.org.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='sqlite'
 PACKAGE_TARNAME='sqlite'
-PACKAGE_VERSION='3.8.7.2'
-PACKAGE_STRING='sqlite 3.8.7.2'
+PACKAGE_VERSION='3.8.7.4'
+PACKAGE_STRING='sqlite 3.8.7.4'
 PACKAGE_BUGREPORT='http://www.sqlite.org'
 PACKAGE_URL=''
 
@@ -1313,7 +1313,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures sqlite 3.8.7.2 to adapt to many kinds of systems.
+\`configure' configures sqlite 3.8.7.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1383,7 +1383,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of sqlite 3.8.7.2:;;
+ short | recursive ) echo Configuration of sqlite 3.8.7.4:;;
esac
   cat \_ACEOF
 
@@ -1489,7 +1489,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-sqlite configure 3.8.7.2
+sqlite configure 3.8.7.4
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1813,7 +1813,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by sqlite $as_me 3.8.7.2, which was
+It was created by sqlite $as_me 3.8.7.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2631,7 +2631,7 @@
 
 # Define the identity of the package.
  PACKAGE='sqlite'
- VERSION='3.8.7.2'
+ VERSION='3.8.7.4'
 
 
 cat confdefs.h _ACEOF
@@ -13196,7 +13196,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by sqlite $as_me 3.8.7.2, which was
+This file was extended by sqlite $as_me 3.8.7.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -13253,7 +13253,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 

commit gpgme for openSUSE:Factory

2014-12-19 Thread h_root


binI26WpGBrNO.bin
Description: Binary data


commit firebird for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package firebird for openSUSE:Factory 
checked in at 2014-12-19 09:41:22

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


Package is firebird

Changes:

--- /work/SRC/openSUSE:Factory/firebird/firebird-classic.changes
2014-07-10 09:32:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.firebird.new/firebird-classic.changes   
2014-12-19 09:40:15.0 +0100
@@ -1,0 +2,47 @@
+Sun Dec  7 21:33:46 UTC 2014 - mkube...@suse.cz
+
+- upgrade to upstream version 2.5.4.26821
+  * server crash by malformed packet (bnc#908127, CORE-4029,
+CORE-4030)
+  * various functional fixes
+- removed patches merged into upstream:
+  * Firebird-2.5.2.26539-0-fix-bashisms.patch:
+  * aarch64-support.patch
+  * firebird-2.5.2-CORE-4058.patch
+  * firebird-2.5.2-icu49.patch
+  * firebird-2.5.2-runlevel.patch
+  * firebird-fix-unsigned-char.diff
+  * firebird-s390x-fix_libdir.patch
+  * ppc64-libdir.patch
+- replace remaining patches by git based ones:
+  * firebird-2.5.1-chown.patch
+- allow-creating-buildRoot-as-non-root-user.patch
+  * firebird-2.5.1-config.patch
+- do-not-use-DatabaseAccess-Full-in-default-config.patch
+  * firebird-2.5.1-disable.patch
+- disable-xinetd-service-by-default.patch
+  * firebird-2.5.2-gpidfile.patch
+- fbguard-allow-creating-a-guard-pidfile.patch
+  * firebird-2.5.2-init.patch
+- use-killproc-in-stop-branch-of-SuSE-init-script.patch
+(remaining part not upstreamed)
+  * firebird-2.5.2-isqlalign.patch
+- Fixed-CORE-3431-ISQL-pads-UTF-8-data-incorrectly.patch
+  * firebird-2.5.2-isqllocale.patch
+- isql-fix-output-if-charset-is-different-from-locale.patch
+  * firebird-2.5.2-isqlwidth.patch
+- isql-fix-buffer-overflow-when-set-width-sets-bigger-.patch
+  * firebird-2.5.2-pkgconfig.patch
+- add-pkgconfig-files.patch
+  * m68k-support.patch
+- add-experimental-support-for-m68k-architecture.patch
+- use xz compressed tarball
+
+---
+Mon Nov 17 01:29:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in scripts
+- add patches:
+  * Firebird-2.5.2.26539-0-fix-bashisms.patch
+
+---
--- /work/SRC/openSUSE:Factory/firebird/firebird.changes2014-11-26 
10:32:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.firebird.new/firebird.changes   2014-12-19 
09:40:15.0 +0100
@@ -1,0 +2,40 @@
+Sun Dec  7 21:33:46 UTC 2014 - mkube...@suse.cz
+
+- upgrade to upstream version 2.5.4.26821
+  * server crash by malformed packet (bnc#908127, CORE-4029,
+CORE-4030)
+  * various functional fixes
+- removed patches merged into upstream:
+  * Firebird-2.5.2.26539-0-fix-bashisms.patch:
+  * aarch64-support.patch
+  * firebird-2.5.2-CORE-4058.patch
+  * firebird-2.5.2-icu49.patch
+  * firebird-2.5.2-runlevel.patch
+  * firebird-fix-unsigned-char.diff
+  * firebird-s390x-fix_libdir.patch
+  * ppc64-libdir.patch
+- replace remaining patches by git based ones:
+  * firebird-2.5.1-chown.patch
+- allow-creating-buildRoot-as-non-root-user.patch
+  * firebird-2.5.1-config.patch
+- do-not-use-DatabaseAccess-Full-in-default-config.patch
+  * firebird-2.5.1-disable.patch
+- disable-xinetd-service-by-default.patch
+  * firebird-2.5.2-gpidfile.patch
+- fbguard-allow-creating-a-guard-pidfile.patch
+  * firebird-2.5.2-init.patch
+- use-killproc-in-stop-branch-of-SuSE-init-script.patch
+(remaining part not upstreamed)
+  * firebird-2.5.2-isqlalign.patch
+- Fixed-CORE-3431-ISQL-pads-UTF-8-data-incorrectly.patch
+  * firebird-2.5.2-isqllocale.patch
+- isql-fix-output-if-charset-is-different-from-locale.patch
+  * firebird-2.5.2-isqlwidth.patch
+- isql-fix-buffer-overflow-when-set-width-sets-bigger-.patch
+  * firebird-2.5.2-pkgconfig.patch
+- add-pkgconfig-files.patch
+  * m68k-support.patch
+- add-experimental-support-for-m68k-architecture.patch
+- use xz compressed tarball
+
+---

Old:

  Firebird-2.5.2.26539-0-fix-bashisms.patch
  Firebird-2.5.2.26539-0.tar.bz2
  aarch64-support.patch
  firebird-2.5.1-chown.patch
  firebird-2.5.1-config.patch
  firebird-2.5.1-disable.patch
  firebird-2.5.2-CORE-4058.patch
  firebird-2.5.2-gpidfile.patch
  firebird-2.5.2-icu49.patch
  firebird-2.5.2-init.patch
  firebird-2.5.2-isqlalign.patch
  firebird-2.5.2-isqllocale.patch
  firebird-2.5.2-isqlwidth.patch
  firebird-2.5.2-pkgconfig.patch
  firebird-2.5.2-runlevel.patch
  firebird-fix-unsigned-char.diff
  firebird-s390x-fix_libdir.patch
  m68k-support.patch
  ppc64-libdir.patch

New:

  Firebird-2.5.4.26821-0.tar.xz
  Fixed-CORE-3431-ISQL-pads-UTF-8-data-incorrectly.patch
  

commit perl-Bootloader for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2014-12-19 09:41:24

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


Package is perl-Bootloader

Changes:

--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes  
2014-10-18 09:08:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 
2014-12-19 09:40:20.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec  8 10:56:00 CET 2014 - snw...@suse.com
+
+- Add armv7l support for grub2
+- 0.827
+
+---

Old:

  perl-Bootloader-0.826.tar.xz

New:

  perl-Bootloader-0.827.tar.xz



Other differences:
--
++ perl-Bootloader.spec ++
--- /var/tmp/diff_new_pack.PYN7Bw/_old  2014-12-19 09:40:21.0 +0100
+++ /var/tmp/diff_new_pack.PYN7Bw/_new  2014-12-19 09:40:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Bootloader
-Version:0.826
+Version:0.827
 Release:0
 Requires:   coreutils
 Requires:   perl-base = %{perl_version}

++ perl-Bootloader-0.826.tar.xz - perl-Bootloader-0.827.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.826/VERSION 
new/perl-Bootloader-0.827/VERSION
--- old/perl-Bootloader-0.826/VERSION   2014-10-15 14:40:06.0 +0200
+++ new/perl-Bootloader-0.827/VERSION   2014-12-08 10:53:53.0 +0100
@@ -1 +1 @@
-0.826
+0.827
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.826/changelog 
new/perl-Bootloader-0.827/changelog
--- old/perl-Bootloader-0.826/changelog 2014-10-15 14:40:06.0 +0200
+++ new/perl-Bootloader-0.827/changelog 2014-12-08 10:53:53.0 +0100
@@ -1,3 +1,6 @@
+2014-12-07:0.827
+   - Add armv7l support for grub2
+
 2014-10-15:0.826
- prepare for jenkins auto-submission
 
@@ -258,3 +261,1448 @@
- grub2-efi-module.patch: add new grub2-efi module to support booting 
on UEFI firmware.
- grub2-skip-fs-probe-for-extended-partition.patch (bnc #750897)
 
+2012-03-30:0.6.0
+   - update changes file
+   - adjust license in spec template
+   - add basic grub2 support
+
+2011-10-14:0.5.22
+   - new version
+   - add basic grub2 support to update-bootloader
+   - support more devices in fallback heuristics
+
+2011-09-21:0.5.21
+   - new version
+   - also log udevinfo
+
+2011-09-19:0.5.20
+   - new version
+   - add warning to log if udev is missing
+
+2011-09-02:0.5.19
+   - use UnixDev2GrubDev() from sle11-sp2
+   - fix packaging
+   - fix packaging
+
+2011-08-02:0.5.18
+   - release test package
+   - fix tests after merge
+   - remove unneeded script ( SLE only )
+   - fix small issues in packaging
+   - adapt package target for git
+ add snwint fixes which was not in git
+   - version dump
+   - add test for finding fitting section
+   - change behavior during kernel update to first try use arameters from 
fitting section and have sysconfig only as failsafe (FATE#310946)
+   - prepare for use perl-Bootloader for other boot management tools (bnc 
#672471#c8)
+   - ignore error if we fail to open md devices
+   - quoting
+   - added postinstall script
+   - add script for fixing xen issue intruduced in 0.4.89.21 (bnc #692007, 
bnc #698564, bnc #699839)
+   - don't resolve symlinks more often than necessary (bnc #698564)
+   - call blkdev with '-l' option (bnc #693466, bnc #597399)
+   - rework old device-mapper check (from bnc #393229) and apply also to 
multipath setups (bnc #692127)
+   - fix conversion function from unix disk names to grub names (bnc 
#688418)
+   - increased version, updated changelog
+   - backport fix for removing kernel with symlink in path (bnc #680775)
+   - version bump
+   - fix malforming xen append (bnc #657911)
+   - DM_NAME could contain also partition number in some case (bnc #590637)
+   - remove incorrect workaround for geometry of multipath
+   - dump version
+   - fix translation of dm devices which is in md raid (bnc #597812)
+   - release 0.4.89.17
+   - fix persistent names for multipath (bnc #597812)
+   - chomp output of readlink (bnc #597812)
+   - release package
+   - fix adding failsafe options to menu (never add it as first otherwise 
it is used as default boot) (bnc #600847)
+   - release
+   - extend partition detection by ext_range, so also mdraid 

commit libwnck for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package libwnck for openSUSE:Factory checked 
in at 2014-12-19 09:41:18

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


Package is libwnck

Changes:

--- /work/SRC/openSUSE:Factory/libwnck/libwnck.changes  2014-09-30 
19:36:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.libwnck.new/libwnck.changes 2014-12-19 
09:40:07.0 +0100
@@ -1,0 +2,15 @@
+Mon Nov 24 12:53:14 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.14.0:
+  + Fixes:
+- xutils:
+  . Support non-standard depths for icon pixmaps.
+  . Correctly link against libXrender.
+- pager: don't return invalid workspace rect.
+- tasklist:
+  . Fix missing icon in tasklist button.
+  . Don't use deprecated GtkImageMenuItem.
+- window-action-menu: don't use deprecated GtkImageMenuItem.
+  + Updated translations.
+
+---

Old:

  libwnck-3.4.9.tar.xz

New:

  libwnck-3.14.0.tar.xz



Other differences:
--
++ libwnck.spec ++
--- /var/tmp/diff_new_pack.o2GHdp/_old  2014-12-19 09:40:09.0 +0100
+++ /var/tmp/diff_new_pack.o2GHdp/_new  2014-12-19 09:40:09.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libwnck
-Version:3.4.9
+Version:3.14.0
 Release:0
 # WARNING: After changing versions please call Re or rpmbuild to auto-update 
spec file:
 #%(sh %{_sourcedir}/%{name}_spec-update.sh %{_sourcedir} %{name} libwnck-1)
@@ -25,7 +25,7 @@
 Summary:Window Navigator Construction Kit (Library Package)
 License:LGPL-2.1+
 Group:  Development/Libraries/GNOME
-Source: 
http://download.gnome.org/sources/libwnck/3.4/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/libwnck/3.14/%{name}-%{version}.tar.xz
 Source1:%{name}_spec-update.sh
 Source99:   baselibs.conf
 BuildRequires:  fdupes

++ libwnck-3.4.9.tar.xz - libwnck-3.14.0.tar.xz ++
 4192 lines of diff (skipped)

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



commit flash-player for openSUSE:Factory:NonFree

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:Factory:NonFree checked in at 2014-12-19 09:59:17

Comparing /work/SRC/openSUSE:Factory:NonFree/flash-player (Old)
 and  /work/SRC/openSUSE:Factory:NonFree/.flash-player.new (New)


Package is flash-player

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/flash-player/flash-player.changes
2014-11-29 14:25:20.0 +0100
+++ /work/SRC/openSUSE:Factory:NonFree/.flash-player.new/flash-player.changes   
2014-12-19 09:58:07.0 +0100
@@ -1,0 +2,7 @@
+Thu Dec 11 15:39:55 UTC 2014 - sbra...@suse.com
+
+- Security update to 11.2.202.425 (bsc#909219):
+  * APSB14-27, CVE-2014-0580, CVE-2014-0587, CVE-2014-8443,
+CVE-2014-9162, CVE-2014-9163, CVE-2014-9164
+
+---

Old:

  flashplayer_11.2.202.424_sa.i386.tar.gz
  install_flash_player_11.2.202.424_linux.i386.tar.gz
  install_flash_player_11.2.202.424_linux.x86_64.tar.gz

New:

  flashplayer_11.2.202.425_sa.i386.tar.gz
  install_flash_player_11.2.202.425_linux.i386.tar.gz
  install_flash_player_11.2.202.425_linux.x86_64.tar.gz



Other differences:
--
++ flash-player.spec ++
--- /var/tmp/diff_new_pack.iQT1KX/_old  2014-12-19 09:58:09.0 +0100
+++ /var/tmp/diff_new_pack.iQT1KX/_new  2014-12-19 09:58:09.0 +0100
@@ -19,7 +19,7 @@
 %define build_standalone 1
 
 Name:   flash-player
-Version:11.2.202.424
+Version:11.2.202.425
 Release:0
 Summary:Adobe Flash Plugin and Standalone Player
 License:SUSE-NonFree


++ flashplayer_11.2.202.424_sa.i386.tar.gz - 
flashplayer_11.2.202.425_sa.i386.tar.gz ++
Files old/flashplayer and new/flashplayer differ

++ install_flash_player_11.2.202.424_linux.i386.tar.gz - 
install_flash_player_11.2.202.425_linux.i386.tar.gz ++
/work/SRC/openSUSE:Factory:NonFree/flash-player/install_flash_player_11.2.202.424_linux.i386.tar.gz
 
/work/SRC/openSUSE:Factory:NonFree/.flash-player.new/install_flash_player_11.2.202.425_linux.i386.tar.gz
 differ: char 5, line 1

++ install_flash_player_11.2.202.424_linux.x86_64.tar.gz - 
install_flash_player_11.2.202.425_linux.x86_64.tar.gz ++
/work/SRC/openSUSE:Factory:NonFree/flash-player/install_flash_player_11.2.202.424_linux.x86_64.tar.gz
 
/work/SRC/openSUSE:Factory:NonFree/.flash-player.new/install_flash_player_11.2.202.425_linux.x86_64.tar.gz
 differ: char 5, line 1

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



commit unrar for openSUSE:Factory:NonFree

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package unrar for openSUSE:Factory:NonFree 
checked in at 2014-12-19 09:59:33

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


Package is unrar

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/unrar/unrar.changes  2014-11-06 
18:07:58.0 +0100
+++ /work/SRC/openSUSE:Factory:NonFree/.unrar.new/unrar.changes 2014-12-19 
09:58:22.0 +0100
@@ -1,0 +2,11 @@
+Wed Dec  3 18:44:49 UTC 2014 - lazy.k...@opensuse.org
+
+- Update to 5.2.3.
+  * Based on final rar 5.20.
+  * File overwrite prompt displays the size and modification time
+for existing and new files.
+  * Warning is issued when starting unpacking 4 GB or larger file
+from RAR archive to FAT32 patition, so user may cancel the
+operation. FAT32 does not support files of such size.
+
+---

Old:

  unrarsrc-5.2.2.tar.gz

New:

  unrarsrc-5.2.3.tar.gz



Other differences:
--
++ unrar.spec ++
--- /var/tmp/diff_new_pack.TUcfLU/_old  2014-12-19 09:58:24.0 +0100
+++ /var/tmp/diff_new_pack.TUcfLU/_new  2014-12-19 09:58:24.0 +0100
@@ -18,10 +18,10 @@
 
 # majorversion should match the major version number.
 %define majorversion 5
-%define libsuffix 5_2_2
+%define libsuffix 5_2_3
 
 Name:   unrar
-Version:5.2.2
+Version:5.2.3
 Release:0
 License:SUSE-NonFree
 Summary:A program to extract, test, and view RAR archives

++ unrarsrc-5.2.2.tar.gz - unrarsrc-5.2.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/dll.rc new/unrar/dll.rc
--- old/unrar/dll.rc2014-11-03 09:35:46.0 +0100
+++ new/unrar/dll.rc2014-12-02 11:06:20.0 +0100
@@ -2,8 +2,8 @@
 #include commctrl.h
 
 VS_VERSION_INFO VERSIONINFO
-FILEVERSION 5, 20, 3, 1404
-PRODUCTVERSION 5, 20, 3, 1404
+FILEVERSION 5, 20, 100, 1433
+PRODUCTVERSION 5, 20, 100, 1433
 FILEOS VOS__WINDOWS32
 FILETYPE VFT_APP
 {
@@ -14,8 +14,8 @@
   VALUE CompanyName, Alexander Roshal\0
   VALUE ProductName, RAR decompression library\0
   VALUE FileDescription, RAR decompression library\0
-  VALUE FileVersion, 5.20.3\0
-  VALUE ProductVersion, 5.20.3\0
+  VALUE FileVersion, 5.20.0\0
+  VALUE ProductVersion, 5.20.0\0
   VALUE LegalCopyright, Copyright � Alexander Roshal 1993-2014\0
   VALUE OriginalFilename, Unrar.dll\0
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/threadmisc.cpp new/unrar/threadmisc.cpp
--- old/unrar/threadmisc.cpp2014-11-03 09:39:29.0 +0100
+++ new/unrar/threadmisc.cpp2014-12-02 11:10:35.0 +0100
@@ -58,6 +58,20 @@
   if (GlobalPoolUseCount++ == 0)
 GlobalPool=new ThreadPool(MaxPoolThreads);
 
+#ifdef RARDLL
+  // We use a simple thread pool, which does not allow to add tasks from
+  // different functions and threads in the same time. It is ok for RAR,
+  // but UnRAR.dll can be used in multithreaded environment. So if one of
+  // threads requests a copy of global pool and another copy is already
+  // in use, we create and return a new pool instead of existing global.
+  if (GlobalPoolUseCount  1)
+  {
+ThreadPool *Pool = new ThreadPool(MaxPoolThreads);
+CriticalSectionEnd(PoolCreateSync.CritSection); 
+return Pool;
+  }
+#endif
+
   CriticalSectionEnd(PoolCreateSync.CritSection); 
   return GlobalPool;
 }
@@ -69,6 +83,12 @@
 
   if (Pool!=NULL  Pool==GlobalPool  GlobalPoolUseCount  0  
--GlobalPoolUseCount == 0)
 delete GlobalPool;
+#ifdef RARDLL
+  // To correctly work in multithreaded environment UnRAR.dll creates
+  // new pools if global pool is already in use. We delete such pools here.
+  if (Pool!=NULL  Pool!=GlobalPool)
+delete Pool;
+#endif
 
   CriticalSectionEnd(PoolCreateSync.CritSection); 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/unicode.cpp new/unrar/unicode.cpp
--- old/unrar/unicode.cpp   2014-11-03 09:39:29.0 +0100
+++ new/unrar/unicode.cpp   2014-12-02 11:10:35.0 +0100
@@ -433,7 +433,7 @@
 {
   if (search[j]==0)
 return str+i;
-  if (towlower(str[i+j])!=towlower(search[j]))
+  if (tolowerw(str[i+j])!=tolowerw(search[j]))
 break;
 }
   return NULL;
@@ -472,13 +472,26 @@
 
 int toupperw(int ch)
 {
+#ifdef _WIN_ALL
+  // CharUpper is more reliable than towupper in Windows, which seems to be
+  // C locale dependent even in Unicode version. For example, towupper failed
+  // to convert lowercase Russian characters.
+  

commit kernel-cubox for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-cubox for 
openSUSE:12.3:Update checked in at 2014-12-19 18:04:40

Comparing /work/SRC/openSUSE:12.3:Update/kernel-cubox (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-cubox.new (New)


Package is kernel-cubox

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.5ux8te/_old  2014-12-19 18:03:28.0 +0100
+++ /var/tmp/diff_new_pack.5ux8te/_new  2014-12-19 18:03:28.0 +0100
@@ -1 +1 @@
-link package='kernel-cubox.2918' cicount='copy' /
+link package='kernel-cubox.3331' cicount='copy' /

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



commit kernel-desktop for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-desktop for 
openSUSE:12.3:Update checked in at 2014-12-19 18:04:51

Comparing /work/SRC/openSUSE:12.3:Update/kernel-desktop (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-desktop.new (New)


Package is kernel-desktop

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.i3QeBF/_old  2014-12-19 18:03:39.0 +0100
+++ /var/tmp/diff_new_pack.i3QeBF/_new  2014-12-19 18:03:39.0 +0100
@@ -1 +1 @@
-link package='kernel-desktop.2918' cicount='copy' /
+link package='kernel-desktop.3331' cicount='copy' /

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



commit kernel-default for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-default for 
openSUSE:12.3:Update checked in at 2014-12-19 18:04:48

Comparing /work/SRC/openSUSE:12.3:Update/kernel-default (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-default.new (New)


Package is kernel-default

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Uz954I/_old  2014-12-19 18:03:36.0 +0100
+++ /var/tmp/diff_new_pack.Uz954I/_new  2014-12-19 18:03:36.0 +0100
@@ -1 +1 @@
-link package='kernel-default.2918' cicount='copy' /
+link package='kernel-default.3331' cicount='copy' /

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



commit kernel-debug for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-debug for 
openSUSE:12.3:Update checked in at 2014-12-19 18:04:45

Comparing /work/SRC/openSUSE:12.3:Update/kernel-debug (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-debug.new (New)


Package is kernel-debug

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.VZU3g6/_old  2014-12-19 18:03:33.0 +0100
+++ /var/tmp/diff_new_pack.VZU3g6/_new  2014-12-19 18:03:33.0 +0100
@@ -1 +1 @@
-link package='kernel-debug.2918' cicount='copy' /
+link package='kernel-debug.3331' cicount='copy' /

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



commit kernel-ec2 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-ec2 for openSUSE:12.3:Update 
checked in at 2014-12-19 18:04:57

Comparing /work/SRC/openSUSE:12.3:Update/kernel-ec2 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-ec2.new (New)


Package is kernel-ec2

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.J9JzVy/_old  2014-12-19 18:03:45.0 +0100
+++ /var/tmp/diff_new_pack.J9JzVy/_new  2014-12-19 18:03:45.0 +0100
@@ -1 +1 @@
-link package='kernel-ec2.2918' cicount='copy' /
+link package='kernel-ec2.3331' cicount='copy' /

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



commit kernel-highbank for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-highbank for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:01

Comparing /work/SRC/openSUSE:12.3:Update/kernel-highbank (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-highbank.new (New)


Package is kernel-highbank

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.IPW8ut/_old  2014-12-19 18:03:48.0 +0100
+++ /var/tmp/diff_new_pack.IPW8ut/_new  2014-12-19 18:03:48.0 +0100
@@ -1 +1 @@
-link package='kernel-highbank.2918' cicount='copy' /
+link package='kernel-highbank.3331' cicount='copy' /

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



commit kernel-docs for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-docs for openSUSE:12.3:Update 
checked in at 2014-12-19 18:04:55

Comparing /work/SRC/openSUSE:12.3:Update/kernel-docs (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-docs.new (New)


Package is kernel-docs

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.EJHzWq/_old  2014-12-19 18:03:43.0 +0100
+++ /var/tmp/diff_new_pack.EJHzWq/_new  2014-12-19 18:03:43.0 +0100
@@ -1 +1 @@
-link package='kernel-docs.2918' cicount='copy' /
+link package='kernel-docs.3331' cicount='copy' /

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



commit kernel-exynos for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-exynos for 
openSUSE:12.3:Update checked in at 2014-12-19 18:04:59

Comparing /work/SRC/openSUSE:12.3:Update/kernel-exynos (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-exynos.new (New)


Package is kernel-exynos

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.x2xqzM/_old  2014-12-19 18:03:46.0 +0100
+++ /var/tmp/diff_new_pack.x2xqzM/_new  2014-12-19 18:03:46.0 +0100
@@ -1 +1 @@
-link package='kernel-exynos.2918' cicount='copy' /
+link package='kernel-exynos.3331' cicount='copy' /

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



commit kernel-omap2plus for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-omap2plus for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:07

Comparing /work/SRC/openSUSE:12.3:Update/kernel-omap2plus (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-omap2plus.new (New)


Package is kernel-omap2plus

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.MSa75X/_old  2014-12-19 18:03:55.0 +0100
+++ /var/tmp/diff_new_pack.MSa75X/_new  2014-12-19 18:03:55.0 +0100
@@ -1 +1 @@
-link package='kernel-omap2plus.2918' cicount='copy' /
+link package='kernel-omap2plus.3331' cicount='copy' /

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



commit kernel-imx51.3331 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-imx51.3331 for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:03

Comparing /work/SRC/openSUSE:12.3:Update/kernel-imx51.3331 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-imx51.3331.new (New)


Package is kernel-imx51.3331

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package=kernel-source.3331 cicount=copy/--
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kernel-imx51 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-imx51 for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:05

Comparing /work/SRC/openSUSE:12.3:Update/kernel-imx51 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-imx51.new (New)


Package is kernel-imx51

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.beLxuR/_old  2014-12-19 18:03:53.0 +0100
+++ /var/tmp/diff_new_pack.beLxuR/_new  2014-12-19 18:03:53.0 +0100
@@ -1 +1 @@
-link package='kernel-imx51.2918' cicount='copy' /
+link package='kernel-imx51.3331' cicount='copy' /

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



commit kernel-pae for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-pae for openSUSE:12.3:Update 
checked in at 2014-12-19 18:05:09

Comparing /work/SRC/openSUSE:12.3:Update/kernel-pae (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-pae.new (New)


Package is kernel-pae

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.7ycu7y/_old  2014-12-19 18:03:58.0 +0100
+++ /var/tmp/diff_new_pack.7ycu7y/_new  2014-12-19 18:03:58.0 +0100
@@ -1 +1 @@
-link package='kernel-pae.2918' cicount='copy' /
+link package='kernel-pae.3331' cicount='copy' /

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



commit kernel-s390 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-s390 for openSUSE:12.3:Update 
checked in at 2014-12-19 18:05:11

Comparing /work/SRC/openSUSE:12.3:Update/kernel-s390 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-s390.new (New)


Package is kernel-s390

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.HcKyfs/_old  2014-12-19 18:03:58.0 +0100
+++ /var/tmp/diff_new_pack.HcKyfs/_new  2014-12-19 18:03:58.0 +0100
@@ -1 +1 @@
-link package='kernel-s390.2918' cicount='copy' /
+link package='kernel-s390.3331' cicount='copy' /

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



commit kernel-source for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:16

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


Package is kernel-source

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Wt1i0w/_old  2014-12-19 18:04:10.0 +0100
+++ /var/tmp/diff_new_pack.Wt1i0w/_new  2014-12-19 18:04:10.0 +0100
@@ -1 +1 @@
-link package='kernel-source.2918' cicount='copy' /
+link package='kernel-source.3331' cicount='copy' /

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



commit kernel-syms for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-syms for openSUSE:12.3:Update 
checked in at 2014-12-19 18:05:22

Comparing /work/SRC/openSUSE:12.3:Update/kernel-syms (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-syms.new (New)


Package is kernel-syms

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.x2z1Ux/_old  2014-12-19 18:04:13.0 +0100
+++ /var/tmp/diff_new_pack.x2z1Ux/_new  2014-12-19 18:04:13.0 +0100
@@ -1 +1 @@
-link package='kernel-syms.2918' cicount='copy' /
+link package='kernel-syms.3331' cicount='copy' /

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



commit kernel-source.3331 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-source.3331 for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:13

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


Package is kernel-source.3331

Changes:

New Changes file:

--- /dev/null   2014-12-10 22:29:50.188034256 +0100
+++ /work/SRC/openSUSE:12.3:Update/.kernel-source.3331.new/kernel-cubox.changes 
2014-12-19 18:04:04.0 +0100
@@ -0,0 +1,30063 @@
+---
+Tue Dec 16 21:27:58 CET 2014 - b...@suse.de
+
+- Update config files.
+- commit 4c885a1
+
+---
+Tue Dec 16 21:07:51 CET 2014 - b...@suse.de
+
+- x86-64, espfix: Don't leak bits 31:16 of %esp returning to
+  16-bit stack (bsc#907818,CVE-2014-9090).
+- x86, espfix: Make espfix64 a Kconfig option, fix UML
+  (bsc#907818,CVE-2014-9090).
+- x86, espfix: Make it possible to disable 16-bit support
+  (bsc#907818,CVE-2014-9090).
+- x86_64/entry/xen: Do not invoke espfix64 on Xen
+  (bsc#907818,CVE-2014-9090).
+- x86_64, traps: Fix the espfix64 #DF fixup and rewrite it in C
+  (bsc#907818,CVE-2014-9090).
+- x86_64, traps: Rework bad_iret (bsc#909077,CVE-2014-8133).
+- x86_64, traps: Stop using IST for #SS (bsc#907818,
+  CVE-2014-9090, CVE-2014-9322).
+- Update config files.
+- Refresh
+  patches.arch/stack-unwind-cfi_ignore-takes-more-arguments.
+- Refresh patches.arch/x86_64-unwind-annotations.
+- Refresh patches.xen/xen3-patch-2.6.31.
+- commit 23e4e06
+
+---
+Mon Dec 15 23:41:07 CET 2014 - b...@suse.de
+
+- x86/tls: Validate TLS entries to protect espfix
+  (bsc#909077,CVE-2014-8133).
+- commit 2378804
+
+---
+Thu Dec 11 14:49:28 CET 2014 - jbeul...@suse.com
+
+- x86_32, entry: Store badsys error code in %eax (bnc#883724,
+  CVE-2014-4508).
+- Refresh other Xen patches.
+- commit f29227a
+
+---
+Mon Nov 17 16:44:09 CET 2014 - oneu...@suse.de
+
+- ttusb-dec: buffer overflow in ioctl (bnc#905764).
+- commit f6c2a01
+
+---
+Thu Nov 13 19:11:47 CET 2014 - b...@suse.de
+
+- HID: picolcd: sanity check report size in raw_event() callback
+  (bsc#896392, CVE-2014-3186).
+- commit 781483d
+
+---
+Thu Nov 13 16:14:14 CET 2014 - jbo...@suse.cz
+
+- net: sctp: fix NULL pointer dereference in af-from_addr_param
+  on (bnc#905100, CVE-2014-7841).
+- commit 7b88a01
+
+---
+Thu Nov 13 14:30:49 CET 2014 - ti...@suse.de
+
+- lzo: check for length overrun in variable length encoding
+  (bnc#889348,CVE-2014-4608).
+- commit 5cfddc1
+
+---
+Thu Nov 13 12:16:12 CET 2014 - ti...@suse.de
+
+- mac80211: fix fragmentation code, particularly for encryption
+  (bnc#904700,CVE-2014-8709).
+- commit 697921d
+
+---
+Thu Nov 13 12:09:12 CET 2014 - ti...@suse.de
+
+- USB: whiteheat: Added bounds checking for bulk command response
+  (CVE-2014-3185,bnc#896391).
+- commit d9b91d9
+
+---
+Wed Nov 12 20:38:22 CET 2014 - b...@suse.de
+
+- HID: fix a couple of off-by-ones (bsc#896390, CVE-2014-3184).
+- commit d32521b
+
+---
+Tue Nov 11 20:48:54 CET 2014 - b...@suse.de
+
+- HID: logitech-dj: prevent false errors to be shown (bsc#896385,
+  CVE-2014-3182).
+- HID: logitech: perform bounds checking on device_id early enough
+  (bsc#896385, CVE-2014-3182).
+- commit 8338a11
+
+---
+Tue Nov 11 17:34:42 CET 2014 - b...@suse.de
+
+- HID: magicmouse: sanity check report size in raw_event()
+  callback (bsc#896382, CVE-2014-3181).
+- commit 781cb3f
+
+---
+Mon Nov 10 12:35:25 CET 2014 - b...@suse.de
+
+- tracing/syscalls: Ignore numbers outside NR_syscalls' range
+  (bsc#904013, CVE-2014-7826).
+- commit 50bbbce
+
+---
+Fri Nov  7 15:07:45 CET 2014 - b...@suse.de
+
+- ipv6: fix leaking uninitialized port number of offender sockaddr
+  (bsc#853040).
+- commit 20deb2b
+
+---
+Wed Oct 29 23:57:26 CET 2014 - b...@suse.de
+
+- HID: fix kabi breakage.
+- commit d945130
+

commit kernel-trace for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-trace for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:28

Comparing /work/SRC/openSUSE:12.3:Update/kernel-trace (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-trace.new (New)


Package is kernel-trace

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.WvTvQk/_old  2014-12-19 18:04:19.0 +0100
+++ /var/tmp/diff_new_pack.WvTvQk/_new  2014-12-19 18:04:19.0 +0100
@@ -1 +1 @@
-link package='kernel-trace.2918' cicount='copy' /
+link package='kernel-trace.3331' cicount='copy' /

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



commit kernel-vanilla for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-vanilla for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:37

Comparing /work/SRC/openSUSE:12.3:Update/kernel-vanilla (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-vanilla.new (New)


Package is kernel-vanilla

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.is2KuY/_old  2014-12-19 18:04:26.0 +0100
+++ /var/tmp/diff_new_pack.is2KuY/_new  2014-12-19 18:04:26.0 +0100
@@ -1 +1 @@
-link package='kernel-vanilla.2918' cicount='copy' /
+link package='kernel-vanilla.3331' cicount='copy' /

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



commit kernel-xen for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-xen for openSUSE:12.3:Update 
checked in at 2014-12-19 18:05:44

Comparing /work/SRC/openSUSE:12.3:Update/kernel-xen (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-xen.new (New)


Package is kernel-xen

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.iaksy3/_old  2014-12-19 18:04:33.0 +0100
+++ /var/tmp/diff_new_pack.iaksy3/_new  2014-12-19 18:04:33.0 +0100
@@ -1 +1 @@
-link package='kernel-xen.2918' cicount='copy' /
+link package='kernel-xen.3331' cicount='copy' /

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



commit kernel-versatile for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-versatile for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:41

Comparing /work/SRC/openSUSE:12.3:Update/kernel-versatile (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-versatile.new (New)


Package is kernel-versatile

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.lNozRr/_old  2014-12-19 18:04:29.0 +0100
+++ /var/tmp/diff_new_pack.lNozRr/_new  2014-12-19 18:04:29.0 +0100
@@ -1 +1 @@
-link package='kernel-versatile.2918' cicount='copy' /
+link package='kernel-versatile.3331' cicount='copy' /

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



commit kernel-u8500 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package kernel-u8500 for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:33

Comparing /work/SRC/openSUSE:12.3:Update/kernel-u8500 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.kernel-u8500.new (New)


Package is kernel-u8500

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.OHgjLI/_old  2014-12-19 18:04:21.0 +0100
+++ /var/tmp/diff_new_pack.OHgjLI/_new  2014-12-19 18:04:21.0 +0100
@@ -1 +1 @@
-link package='kernel-u8500.2918' cicount='copy' /
+link package='kernel-u8500.3331' cicount='copy' /

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



commit patchinfo.3331 for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.3331 for 
openSUSE:12.3:Update checked in at 2014-12-19 18:05:48

Comparing /work/SRC/openSUSE:12.3:Update/patchinfo.3331 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.patchinfo.3331.new (New)


Package is patchinfo.3331

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo incident=3331
  issue id=768714 tracker=bncBUG: soft lockup - CPU#1 stuck for 
43s!/issue
  issue id=818561 tracker=bncUnreadable screen (color bars) on i915 
Graphics Controller with VT-d on./issue
  issue id=835839 tracker=bncVUL-1: CVE-2013-2889: kernel: multiple 
issues in HID code/issue
  issue id=853040 tracker=bncVUL-1: CVE-2013-6405: kernel: net: multiple 
uninitialised memory leakage/issue
  issue id=865882 tracker=bncdom0_mem parameter causing filesystem 
corruption/issue
  issue id=882639 tracker=bncVUL-0: CVE-2014-4027: Kernel: target/rd 
imformation leakage/issue
  issue id=883518 tracker=bncVUL-0: CVE-2014-4171: kernel: mm/shmem: 
denial of service/issue
  issue id=883724 tracker=bncVUL-0: CVE-2014-4508: kernel: BUG in syscall 
auditing/issue
  issue id=887082 tracker=bncVUL-0: CVE-2014-4943: kernel-source: 
potential local privilege escalation in ppp over l2tp sockets/issue
  issue id=889173 tracker=bncVUL-0: CVE-2014-5077: kernel-source: net: 
SCTP: fix a NULL pointer dereference during INIT collisions/issue
  issue id=883948 tracker=bnc /
  issue id=890624 tracker=bncEnable build of ath9k_htc/issue
  issue id=892490 tracker=bncVUL-0: CVE-2014-5471, CVE-2014-5472: kernel: 
Corrupted iso9660 filesystem can cause kernel stack overflow or hang/issue
  issue id=896382 tracker=bncVUL-1: CVE-2014-3181: kernel: HID: Magic 
Mouse HID device driver overflow/issue
  issue id=896385 tracker=bncVUL-1: CVE-2014-3182: kernel: HID: Linux 
kernel hid-logitech-dj.c device_index arbitrary kfree/issue
  issue id=896390 tracker=bncVUL-1: CVE-2014-3184: kernel: HID: Linux 
kernel HID report fixup multiple off-by-one issues/issue
  issue id=896391 tracker=bncVUL-1: CVE-2014-3185: kernel: HID: Linux 
Kernel Buffer Overflow in Whiteheat USB Serial Driver/issue
  issue id=896392 tracker=bncVUL-1: CVE-2014-3186: kernel: HID: PicoLCD 
HID device driver pool overflow/issue
  issue id=896689 tracker=bncVUL-0: CVE-2014-6410: kernel: udf: Avoid 
infinite loop when processing indirect ICBs/issue
  issue id=899785 tracker=bncXFS home partition can badly corrupt on 
return from hibernation. A patch exists. Please apply it./issue
  issue id=904013 tracker=bncVUL-0: CVE-2014-7826: kernel: OOB read in 
ftrace/issue
  issue id=904700 tracker=bncVUL-0: CVE-2014-8709: kernel: Leaking 
plaintext over ieee80211_fragment/issue
  issue id=905100 tracker=bncVUL-0: CVE-2014-7841 kernel: net: sctp: NULL 
pointer dereference in af-gt;from_addr_param on malformed packet/issue
  issue id=905764 tracker=bncVUL-0: kernel: ttusb-dec: buffer overflow in 
ioctl/issue
  issue id=907818 tracker=bncVUL-0: CVE-2014-9090: kernel: x86_64, traps: 
Stop using IST for #SS/issue
  issue id=909077 tracker=bncVUL-0: CVE-2014-8133: kernel: tls: Validate 
TLS entries to protect espfix/issue
  issue id=910251 tracker=bncVUL-0: CVE-2014-9322 kernel: x86: local 
privilege escalation due to bad_iret and paranoid entry incompatibil/issue
  issue tracker=cve id=CVE-2013-2891/
  issue id=CVE-2013-2889 tracker=cve /
  issue id=CVE-2014-8884 tracker=cve /
  issue id=CVE-2014-4508 tracker=cve /
  issue id=CVE-2014-6410 tracker=cve /
  issue id=CVE-2014-4943 tracker=cve /
  issue id=CVE-2014-8709 tracker=cve /
  issue id=CVE-2014-9322 tracker=cve /
  issue id=CVE-2014-4171 tracker=cve /
  issue id=CVE-2014-3185 tracker=cve /
  issue id=CVE-2014-7841 tracker=cve /
  issue id=CVE-2014-7826 tracker=cve /
  issue id=CVE-2014-8133 tracker=cve /
  issue id=CVE-2014-5472 tracker=cve /
  issue id=CVE-2014-5471 tracker=cve /
  issue id=CVE-2014-9090 tracker=cve /
  issue id=CVE-2014-3181 tracker=cve /
  issue id=CVE-2014-3182 tracker=cve /
  issue id=CVE-2014-3184 tracker=cve /
  issue id=CVE-2014-4608 tracker=cve /
  issue id=CVE-2014-3186 tracker=cve /
  issue id=CVE-2014-5077 tracker=cve /
  categorysecurity/category
  ratingimportant/rating
  packagerjeff_mahoney/packager
  description
The openSUSE 12.3 kernel was updated to fix security issues:

This will be the final kernel update for openSUSE 13.2 during
its lifetime, which ends January 4th 2015.

CVE-2014-9322: A local privilege escalation in the x86_64 32bit
compatibility signal handling was fixed, which could be used by local
attackers to crash the machine or execute code.

CVE-2014-9090: The do_double_fault function in arch/x86/kernel/traps.c
in the Linux kernel 

commit ntp for openSUSE:12.3:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package ntp for openSUSE:12.3:Update checked 
in at 2014-12-19 23:35:26

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


Package is ntp

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.losjc4/_old  2014-12-19 23:34:13.0 +0100
+++ /var/tmp/diff_new_pack.losjc4/_new  2014-12-19 23:34:13.0 +0100
@@ -1 +1 @@
-link package='ntp.2917' cicount='copy' /
+link package='ntp.3347' cicount='copy' /

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



commit ntp for openSUSE:13.1:Update

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package ntp for openSUSE:13.1:Update checked 
in at 2014-12-19 23:35:32

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


Package is ntp

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.XwIq7S/_old  2014-12-19 23:34:18.0 +0100
+++ /var/tmp/diff_new_pack.XwIq7S/_new  2014-12-19 23:34:18.0 +0100
@@ -1 +1 @@
-link package='ntp.2917' cicount='copy' /
+link package='ntp.3347' cicount='copy' /

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