
Hello community, here is the log from the commit of package yast2-autofs checked in at Mon Dec 31 22:42:50 CET 2007. -------- --- yast2-autofs/yast2-autofs.changes 2007-05-11 17:06:24.000000000 +0200 +++ /mounts/work_src_done/STABLE/yast2-autofs/yast2-autofs.changes 2007-12-30 21:43:56.896352000 +0100 @@ -1,0 +2,7 @@ +Sun Dec 30 21:05:18 CET 2007 - pv@suse.de + +-#336276 - Attempt to configure autofs via YaST2 results in a Perl error message +-fixing some typos +- 2.15.3 + +------------------------------------------------------------------- Old: ---- yast2-autofs-2.15.2.tar.bz2 New: ---- yast2-autofs-2.15.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-autofs.spec ++++++ --- /var/tmp/diff_new_pack.N26093/_old 2007-12-31 22:41:31.000000000 +0100 +++ /var/tmp/diff_new_pack.N26093/_new 2007-12-31 22:41:31.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package yast2-autofs (Version 2.15.2) +# spec file for package yast2-autofs (Version 2.15.3) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,28 +11,28 @@ # norootforbuild Name: yast2-autofs -Version: 2.15.2 +Version: 2.15.3 Release: 1 -License: GNU General Public License (GPL) +License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-autofs-2.15.2.tar.bz2 -prefix: /usr +Source0: yast2-autofs-2.15.3.tar.bz2 +Prefix: /usr Requires: yast2 BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-testsuite -BuildArchitectures: noarch -Summary: yast2 modul to create and manage autofs entries in LDAP +BuildArch: noarch +Summary: YaST2 - Module to Create and Manage autofs Entries in LDAP %description -This makes possible to create and manage autofs entries in an -LDAP-server. The autofs entries will be created according the -nis.schema using the objectclasses nisMap and nisObject. The entries -are placed under ou=AUTOFS,$LDAPBASE. +This makes possible to create and manage autofs entries in an LDAP +server. The autofs entries will be created according the nis.schema +using the objectclasses nisMap and nisObject. The entries are placed +under ou=AUTOFS,$LDAPBASE. %prep -%setup -n yast2-autofs-2.15.2 +%setup -n yast2-autofs-2.15.3 %build %{prefix}/bin/y2tool y2autoconf @@ -64,8 +64,11 @@ /usr/share/YaST2/modules/Autofs* %{prefix}/share/applications/YaST2/autofs.desktop %doc %{prefix}/share/doc/packages/yast2-autofs - %changelog +* Sun Dec 30 2007 - pv@suse.de +-#336276 - Attempt to configure autofs via YaST2 results in a Perl error message +-fixing some typos +- 2.15.3 * Fri May 11 2007 - varkoly@suse.de - #273198 - yast2 - autofs - typo * Tue Jan 23 2007 - varkoly@suse.de ++++++ yast2-autofs-2.15.2.tar.bz2 -> yast2-autofs-2.15.3.tar.bz2 ++++++ ++++ 7591 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/yast2-autofs-2.15.2/autodocs-ycp.ami new/yast2-autofs-2.15.3/autodocs-ycp.ami --- old/yast2-autofs-2.15.2/autodocs-ycp.ami 2007-05-11 17:05:17.000000000 +0200 +++ new/yast2-autofs-2.15.3/autodocs-ycp.ami 2007-12-30 21:37:45.000000000 +0100 @@ -1,18 +1,27 @@ # -*- makefile -*- Automake include file -# $Id: autodocs-ycp.ami 23438 2005-05-17 16:31:21Z mvidner $ +# $Id: autodocs-ycp.ami 33394 2006-10-13 11:51:40Z mvidner $ # Builds source documentation for YCP sources # Uses ycpdoc # PARAMETERS: # AUTODOCS_YCP: Files that the ycp autodocs is built from # Optional - the default is $(srcdir)/../../src/*.ycp +# AUTODOCS_PM: Files that the perl autodocs is built from +# Optional - the default is $(srcdir)/../../src/*.pm htmldir = $(docdir)/autodocs html_DATA = index.html $(wildcard *.html) -CLEANFILES = $(html_DATA) +CLEANFILES = $(html_DATA) pod2htm*.tmp -AUTODOCS_YCP ?= $(srcdir)/../../src/*.ycp -index.html: $(AUTODOCS_YCP) - ${YCPDOC} -d. $^ +AUTODOCS_YCP ?= $(wildcard $(srcdir)/../../src/*.ycp) +AUTODOCS_PM ?= $(wildcard $(srcdir)/../../src/*.pm) +index.html: $(AUTODOCS_YCP) $(AUTODOCS_PM) +#including *.pm, for the index + ${YCPDOC} -d. $^ + for i in $(AUTODOCS_PM); do \ + b=`basename $$i`; b=$${b%.pm}; \ + pod2html --title=$$b --infile=$$i --outfile=$$b.html; \ + echo "<a href='$$b.html'>$$b</a>" > $$b.mod.html; \ + done 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/yast2-autofs-2.15.2/configure.in new/yast2-autofs-2.15.3/configure.in --- old/yast2-autofs-2.15.2/configure.in 2007-05-11 17:05:17.000000000 +0200 +++ new/yast2-autofs-2.15.3/configure.in 2007-12-30 21:37:45.000000000 +0100 @@ -1,9 +1,9 @@ dnl configure.in for yast2-autofs dnl -dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.15.9 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-autofs, 2.15.2, http://bugs.opensuse.org/, yast2-autofs) +AC_INIT(yast2-autofs, 2.15.3, http://bugs.opensuse.org/, yast2-autofs) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -17,7 +17,7 @@ AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs dnl Important YaST2 variables -VERSION="2.15.2" +VERSION="2.15.3" RPMNAME="yast2-autofs" MAINTAINER="Peter Varkoly <varkoly@novell.com>" @@ -110,6 +110,8 @@ AC_MSG_ERROR(xgettext is missing; please install gettext-devel.) fi +Y2DEVTOOLS_PREFIX=`pkg-config --print-errors --variable=prefix yast2-devtools` +AC_SUBST(Y2DEVTOOLS_PREFIX) devtools_ybindir=`pkg-config --print-errors --variable=ybindir yast2-devtools` devtools_yast2dir=`pkg-config --print-errors --variable=yast2dir yast2-devtools` @@ -142,6 +144,9 @@ if test "$YCPC" = "false"; then AC_MSG_ERROR([ycpc is not installed]) fi +AC_CHECK_FILE($devtools_yast2dir/data/testsuite/Makefile.testsuite, [], [ + AC_MSG_WARN([yast2-testsuite.rpm is not installed]) +]) AC_CONFIG_FILES(Makefile agents/Makefile 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/yast2-autofs-2.15.2/Makefile.am new/yast2-autofs-2.15.3/Makefile.am --- old/yast2-autofs-2.15.2/Makefile.am 2007-05-11 17:05:17.000000000 +0200 +++ new/yast2-autofs-2.15.3/Makefile.am 2007-12-30 21:37:45.000000000 +0100 @@ -7,8 +7,7 @@ # #where devtools are -PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools) -Y2TOOL = $(PREFIX)/bin/y2tool +Y2TOOL = $(Y2DEVTOOLS_PREFIX)/bin/y2tool VERSION = $(shell cat $(srcdir)/VERSION) RPMNAME = $(shell cat $(srcdir)/RPMNAME) @@ -20,7 +19,7 @@ # do we do Makefile.am for devtools? It is a little special... IS_DEVTOOLS = $(findstring yast2-devtools,$(RPMNAME)) -DEVTOOLS_DIR = $(if $(IS_DEVTOOLS),$(srcdir)/devtools,$(PREFIX)/share/YaST2/data/devtools) +DEVTOOLS_DIR = $(if $(IS_DEVTOOLS),$(srcdir)/devtools,$(Y2DEVTOOLS_PREFIX)/share/YaST2/data/devtools) ALL_PACKAGES = $(DEVTOOLS_DIR)/admin/all-packages LEGALESE_DIR = $(if $(HAS_YAST_LICENSE),$(DEVTOOLS_DIR)/admin/copyright/yast,$(DEVTOOLS_DIR)/admin/copyright/gpl) @@ -31,10 +30,10 @@ extra_COPYRIGHT_files = $(if $(HAS_YAST_LICENSE), $(COPYRIGHT_files_yast), $(COPYRIGHT_files_gpl)) -AUTOMAKE_OPTIONS = foreign dist-bzip2 +AUTOMAKE_OPTIONS = foreign dist-bzip2 no-dist-gzip # where devtools instal m4 snippets # argh, executed literally -#ACLOCAL_AMFLAGS = -I $(PREFIX)/share/aclocal +#ACLOCAL_AMFLAGS = -I $(Y2DEVTOOLS_PREFIX)/share/aclocal ACLOCAL_AMFLAGS = -I `if test -d ./devtools/admin; then echo ./devtools/admin; else pkg-config --print-errors --variable=datadir yast2-devtools; fi`/aclocal Makefile.am.common: $(DEVTOOLS_DIR)/admin/Makefile.am.common @@ -67,7 +66,7 @@ # because the prerequisite is made here (not anymore!) # and we don't want any paths in y2autoconf # info '(autoconf)config.status Invocation' -$(RPMNAME).pc: $(RPMNAME).pc.in +$(RPMNAME).pc: $(RPMNAME).pc.in config.status ./config.status --file=$@:$< if CREATE_PKGCONFIG_NOARCH @@ -211,8 +210,7 @@ # For po/ modules checkpo: - test ! -d $(srcdir)/po || $(MAKE) -C po checkpo -# test ! -d $(srcdir)/po \ -# || { $(MAKE) -C po checkpo && $(MAKE) -C po make-pox; } + test ! -f $(srcdir)/po/Makefile || $(MAKE) -C po checkpo +# test ! -f $(srcdir)/po/Makefile || $(MAKE) -C po checkpo make-pox # No ./SUBDIRS file found - assuming default: All direct subdirs with Makefile.am SUBDIRS = agents doc src 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/yast2-autofs-2.15.2/Makefile.am.common new/yast2-autofs-2.15.3/Makefile.am.common --- old/yast2-autofs-2.15.2/Makefile.am.common 2007-05-11 17:05:17.000000000 +0200 +++ new/yast2-autofs-2.15.3/Makefile.am.common 2007-12-30 21:37:45.000000000 +0100 @@ -29,7 +29,19 @@ dist-hook: check-syntax +CHECK_SYNTAX = true check-syntax: $(client_DATA) $(ycpchook) - if test "$(client_DATA)"; then $(bindir)/ycpc -qE -M. -I. $(YCPCFLAGS) $(filter %.ycp,$^) || exit 1; fi + @if test "$(client_DATA)"; then \ + if $(CHECK_SYNTAX); then \ + TO_CHECK="$(filter %.ycp,$^)"; \ + echo "Checking syntax of $${TO_CHECK}"; \ + if ! $(YCPC) -qE -M. -I. $(YCPCFLAGS) $${TO_CHECK}; then \ + echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your own risk"; \ + exit 1; \ + fi; \ + else \ + echo "Syntax check disabled"; \ + fi; \ + fi -include .dep 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/yast2-autofs-2.15.2/missing new/yast2-autofs-2.15.3/missing --- old/yast2-autofs-2.15.2/missing 2007-05-11 17:05:21.000000000 +0200 +++ new/yast2-autofs-2.15.3/missing 2007-12-30 21:37:51.000000000 +0100 @@ -1,9 +1,9 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2005-06-08.21 +scriptversion=2006-05-10.23 -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. @@ -33,6 +33,8 @@ fi run=: +sed_output='s/.* --output[ =]([^ ]*).*/\1/p' +sed_minuso='s/.* -o ([^ ]*).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. @@ -44,7 +46,7 @@ msg="missing on your system" -case "$1" in +case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= @@ -77,6 +79,7 @@ aclocal touch file `aclocal.m4' autoconf touch file `configure' autoheader touch file `config.h.in' + autom4te touch the output file, or create a stub one automake touch all `Makefile.in' files bison create `y.tab.[ch]', if possible, from existing .[ch] flex create `lex.yy.c', if possible, from existing .c @@ -106,7 +109,7 @@ # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). -case "$1" in +case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; @@ -135,7 +138,7 @@ # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case "$1" in +case $1 in aclocal*) echo 1>&2 "\ WARNING: `$1' is $msg. You should only need it if @@ -164,7 +167,7 @@ test -z "$files" && files="config.h" touch_files= for f in $files; do - case "$f" in + case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; @@ -192,8 +195,8 @@ You can get `$1' as part of `Autoconf' from any GNU archive site." - file=`echo "$*" | sed -n 's/.*--output[ =]*([^ ]*).*/\1/p'` - test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*([^ ]*).*/\1/p'` + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else @@ -214,25 +217,25 @@ in order for those modifications to take effect. You can get `Bison' from any GNU archive site." rm -f y.tab.c y.tab.h - if [ $# -ne 1 ]; then + if test $# -ne 1; then eval LASTARG="${$#}" - case "$LASTARG" in + case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` - if [ -f "$SRCFILE" ]; then + if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` - if [ -f "$SRCFILE" ]; then + if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi - if [ ! -f y.tab.h ]; then + if test ! -f y.tab.h; then echo >y.tab.h fi - if [ ! -f y.tab.c ]; then + if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; @@ -244,18 +247,18 @@ in order for those modifications to take effect. You can get `Flex' from any GNU archive site." rm -f lex.yy.c - if [ $# -ne 1 ]; then + if test $# -ne 1; then eval LASTARG="${$#}" - case "$LASTARG" in + case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` - if [ -f "$SRCFILE" ]; then + if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi - if [ ! -f lex.yy.c ]; then + if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; @@ -267,11 +270,9 @@ `Help2man' package in order for those modifications to take effect. You can get `Help2man' from any GNU archive site." - file=`echo "$*" | sed -n 's/.*-o ([^ ]*).*/\1/p'` - if test -z "$file"; then - file=`echo "$*" | sed -n 's/.*--output=([^ ]*).*/\1/p'` - fi - if [ -f "$file" ]; then + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then touch $file else test -z "$file" || exec >$file @@ -289,11 +290,17 @@ DU, IRIX). You might want to install the `Texinfo' package or the `GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... - file=`echo "$*" | sed -n 's/.*-o ([^ ]*).*/\1/p'` + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* ([^ ]*) *$/\1/'` - file=`sed -n '/^@setfilename/ { s/.* ([^ ]*) *$/\1/; p; q; }' $infile` + file=`sed -n ' + /^@setfilename/{ + s/.* ([^ ]*) *$/\1/ + p + q + }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi @@ -317,13 +324,13 @@ fi firstarg="$1" if shift; then - case "$firstarg" in + case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac - case "$firstarg" in + case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 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/yast2-autofs-2.15.2/src/Autofs.pm new/yast2-autofs-2.15.3/src/Autofs.pm --- old/yast2-autofs-2.15.2/src/Autofs.pm 2007-01-23 11:19:34.000000000 +0100 +++ new/yast2-autofs-2.15.3/src/Autofs.pm 2007-12-30 21:03:23.000000000 +0100 @@ -566,7 +566,7 @@ # TODO FIXME Names of real stages # We do not set help text here, because it was set outside - Progress::New( $caption, " ", $steps, [ + Progress->New( $caption, " ", $steps, [ # Progress stage 1/2 __("Check the ldap configuration"), # Progress stage 2/2 @@ -583,7 +583,7 @@ ); # read database - Progress::NextStage(); + Progress->NextStage(); # Error message if(! $self->CheckLDAP()) { @@ -600,7 +600,7 @@ return Popup->Error($ERROR); } # read database - Progress::NextStage(); + Progress->NextStage(); # Error message if(! $self->ReadMaps()) { @@ -619,7 +619,7 @@ sleep($sl); # Progress finished - Progress::NextStage(); + Progress->NextStage(); sleep($sl); $modified = 0; @@ -645,7 +645,7 @@ # TODO FIXME Names of real stages # We do not set help text here, because it was set outside - Progress::New($caption, " ", $steps, [ + Progress->New($caption, " ", $steps, [ # Progress stage 1/1 __("Write the autofs maps") ], [ @@ -658,7 +658,7 @@ ); # write settings - Progress::NextStage(); + Progress->NextStage(); # Error message if(! $self->WriteAutofsMapsToLDAP()) { @@ -667,7 +667,7 @@ sleep($sl); # Progress finished - Progress::NextStage(); + Progress->NextStage(); sleep($sl); return Boolean(1); 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/yast2-autofs-2.15.2/src/helps.ycp new/yast2-autofs-2.15.3/src/helps.ycp --- old/yast2-autofs-2.15.2/src/helps.ycp 2007-05-11 16:52:27.000000000 +0200 +++ new/yast2-autofs-2.15.3/src/helps.ycp 2007-12-30 21:09:34.000000000 +0100 @@ -88,14 +88,14 @@ /* EntryDialog for NFS entry */ "EntryDialogNFS" : _("<p><b><big>NFS Entry</big></b><br> In case of NFS entry the <b>Server</b> is the DNS-name or IP-address of the NFS-server.<br> -The <b>Path</p> ist the absolute pfad of the directory on the NFS-server.<br> +The <b>Path</p> is the absolute path of the directory on the NFS-server.<br> The <b>Options</b> must be valid options of the <b>mount</b>(8) command for NFS file system.<br> <br></p>"), /* EntryDialog for SAMBA entry */ "EntryDialogSAMBA" : _("<p><b><big>SAMBA Entry</big></b><br> In case of SAMBA entry the <b>Server</b> is the DNS-name or IP-address of the SAMBA-server.<br> -The <b>Share</p> ist the name of the share to be mounted.<br> +The <b>Share</p> is the name of the share to be mounted.<br> The <b>Options</b> must be valid options of the <b>mount</b>(8) command for SMB/CIFS file system<br> <br></p>"), 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/yast2-autofs-2.15.2/VERSION new/yast2-autofs-2.15.3/VERSION --- old/yast2-autofs-2.15.2/VERSION 2007-05-11 16:56:14.000000000 +0200 +++ new/yast2-autofs-2.15.3/VERSION 2007-12-30 21:35:20.000000000 +0100 @@ -1 +1 @@ -2.15.2 +2.15.3 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de