commit nagios-theme-switcher for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package nagios-theme-switcher for 
openSUSE:Factory checked in at 2014-06-05 10:50:01

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


Package is nagios-theme-switcher

Changes:

--- 
/work/SRC/openSUSE:Factory/nagios-theme-switcher/nagios-theme-switcher.changes  
2014-03-15 17:37:02.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.nagios-theme-switcher.new/nagios-theme-switcher.changes
 2014-06-05 10:50:07.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun  4 08:03:08 UTC 2014 - l...@linux-schulserver.de
+
+- Update to 1.3:
+  + use systemctl on newer distributions
+  + run apache try-restart instead of restart
+
+---



Other differences:
--
++ nagios-theme-switcher.spec ++
--- /var/tmp/diff_new_pack.BeOF0s/_old  2014-06-05 10:50:09.0 +0200
+++ /var/tmp/diff_new_pack.BeOF0s/_new  2014-06-05 10:50:09.0 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package nagios-theme-switcher
 #
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 by Lars Vogdt
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,14 +13,17 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 Name:   nagios-theme-switcher
-Version:1.2
-Release:1
-License:BSD-3-Clause
+Version:1.3
+Release:0
 Summary:Simple Theme Switcher for Nagios Webfrontend
-Url:http://en.opensuse.org/nagios-theme-switcher
+License:BSD-3-Clause
 Group:  System/Monitoring
+Url:http://en.opensuse.org/nagios-theme-switcher
 Source0:switch-nagios-theme
 Source1:switch-nagios-theme.8
 %if 0%{?suse_version}

++ switch-nagios-theme ++
--- /var/tmp/diff_new_pack.BeOF0s/_old  2014-06-05 10:50:09.0 +0200
+++ /var/tmp/diff_new_pack.BeOF0s/_new  2014-06-05 10:50:09.0 +0200
@@ -37,6 +37,7 @@
 DEFAULT_THEME='nagios'
 BACKUP_DIR=$THEME_DIR/backups
 APACHECTL='/etc/init.d/apache2'
