commit libstorage for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is libstorage

Changes:

--- /work/SRC/openSUSE:Factory/libstorage/libstorage.changes2014-02-07 
16:44:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage.new/libstorage.changes   
2014-02-17 09:37:39.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb 13 18:11:37 CET 2014 - aschn...@suse.de
+
+- extended testsuite
+
+---
+Thu Feb 13 12:45:15 CET 2014 - aschn...@suse.de
+
+- removed unfit allocation variable from LvmLvInfo
+
+---



Other differences:
--
++ libstorage-2.25.7.tar.bz2 ++
 2427 lines of diff (skipped)

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



commit snapper for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is snapper

Changes:

--- /work/SRC/openSUSE:Factory/snapper/snapper.changes  2014-02-07 
16:44:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.snapper.new/snapper.changes 2014-02-17 
09:37:41.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 11 14:08:06 CET 2014 - aschn...@suse.de
+
+- sync ACL at startup (bnc#863073)
+
+---



Other differences:
--
++ snapper-0.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.2.1/client/snapper.cc 
new/snapper-0.2.1/client/snapper.cc
--- old/snapper-0.2.1/client/snapper.cc 2014-01-29 16:48:30.0 +0100
+++ new/snapper-0.2.1/client/snapper.cc 2014-02-14 11:25:44.0 +0100
@@ -1685,7 +1685,7 @@
cerr  _(Config is in use.)  endl;
else if (name == error.snapshot_in_use)
cerr  _(Snapshot is in use.)  endl;
-   else if (name == error.unknown_file_use)
+   else if (name == error.unknown_file)
cerr  _(Unknown file.)  endl;
else if (name == error.io_error)
cerr  _(IO Error.)  endl;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.2.1/snapper/Snapper.cc 
new/snapper-0.2.1/snapper/Snapper.cc
--- old/snapper-0.2.1/snapper/Snapper.cc2014-01-29 16:48:30.0 
+0100
+++ new/snapper-0.2.1/snapper/Snapper.cc2014-02-11 14:39:48.0 
+0100
@@ -95,6 +95,10 @@
config_info-getValue(KEY_FSTYPE, fstype);
filesystem = Filesystem::create(fstype, config_info-getSubvolume());
 
+   bool sync_acl;
+   if (config_info-getValue(KEY_SYNC_ACL, sync_acl)  sync_acl == true)
+   syncAcl();
+
y2mil(subvolume:  config_info-getSubvolume()   filesystem: 
  filesystem-fstype());
 
@@ -533,7 +537,11 @@
 {
SDir infos_dir = openInfosDir();
 
-   acl_t acl = acl_get_fd(infos_dir.fd());
+   acl_t orig_acl = acl_get_fd(infos_dir.fd());
+   if (!orig_acl)
+   throw AclException();
+
+   acl_t acl = acl_dup(orig_acl);
if (!acl)
throw AclException();
 
@@ -609,8 +617,9 @@
if (acl_calc_mask(acl) != 0)
throw AclException();
 
-   if (acl_set_fd(infos_dir.fd(), acl) != 0)
-   throw AclException();
+   if (acl_cmp(orig_acl, acl) == 1)
+   if (acl_set_fd(infos_dir.fd(), acl) != 0)
+   throw AclException();
 
if (acl_free(acl) != 0)
throw AclException();

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



commit yast2-storage for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2014-02-17 09:37:56

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


Package is yast2-storage

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2014-02-07 16:44:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2014-02-17 09:37:56.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 10 11:16:54 CET 2014 - aschn...@suse.de
+
+- fixed variable lookup (bnc#862752)
+
+---



Other differences:
--
++ yast2-storage-3.1.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.9/package/yast2-storage.changes 
new/yast2-storage-3.1.9/package/yast2-storage.changes
--- old/yast2-storage-3.1.9/package/yast2-storage.changes   2014-02-06 
10:34:28.0 +0100
+++ new/yast2-storage-3.1.9/package/yast2-storage.changes   2014-02-10 
11:29:05.0 +0100
@@ -1,4 +1,9 @@
 ---
+Mon Feb 10 11:16:54 CET 2014 - aschn...@suse.de
+
+- fixed variable lookup (bnc#862752)
+
+---
 Wed Feb 05 18:12:05 CET 2014 - aschn...@suse.de
 
 - removed code setting MODULES_LOADED_ON_BOOT (bnc#838185)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.9/src/modules/Storage.rb 
new/yast2-storage-3.1.9/src/modules/Storage.rb
--- old/yast2-storage-3.1.9/src/modules/Storage.rb  2014-02-06 
10:34:28.0 +0100
+++ new/yast2-storage-3.1.9/src/modules/Storage.rb  2014-02-10 
11:29:05.0 +0100
@@ -2992,7 +2992,7 @@
 changed = true
 d = part.fetch(device, )
 userdata = ::Storage::MapStringString.new()
-part[userdata].each do |a, b|
+part.fetch(userdata, {}).each do |a, b|
   userdata[a]= b
 end
 Builtins.y2milestone(ChangeVolumeProperties userdata to %1, 
userdata.to_s)

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



commit yast2-theme for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory 
checked in at 2014-02-17 09:37:46

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


Package is yast2-theme

Changes:

--- /work/SRC/openSUSE:Factory/yast2-theme/yast2-theme.changes  2014-02-11 
10:45:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme.changes 
2014-02-17 09:37:48.0 +0100
@@ -1,0 +2,12 @@
+Thu Feb 13 18:03:49 UTC 2014 - lsle...@suse.cz
+
+- updated package selector style (by Ken Wimer)
+- 3.1.5
+
+---
+Tue Feb 11 10:08:52 UTC 2014 - lsle...@suse.cz
+
+- updated SLE installation theme (by Ken Wimer)
+- 3.1.4
+
+---

Old:

  yast2-theme-3.1.3.tar.bz2

New:

  yast2-theme-3.1.5.tar.bz2



Other differences:
--
++ yast2-theme.spec ++
--- /var/tmp/diff_new_pack.DS5zQm/_old  2014-02-17 09:37:48.0 +0100
+++ /var/tmp/diff_new_pack.DS5zQm/_new  2014-02-17 09:37:48.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-theme
-Version:3.1.3
+Version:3.1.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-theme-3.1.3.tar.bz2 - yast2-theme-3.1.5.tar.bz2 ++
/work/SRC/openSUSE:Factory/yast2-theme/yast2-theme-3.1.3.tar.bz2 
/work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme-3.1.5.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 parted for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is parted

Changes:

--- /work/SRC/openSUSE:Factory/parted/parted.changes2014-02-03 
11:40:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.parted.new/parted.changes   2014-02-17 
09:40:03.0 +0100
@@ -1,0 +2,16 @@
+Fri Feb 14 08:30:06 UTC 2014 - pu...@suse.com
+
+- Use BLKRRPART on DASD disks (instead of BLKPG_*) (bnc#862139) 
+- added patches:
+  * revert-libparted-remove-now-worse-than-useless-_kern.patch
+  * revert-linux-remove-DASD-restriction-on-_disk_sync_p.patch
+
+---
+Thu Feb 13 15:40:56 UTC 2014 - pu...@suse.com
+
+- reserve first 2 tracks on DASD disks for metadata (bnc#862138)
+  * add: libparted-dasd-do-not-use-first-tracks.patch
+- initialize memory for newly allocated partition (bnc#862138)
+  * add: libparted-initialize-dasd-part-type.patch
+
+---

New:

  libparted-dasd-do-not-use-first-tracks.patch
  libparted-initialize-dasd-part-type.patch
  revert-libparted-remove-now-worse-than-useless-_kern.patch
  revert-linux-remove-DASD-restriction-on-_disk_sync_p.patch



Other differences:
--
++ parted.spec ++
--- /var/tmp/diff_new_pack.6zByxD/_old  2014-02-17 09:40:04.0 +0100
+++ /var/tmp/diff_new_pack.6zByxD/_new  2014-02-17 09:40:04.0 +0100
@@ -56,6 +56,10 @@
 Patch26:parted-btrfs-support.patch
 Patch27:parted-GPT-add-support-for-PReP-GUID.patch
 Patch28:parted-resize-command.patch
+Patch29:libparted-dasd-do-not-use-first-tracks.patch
+Patch30:libparted-initialize-dasd-part-type.patch
+Patch31:revert-linux-remove-DASD-restriction-on-_disk_sync_p.patch
+Patch32:revert-libparted-remove-now-worse-than-useless-_kern.patch
 Patch100:   parted-fatresize-autoconf.patch
 Requires:   /sbin/udevadm
 BuildRequires:  check-devel
@@ -132,6 +136,10 @@
 %patch26 -p1
 %patch27 -p1
 %patch28 -p1
+%patch29 -p1
+%patch30 -p1
+%patch31 -p1
+%patch32 -p1
 %patch100 -p1
 
 %build

++ libparted-dasd-do-not-use-first-tracks.patch ++
---
 libparted/labels/dasd.c |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: parted-3.1/libparted/labels/dasd.c
===
--- parted-3.1.orig/libparted/labels/dasd.c
+++ parted-3.1/libparted/labels/dasd.c
@@ -803,7 +803,8 @@ _primary_constraint (PedDisk* disk)
if (!ped_alignment_init (end_align, -1,
 disk-dev-hw_geom.sectors 
* sector_size))
return NULL;
-   if (!ped_geometry_init (max_geom, disk-dev, 0, disk-dev-length))
+   if (!ped_geometry_init (max_geom, disk-dev, 2 * 
disk-dev-hw_geom.sectors * sector_size,
+   disk-dev-length - 2 * 
disk-dev-hw_geom.sectors * sector_size))
return NULL;
 
return ped_constraint_new(start_align, end_align, max_geom,
++ libparted-initialize-dasd-part-type.patch ++
---
 libparted/labels/dasd.c |2 ++
 1 file changed, 2 insertions(+)

Index: parted-3.1/libparted/labels/dasd.c
===
--- parted-3.1.orig/libparted/labels/dasd.c
+++ parted-3.1/libparted/labels/dasd.c
@@ -659,6 +659,8 @@ dasd_partition_new (const PedDisk* disk,
goto error;
 
part-disk_specific = ped_malloc (sizeof (DasdPartitionData));
+   if (part-disk_specific)
+   memset(part-disk_specific, 0, sizeof(DasdPartitionData));
return part;
 
 error:


++ revert-libparted-remove-now-worse-than-useless-_kern.patch ++
From 59627048c1b5b6e6aed9198bb11c397b3ad8cddd Mon Sep 17 00:00:00 2001
From: Petr Uzel petr.u...@suse.cz
Date: Fri, 14 Feb 2014 09:18:32 +0100
Subject: [PATCH] Revert libparted: remove now-worse-than-useless
 _kernel_reread_part_table

This reverts commit 1223b9fc07859cb619c80dc057bd05458f9b5669.
---
 libparted/arch/linux.c |   30 ++
 1 file changed, 30 insertions(+)

Index: parted-3.1/libparted/arch/linux.c
===
--- parted-3.1.orig/libparted/arch/linux.c
+++ parted-3.1/libparted/arch/linux.c
@@ -2897,6 +2897,34 @@ _dm_reread_part_table (PedDisk* disk)
 #endif
 
 static int
+_kernel_reread_part_table (PedDevice* dev)
+{
+LinuxSpecific*  arch_specific = LINUX_SPECIFIC (dev);
+int retry_count = 9;
+
+sync();
+   

commit yast2-devtools for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is yast2-devtools

Changes:

--- /work/SRC/openSUSE:Factory/yast2-devtools/yast2-devtools.changes
2013-12-19 13:35:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-devtools.new/yast2-devtools.changes   
2014-02-17 09:40:11.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 14 08:59:05 UTC 2014 - jreidin...@suse.com
+
+- return back gettextdomains to allow generating translations
+- 3.1.16
+
+---

Old:

  yast2-devtools-3.1.15.tar.bz2

New:

  yast2-devtools-3.1.16.tar.bz2



Other differences:
--
++ yast2-devtools.spec ++
--- /var/tmp/diff_new_pack.8S9wWM/_old  2014-02-17 09:40:11.0 +0100
+++ /var/tmp/diff_new_pack.8S9wWM/_new  2014-02-17 09:40:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-devtools
 #
-# 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:   yast2-devtools
-Version:3.1.15
+Version:3.1.16
 Release:0
 Url:http://github.com/yast/yast-devtools
 
@@ -141,6 +141,7 @@
 %{_datadir}/YaST2/data/devtools/bin/showy2log
 %{_datadir}/YaST2/data/devtools/bin/tagversion
 %{_datadir}/YaST2/data/devtools/bin/y2makepot
+%{_datadir}/YaST2/data/devtools/bin/gettextdomains
 %{_datadir}/YaST2/data/devtools/bin/ycp_puttext
 
 %files -n yast2-buildtools

++ yast2-devtools-3.1.15.tar.bz2 - yast2-devtools-3.1.16.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-devtools-3.1.15/build-tools/scripts/Makefile.am 
new/yast2-devtools-3.1.16/build-tools/scripts/Makefile.am
--- old/yast2-devtools-3.1.15/build-tools/scripts/Makefile.am   2013-12-19 
10:13:41.0 +0100
+++ new/yast2-devtools-3.1.16/build-tools/scripts/Makefile.am   2014-02-14 
10:09:06.0 +0100
@@ -8,6 +8,7 @@
 pkgdata_SCRIPTS =  \
y2autoconf  \
y2automake  \
-   y2makepot
+   y2makepot   \
+   gettextdomains
 
 EXTRA_DIST = $(bin_SCRIPTS) $(pkgdata_SCRIPTS)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-devtools-3.1.15/build-tools/scripts/gettextdomains 
new/yast2-devtools-3.1.16/build-tools/scripts/gettextdomains
--- old/yast2-devtools-3.1.15/build-tools/scripts/gettextdomains
1970-01-01 01:00:00.0 +0100
+++ new/yast2-devtools-3.1.16/build-tools/scripts/gettextdomains
2014-02-14 10:09:06.0 +0100
@@ -0,0 +1,63 @@
+### sourced by 'check-textdomain' and 'y2makepot' ### -*- sh -*-
+
+#
+# get_domains_and_err():
+# Argument:  $1- directory to search
+# Returns:   $DOMAINS  - all text-domains found in $SRCDIR
+#$ERR  - filenames without text-domain, but using [_]_tr()
+#
+
+function get_domains_and_err()
+{
+if [ -z $1 ]; then
+echo `basename $0`: argument missing
+fi
+SRCDIR=$1
+
+# search for sourcecode-files
+SRCFILES=`find $SRCDIR -type d -name testsuite -prune , \
+  -type d -name .svn -prune , \
+   -type f -name *.ycp \
+-o -name *.pm  \
+-o -name *.c   \
+-o -name *.cc  \
+-o -name *.cpp \
+-o -name *.rb  `
+
+if test $? != 0; then
+echo Error: check-pot terminated unexpected.
+exit 1
+fi
+
+for F in $SRCFILES; do
+# strip comments from the files and match [_]_( ... )
+# 1. perl: strip one-line-comments
+# 2. perl: strip C comments (multiline too)
+# 3. perl: match for _( ...) and __(... ) (multiline too)
+   # problems left:
+   # - false matches of comments inside strings
+   # - uncaught _( at line beginning
+MATCH=`perl -n -e 'print $ARGV: $_ if not /(\/\/|#)/' $F | \
+   perl -n -e 'print $_ if not /\/\*/../\*\//'| \
+   perl -n -e 'print $_ if 
/[^[:alnum:]_](_|__|gettext)\(/../\)/'`
+if [ -n $MATCH ]; then
+TR_FILES=$F $TR_FILES ;
+

commit libpcap for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is libpcap

Changes:

--- /work/SRC/openSUSE:Factory/libpcap/libpcap.changes  2013-12-17 
10:02:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libpcap.new/libpcap.changes 2014-02-17 
09:56:28.0 +0100
@@ -1,0 +2,20 @@
+Thu Feb 13 16:18:19 UTC 2014 - vci...@suse.com
+
+- added support for netlink (bnc#863823)
+  * libpcap-netlink.patch
+
+---
+Thu Feb 13 15:14:48 UTC 2014 - vci...@suse.com
+
+- update to 1.5.3
+  * Don't let packets that don't match the current filter get to the
+application when TPACKET_V3 is used. (GitHub issue #331)
+  * Fix handling of pcap_loop()/pcap_dispatch() with a packet count
+of 0 on some platforms (including Linux with TPACKET_V3).
+(GitHub issue #333)
+  * Work around TPACKET_V3 deficiency that causes packets to be lost
+when a timeout of 0 is specified. (GitHub issue #335)
+  * Man page formatting fixes.
+- refreshed libpcap-1.5.2-filter-fix.patch
+
+---

Old:

  libpcap-1.5.2.tar.gz
  libpcap-1.5.2.tar.gz.sig

New:

  libpcap-1.5.3.tar.gz
  libpcap-1.5.3.tar.gz.sig
  libpcap-netlink.patch



Other differences:
--
++ libpcap.spec ++
--- /var/tmp/diff_new_pack.VPOLUT/_old  2014-02-17 09:56:28.0 +0100
+++ /var/tmp/diff_new_pack.VPOLUT/_new  2014-02-17 09:56:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libpcap
 #
-# 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:   libpcap
-Version:1.5.2
+Version:1.5.3
 Release:0
 Summary:A Library for Network Sniffers
 License:BSD-3-Clause
@@ -32,6 +32,7 @@
 Patch2: libpcap-1.0.0-ppp.patch
 Patch3: libpcap-1.0.0-s390.patch
 Patch4: libpcap-ocloexec.patch
+Patch5: libpcap-netlink.patch
 BuildRequires:  automake
 BuildRequires:  bison
 BuildRequires:  bluez-devel
@@ -96,6 +97,7 @@
 %patch2
 %patch3
 %patch4 -p1
+%patch5 -p1
 %build
 %ifarch %sparc
 pic=PIC

++ libpcap-1.5.2-filter-fix.patch ++
--- /var/tmp/diff_new_pack.VPOLUT/_old  2014-02-17 09:56:28.0 +0100
+++ /var/tmp/diff_new_pack.VPOLUT/_new  2014-02-17 09:56:28.0 +0100
@@ -3,10 +3,10 @@
  pcap-linux.c |   22 ++
  2 files changed, 23 insertions(+), 1 deletion(-)
 
-Index: libpcap-1.5.2/pcap-bpf.c
+Index: libpcap-1.5.3/pcap-bpf.c
 ===
 libpcap-1.5.2.orig/pcap-bpf.c  2013-11-07 23:23:22.0 +
-+++ libpcap-1.5.2/pcap-bpf.c   2013-12-14 11:28:40.0 +
+--- libpcap-1.5.3.orig/pcap-bpf.c  2014-02-13 17:22:30.794295046 +0100
 libpcap-1.5.3/pcap-bpf.c   2014-02-13 17:22:31.667305231 +0100
 @@ -494,7 +494,7 @@ bpf_open(pcap_t *p)
fd = open(device, O_RDWR);
if (fd == -1  errno == EACCES)
@@ -16,11 +16,11 @@
  
/*
 * XXX better message for all minors used
-Index: libpcap-1.5.2/pcap-linux.c
+Index: libpcap-1.5.3/pcap-linux.c
 ===
 libpcap-1.5.2.orig/pcap-linux.c2013-12-03 15:11:24.0 +
-+++ libpcap-1.5.2/pcap-linux.c 2013-12-14 11:30:29.0 +
-@@ -2475,8 +2475,30 @@ pcap_setfilter_linux_common(pcap_t *hand
+--- libpcap-1.5.3.orig/pcap-linux.c2014-02-13 17:22:31.668305243 +0100
 libpcap-1.5.3/pcap-linux.c 2014-02-13 17:24:01.924357989 +0100
+@@ -2476,11 +2476,33 @@ pcap_setfilter_linux_common(pcap_t *hand
if (can_filter_in_kernel) {
if ((err = set_kernel_filter(handle, fcode)) == 0)
{
@@ -29,8 +29,11 @@
 +  int ret;
 +  unsigned int received = 0, rec_len = 0;
 +  socklen_t optlen = sizeof(rec_len);
-   /* Installation succeded - using kernel filter. */
-   handlep-filtering_in_kernel = 1;
+   /*
+* Installation succeded - using kernel filter,
+* so userland filtering not needed.
+*/
+   handlep-filter_in_userland = 0;
 +
 +  oldflags = 

commit gkrellm for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package gkrellm for openSUSE:Factory checked 
in at 2014-02-17 12:52:32

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


Package is gkrellm

Changes:

--- /work/SRC/openSUSE:Factory/gkrellm/gkrellm.changes  2013-11-15 
13:21:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.gkrellm.new/gkrellm.changes 2014-02-17 
12:52:33.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 12 01:35:16 CET 2014 - r...@suse.de
+
+- Exclude s390/s390x that have no libsensors.
+
+---



Other differences:
--
++ gkrellm.spec ++
--- /var/tmp/diff_new_pack.DML9UW/_old  2014-02-17 12:52:34.0 +0100
+++ /var/tmp/diff_new_pack.DML9UW/_new  2014-02-17 12:52:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gkrellm
 #
-# 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
@@ -40,6 +40,8 @@
 BuildRequires:  xorg-x11-libSM-devel
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# no libsensors
+ExcludeArch:s390 s390x
 
 %description
 With a single process, GKrellM manages multiple stacked monitors and





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



commit crmsh for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is crmsh

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2014-02-11 
11:03:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2014-02-17 
12:52:27.0 +0100
@@ -1,0 +2,16 @@
+Thu Feb 13 15:20:02 UTC 2014 - kgronl...@suse.com
+
+- medium: hb_report: Fix incorrect quotes (bnc#863816)
+- upstream cs: 364c59ee0612 
+
+---
+Thu Feb 13 10:34:21 UTC 2014 - kgronl...@suse.com
+
+- spec: Require python = 2.6
+- high: cibconfig: Handle non-string arguments (bnc#863736)
+- low: cibconfig: do not format xml tags when requested (bnc#863746)
+- medium: ui_root: Rename root level to 'root' (bnc#863583)
+- doc: manpages: Section name broke docbook generation (bnc#863055)
+- upstream cs: 6545c6fc8bf6 
+
+---



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.okWM6e/_old  2014-02-17 12:52:28.0 +0100
+++ /var/tmp/diff_new_pack.okWM6e/_new  2014-02-17 12:52:28.0 +0100
@@ -52,7 +52,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(pre):  pacemaker
 Requires:   pssh
-Requires:   python = 2.4
+Requires:   python = 2.6
 Requires:   python-PyYAML
 Requires:   python-dateutil
 Requires:   python-lxml

++ crmsh.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/.hg_archival.txt new/crmsh/.hg_archival.txt
--- old/crmsh/.hg_archival.txt  2014-02-10 08:37:44.0 +0100
+++ new/crmsh/.hg_archival.txt  2014-02-13 16:16:00.0 +0100
@@ -1,5 +1,5 @@
 repo: 13c3bd69e935090cd25213c474cafc3f01b5910b
-node: 49572fb0f7bbf6fce9cf3df967799c2132f109bb
+node: 364c59ee0612e71579ffacbdf628022043e61ba6
 branch: default
 latesttag: 1.2.6-rc1
-latesttagdistance: 415
+latesttagdistance: 425
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/crmsh.spec new/crmsh/crmsh.spec
--- old/crmsh/crmsh.spec2014-02-10 08:37:44.0 +0100
+++ new/crmsh/crmsh.spec2014-02-13 16:16:00.0 +0100
@@ -52,7 +52,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(pre):  pacemaker
 Requires:   pssh
-Requires:   python = 2.4
+Requires:   python = 2.6
 Requires:   python-PyYAML
 Requires:   python-dateutil
 Requires:   python-lxml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/doc/crm.8.txt new/crmsh/doc/crm.8.txt
--- old/crmsh/doc/crm.8.txt 2014-02-10 08:37:44.0 +0100
+++ new/crmsh/doc/crm.8.txt 2014-02-13 16:16:00.0 +0100
@@ -617,7 +617,7 @@
 repeated, `|` means pick one of many, and the rest are literals
 (strings, `:`, `=`).
 
-[[cmdhelp_._status,Cluster status]]
+[[cmdhelp_root_status,Cluster status]]
 === `status`
 
 Show cluster status. The status is displayed by `crm_mon`. Supply
@@ -3131,9 +3131,10 @@
 
 Usage:
 ...
-new config template [template ...] [params name=value ...]
+new config template [template ...] [params name=value ...]
 ...
-Examples:
+
+Example:
 ...
 new vip virtual-ip
 new bigfs ocfs2 params device=/dev/sdx8 directory=/bigfs
@@ -3500,7 +3501,9 @@
 
 If you think you may have found a bug or just need clarification
 from developers or your support, the `session pack` command can
-help create a report. This is an example:
+help create a report.
+
+Example:
 ...
 crm(live)history# timeframe Jul 18 12:00 Jul 18 12:30
 crm(live)history# session save strange_restart
@@ -3508,6 +3511,7 @@
 Report saved in .../strange_restart.tar.bz2
 crm(live)history# 
 ...
+
 In order to reduce report size and allow developers to
 concentrate on the issue, you should beforehand limit the time
 frame. Giving a meaningful session name helps too.
@@ -3931,7 +3935,7 @@
 session list
 ...
 
-[[cmdhelp_._report,Create cluster status report]]
+[[cmdhelp_root_report,Create cluster status report]]
 === `report`
 
 Interface to a tool for creating a cluster report. A report is an
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/hb_report/hb_report.in 
new/crmsh/hb_report/hb_report.in
--- old/crmsh/hb_report/hb_report.in2014-02-10 08:37:44.0 +0100
+++ new/crmsh/hb_report/hb_report.in2014-02-13 16:16:00.0 +0100
@@ -26,7 +26,7 @@
 unset LANG
 export 

commit gssdp for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-02-17 12:53:42

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


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2013-11-24 
11:56:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-02-17 
12:53:42.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  3 17:51:11 UTC 2014 - zai...@opensuse.org
+
+- Update to version 0.14.7:
+  + Add mising function declaration.
+
+---

Old:

  gssdp-0.14.6.tar.xz

New:

  gssdp-0.14.7.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.PtlXwB/_old  2014-02-17 12:53:43.0 +0100
+++ /var/tmp/diff_new_pack.PtlXwB/_new  2014-02-17 12:53:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# 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:   gssdp
-Version:0.14.6
+Version:0.14.7
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.6.tar.xz - gssdp-0.14.7.tar.xz ++
 20708 lines of diff (skipped)

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



commit harfbuzz for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package harfbuzz for openSUSE:Factory 
checked in at 2014-02-17 12:54:17

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


Package is harfbuzz

Changes:

--- /work/SRC/openSUSE:Factory/harfbuzz/harfbuzz.changes2013-12-24 
16:04:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.harfbuzz.new/harfbuzz.changes   2014-02-17 
12:54:18.0 +0100
@@ -1,0 +2,15 @@
+Tue Feb 11 22:42:42 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.9.26:
+  + Misc fixes.
+  + Fix application of 'rtlm' feature.
+  + Automatically apply frac/numr/dnom around U+2044 FRACTION
+SLASH.
+  + Uniscribe: fix scratch-buffer accounting.
+  + Reorder Tai Tham SAKOT to after tone-marks.
+  + Add Hangul shaper.
+  + Disable 'cswh' feature in Arabic shaper.
+  + Coretext: better handle surrogate pairs.
+  + Add HB_TAG_MAX and _HB_SCRIPT_MAX_VALUE.
+
+---

Old:

  harfbuzz-0.9.25.tar.bz2

New:

  harfbuzz-0.9.26.tar.bz2



Other differences:
--
++ harfbuzz.spec ++
--- /var/tmp/diff_new_pack.Fem8JI/_old  2014-02-17 12:54:19.0 +0100
+++ /var/tmp/diff_new_pack.Fem8JI/_new  2014-02-17 12:54:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package harfbuzz
 #
-# 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:   harfbuzz
-Version:0.9.25
+Version:0.9.26
 Release:0
 Summary:An OpenType text shaping engine
 License:MIT

++ harfbuzz-0.9.25.tar.bz2 - harfbuzz-0.9.26.tar.bz2 ++
 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 libmatroska for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libmatroska for openSUSE:Factory 
checked in at 2014-02-17 12:55:06

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


Package is libmatroska

Changes:

--- /work/SRC/openSUSE:Factory/libmatroska/libmatroska.changes  2014-01-23 
15:47:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmatroska.new/libmatroska.changes 
2014-02-17 12:55:07.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 11 21:21:03 UTC 2014 - dims...@opensuse.org
+
+- Also revert fvisibility-inlines-hidden: still breaks mkvtoolnix
+  on i586.
+
+---

Old:

  matroska-visibility.patch



Other differences:
--
++ libmatroska.spec ++
--- /var/tmp/diff_new_pack.UGrlHO/_old  2014-02-17 12:55:08.0 +0100
+++ /var/tmp/diff_new_pack.UGrlHO/_new  2014-02-17 12:55:08.0 +0100
@@ -29,7 +29,6 @@
 Source1:baselibs.conf
 BuildRequires:  gcc-c++
 BuildRequires:  libebml-devel = 1.3.0
-Patch0: matroska-visibility.patch
 
 %description
 Libmatroska is a C++ library to parse Matroska files (.mkv and .mka).
@@ -60,11 +59,10 @@
 %setup -q
 FAKE_BUILDTIMESTAMP=$(LC_ALL=C date -r %{_sourcedir}/%{name}.changes '+%a %b 
%e %H:%M:%S %Y')
 sed -i s/__TIMESTAMP__/\$FAKE_BUILDTIMESTAMP\/ matroska/KaxVersion.h
-#%patch0 -p1
 
 %build
 cd make/linux
-export CXXFLAGS='%{optflags} -fvisibility-inlines-hidden'
+export CXXFLAGS='%{optflags}'
 make %{?_smp_mflags} link=shared
 
 %install

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



commit isl for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package isl for openSUSE:Factory checked in 
at 2014-02-17 12:54:30

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


Package is isl

Changes:

--- /work/SRC/openSUSE:Factory/isl/isl.changes  2013-07-02 07:35:45.0 
+0200
+++ /work/SRC/openSUSE:Factory/.isl.new/isl.changes 2014-02-17 
12:54:31.0 +0100
@@ -1,0 +2,12 @@
+Thu Feb 13 12:19:28 UTC 2014 - rguent...@suse.com
+
+- Update to ISL version 0.12.2
+  * isl_int has been replaced by isl_val
+  * some of the old functions are still available in isl/deprecated/*.h
+  but they will be removed in the future
+  * The functions isl_pw_qpolynomial_eval, isl_union_pw_qpolynomial_eval,
+  isl_pw_qpolynomial_fold_eval and isl_union_pw_qpolynomial_fold_eval have
+  been changed to return an isl_val instead of an isl_qpolynomial
+- Remove obsolete config-guess-sub-update.diff patch
+
+---

Old:

  config-guess-sub-update.diff
  isl-0.12.tar.bz2

New:

  isl-0.12.2.tar.bz2



Other differences:
--
++ isl.spec ++
--- /var/tmp/diff_new_pack.Ybqqqf/_old  2014-02-17 12:54:32.0 +0100
+++ /var/tmp/diff_new_pack.Ybqqqf/_new  2014-02-17 12:54:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package isl
 #
-# 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
@@ -19,7 +19,7 @@
 %define islsover 10
 
 Name:   isl
-Version:0.12
+Version:0.12.2
 Release:0
 Summary:Integer Set Library
 License:MIT
@@ -28,7 +28,6 @@
 BuildRequires:  gmp-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: isl-%{version}.tar.bz2
-Patch0: config-guess-sub-update.diff
 
 %description
 ISL is a library for manipulating sets and relations of integer points
@@ -52,7 +51,6 @@
 
 %prep
 %setup -q -n isl-%{version}
-%patch0
 
 %build
 %configure

++ isl-0.12.tar.bz2 - isl-0.12.2.tar.bz2 ++
 29143 lines of diff (skipped)

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



commit libebml for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libebml for openSUSE:Factory checked 
in at 2014-02-17 12:54:36

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


Package is libebml

Changes:

--- /work/SRC/openSUSE:Factory/libebml/libebml.changes  2014-01-23 
15:47:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libebml.new/libebml.changes 2014-02-17 
12:54:37.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 11 19:54:48 UTC 2014 - dims...@opensuse.org
+
+- Also revert inlines-hidden: still breaks mkvtoolnix on i586.
+
+---

Old:

  libebml-visibility.patch



Other differences:
--
++ libebml.spec ++
--- /var/tmp/diff_new_pack.FwwjNS/_old  2014-02-17 12:54:38.0 +0100
+++ /var/tmp/diff_new_pack.FwwjNS/_new  2014-02-17 12:54:38.0 +0100
@@ -28,7 +28,6 @@
 Source: 
http://dl.matroska.org/downloads/libebml/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM libebml-1.3.0-6efcb74d1e.patch 
https://github.com/Matroska-Org/libebml/pull/1 reddw...@opensuse.org -- Add 
packaging updates from upstream
 Patch0: libebml-1.3.0-6efcb74d1e.patch
-Patch1: libebml-visibility.patch
 BuildRequires:  gcc-c++
 
 %description
@@ -57,11 +56,10 @@
 %prep
 %setup -q
 %patch0 -p1
-#%patch1 -p1
 
 %build
 cd make/linux
-make %{?_smp_mflags} link=shared CXXFLAGS=${CXXFLAGS:-%optflags} 
-fvisibility-inlines-hidden
+make %{?_smp_mflags} link=shared CXXFLAGS=${CXXFLAGS:-%optflags}
 
 %install
 cd make/linux

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



commit libt3config for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libt3config for openSUSE:Factory 
checked in at 2014-02-17 12:55:37

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


Package is libt3config

Changes:

--- /work/SRC/openSUSE:Factory/libt3config/libt3config.changes  2013-06-18 
10:32:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libt3config.new/libt3config.changes 
2014-02-17 12:55:38.0 +0100
@@ -1,0 +2,14 @@
+Fri Feb  7 22:02:17 UTC 2014 - dims...@opensuse.org
+
+- Declare CC=gcc to ensure we build with gcc; seems make falls back
+  to 'c99' otherwise (instead of requiring posix_cc).
+
+---
+Mon Feb  3 19:02:14 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 0.2.9
+* This release fixes a crashing bug in getting an XDG path if the
+  corresponding variable is not set and there is no relative path
+  available.
+
+---

Old:

  libt3config-0.2.8.tar.bz2

New:

  libt3config-0.2.9.tar.bz2



Other differences:
--
++ libt3config.spec ++
--- /var/tmp/diff_new_pack.1pBuzS/_old  2014-02-17 12:55:39.0 +0100
+++ /var/tmp/diff_new_pack.1pBuzS/_new  2014-02-17 12:55:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libt3config
 #
-# 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
@@ -18,7 +18,7 @@
 
 Name:   libt3config
 %define lname  libt3config0
-Version:0.2.8
+Version:0.2.9
 Release:0
 Summary:The Tilde Toolkit's library for reading and writing 
configuration files
 License:GPL-3.0
@@ -64,6 +64,8 @@
 %setup -q
 
 %build
+# The default compiler we use is called 'gcc', not c99
+export CC=gcc
 # not autoconf, but at least it ignores unknown arguments
 %configure --docdir=%_docdir/%name
 make %{?_smp_mflags}

++ libt3config-0.2.8.tar.bz2 - libt3config-0.2.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libt3config-0.2.8/Changelog 
new/libt3config-0.2.9/Changelog
--- old/libt3config-0.2.8/Changelog 2013-03-24 20:52:30.0 +0100
+++ new/libt3config-0.2.9/Changelog 2013-06-10 19:44:07.0 +0200
@@ -1,3 +1,8 @@
+Version 0.2.9:
+Bug fixes:
+- Return NULL from when t3_config_xdg_get_path if the variable for the
+  requested XDG location is not set and no relative location is known.
+
 Version 0.2.8:
 Bug fixes:
 - Properly disallow directory up references (..) in file names if
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libt3config-0.2.8/config.pkg 
new/libt3config-0.2.9/config.pkg
--- old/libt3config-0.2.8/config.pkg2013-03-24 20:52:29.0 +0100
+++ new/libt3config-0.2.9/config.pkg2013-06-10 19:44:07.0 +0200
@@ -93,7 +93,7 @@
fi
 
PKGCONFIG_DESC=Configuration file library
-   PKGCONFIG_VERSION=0.2.8
+   PKGCONFIG_VERSION=0.2.9
PKGCONFIG_URL=http://os.ghalkes.nl/t3/libt3config.html;
PKGCONFIG_CFLAGS=-I\${includedir}/t3/config
PKGCONFIG_LIBS=-lt3config
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libt3config-0.2.8/doc/API/annotated.html 
new/libt3config-0.2.9/doc/API/annotated.html
--- old/libt3config-0.2.8/doc/API/annotated.html2013-03-24 
20:52:30.0 +0100
+++ new/libt3config-0.2.9/doc/API/annotated.html2013-06-10 
19:44:07.0 +0200
@@ -94,7 +94,7 @@
 /div!-- contents --
 !-- start footer part --
 hr class=footer/address class=footersmall
-Generated on Sun Mar 24 2013 20:52:29 for libt3config by #160;a 
href=http://www.doxygen.org/index.html;
+Generated on Mon Jun 10 2013 19:44:07 for libt3config by #160;a 
href=http://www.doxygen.org/index.html;
 img class=footer src=doxygen.png alt=doxygen/
 /a 1.8.1.2
 /small/address
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libt3config-0.2.8/doc/API/classes.html 
new/libt3config-0.2.9/doc/API/classes.html
--- old/libt3config-0.2.8/doc/API/classes.html  2013-03-24 20:52:29.0 
+0100
+++ new/libt3config-0.2.9/doc/API/classes.html  2013-06-10 19:44:07.0 
+0200
@@ -94,7 +94,7 @@
 /div!-- contents --
 !-- start footer part --
 hr class=footer/address class=footersmall
-Generated on Sun Mar 24 2013 20:52:29 for libt3config by #160;a 

commit libt3highlight for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libt3highlight for openSUSE:Factory 
checked in at 2014-02-17 12:56:37

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


Package is libt3highlight

Changes:

--- /work/SRC/openSUSE:Factory/libt3highlight/libt3highlight.changes
2013-06-25 14:42:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.libt3highlight.new/libt3highlight.changes   
2014-02-17 12:56:38.0 +0100
@@ -1,0 +2,14 @@
+Fri Feb  7 22:05:09 UTC 2014 - dims...@opensuse.org
+
+- Declare CC=gcc to ensure we build with gcc; seems make falls back
+  to 'c99' otherwise (instead of requiring posix_cc).
+
+---
+Mon Feb  3 19:05:14 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 0.3.3
+* This release fixes a bug in the loop detection for
+  non-progressing patterns, and highlights java string constants
+  (they were already detected, just not highlighted).
+
+---

Old:

  libt3highlight-0.3.2.tar.bz2

New:

  libt3highlight-0.3.3.tar.bz2



Other differences:
--
++ libt3highlight.spec ++
--- /var/tmp/diff_new_pack.csALaX/_old  2014-02-17 12:56:39.0 +0100
+++ /var/tmp/diff_new_pack.csALaX/_new  2014-02-17 12:56:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libt3highlight
 #
-# 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
@@ -18,7 +18,7 @@
 
 Name:   libt3highlight
 %define lname  libt3highlight1
-Version:0.3.2
+Version:0.3.3
 Release:0
 Summary:The Tilde Toolkit's syntax highlighting library
 License:GPL-3.0
@@ -75,6 +75,7 @@
 %setup -q
 
 %build
+export CC=gcc
 %configure --docdir=%_docdir/%name
 make %{?_smp_mflags}
 

++ libt3highlight-0.3.2.tar.bz2 - libt3highlight-0.3.3.tar.bz2 ++
 1656 lines of diff (skipped)

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



commit libt3key for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libt3key for openSUSE:Factory 
checked in at 2014-02-17 13:00:28

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


Package is libt3key

Changes:

--- /work/SRC/openSUSE:Factory/libt3key/libt3key.changes2013-06-25 
14:42:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.libt3key.new/libt3key.changes   2014-02-17 
13:00:28.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  7 22:07:19 UTC 2014 - dims...@opensuse.org
+
+- Declare CC=gcc to ensure we build with gcc; seems make falls back
+  to 'c99' otherwise (instead of requiring posix_cc).
+
+---



Other differences:
--
++ libt3key.spec ++
--- /var/tmp/diff_new_pack.XaFiYw/_old  2014-02-17 13:00:29.0 +0100
+++ /var/tmp/diff_new_pack.XaFiYw/_new  2014-02-17 13:00:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libt3key
 #
-# 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
@@ -81,6 +81,7 @@
 %setup -q
 
 %build
+export CC=gcc
 %configure --docdir=%_docdir/%name
 make %{?_smp_mflags}
 

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



commit libt3window for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libt3window for openSUSE:Factory 
checked in at 2014-02-17 13:02:48

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


Package is libt3window

Changes:

--- /work/SRC/openSUSE:Factory/libt3window/libt3window.changes  2013-07-02 
12:25:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.libt3window.new/libt3window.changes 
2014-02-17 13:02:49.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  7 22:08:26 UTC 2014 - dims...@opensuse.org
+
+- Declare CC=gcc to ensure we build with gcc; seems make falls back
+  to 'c99' otherwise (instead of requiring posix_cc).
+
+---



Other differences:
--
++ libt3window.spec ++
--- /var/tmp/diff_new_pack.HngSdu/_old  2014-02-17 13:02:50.0 +0100
+++ /var/tmp/diff_new_pack.HngSdu/_new  2014-02-17 13:02:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libt3window
 #
-# 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
@@ -72,6 +72,7 @@
 %setup -q
 
 %build
+export CC=gcc
 %configure --docdir=%_docdir/%name
 make %{?_smp_mflags}
 

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



commit pango for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package pango for openSUSE:Factory checked 
in at 2014-02-17 13:03:08

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


Package is pango

Changes:

--- /work/SRC/openSUSE:Factory/pango/pango.changes  2013-11-24 
12:21:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.pango.new/pango.changes 2014-02-17 
13:03:10.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  5 10:43:09 UTC 2014 - dims...@opensuse.org
+
+- Update to version 1.36.2:
+  + Win32 build fixes.
+  + Fix a possible strtol(NULL) (bgo#719549).
+  + Fix --with-included-modules.
+  + Fix a FPE in pango_layout_iter_get_char_extents (bgo#720379).
+  + Use 96 dpi for CoreText by default.
+
+---

Old:

  pango-1.36.1.tar.xz

New:

  pango-1.36.2.tar.xz



Other differences:
--
++ pango.spec ++
--- /var/tmp/diff_new_pack.axcTE2/_old  2014-02-17 13:03:10.0 +0100
+++ /var/tmp/diff_new_pack.axcTE2/_new  2014-02-17 13:03:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pango
 #
-# 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
@@ -20,7 +20,7 @@
 %define pango_binary_version 1.8.0
 
 Name:   pango
-Version:1.36.1
+Version:1.36.2
 Release:0
 Summary:Library for Layout and Rendering of Text
 License:LGPL-2.1+

++ pango-1.36.1.tar.xz - pango-1.36.2.tar.xz ++
 21720 lines of diff (skipped)

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



commit libtranscript for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libtranscript for openSUSE:Factory 
checked in at 2014-02-17 13:03:01

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


Package is libtranscript

Changes:

--- /work/SRC/openSUSE:Factory/libtranscript/libtranscript.changes  
2013-06-18 10:32:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libtranscript.new/libtranscript.changes 
2014-02-17 13:03:02.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  7 22:11:49 UTC 2014 - dims...@opensuse.org
+
+- Declare CC=gcc to ensure we build with gcc; seems make falls back
+  to 'c99' otherwise (instead of requiring posix_cc).
+
+---



Other differences:
--
++ libtranscript.spec ++
--- /var/tmp/diff_new_pack.tGs8p4/_old  2014-02-17 13:03:03.0 +0100
+++ /var/tmp/diff_new_pack.tGs8p4/_new  2014-02-17 13:03:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libtranscript
 #
-# 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
@@ -63,6 +63,7 @@
 %setup -q
 
 %build
+export CC=gcc
 %configure --docdir=%_docdir/%name
 make %{?_smp_mflags}
 

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



commit postfix for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

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

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


Package is postfix

Changes:

--- /work/SRC/openSUSE:Factory/postfix/postfix.changes  2013-10-14 
09:30:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.postfix.new/postfix.changes 2014-02-17 
13:04:29.0 +0100
@@ -1,0 +2,27 @@
+Wed Feb 12 15:10:27 UTC 2014 - vark...@suse.com
+
+- bnc#862662 - Unable to configure postfix SMTP with forced TLS using YaST2
+
+- Update to 2.11.0
+  * TLS
+o Support for PKI-less TLS server certificate verification, where 
+  the CA public key or the server certificate is identified via DNSSEC 
lookup
+  * LMDB database support
+  * master
+o The master_service_disable parameter value syntax has changed:
+  use service/type instead of service.type.
+  * postconf:
+o Support for advanced master.cf query and update operations.
+  This was implemented primarily to support automated system management 
tools.
+o The postconf command produces more warnings
+  * relay safety
+New smtpd_relay_restrictions parameter built-in default settings:
+smtpd_relay_restrictions = 
+   permit_mynetworks 
+   permit_sasl_authenticated 
+   defer_unauth_destination
+  * postscreen whitelisting
+Allow a remote SMTP client to skip postscreen(8) tests based on
+its postscreen_dnsbl_sites score. 
+
+---

Old:

  postfix-2.9.6.tar.gz
  postfix-2.9.6.tar.gz.sig

New:

  add_missed_library.patch
  postfix-2.11.0.tar.gz
  postfix-2.11.0.tar.gz.sig



Other differences:
--
++ postfix.spec ++
--- /var/tmp/diff_new_pack.ocUiG5/_old  2014-02-17 13:04:29.0 +0100
+++ /var/tmp/diff_new_pack.ocUiG5/_new  2014-02-17 13:04:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postfix
 #
-# 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
@@ -20,7 +20,7 @@
 Summary:A fast, secure, and flexible mailer
 License:IPL-1.0
 Group:  Productivity/Networking/Email/Servers
-Version:2.9.6
+Version:2.11.0
 Release:0
 Url:http://www.postfix.org/
 
@@ -42,6 +42,8 @@
 Patch21:postfix-opensslconfig.patch
 Patch100:   %{name}-vda-v11-2.9.6.patch
 Patch101:   postfix-db6.diff
+#PATCH-FIX-SLE PATCH-FIX-OPENSUSE to be able to build the agent tls_proxy
+Patch102:   add_missed_library.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %insserv_prereq %fillup_prereq
 PreReq: /usr/bin/getent
@@ -156,9 +158,9 @@
 %prep
 %{?gpg_verify: %gpg_verify %{S:1}}
 %setup -q -a 2 -a 3
-%patch
-%patch1
-%patch2
+%patch   -p1
+%patch1  -p1
+%patch2  -p1
 %patch3
 %patch10
 %patch11
@@ -167,6 +169,7 @@
 %patch21 -p1
 %patch100 -p1
 %patch -P 101 -p1
+%patch102 -p0
 # ---
 
 %build

++ add_missed_library.patch ++
--- src/tlsproxy/Makefile.in.orig   2014-02-12 15:41:35.614464191 +0100
+++ src/tlsproxy/Makefile.in2014-02-12 15:42:14.445752897 +0100
@@ -9,7 +9,7 @@
 PROG   = tlsproxy
 INC_DIR = ../../include
 LIBS   = ../../lib/libtls.a ../../lib/libmaster.a ../../lib/libglobal.a \
-   ../../lib/libutil.a
+   ../../lib/libutil.a ../../lib/libdns.a
 
 .c.o:; $(CC) $(CFLAGS) -c $*.c
 

++ dynamic_maps.patch ++
 857 lines (skipped)
 between /work/SRC/openSUSE:Factory/postfix/dynamic_maps.patch
 and /work/SRC/openSUSE:Factory/.postfix.new/dynamic_maps.patch

++ dynamic_maps_pie.patch ++
 661 lines (skipped)
 between /work/SRC/openSUSE:Factory/postfix/dynamic_maps_pie.patch
 and /work/SRC/openSUSE:Factory/.postfix.new/dynamic_maps_pie.patch

++ pointer_to_literals.patch ++
--- /var/tmp/diff_new_pack.ocUiG5/_old  2014-02-17 13:04:29.0 +0100
+++ /var/tmp/diff_new_pack.ocUiG5/_new  2014-02-17 13:04:29.0 +0100
@@ -1,8 +1,7 @@
-Index: src/cleanup/cleanup_message.c
-===
 src/cleanup/cleanup_message.c.orig
-+++ src/cleanup/cleanup_message.c
-@@ -290,7 +290,7 @@ static const char *cleanup_act(CLEANUP_S
+diff -Nur postfix-2.11.0/src/cleanup/cleanup_message.c 
postfix-2.11.0-patched/src/cleanup/cleanup_message.c
+--- postfix-2.11.0/src/cleanup/cleanup_message.c   2013-11-12 

commit rubygem-rspec-mocks for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rspec-mocks for 
openSUSE:Factory checked in at 2014-02-17 13:05:03

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


Package is rubygem-rspec-mocks

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rspec-mocks/rubygem-rspec-mocks.changes  
2013-10-31 15:59:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-mocks.new/rubygem-rspec-mocks.changes 
2014-02-17 13:05:04.0 +0100
@@ -1,0 +2,11 @@
+Thu Feb  6 18:00:19 UTC 2014 - co...@suse.com
+
+- updated to version 2.14.5
+ Bug Fixes:
+ 
+ * Fix regression that caused block implementations to not receive all
+   args on 1.8.7 if the block also receives a block, due to Proc#arity
+   reporting `1` no matter how many args the block receives if it
+   receives a block, too. (Myron Marston)
+
+---

Old:

  rspec-mocks-2.14.4.gem

New:

  rspec-mocks-2.14.5.gem



Other differences:
--
++ rubygem-rspec-mocks.spec ++
--- /var/tmp/diff_new_pack.GmjWwj/_old  2014-02-17 13:05:05.0 +0100
+++ /var/tmp/diff_new_pack.GmjWwj/_new  2014-02-17 13:05:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rspec-mocks
 #
-# 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,17 +17,17 @@
 
 
 Name:   rubygem-rspec-mocks
-Version:2.14.4
+Version:2.14.5
 Release:0
 %define mod_name rspec-mocks
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 BuildRequires:  rubygem(rdoc)  3.10
 Url:http://github.com/rspec/rspec-mocks
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Summary:rspec-mocks-2.14.4
+Summary:rspec-mocks-2.14.5
 License:MIT
 Group:  Development/Languages/Ruby
 
@@ -61,24 +61,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/License.txt 
%buildroot/%{_docdir}/%{name}/License.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/Changelog.md 
%buildroot/%{_docdir}/%{name}/Changelog.md
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/License.txt 
%buildroot/%{_docdir}/%{name}/License.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/Changelog.md 
%buildroot/%{_docdir}/%{name}/Changelog.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-rspec-expectations for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rspec-expectations for 
openSUSE:Factory checked in at 2014-02-17 13:04:56

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


Package is rubygem-rspec-expectations

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-rspec-expectations/rubygem-rspec-expectations.changes
2013-11-24 18:13:20.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-expectations.new/rubygem-rspec-expectations.changes
   2014-02-17 13:04:57.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb  6 18:00:15 UTC 2014 - co...@suse.com
+
+- updated to version 2.14.5
+ Bug fixes
+ * Fix wrong matcher descriptions with falsey expected value (yujinakayama)
+ 
+---

Old:

  rspec-expectations-2.14.4.gem

New:

  rspec-expectations-2.14.5.gem



Other differences:
--
++ rubygem-rspec-expectations.spec ++
--- /var/tmp/diff_new_pack.7aVcUu/_old  2014-02-17 13:04:58.0 +0100
+++ /var/tmp/diff_new_pack.7aVcUu/_new  2014-02-17 13:04:58.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rspec-expectations
 #
-# 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,17 +17,17 @@
 
 
 Name:   rubygem-rspec-expectations
-Version:2.14.4
+Version:2.14.5
 Release:0
 %define mod_name rspec-expectations
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 BuildRequires:  rubygem(rdoc)  3.10
 Url:http://github.com/rspec/rspec-expectations
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Summary:rspec-expectations-2.14.4
+Summary:rspec-expectations-2.14.5
 License:MIT
 Group:  Development/Languages/Ruby
 
@@ -61,24 +61,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/License.txt 
%buildroot/%{_docdir}/%{name}/License.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/Changelog.md 
%buildroot/%{_docdir}/%{name}/Changelog.md
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/License.txt 
%buildroot/%{_docdir}/%{name}/License.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/Changelog.md 
%buildroot/%{_docdir}/%{name}/Changelog.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit libserf.2547 for openSUSE:13.1:Update

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package libserf.2547 for 
openSUSE:13.1:Update checked in at 2014-02-17 14:05:56

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


Package is libserf.2547

Changes:

New Changes file:

--- /dev/null   2014-02-13 01:09:38.344032506 +0100
+++ /work/SRC/openSUSE:13.1:Update/.libserf.2547.new/libserf.changes
2014-02-17 14:05:57.0 +0100
@@ -0,0 +1,297 @@
+---
+Sun Feb  9 15:01:12 UTC 2014 - andreas.stie...@gmx.de
+
+- update to Serf 1.3.4 [bnc#862983]
+  This release fixes a race condition during OpenSSL initialisation
+  and two ssl tunnel setup failures
+  * Endless loop during ssl tunnel setup with Negotiate authn
+  * Can't setup ssl tunnel which sends Connection close header
+  * race condition when initializing OpenSSL from multiple threads
+  * Incorrect pkg-config file when GSSAPI isn't configured
+- also includes changes from 1.3.3
+  This is a small patch release containing a fix to solve a problem
+  connecting to multi-homed servers (e.g. ipv4/ipv6) and some
+  improvements in the use of error codes during ssl certificate
+  validation and  handling of timed out connections.
+  * Try more addresses of multihomed servers
+  * Handle X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE correctly
+  * Return APR_TIMEUP from poll() to enable detecting connection
+timeouts
+
+---
+Fri Oct  4 20:45:19 UTC 2013 - andreas.stie...@gmx.de
+
+- update to 1.3.2
+- bugs fixed:
+  * HTTP headers should be treated case-insensitively
+  * Compilation breaks with Codewarrior compiler
+  * Fix crash during cleanup of SSL buckets in apr_terminate()
+  * Fix host header when url contains a username or password
+  * Handle authentication for responses to HEAD requests
+  * Improve serf_get: add option to add request headers, allow url 
+with query, allow HEAD requests
+  * Improve RFC conformance: don't expect body for certain responses
+  * Do not invoke progress callback when no data was received
+  * And more test suite fixes and build warning cleanups
+- SCons-related fixes:
+  * Fix build when GSSAPI not in default include path
+  - Use both MAJOR and MINOR version for the shared library name
+   Fix the .pc file when installing serf in a non-default LIBDIR
+- drop serf-1.3.x-shlibver-soname.patch, committed upstream
+
+---
+Fri Sep 27 23:05:02 UTC 2013 - andreas.stie...@gmx.de
+
+- adjust library package name, SONAME and SHLIBVER to match future
+  releases and make maintenance easier
+  serf-1.3.x-shlibver-soname.patch [bnc#842941]
+
+---
+Thu Aug 15 19:53:09 UTC 2013 - andreas.stie...@gmx.de
+
+- update to 1.3.1
+- bug fixes:
+  * endless loop if server doesn't accept Negotiate authentication.
+  * ssl/tls renegotiation fails
+  * error with ssl tunnel over proxy with KeepAlive off and
+Basic authentication.
+  * Fixed bugs with authentication
+  * build system changes ( already covered by patches below )
+- packaging changes:
+  * remove make and libtool build requirements
+  * removed scons patches, committed upstream:
+libserf-1.3.x-gssapi-libs.patch
+libserf-1.3.x-libdir.patch
+libserf-1.3.x-scons-check-exit.patch
+libserf-1.3.x-soname.patch
+
+---
+Sat Aug 10 18:43:17 UTC 2013 - andreas.stie...@gmx.de
+
+- update libserf-1.3.x-soname.patch to move shared library version
+  link generation into scons
+
+---
+Tue Jul 30 22:38:55 UTC 2013 - andreas.stie...@gmx.de
+
+- run tests for 12.2 and later only
+
+---
+Sun Jul 28 14:54:40 UTC 2013 - andreas.stie...@gmx.de
+
+- update libserf-1.3.x-soname.patch to add SHLIBVERSION to make
+  scons add a SONAME instead of a global linker flag. This is only
+  effective with scons = 2.3
+- fix running of regression/unit test suite:
+  * add libserf-1.3.x-scons-check-exit.patch to return a non-zero
+exist status upon check failures
+  * call scons check with CFLAGS
+
+---
+Fri Jul 26 22:10:36 UTC 2013 - andreas.stie...@gmx.de
+
+- update libserf-1.3.x-gssapi-libs.patch with upstream commit,
+  mark as committed upstream
+
+---
+Wed Jul 24 22:58:56 UTC 2013 - andreas.stie...@gmx.de
+
+- update Serf 1.3.0
+- improvements: 
+  * Improved Basic and Digest authentication:
++ remember credentials on 

commit kdebase4-workspace for openSUSE:13.1:Update

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:13.1:Update checked in at 2014-02-17 14:06:20

Comparing /work/SRC/openSUSE:13.1:Update/kdebase4-workspace (Old)
 and  /work/SRC/openSUSE:13.1:Update/.kdebase4-workspace.new (New)


Package is kdebase4-workspace

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.GJPw2x/_old  2014-02-17 14:06:21.0 +0100
+++ /var/tmp/diff_new_pack.GJPw2x/_new  2014-02-17 14:06:21.0 +0100
@@ -1 +1 @@
-link package='kdebase4-workspace.2510' cicount='copy' /
+link package='kdebase4-workspace.2544' cicount='copy' /

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



commit ruby for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package ruby for openSUSE:Factory checked in 
at 2014-02-17 18:51:25

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


Package is ruby

Changes:

--- /work/SRC/openSUSE:Factory/ruby/ruby.changes2014-02-12 
19:35:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.ruby.new/ruby.changes   2014-02-17 
18:51:26.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 15 21:05:19 UTC 2014 - kkae...@suse.com
+
+- add internal.h to ruby-devel-extra
+
+---



Other differences:
--
++ ruby.spec ++
--- /var/tmp/diff_new_pack.sY6unB/_old  2014-02-17 18:51:27.0 +0100
+++ /var/tmp/diff_new_pack.sY6unB/_new  2014-02-17 18:51:27.0 +0100
@@ -310,7 +310,7 @@
 echo %defattr(-,root,root,-)  devel-extra-excludes
 echo %defattr(-,root,root,-)  devel-extra-list
 for i in iseq.h insns.inc insns_info.inc revision.h version.h  
thread_pthread.h \
-  ruby_atomic.h method.h id.h vm_core.h vm_opts.h node.h eval_intern.h 
vm_debug.h; do
+  ruby_atomic.h method.h internal.h id.h vm_core.h vm_opts.h node.h 
eval_intern.h vm_debug.h; do
   install -m 644 $i %{buildroot}%{_includedir}/ruby-%{rb_ver}/
   echo %exclude %{_includedir}/ruby-%{rb_ver}/$i  devel-extra-excludes  
   echo %{_includedir}/ruby-%{rb_ver}/$i  devel-extra-list

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