Hello community, here is the log from the commit of package yast2-vm checked in at Fri May 19 02:00:38 CEST 2006. -------- --- yast2-vm/yast2-vm.changes 2006-05-17 10:33:54.000000000 +0200 +++ yast2-vm/yast2-vm.changes 2006-05-19 00:01:21.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 18 15:57:32 MDT 2006 - mgfritch@novell.com + +- Do not install kernel-xen when installing kernel-xenpae. + (#175117) +- 2.13.50 + +------------------------------------------------------------------- Old: ---- yast2-vm-2.13.49.tar.bz2 New: ---- yast2-vm-2.13.50.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-vm.spec ++++++ --- /var/tmp/diff_new_pack.lOmoVE/_old 2006-05-19 02:00:34.000000000 +0200 +++ /var/tmp/diff_new_pack.lOmoVE/_new 2006-05-19 02:00:34.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-vm (Version 2.13.49) +# spec file for package yast2-vm (Version 2.13.50) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-vm -Version: 2.13.49 +Version: 2.13.50 Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-vm-2.13.49.tar.bz2 +Source0: yast2-vm-2.13.50.tar.bz2 prefix: /usr BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-testsuite Requires: yast2 yast2-installation @@ -32,7 +32,7 @@ Ladislav Slezak <lslezak@suse.cz> %prep -%setup -n yast2-vm-2.13.49 +%setup -n yast2-vm-2.13.50 %build %{prefix}/bin/y2tool y2autoconf @@ -73,6 +73,10 @@ %doc %{prefix}/share/doc/packages/yast2-vm %changelog -n yast2-vm +* Thu May 18 2006 - mgfritch@novell.com +- Do not install kernel-xen when installing kernel-xenpae. + (#175117) +- 2.13.50 * Wed May 17 2006 - lslezak@suse.cz - check whether the package management is available at start of the yast module (#175148) ++++++ yast2-vm-2.13.49.tar.bz2 -> yast2-vm-2.13.50.tar.bz2 ++++++ ++++ 3125 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-vm-2.13.49/Makefile.am new/yast2-vm-2.13.50/Makefile.am --- old/yast2-vm-2.13.49/Makefile.am 2006-05-17 10:28:56.000000000 +0200 +++ new/yast2-vm-2.13.50/Makefile.am 2006-05-18 17:51:04.000000000 +0200 @@ -6,9 +6,7 @@ # (Edit ./SUBDIRS instead) # -#where devtools are -PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools) -Y2TOOL = $(PREFIX)/bin/y2tool +PREFIX = /usr VERSION = $(shell cat $(srcdir)/VERSION) RPMNAME = $(shell cat $(srcdir)/RPMNAME) @@ -32,10 +30,6 @@ extra_COPYRIGHT_files = $(if $(HAS_YAST_LICENSE), $(COPYRIGHT_files_yast), $(COPYRIGHT_files_gpl)) AUTOMAKE_OPTIONS = foreign dist-bzip2 -# where devtools instal m4 snippets -# argh, executed literally -#ACLOCAL_AMFLAGS = -I $(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 cmp -s $< $@ || cp -f $< $@ @@ -63,8 +57,12 @@ # info '(automake)Conditionals' if CREATE_PKGCONFIG +# pkg-config +# if a package does not have its own pc, copy the generic one +$(RPMNAME).pc.in: $(DEVTOOLS_DIR)/admin/generic.pc.in + test -f $@ || cp -p $< $@ # create the file here instead of by configure -# because the prerequisite is made here (not anymore!) +# because the prerequisite is made here # and we don't want any paths in y2autoconf # info '(autoconf)config.status Invocation' $(RPMNAME).pc: $(RPMNAME).pc.in @@ -96,7 +94,7 @@ done pot: - $(Y2TOOL) y2makepot -s $(srcdir) + y2tool y2makepot -s $(srcdir) install-pot: pot @POT_DST=`find -type d -name testsuite -prune , \ @@ -117,7 +115,7 @@ fi spellcheck: pot - $(Y2TOOL) pot-spellcheck + y2tool pot-spellcheck # all-local: $(if $(IS_DEVTOOLS),,$(POT_DST)) @@ -144,20 +142,20 @@ rm -f package/*.bak rm -f package/*.auto mv $(RPMNAME)-$(VERSION).tar.bz2 package/ - if ! test -x $(Y2TOOL); then \ - echo "$(Y2TOOL): not found."; \ + if ! test -x $(PREFIX)/bin/y2tool; then \ + echo "$(PREFIX)/bin/y2tool: not found."; \ echo "You have to install yast2-devtools to making a package"; \ false; \ fi here=`pwd`; \ cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \ newname="`echo "$$i" | sed "s/\.in$$//g"`"; \ - $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \ + $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \ done -package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local +package: check-up-to-date check-tagversion check-all-packages package-local -TAGVERSION = $(Y2TOOL) tagversion +TAGVERSION = $(PREFIX)/bin/y2tool tagversion check-up-to-date check-cvs-up-to-date check-svn-up-to-date: if [ -d $(srcdir)/CVS ]; then \ @@ -200,13 +198,10 @@ false; \ fi -check-textdomain: - $(Y2TOOL) check-textdomain $(srcdir) - stable: checkin-stable checkin-stable: package - $(Y2TOOL) checkin-stable + $(PREFIX)/bin/y2tool checkin-stable # For po/ modules @@ -215,4 +210,4 @@ # test ! -d $(srcdir)/po \ # || { $(MAKE) -C po checkpo && $(MAKE) -C po make-pox; } # No ./SUBDIRS file found - assuming default: All direct subdirs with Makefile.am -SUBDIRS = agents control doc src testsuite +SUBDIRS = agents control 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-vm-2.13.49/Makefile.am.common new/yast2-vm-2.13.50/Makefile.am.common --- old/yast2-vm-2.13.49/Makefile.am.common 2006-05-17 10:28:56.000000000 +0200 +++ new/yast2-vm-2.13.50/Makefile.am.common 2006-05-18 17:51:04.000000000 +0200 @@ -9,7 +9,7 @@ # suffix mapping: info '(make)Static Usage' # apply only to our modules, not external ones ${ybcfiles}: %.ybc: %.ycp $(ycpchook) - Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) ${YCPC} -c -M. -I. -q $(YCPCFLAGS) $< + Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) $(bindir)/ycpc -c -M. -I. -q $(YCPCFLAGS) $< # files to clean CLEANFILES = ${ybcfiles} 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-vm-2.13.49/VERSION new/yast2-vm-2.13.50/VERSION --- old/yast2-vm-2.13.49/VERSION 2006-05-17 09:59:02.000000000 +0200 +++ new/yast2-vm-2.13.50/VERSION 2006-05-18 23:57:22.000000000 +0200 @@ -1 +1 @@ -2.13.49 +2.13.50 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-vm-2.13.49/configure.in new/yast2-vm-2.13.50/configure.in --- old/yast2-vm-2.13.49/configure.in 2006-05-17 10:28:56.000000000 +0200 +++ new/yast2-vm-2.13.50/configure.in 2006-05-18 17:51:04.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-vm dnl -dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-vm, 2.13.49, http://bugs.opensuse.org/, yast2-vm) +AC_INIT(yast2-vm, 2.13.49, http://www.suse.de/feedback, yast2-vm) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -110,8 +110,8 @@ AC_MSG_ERROR(xgettext is missing; please install gettext-devel.) fi -devtools_ybindir=`pkg-config --print-errors --variable=ybindir yast2-devtools` -devtools_yast2dir=`pkg-config --print-errors --variable=yast2dir yast2-devtools` +devtools_ybindir=`pkg-config --variable=ybindir yast2-devtools` +devtools_yast2dir=`pkg-config --variable=yast2dir yast2-devtools` dnl producing pkg-config for others? AM_CONDITIONAL(CREATE_PKGCONFIG, test "x${CREATE_PKGCONFIG}" != x) @@ -138,10 +138,6 @@ if test "$YCPMAKEDEP" = "false"; then AC_MSG_ERROR([ycpmakedep is not installed]) fi -AC_PATH_PROG(YCPC, ycpc, false, $PATH:$bindir) -if test "$YCPC" = "false"; then - AC_MSG_ERROR([ycpc is not installed]) -fi ( cd control; @@ -155,8 +151,7 @@ control/Makefile doc/autodocs/Makefile doc/Makefile -src/Makefile -testsuite/Makefile) +src/Makefile) AC_OUTPUT 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-vm-2.13.49/src/VM_XEN.ycp new/yast2-vm-2.13.50/src/VM_XEN.ycp --- old/yast2-vm-2.13.49/src/VM_XEN.ycp 2006-05-17 09:01:38.000000000 +0200 +++ new/yast2-vm-2.13.50/src/VM_XEN.ycp 2006-05-18 23:59:30.000000000 +0200 @@ -3,7 +3,7 @@ * Package: XEN specific functions and values * Authors: Ladislav Slezak <lslezak@suse.cz> * Michael G. Fritch <mgfritch@novell.com> - * $Id: VM_XEN.ycp 30952 2006-05-17 04:21:58Z mgfritch $ + * $Id: VM_XEN.ycp 31030 2006-05-18 21:59:22Z mgfritch $ */ { module "VM_XEN"; @@ -87,8 +87,11 @@ if (VM_Common::GetCustomKernel()) { isNetWare = VM_Common::IsNetWareKernel(VM_Common::GetKernelImage()); } - if (isNetWare && VM_Common::proposal_type != "install") - VM_Common::memory_size = 512; // if NetWare, increase the memory_size=512 + if (isNetWare && VM_Common::proposal_type != "install") { + if (VM_Common::memory_size < 512) { + VM_Common::memory_size = 512; // if NetWare, increase the memory_size=512 + } + } return true; } 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-vm-2.13.49/src/dom0_setup.ycp new/yast2-vm-2.13.50/src/dom0_setup.ycp --- old/yast2-vm-2.13.49/src/dom0_setup.ycp 2006-05-16 12:42:17.000000000 +0200 +++ new/yast2-vm-2.13.50/src/dom0_setup.ycp 2006-05-18 23:59:30.000000000 +0200 @@ -5,7 +5,7 @@ * * Purpose: Configure domain0 (Xen management domain) * - * $Id: dom0_setup.ycp 30923 2006-05-15 22:51:58Z mgfritch $ + * $Id: dom0_setup.ycp 31030 2006-05-18 21:59:22Z mgfritch $ */ { @@ -73,7 +73,7 @@ if (VM_XEN::isPAEKernel()) kernel_pkg = "kernel-xenpae"; - list<string> packages = ["xen", "kernel-xen", "xen-libs", "xen-tools", "xen-tools-ioemu"]; + list<string> packages = ["xen", "xen-libs", "xen-tools", "xen-tools-ioemu"]; packages = add(packages, kernel_pkg); boolean success = true; boolean bootloader_modified = false; 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-vm-2.13.49/src/inst_vm_source.ycp new/yast2-vm-2.13.50/src/inst_vm_source.ycp --- old/yast2-vm-2.13.49/src/inst_vm_source.ycp 2006-05-11 09:32:27.000000000 +0200 +++ new/yast2-vm-2.13.50/src/inst_vm_source.ycp 2006-05-18 23:59:30.000000000 +0200 @@ -6,7 +6,7 @@ * * Purpose: Ask the user for installation source for the virtual machine. * - * $Id: inst_vm_source.ycp 30792 2006-05-10 02:00:13Z mgfritch $ + * $Id: inst_vm_source.ycp 31030 2006-05-18 21:59:22Z mgfritch $ * */ { @@ -319,7 +319,9 @@ // if NetWare always set localtime=1 in para virtualization if (VM_Common::GetVirtualizationType() == "para" && VM_Common::IsNetWareKernel(kernel)) { VM::SetLocaltime(1); - VM::SetMemorySize(512); // if NetWare increase the memory_size=512 + if (VM::GetMemorySize() < 512) { + VM::SetMemorySize(512); // if NetWare increase the memory_size=512 + } } } else { @@ -481,7 +483,9 @@ // if NetWare always set localtime=1 in para virtualization if (VM_Common::GetVirtualizationType() == "para" && VM_Common::IsNetWareKernel(kernel)) { VM::SetLocaltime(1); - VM::SetMemorySize(512); // if NetWare increase the memory_size=512 + if (VM::GetMemorySize() < 512) { + VM::SetMemorySize(512); // if NetWare increase the memory_size=512 + } } } 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-vm-2.13.49/testsuite/Makefile.am new/yast2-vm-2.13.50/testsuite/Makefile.am --- old/yast2-vm-2.13.49/testsuite/Makefile.am 2005-01-21 18:45:40.000000000 +0100 +++ new/yast2-vm-2.13.50/testsuite/Makefile.am 1970-01-01 01:00:00.000000000 +0100 @@ -1,21 +0,0 @@ -# -# Makefile.am for .../testsuite -# -# Do not edit this file (Makefile.am) as it will be overwritten! -# - -AUTOMAKE_OPTIONS = dejagnu -EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard tests/*.ycp) $(wildcard tests/*.yh) - -testsuite_prepare = @ydatadir@/testsuite/Makefile.testsuite - -all-local: $(testsuite_prepare) - make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir) - -clean-local: $(testsuite_prepare) - make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir) clean - -check-local: $(testsuite_prepare) - make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir) check - -# EOF ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de