+SYSTEMCTL='/usr/bin/systemctl'
 DO_ECHO=''
 
 function usage() {
@@ -159,8 +160,10 @@
 fi
 
 if [ ! -x $APACHECTL ]; then
-   echo ERROR: Could not execute $APACHECTL 2
-   ERROR=1
+   if [ ! -x $SYSTEMCTL ]; then 
+   echo ERROR: Can not restart apache2 - neither $APACHECTL nor 
$SYSTEMCTL are available 2
+   ERROR=1
+   fi
 fi
 
 if [ -n $ERROR ]; then
@@ -179,4 +182,9 @@
 $DO_ECHO sed -i s|^Alias.*/nagios.*$CURRENT_THEME.*|Alias /nagios 
\$NEW_THEME\|; \
s|Directory.*$CURRENT_THEME.*|Directory \$NEW_THEME\| 
$APACHE_CONFIG
 
-$DO_ECHO $APACHECTL restart
+if [ -x $APACHECTL ]; then
+   $DO_ECHO $APACHECTL try-restart
+elif [ -x $SYSTEMCTL ]; then
+   $DO_ECHO $SYSTEMCTL try-restart apache2
+fi
+

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



commit nfs4-acl-tools for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package nfs4-acl-tools for openSUSE:Factory 
checked in at 2014-06-05 10:49:59

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


Package is nfs4-acl-tools

Changes:

--- /work/SRC/openSUSE:Factory/nfs4-acl-tools/nfs4-acl-tools.changes
2014-03-25 13:24:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.nfs4-acl-tools.new/nfs4-acl-tools.changes   
2014-06-05 10:50:04.0 +0200
@@ -1,0 +2,6 @@
+Thu May 29 04:59:29 UTC 2014 - crrodrig...@opensuse.org
+
+- nfs-acl-tools-xattr.patch For over 10 years the *xattr*
+  functions have been in glibc instead of libattr, use them instead.
+
+---

New:

  nfs-acl-tools-xattr.patch



Other differences:
--
++ nfs4-acl-tools.spec ++
--- /var/tmp/diff_new_pack.L3UTma/_old  2014-06-05 10:50:07.0 +0200
+++ /var/tmp/diff_new_pack.L3UTma/_new  2014-06-05 10:50:07.0 +0200
@@ -28,8 +28,7 @@
 Source0:%{name}-%{version}-git4cb4187e83.tar.bz2
 # PATCH-FIX-UPSTREAM allow-spaces-in-principal-names.patch bnc#772896 
nfbr...@suse.com
 Patch1: allow-spaces-in-principal-names.patch
-
-BuildRequires:  libattr-devel
+Patch2: nfs-acl-tools-xattr.patch
 BuildRequires:  libtool
 
 %description
@@ -40,6 +39,7 @@
 %prep
 %setup -q -n %{name}-%{version}-git4cb4187e83
 %patch1 -p1
+%patch2 -p1
 
 %build
 export CFLAGS=$RPM_OPT_FLAGS -fPIE

++ nfs-acl-tools-xattr.patch ++
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/configure.ac
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/configure.ac
@@ -23,12 +23,8 @@ AC_FUNC_MALLOC
 AC_FUNC_STAT
 AC_CHECK_FUNCS([memset strchr])
 
-AC_CHECK_LIB([attr], [getxattr])
-
 AC_PACKAGE_GLOBALS([nfs4acl])
 AC_PACKAGE_UTILITIES([nfs4acl])
-AC_PACKAGE_NEED_ATTR_XATTR_H
-AC_PACKAGE_NEED_GETXATTR_LIBATTR
 AC_MANUAL_FORMAT
 
 AC_FUNC_GCC_VISIBILITY
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/libnfs4acl/nfs4_acl_for_path.c
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/libnfs4acl/nfs4_acl_for_path.c
@@ -32,13 +32,17 @@
  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-
+#include errno.h
 #include sys/types.h
-#include attr/xattr.h
+#include sys/xattr.h
 #include sys/stat.h
 #include stdio.h
 #include libacl_nfs4.h
 
+#ifndef ENOATTR
+#define ENOATTR ENODATA/* No such attribute */
+#endif
+
 static int nfs4_getxattr(const char *, void *, size_t);
 
 /* returns a newly-allocated struct nfs4_acl for `path', or NULL on error. */
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/libnfs4acl/nfs4_set_acl.c
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/libnfs4acl/nfs4_set_acl.c
@@ -29,14 +29,19 @@
  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
+#include errno.h
 #include sys/types.h
 #include sys/stat.h
 #include sys/errno.h
-#include attr/xattr.h
+#include sys/xattr.h
 #include unistd.h
 #include stdio.h
 #include libacl_nfs4.h
 
+#ifndef ENOATTR
+#define ENOATTR ENODATA/* No such attribute */
+#endif
+
 int nfs4_set_acl(struct nfs4_acl *acl, const char *path)
 {
int res = 0;
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/nfs4_setfacl/nfs4_setfacl.c
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/nfs4_setfacl/nfs4_setfacl.c
@@ -34,11 +34,12 @@
  */
 
 #define _XOPEN_SOURCE 500
+#include errno.h
 #include sys/types.h
 #include sys/wait.h
 #include sys/stat.h
 #include sys/errno.h
-#include attr/xattr.h
+#include sys/xattr.h
 #include stdlib.h
 #include unistd.h
 #include ctype.h
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/libnfs4acl/Makefile
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/libnfs4acl/Makefile
@@ -37,7 +37,7 @@ LTLDFLAGS += -Wl,--version-script,$(TOPD
 include $(TOPDIR)/include/builddefs
 
 LTLIBRARY = libnfs4acl.la
-LTLIBS = -lattr
+LTLIBS =
 LTDEPENDENCIES = $(TOPDIR)/include/nfs4.h
 
 # 3 2 1  -  .so.2.1.2
--- nfs4-acl-tools-0.3.3-git4cb4187e83.orig/include/builddefs.in
+++ nfs4-acl-tools-0.3.3-git4cb4187e83/include/builddefs.in
@@ -40,7 +40,7 @@ OPTIMIZER = @opt_build@
 MALLOCLIB = @malloc_lib@
 
 LIBNFS4ACL = $(TOPDIR)/libnfs4acl/libnfs4acl.la
-LIBATTR = @libattr@
+LIBATTR =
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit smartmontools for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package smartmontools for openSUSE:Factory 
checked in at 2014-06-05 10:49:34

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


Package is smartmontools

Changes:

--- /work/SRC/openSUSE:Factory/smartmontools/smartmontools.changes  
2013-12-08 19:49:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.smartmontools.new/smartmontools.changes 
2014-06-05 10:49:36.0 +0200
@@ -1,0 +2,5 @@
+Mon May 26 15:26:24 UTC 2014 - crrodrig...@opensuse.org
+
+- Build with large file support in 32 bit systems. 
+
+---



Other differences:
--
++ smartmontools.spec ++
--- /var/tmp/diff_new_pack.03cJuR/_old  2014-06-05 10:49:40.0 +0200
+++ /var/tmp/diff_new_pack.03cJuR/_new  2014-06-05 10:49:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package smartmontools
 #
-# 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
@@ -107,8 +107,8 @@
 
 %build
 %if 0%{?suse_version}  1000
-export CFLAGS=%{optflags} -fPIE
-export CXXFLAGS=%{optflags} -fPIE
+export CFLAGS=%{optflags} $(getconf LFS_CFLAGS) -fPIE
+export CXXFLAGS=%{optflags} -fPIE $(getconf LFS_CFLAGS)
 export LDFLAGS=-pie
 %endif
 %configure\


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



commit usb_modeswitch for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package usb_modeswitch for openSUSE:Factory 
checked in at 2014-06-05 10:49:51

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


Package is usb_modeswitch

Changes:

--- /work/SRC/openSUSE:Factory/usb_modeswitch/usb_modeswitch.changes
2013-05-16 18:17:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.usb_modeswitch.new/usb_modeswitch.changes   
2014-06-05 10:49:52.0 +0200
@@ -1,0 +2,9 @@
+Mon May 26 09:41:27 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 2.1.1
+  * Code cleanup
+  * Better usage of libusb1
+  * -I flag meaning reversed, default is to skip SCSI inquiry
+  * Experimental systemd and upstart integration
+
+---

Old:

  usb-modeswitch-1.2.5.tar.bz2
  usb-modeswitch-data-20121109.tar.bz2

New:

  usb-modeswitch-2.1.1.tar.bz2
  usb-modeswitch-data-20140327.tar.bz2



Other differences:
--
++ usb_modeswitch.spec ++
--- /var/tmp/diff_new_pack.rcN8kl/_old  2014-06-05 10:49:54.0 +0200
+++ /var/tmp/diff_new_pack.rcN8kl/_new  2014-06-05 10:49:54.0 +0200
@@ -23,14 +23,14 @@
 %endif
 
 Name:   usb_modeswitch
-Version:1.2.5
+Version:2.1.1
 Release:0
 Summary:A mode switching tool for controlling multiple-device USB gear
 License:GPL-2.0+
 Group:  Hardware/Mobile
 Url:http://www.draisberghof.de/usb_modeswitch
 %define source_nameusb-modeswitch
-%define date   20121109
+%define date   20140327
 Source0:
http://www.draisberghof.de/usb_modeswitch/%{source_name}-%{version}.tar.bz2
 Source1:
http://www.draisberghof.de/usb_modeswitch/%{source_name}-data-%{date}.tar.bz2
 Source2:http://www.draisberghof.de/usb_modeswitch/device_reference.txt
@@ -41,6 +41,7 @@
 BuildRequires:  libusb-devel
 BuildRequires:  tcl
 BuildRequires:  udev
+BuildRequires:  pkg-config
 Requires:   tcl = 8.4
 Requires:   usb_modeswitch-data = %version
 
@@ -84,6 +85,7 @@
 /var/lib/usb_modeswitch
 %config %{_sysconfdir}/usb_modeswitch.conf
 %{_mandir}/man1/usb_modeswitch.1.gz
+%{_mandir}/man1/usb_modeswitch_dispatcher.1.gz
 
 %files data
 %defattr(-,root,root,-)

++ device_reference.txt ++
--- /var/tmp/diff_new_pack.rcN8kl/_old  2014-06-05 10:49:54.0 +0200
+++ /var/tmp/diff_new_pack.rcN8kl/_new  2014-06-05 10:49:54.0 +0200
@@ -1,7 +1,7 @@
 #
 # Device and Configuration Reference (UTF-8 encoding used)
 #
-# Last modified: 2012-11-08
+# Last modified: 2013-11-13
 #
 # Collection of configurations for usb_modeswitch, a mode switching
 # tool for controlling flip flop (multiple mode) USB devices
@@ -115,7 +115,10 @@
 # * SequansMode 0/1-N
 # * MobileActionMode 0/1   -A
 # * QisdaMode 0/1  -B
-# * CiscoMode 0/1  -B
+# * QuantaMode 0/1 -E
+# * PantechMode 0/1-F
+# * BlackberryMode 0/1 -Z
+# * CiscoMode 0/1  -L
 #
 #
 # Flags to support devices that need special control messages.
@@ -170,11 +173,17 @@
 # Mostly useful for non-modem devices.
 #
 #
-# * WaitBefore seconds(no command line parameter)
+# * WaitBefore seconds (no command line parameter)
 #
 # Waiting time before taking any action. Helps with some sensitive setups.
 #
 #
+# * NoMBIMCheck 0|1(no command line parameter)
+#
+# Disable the check for new MBIM standard devices, which is always done
+# by default.
+#
+#
 #
 # - All other entries in config files are just ignored -
 
@@ -2267,19 +2276,6 @@
 MessageContent=55534243123456780606f504025270
 
 
-
-# Vodafone/ZTE K3806-Z
-
-DefaultVendor= 0x19d2
-DefaultProduct=0x0013
-
-TargetVendor=  0x19d2
-TargetProduct= 0x0015
-
-MessageContent=5553424312345678061b000200
-
-NeedResponse=1
-
  
 # T-Mobile NL (Huawei E352)
 #
@@ -3020,21 +3016,7 @@
 
 
 
-# TW-3G HSPA+ 
-#
-# Contributor: Nordic Nurse
-
-DefaultVendor= 0x1c9e 
-DefaultProduct=0x98ff 
-
-TargetVendor=  0x1c9e 
-TargetProduct= 0x9801 
-
-MessageContent=55534243123456788606f504025270
-
-
-
-# Samsung GT-B1110 
+# Samsung GT-B1110
 #
 # Contributor: Spelroth
 
@@ -3571,5 +3553,464 @@
 MessageContent=55534243123456780011062001
 
 
+###
+# Changhong CH690
+
+DefaultVendor= 0x2077
+DefaultProduct=0x1000
+

commit rdesktop for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package rdesktop for openSUSE:Factory 
checked in at 2014-06-05 10:49:36

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


Package is rdesktop

Changes:

--- /work/SRC/openSUSE:Factory/rdesktop/rdesktop.changes2013-11-29 
16:25:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.rdesktop.new/rdesktop.changes   2014-06-05 
10:49:42.0 +0200
@@ -1,0 +2,16 @@
+Sun Jun  1 13:42:16 UTC 2014 - ch...@computersalat.de
+
+- update to 1.8.2
+  * Support enhanced server redirection (Session broker 2012)
+  * Support License Error Alert PDU
+  * Changed default driver for printer redirection
+  * Fix CredSSP login using non-ASCII username/password
+  * Fix double login prompt bug with Win2008 server redirection
+  * Fix keysym collisions
+  * Fix mouse cursor with 2012 R2
+  * Fix local drive redirection with Win8 / Win2012
+  * Fix issue with mouse cursor hotspot
+  * Fix issue with mouse / keyboard against VirtualBox RDP
+  * Fix uncomplete czech keymap * Fix error in dutch keymap
+
+---

Old:

  rdesktop-1.8.1.tar.gz

New:

  rdesktop-1.8.2.tar.gz



Other differences:
--
++ rdesktop.spec ++
--- /var/tmp/diff_new_pack.FBr5Nv/_old  2014-06-05 10:49:43.0 +0200
+++ /var/tmp/diff_new_pack.FBr5Nv/_new  2014-06-05 10:49:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rdesktop
 #
-# 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
@@ -21,7 +21,7 @@
 License:GPL-3.0+
 Group:  Productivity/Networking/Other
 #Group:  Productivity/Networking/Remote Desktop
-Version:1.8.1
+Version:1.8.2
 Release:0
 Url:http://www.rdesktop.org/
 Source: %{name}-%{version}.tar.gz

++ rdesktop-1.8.1.tar.gz - rdesktop-1.8.2.tar.gz ++
 2458 lines of diff (skipped)

-- 
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-06-05 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2014-06-05 10:50:03

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-06-01 
19:40:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2014-06-05 
10:50:09.0 +0200
@@ -1,0 +2,17 @@
+Tue Jun  3 21:06:00 UTC 2014 - kgronl...@suse.com
+
+- high: parse: Try to retain ordering if possible (bnc#880371)
+- high: cibconfig: Enable use of v2 patches in Pacemaker (bnc#880371)
+- medium: resource: modify some command wait options (bnc#880982) 
+- upstream: 2.0.0-109-g0b2645b 
+
+---
+Mon Jun  2 17:33:11 UTC 2014 - kgronl...@suse.com
+
+- medium: ui_resource: trace promote/demote for multistate resources
+- medium: parse: Allow empty property sets (bnc#880632)
+- high: parse: support for ACL schema 2.0 (bnc#880371)
+- medium: schema: Fix typo in test_schema()
+- upstream: 2.0.0-101-gbb441f1 
+
+---



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.6ZRKah/_old  2014-06-05 10:50:12.0 +0200
+++ /var/tmp/diff_new_pack.6ZRKah/_new  2014-06-05 10:50:12.0 +0200
@@ -41,7 +41,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.0+git93
+Version:2.0+git109
 Release:%{?crmsh_release}%{?dist}
 Url:http://crmsh.github.io
 Source0:crmsh.tar.bz2

++ crmsh.tar.bz2 ++
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-05-27 20:11:56.0 +0200
+++ new/crmsh/doc/crm.8.txt 2014-06-03 22:39:19.0 +0200
@@ -525,6 +525,15 @@
 [[topics_Security,Access Control Lists (ACL)]]
 == Access Control Lists (ACL)
 
+.Note on ACLs in Pacemaker 1.1.12
+
+The support for ACLs has been revised in Pacemaker version 1.1.12 and
+up. Depending on which version you are using, the information in this
+section may no longer be accurate. Look for the `acl_target` and
+`acl_group` configuration elements for more details on the new
+syntax.
+
+
 By default, the users from the `haclient` group have full access
 to the cluster (or, more precisely, to the CIB). Access control
 lists allow for finer access control to the cluster.
@@ -1510,27 +1519,34 @@
 monitor, note that the number of trace files can grow very
 quickly.
 
+If no operation name is given, crmsh will attempt to trace all
+operations for the RA. This includes any configured operations, start
+and stop as well as promote/demote for multistate resources.
+
 Usage:
 ...
-trace rsc op [interval]
+trace rsc [op [interval] ]
 ...
 Example:
 ...
 trace fs start
+trace webserver
 ...
 
 [[cmdhelp_resource_untrace,stop RA tracing]]
  `untrace`
 
-Stop tracing RA for the given operation.
+Stop tracing RA for the given operation. If no operation name is
+given, crmsh will attempt to stop tracing all operations in resource.
 
 Usage:
 ...
-untrace rsc op [interval]
+untrace rsc [op [interval] ]
 ...
 Example:
 ...
 untrace fs start
+untrace webserver
 ...
 
 [[cmdhelp_resource_scores,Display resource scores]]
@@ -2786,6 +2802,35 @@
 role:read_all
 ...
 
+[[cmdhelp_configure_acl_target,Define target access rights]]
+ `acl_target`
+
+Defines an ACL target.
+
+Usage:
+
+acl_target tid [role ...]
+
+Example:
+
+acl_target joe resource_admin constraint_editor
+
+
+[[cmdhelp_configure_acl_group,Define group access rights]]
+ `acl_group`
+
+Defines an ACL group.
+
+Usage:
+
+acl_group gid [role ...]
+
+Example:
+
+acl_group hacluster operator
+
+
+
 [[cmdhelp_configure_op_defaults,set resource operations defaults]]
  `op_defaults`
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/modules/cibconfig.py 
new/crmsh/modules/cibconfig.py
--- old/crmsh/modules/cibconfig.py  2014-05-27 20:11:56.0 +0200
+++ new/crmsh/modules/cibconfig.py  2014-06-03 22:39:19.0 +0200
@@ -58,6 +58,7 @@
 from cliformat import get_score, nvpairs2list, abs_pos_score, cli_acl_roleref, 
nvpair_format
 from cliformat import 

commit adjtimex for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package adjtimex for openSUSE:Factory 
checked in at 2014-06-05 10:49:33

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


Package is adjtimex

Changes:

--- /work/SRC/openSUSE:Factory/adjtimex/adjtimex.changes2014-05-16 
07:29:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.adjtimex.new/adjtimex.changes   2014-06-05 
10:49:34.0 +0200
@@ -1,0 +2,6 @@
+Wed May 28 16:45:26 CEST 2014 - sbra...@suse.cz
+
+- Simplify spec file.
+- Remove UsrMerge compatibility symlink.
+
+---
@@ -9,0 +16,44 @@
+
+---
+Tue Mar  6 21:18:56 UTC 2012 - rschweik...@suse.com
+
+- keep binaries in /usr tree (UsrMerge project)
+
+---
+Tue Feb 21 13:46:25 UTC 2012 - pu...@suse.com
+
+- update to adjtimex-1.29
+
+---
+Fri Jul  9 06:23:27 UTC 2010 - pu...@novell.com
+
+- update to adjtimex-1.28
+- drop adjtimex-1.20-nosyscall.diff (fixed upstream)
+
+---
+Thu Apr 16 14:55:22 CEST 2009 - wer...@suse.de
+
+- Move /usr/sbin/adjtimex to /sbin/adjtimex to be able to check the
+  kernel time variables even without /usr mounted
+
+---
+Mon Jan 10 14:45:12 CET 2005 - m...@suse.de
+
+- Update adjtimex to 1.20
+
+---
+Mon Apr 14 15:12:27 CEST 2003 - ptho...@suse.de
+
+- Get rid of the syscall for adjtimex in selective cases and
+  just call the glibc wrapper. Fixes build on s390.
+
+---
+Tue Nov 19 20:12:02 CET 2002 - m...@suse.de
+
+- Fix multistring assignment in adjtimex
+
+---
+Tue Dec 18 16:50:34 CET 2001 - bja...@suse.de
+
+- add adjtimex
+



Other differences:
--
++ adjtimex.spec ++
--- /var/tmp/diff_new_pack.F3nU8r/_old  2014-06-05 10:49:36.0 +0200
+++ /var/tmp/diff_new_pack.F3nU8r/_new  2014-06-05 10:49:36.0 +0200
@@ -16,17 +16,13 @@
 #
 
 
-%define time_ver 1.7
-%define adjtimex_ver 1.29
-
 Name:   adjtimex
 Version:1.29
 Release:0
 Summary:Kernel time variables configuration utility
 License:GPL-2.0+
 Group:  System/Base
-
-Source: 
http://ftp.debian.org/debian/pool/main/a/adjtimex/adjtimex_%{adjtimex_ver}.orig.tar.gz
+Source: 
http://ftp.debian.org/debian/pool/main/a/adjtimex/%{name}_%{version}.orig.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Provides:   util-linux:/usr/sbin/adjtimex
 
@@ -48,19 +44,14 @@
 make %{?_smp_mflags}
 
 %install
-b=%buildroot
-mkdir -p $b/%_sbindir $b/%_mandir/man8 $b/sbin
-cp adjtimex $b/%_sbindir/
-cp adjtimex.8 $b/%_mandir/man8/
-
-#UsrMerge
-ln -s %_sbindir/adjtimex $b/sbin/
+install -d %{buildroot}%{_sbindir} %{buildroot}%{_mandir}/man8
+install adjtimex %{buildroot}%{_sbindir}/
+install -m0644 adjtimex.8 %{buildroot}%{_mandir}/man8/
 
 %files
 %defattr(-,root,root)
 %doc COPYING COPYRIGHT
-/sbin/adjtimex
-%_sbindir/adjtimex
-%_mandir/man8/adjtimex.8*
+%{_sbindir}/adjtimex
+%{_mandir}/man8/adjtimex.8*
 
 %changelog

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



commit xplanet for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package xplanet for openSUSE:Factory checked 
in at 2014-06-05 10:49:58

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


Package is xplanet

Changes:

--- /work/SRC/openSUSE:Factory/xplanet/xplanet.changes  2014-03-23 
22:34:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.xplanet.new/xplanet.changes 2014-06-05 
10:50:02.0 +0200
@@ -1,0 +2,5 @@
+Sun Jun  1 09:40:00 UTC 2014 - jeng...@inai.de
+
+- Update xplanet-giflib5.patch to support giflib7-5.1
+
+---



Other differences:
--
++ xplanet.spec ++
--- /var/tmp/diff_new_pack.j01WHM/_old  2014-06-05 10:50:04.0 +0200
+++ /var/tmp/diff_new_pack.j01WHM/_new  2014-06-05 10:50:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xplanet
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 B1 Systems GmbH, Vohburg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -42,8 +42,8 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  pango-devel
 %if 0%{?suse_version} == 1110
-BuildRequires:  xorg-x11-libICE-devel 
 BuildRequires:  xorg-x11-devel
+BuildRequires:  xorg-x11-libICE-devel
 #BuildRequires:  XScrnSaver-devel
 %else 
 BuildRequires:  pkgconfig(ice)

++ xplanet-giflib5.patch ++
--- /var/tmp/diff_new_pack.j01WHM/_old  2014-06-05 10:50:04.0 +0200
+++ /var/tmp/diff_new_pack.j01WHM/_new  2014-06-05 10:50:04.0 +0200
@@ -1,19 +1,28 @@
-diff --git a/src/libimage/gif.c b/src/libimage/gif.c
-index 835bb20..6cfb040 100644
 a/src/libimage/gif.c
-+++ b/src/libimage/gif.c
-@@ -23,6 +23,29 @@
+---
+ src/libimage/gif.c |   85 
+
+ 1 file changed, 85 insertions(+)
+
+Index: xplanet-1.3.0/src/libimage/gif.c
+===
+--- xplanet-1.3.0.orig/src/libimage/gif.c
 xplanet-1.3.0/src/libimage/gif.c
+@@ -23,6 +23,35 @@
  
  #include gif_lib.h
  
-+#if GIFLIB_MAJOR = 5
++#if defined(GIFLIB_MAJOR)
++# if GIFLIB_MAOJR  5 || (GIFLIB_MAJOR == 5  GIFLIB_MINOR = 1)
++# define DGifCloseFile(x) DGifCloseFile(x, NULL)
++# define EGifCloseFile(x) EGifCloseFile(x, NULL)
++# endif
++# if GIFLIB_MAJOR = 5
 +/* old giflib did define TRUE/FALSE */
-+#ifndef TRUE
-+#define TRUE1
-+#endif /* TRUE */
-+#ifndef FALSE
-+#define FALSE   0
-+#endif /* FALSE */
++# ifndef TRUE
++# define TRUE1
++# endif /* TRUE */
++# ifndef FALSE
++# define FALSE   0
++# endif /* FALSE */
 +
 +static void
 +gif_error(int err)
@@ -25,14 +34,15 @@
 +fprintf(stderr, \nGIF-LIB undefined error %d.\n, err);
 +}
 +
-+#define QuantizeBuffer GifQuantizeBuffer
-+#define MakeMapObject  GifMakeMapObject
++# define QuantizeBuffer GifQuantizeBuffer
++# define MakeMapObject  GifMakeMapObject
++# endif
 +#endif
 +
  /*
A lot of this is based on the gif2rgb and rgb2gif codes in the libungif 
distribution. 
-@@ -42,11 +65,20 @@ read_gif(const char *filename, int *width, int *height, 
unsigned char **rgb)
+@@ -42,11 +71,20 @@ read_gif(const char *filename, int *widt
  int color_index;
  unsigned char *ptr = NULL;
  
@@ -53,7 +63,7 @@
  return(0);
  }
  
-@@ -54,7 +86,11 @@ read_gif(const char *filename, int *width, int *height, 
unsigned char **rgb)
+@@ -54,7 +92,11 @@ read_gif(const char *filename, int *widt
  {
  if (DGifGetRecordType(infile, record_type) == GIF_ERROR) 
  {
@@ -65,7 +75,7 @@
  return(0);
  }
  
-@@ -63,7 +99,11 @@ read_gif(const char *filename, int *width, int *height, 
unsigned char **rgb)
+@@ -63,7 +105,11 @@ read_gif(const char *filename, int *widt
  case IMAGE_DESC_RECORD_TYPE:
  if (DGifGetImageDesc(infile) == GIF_ERROR)
  {
@@ -77,7 +87,7 @@
  return(0);
  }
  
-@@ -107,14 +147,22 @@ read_gif(const char *filename, int *width, int *height, 
unsigned char **rgb)
+@@ -107,14 +153,22 @@ read_gif(const char *filename, int *widt
  GifByteType *ext;
  if (DGifGetExtension(infile, ext_code, ext) == GIF_ERROR) 
  {
@@ -100,7 +110,7 @@
  return(0);
  }
  }
-@@ -166,6 +214,9 @@ write_gif(const char *filename, int width, int height, 
char *rgb)
+@@ -166,6 +220,9 @@ write_gif(const char *filename, int widt
  

commit bind for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package bind for openSUSE:Factory checked in 
at 2014-06-05 10:49:37

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-05-22 
20:37:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.bind.new/bind.changes   2014-06-05 
10:49:44.0 +0200
@@ -1,0 +2,11 @@
+Sun Jun  1 13:30:10 UTC 2014 - ch...@computersalat.de
+
+- add stuff for DNSSEC validation to named.conf
+  * dnssec-enable, dnssec-validation
+
+---
+Sun May 25 17:24:21 UTC 2014 - crrodrig...@opensuse.org
+
+- Build with LFS_CFLAGS in 32 bit systems. 
+
+---



Other differences:
--
++ bind.spec ++
--- /var/tmp/diff_new_pack.BCBEDc/_old  2014-06-05 10:49:46.0 +0200
+++ /var/tmp/diff_new_pack.BCBEDc/_new  2014-06-05 10:49:46.0 +0200
@@ -254,7 +254,7 @@
 #%{__aclocal}
 #%{__autoconf}
 #popd
-export CFLAGS=$RPM_OPT_FLAGS -DNO_VERSION_DATE -fno-strict-aliasing 
LDFLAGS=-L%{_libdir}
+export CFLAGS=$RPM_OPT_FLAGS -DNO_VERSION_DATE -fno-strict-aliasing $(getconf 
LFS_CFLAGS) LDFLAGS=-L%{_libdir}
 #export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing -DLDAP_DEPRECATED 
LDFLAGS=-L%{_libdir}
 #export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing -fpie 
LDFLAGS=-L%{_libdir} -pie
 CONFIGURE_OPTIONS=\



++ vendor-files.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor-files/config/named.conf 
new/vendor-files/config/named.conf
--- old/vendor-files/config/named.conf  2012-01-03 11:52:45.0 +0100
+++ new/vendor-files/config/named.conf  2014-06-01 15:29:46.0 +0200
@@ -19,6 +19,26 @@
# The directory statement defines the name server's working directory
 
directory /var__NSD__/named;
+
+   # enable DNSSEC validation
+   #
+   # If BIND logs error messages about the root key being expired, you
+   # will need to update your keys. See https://www.isc.org/bind-keys
+   #
+   # dnssec-enable yes (default), indicates that a secure DNS service
+   # is being used which may be one, or more, of TSIG
+   # (for securing zone transfers or DDNS updates), SIG(0)
+   # (for securing DDNS updates) or DNSSEC.
+
+   #dnssec-enable yes;
+
+   # dnssec-validation yes (default), indicates that a resolver
+   # (a caching or caching-only name server) will attempt to validate
+   # replies from DNSSEC enabled (signed) zones. To perform this task
+   # the server also needs either a valid trusted-keys clause
+   # (containing one or more trusted-anchors or a managed-keys clause.
+
+   #dnssec-validation auto;
managed-keys-directory /var__NSD__/named/dyn/;
 
# Write dump and statistics file to the log subdirectory.  The

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



commit trousers for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package trousers for openSUSE:Factory 
checked in at 2014-06-05 10:49:57

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


Package is trousers

Changes:

--- /work/SRC/openSUSE:Factory/trousers/trousers.changes2014-03-21 
14:06:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.trousers.new/trousers.changes   2014-06-05 
10:49:58.0 +0200
@@ -1,0 +2,21 @@
+Tue Jun  3 15:36:35 UTC 2014 - meiss...@suse.com
+
+- updated to trousers 0.3.13 (bnc#881095 LTC#24)
+  - Changed exported functions which had a name too common, to avoid
+collision
+  - Assessed daemon security using manual techniques and coverity
+  - Fixed major security bugs and memory leaks
+  - Added debug support to run tcsd with a different user/group
+  - Daemon now properly closes sockets before shutting down
+
+* TROUSERS_0_3_12
+  - Added new network code for RPC, which supports IPv6
+  - Users of client applications can configure the hostname of the tcsd
+server they want to connect through the TSS_TCSD_HOSTNAME env var
+(only works if application didn't set a hostname in the context)
+  - Added disable_ipv4 and disable_ipv6 config options for server
+
+- removed trousers-wrap_large_key_overflow.patch: upstream
+- removed trousers-0.3.11.2.diff: solved upstream now
+
+---

Old:

  trousers-0.3.11.2.diff
  trousers-0.3.11.2.tar.gz
  trousers-wrap_large_key_overflow.patch

New:

  trousers-0.3.13.tar.gz



Other differences:
--
++ trousers.spec ++
--- /var/tmp/diff_new_pack.i03kvY/_old  2014-06-05 10:50:01.0 +0200
+++ /var/tmp/diff_new_pack.i03kvY/_new  2014-06-05 10:50:01.0 +0200
@@ -23,16 +23,14 @@
 
 Name:   trousers
 Url:http://trousers.sourceforge.net/
-Version:0.3.11.2
+Version:0.3.13
 Release:0
 Summary:TSS (TCG Software Stack) access daemon for a TPM chip
 License:BSD-3-Clause
 Group:  Productivity/Security
-Source0:
http://downloads.sourceforge.net/project/trousers/trousers/0.3.11/%name-%version.tar.gz
+Source0:
http://downloads.sourceforge.net/project/trousers/trousers/0.3.13/%name-%version.tar.gz
 Source1:tcsd.init
 Source2:baselibs.conf
-Patch0: %name-%version.diff
-Patch1: trousers-wrap_large_key_overflow.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %install_info_prereq pwdutils
 
@@ -78,8 +76,6 @@
 
 %prep
 %setup -q
-%patch0 -p0
-%patch1 -p1
 cp %{S:1} .
 
 %build

++ trousers-0.3.11.2.tar.gz - trousers-0.3.13.tar.gz ++
 10218 lines of diff (skipped)

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



commit update-desktop-files for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package update-desktop-files for 
openSUSE:Factory checked in at 2014-06-05 10:49:52

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


Package is update-desktop-files

Changes:

--- 
/work/SRC/openSUSE:Factory/update-desktop-files/update-desktop-files.changes
2013-09-27 19:08:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.update-desktop-files.new/update-desktop-files.changes
   2014-06-05 10:49:54.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun  2 10:17:18 UTC 2014 - co...@suse.com
+
+- also allow X-SuSE-YaST-High_Availability
+
+---



Other differences:
--
++ update-desktop-files.spec ++
--- /var/tmp/diff_new_pack.k8aiwa/_old  2014-06-05 10:49:56.0 +0200
+++ /var/tmp/diff_new_pack.k8aiwa/_new  2014-06-05 10:49:56.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package update-desktop-files
 #
-# 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

++ map-desktop-category.sh ++
--- /var/tmp/diff_new_pack.k8aiwa/_old  2014-06-05 10:49:56.0 +0200
+++ /var/tmp/diff_new_pack.k8aiwa/_new  2014-06-05 10:49:56.0 +0200
@@ -109,7 +109,7 @@
 Security|RemoteAccess) ret=$in ;;
 ServiceConfiguration| \
 
Backup|YaST|YaST-Hardware|YaST-Misc|YaST-Network|YaST-Virtualization|YaST-Support|
 \
-
Feedback|YaST-Net_advanced|YaST-Security|YaST-Software|YaST-System|YaST-AppArmor)
+
Feedback|YaST-Net_advanced|YaST-Security|YaST-Software|YaST-System|YaST-AppArmor|YaST-High_Availability)
ret=X-SuSE-$in ;;
 #Utility Menu:
 Telephony|Accessibility|TextEditor|PDA|Calculator|Clock) ret=$in ;;

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



commit open-iscsi for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package open-iscsi for openSUSE:Factory 
checked in at 2014-06-05 10:49:49

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


Package is open-iscsi

Changes:

--- /work/SRC/openSUSE:Factory/open-iscsi/open-iscsi.changes2014-05-02 
20:52:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.open-iscsi.new/open-iscsi.changes   
2014-06-05 10:49:51.0 +0200
@@ -1,0 +2,21 @@
+Fri May 30 11:50:36 CEST 2014 - h...@suse.de
+
+- Install ibft-rule-generator (bnc#880336)
+
+---
+Wed May 28 15:26:29 CEST 2014 - h...@suse.de
+
+- iscsi.service: do not logout from all sessions during shutdown
+  (bnc#880338)
+- iscsid.service: Fixup dependencies (bnc#880338)
+
+---
+Fri May 2 15:07:14 2014 +0200 - h...@suse.de
+
+- iscsi_offload: do not print error messages for be2iscsi
+
+  be2iscsi HBAs display the firmware settings in
+  /sys/firmware/iscsi_boot1 and only provide a subset
+  of the iBFT settings (bnc#876137)
+
+---



Other differences:
--
++ open-iscsi.spec ++
--- /var/tmp/diff_new_pack.OivHZv/_old  2014-06-05 10:49:52.0 +0200
+++ /var/tmp/diff_new_pack.OivHZv/_new  2014-06-05 10:49:52.0 +0200
@@ -236,6 +236,7 @@
 %{_unitdir}/iscsid.service
 %{_unitdir}/iscsid.socket
 %{_unitdir}/iscsi.service
+/usr/lib/systemd/system-generators/ibft-rule-generator
 %else
 %config /etc/init.d/iscsid
 %config /etc/init.d/boot.iscsid-early

++ open-iscsi-Factory-latest.diff.bz2 ++
--- /var/tmp/diff_new_pack.OivHZv/_old  2014-06-05 10:49:52.0 +0200
+++ /var/tmp/diff_new_pack.OivHZv/_new  2014-06-05 10:49:52.0 +0200
@@ -12,14 +12,14 @@
   of this license document, but changing it is not allowed.
  
 diff --git a/Makefile b/Makefile
-index 36ebd2d1be13..961048a1d62e 100644
+index 36ebd2d1be13..cf813d51f451 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -14,10 +14,11 @@ mandir = $(prefix)/share/man
  etcdir = /etc
  initddir = $(etcdir)/init.d
  mkinitrd = $(exec_prefix)/lib/mkinitrd/scripts
-+systemddir = $(prefix)/lib/systemd/system
++systemddir = $(prefix)/lib/systemd
  
 -MANPAGES = doc/iscsid.8 doc/iscsiadm.8 doc/iscsi_discovery.8
 -PROGRAMS = usr/iscsid usr/iscsiadm utils/iscsi_discovery utils/iscsi-iname
@@ -98,23 +98,26 @@
$(INSTALL) -d $(DESTDIR)$(mkinitrd)
$(INSTALL) -m 755 etc/mkinitrd/mkinitrd-boot.sh \
$(DESTDIR)$(mkinitrd)/boot-iscsi.sh
-@@ -120,12 +133,26 @@ install_initd_debian:
+@@ -120,12 +133,29 @@ install_initd_debian:
$(INSTALL) -m 755 etc/initd/initd.debian \
$(DESTDIR)$(initddir)/open-iscsi
  
 +# install systemd service files for openSUSE
 +install_service_suse:
-+  $(INSTALL) -d $(DESTDIR)$(systemddir)
++  $(INSTALL) -d $(DESTDIR)$(systemddir)/system
 +  $(INSTALL) -m 644 etc/systemd/iscsid.service \
-+  $(DESTDIR)$(systemddir)
++  $(DESTDIR)$(systemddir)/system
 +  $(INSTALL) -m 644 etc/systemd/iscsid.socket \
-+  $(DESTDIR)$(systemddir)
++  $(DESTDIR)$(systemddir)/system
 +  $(INSTALL) -m 644 etc/systemd/iscsi.service \
-+  $(DESTDIR)$(systemddir)
++  $(DESTDIR)$(systemddir)/system
 +  $(INSTALL) -m 644 etc/systemd/iscsiuio.service \
-+  $(DESTDIR)$(systemddir)
++  $(DESTDIR)$(systemddir)/system
 +  $(INSTALL) -m 644 etc/systemd/iscsiuio.socket \
-+  $(DESTDIR)$(systemddir)
++  $(DESTDIR)$(systemddir)/system
++  $(INSTALL) -d $(DESTDIR)$(systemddir)/system-generators
++  $(INSTALL) -m 755 utils/ibft-rule-generator \
++  $(DESTDIR)$(systemddir)/system-generators
 +
  install_iface: $(IFACEFILES)
$(INSTALL) -d $(DESTDIR)$(etcdir)/iscsi/ifaces
@@ -126,7 +129,7 @@
$(INSTALL) -d $(DESTDIR)$(etcdir)/iscsi ; \
$(INSTALL) -m 644 $^ $(DESTDIR)$(etcdir)/iscsi ; \
fi
-@@ -138,11 +165,11 @@ install_kernel:
+@@ -138,11 +168,11 @@ install_kernel:
$(MAKE) -C kernel install_kernel
  
  install_iname:
@@ -801,7 +804,7 @@
  [ $iscsiuio_pid ]  kill -TERM $iscsiuio_pid
 diff --git a/etc/systemd/iscsi.service b/etc/systemd/iscsi.service
 new file mode 100644
-index ..54fd8159ad56
+index ..0239ef6936a5
 --- /dev/null
 +++ b/etc/systemd/iscsi.service
 @@ -0,0 +1,15 @@
@@ -814,7 +817,7 @@
 +[Service]
 +Type=oneshot
 +ExecStart=/sbin/iscsiadm -m node --loginall=automatic
-+ExecStop=/sbin/iscsiadm -m session --logout
++ExecStop=/sbin/iscsiadm 

commit libarchive for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package libarchive for openSUSE:Factory 
checked in at 2014-06-05 10:49:35

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


Package is libarchive

Changes:

--- /work/SRC/openSUSE:Factory/libarchive/libarchive.changes2013-12-13 
13:06:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.libarchive.new/libarchive.changes   
2014-06-05 10:49:40.0 +0200
@@ -1,0 +2,7 @@
+Wed May 28 17:18:59 UTC 2014 - crrodrig...@opensuse.org
+
+- libarchive-xattr.patch, fix subtle wrong library check 
+  that causes this package to depend on libattr when it should
+  be using glibc.
+
+---

New:

  libarchive-xattr.patch



Other differences:
--
++ libarchive.spec ++
--- /var/tmp/diff_new_pack.79fQrf/_old  2014-06-05 10:49:42.0 +0200
+++ /var/tmp/diff_new_pack.79fQrf/_new  2014-06-05 10:49:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libarchive
 #
-# 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
@@ -42,7 +42,6 @@
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libacl-devel
-BuildRequires:  libattr-devel
 BuildRequires:  libbz2-devel
 %if %{with ext2fs}
 BuildRequires:  libext2fs-devel
@@ -50,11 +49,13 @@
 %if %{with openssl}
 BuildRequires:  libopenssl-devel
 %endif
+BuildRequires:  libtool
 BuildRequires:  libxml2-devel
 BuildRequires:  pkg-config
 BuildRequires:  xz-devel
 BuildRequires:  zlib-devel
 Patch0: libarchive-openssl.patch
+Patch1: libarchive-xattr.patch
 
 %description
 Libarchive is a programming library that can create and read several
@@ -163,7 +164,9 @@
 %if %{with openssl}
 %patch0
 %endif
+%patch1 -p1
 %build
+autoreconf -fiv
 %global optflags%{optflags} -D_REENTRANT -pipe
 %configure \
--disable-silent-rules \

++ libarchive-xattr.patch ++
--- libarchive-3.1.2.orig/configure.ac
+++ libarchive-3.1.2/configure.ac
@@ -568,7 +568,7 @@ AC_ARG_ENABLE([xattr],
 if test x$enable_xattr != xno; then
AC_CHECK_HEADERS([attr/xattr.h])
AC_CHECK_HEADERS([sys/xattr.h sys/ea.h])
-   AC_CHECK_LIB(attr,setxattr)
+   AC_SEARCH_LIBS([setxattr], [attr])
AC_CHECK_FUNCS([extattr_get_file extattr_list_file])
AC_CHECK_FUNCS([extattr_set_fd extattr_set_file])
AC_CHECK_FUNCS([fgetxattr flistxattr fsetxattr getxattr])
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xcursorgen for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package xcursorgen for openSUSE:Factory 
checked in at 2014-06-05 10:50:03

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


Package is xcursorgen

Changes:

--- /work/SRC/openSUSE:Factory/xcursorgen/xcursorgen.changes2012-05-08 
12:02:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.xcursorgen.new/xcursorgen.changes   
2014-06-05 10:50:12.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun  4 09:34:00 UTC 2014 - sndir...@suse.com
+
+- Update to version 1.0.6
+  * This minor release includes some code cleanups  improved
+error messaging. 
+
+---

Old:

  xcursorgen-1.0.5.tar.bz2

New:

  xcursorgen-1.0.6.tar.bz2



Other differences:
--
++ xcursorgen.spec ++
--- /var/tmp/diff_new_pack.0bVRGj/_old  2014-06-05 10:50:14.0 +0200
+++ /var/tmp/diff_new_pack.0bVRGj/_new  2014-06-05 10:50:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xcursorgen
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   xcursorgen
-Version:1.0.5
-Release:1
-License:MIT
+Version:1.0.6
+Release:0
 Summary:Utility to create an X cursor file from a collection of PNG 
images
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Utilities
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libpng) = 1.2.0

++ xcursorgen-1.0.5.tar.bz2 - xcursorgen-1.0.6.tar.bz2 ++
 7762 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xcursorgen-1.0.5/ChangeLog new/xcursorgen-1.0.6/ChangeLog
--- old/xcursorgen-1.0.5/ChangeLog  2012-03-23 05:54:37.0 +0100
+++ new/xcursorgen-1.0.6/ChangeLog  2014-06-01 01:33:37.0 +0200
@@ -1,3 +1,61 @@
+commit 68939d23da457d4beeab73fca644b5c68224bdd3
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat May 31 16:33:07 2014 -0700
+
+xcursorgen 1.0.6
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit c21306ebf8cfa780d3d4fd31a41d1c7cac2e8dbb
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Tue Nov 26 22:22:30 2013 -0800
+
+Print which option was in error along with usage message
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 3c31233990f8c91b4f54b4ba7d4cd02f67c7812e
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Feb 23 11:59:56 2013 -0800
+
+config: Add missing AC_CONFIG_SRCDIR
+
+Regroup AC statements under the Autoconf initialization section.
+Regroup AM statements under the Automake initialization section.
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 7c50a1b8952baa8227908881858428f2ce971ed8
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Feb 23 11:56:33 2013 -0800
+
+Combine usage message into single string/call
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 70d4855b4b313621cb250922712a1461dd742c3f
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Feb 23 11:52:11 2013 -0800
+
+Use C99 struct initializer for ximage in check_image()
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit b0e174921ac5216fb4e21015a9b4bbb4b87b
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Feb 23 11:44:00 2013 -0800
+
+Change order of struct flist members to pack better on 64-bit archs
+
+As reported by clang:
+xcursorgen.c:42:9: warning: padding struct 'struct flist' with 4 bytes to 
align 'pngfile' [-Wpadded]
+  char *pngfile;
+^
+xcursorgen.c:44:17: warning: padding struct 'struct flist' with 4 bytes to 
align 'next' [-Wpadded]
+  struct flist *next;
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
 commit 

commit libvirt-glib for openSUSE:Factory

2014-06-05 Thread h_root
Hello community,

here is the log from the commit of package libvirt-glib for openSUSE:Factory 
checked in at 2014-06-05 10:50:04

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


Package is libvirt-glib

Changes:

--- /work/SRC/openSUSE:Factory/libvirt-glib/libvirt-glib.changes
2013-07-12 20:48:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt-glib.new/libvirt-glib.changes   
2014-06-05 10:50:14.0 +0200
@@ -1,0 +2,30 @@
+Wed Jun  4 10:04:39 UTC 2014 - cbosdon...@suse.com
+
+- Extended API to provide host supported security models.
+  bnc#878048. secmodel-caps.patch
+
+---
+Wed Jun  4 08:42:52 UTC 2014 - cbosdon...@suse.com
+
+- Update to version 0.1.8:
+  + Add getter/setter for UUID in domain config
+  + Remove dead code / unused variables
+  + Add missing symbol exports
+  + Add support for setting nwfilters in domain config
+  + Switch to standard gobject introspection autotools macros
+  + Fix typo preventing removal of clock config
+  + Add getter/setters for disk driver type
+  + Add unit tests based on glib tap harness
+  + Add test for validating symbol file exports
+  + Add getters for domain graphics config params
+  + Add more getters for domain timer config
+  + Add support for hpet timer type
+  + Fix event loop impl on win32
+  + Fix parent class/object of pit timer class
+  + Fix misc API doc bugs
+  + Add more getters for domain clock config
+  + Fix removal of domain CPU feature flags
+  + Fix removal of capabilities CPU topology
+  + Misc fixes to glib event loop integration
+
+---

Old:

  libvirt-glib-0.1.7.tar.gz

New:

  libvirt-glib-0.1.8.tar.gz
  secmodel-caps.patch



Other differences:
--
++ libvirt-glib.spec ++
--- /var/tmp/diff_new_pack.vpWQCh/_old  2014-06-05 10:50:16.0 +0200
+++ /var/tmp/diff_new_pack.vpWQCh/_new  2014-06-05 10:50:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libvirt-glib
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +18,17 @@
 
 
 Name:   libvirt-glib
-Version:0.1.7
+Version:0.1.8
 Release:0
 Summary:GLib and GObject mapping of libvirt
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://libvirt.org
 Source: http://libvirt.org/sources/glib/%{name}-%{version}.tar.gz
+
+# Patches pending upstreaming
+Patch0: secmodel-caps.patch
+
 BuildRequires:  intltool = 0.35.0
 BuildRequires:  libtool
 BuildRequires:  vala
@@ -122,6 +126,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure --disable-static
@@ -132,12 +137,13 @@
 %install
 %make_install
 find %{buildroot} -type f -name *.la -delete -print
+%find_lang %{name}
 
 %post -n libvirt-glib-1_0-0 -p /sbin/ldconfig
 
 %postun -n libvirt-glib-1_0-0 -p /sbin/ldconfig
 
-%files -n libvirt-glib-1_0-0
+%files -n libvirt-glib-1_0-0 -f %{name}.lang
 %defattr(-, root, root)
 %doc COPYING README ChangeLog
 %{_libdir}/libvirt-gconfig-1.0.so.*

++ libvirt-glib-0.1.7.tar.gz - libvirt-glib-0.1.8.tar.gz ++
 19484 lines of diff (skipped)

++ secmodel-caps.patch ++
From 5fef62b343e574010aee37ebc43ee79d72a17d52 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= cedric.bosdon...@free.fr
Date: Tue, 3 Jun 2014 16:25:14 +0200
Subject: [PATCH] Add API to get security models from host capabilities

---
 libvirt-gconfig/Makefile.am|  2 +
 .../libvirt-gconfig-capabilities-host.c| 51 +
 .../libvirt-gconfig-capabilities-host.h|  3 +
 .../libvirt-gconfig-capabilities-secmodel.c| 55 ++
 .../libvirt-gconfig-capabilities-secmodel.h| 66 ++
 libvirt-gconfig/libvirt-gconfig.h  |  1 +
 libvirt-gconfig/libvirt-gconfig.sym|  5 ++
 libvirt-gconfig/tests/test-capabilities-parse.c| 14 -
 libvirt-gconfig/tests/test-capabilities-parse.xml  |  4 ++
 9 files changed, 200 insertions(+), 1 deletion(-)
 create mode 100644 libvirt-gconfig/libvirt-gconfig-capabilities-secmodel.c
 create mode 100644 libvirt-gconfig/libvirt-gconfig-capabilities-secmodel.h

Index: libvirt-glib-0.1.8/libvirt-gconfig/Makefile.am
===
--- libvirt-glib-0.1.8.orig/libvirt-gconfig/Makefile.am
+++