Hello community, here is the log from the commit of package yast2-online-update checked in at Wed May 17 19:07:40 CEST 2006. -------- --- yast2-online-update/yast2-online-update.changes 2006-05-05 16:46:17.000000000 +0200 +++ yast2-online-update/yast2-online-update.changes 2006-05-17 15:50:15.000000000 +0200 @@ -1,0 +2,6 @@ +Fri May 12 11:47:42 CEST 2006 - jsuchome@suse.cz + +- remove product_post.ycp if present (#174812) +- 2.13.37 + +------------------------------------------------------------------- Old: ---- yast2-online-update-2.13.36.tar.bz2 New: ---- yast2-online-update-2.13.37.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-online-update.spec ++++++ --- /var/tmp/diff_new_pack.VJIM6j/_old 2006-05-17 19:07:17.000000000 +0200 +++ /var/tmp/diff_new_pack.VJIM6j/_new 2006-05-17 19:07:17.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-online-update (Version 2.13.36) +# spec file for package yast2-online-update (Version 2.13.37) # # 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-online-update -Version: 2.13.36 -Release: 2 +Version: 2.13.37 +Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-online-update-2.13.36.tar.bz2 +Source0: yast2-online-update-2.13.37.tar.bz2 prefix: /usr BuildRequires: gcc-c++ libxcrypt-devel perl-XML-Writer pkg-config update-desktop-files yast2-bootloader yast2-devtools yast2-packager PreReq: grep sed @@ -45,7 +45,7 @@ gs@suse.de %prep -%setup -n yast2-online-update-2.13.36 +%setup -n yast2-online-update-2.13.37 %build %{prefix}/bin/y2tool y2autoconf @@ -81,6 +81,13 @@ fi fi fi +to_remove="/usr/share/YaST2/clients/product_post.ycp" +if [ -f $to_remove ] ; then + eval "echo '2ee660f33bb8468654661bcf2a564fd4 $to_remove' | md5sum --status -c 2>/dev/null" + if [ "$?" == 0 ] ; then + rm -f $to_remove + fi +fi %files %defattr(-,root,root) @@ -114,6 +121,9 @@ %{prefix}/share/applications/YaST2/cd_update.desktop %changelog -n yast2-online-update +* Fri May 12 2006 - jsuchome@suse.cz +- remove product_post.ycp if present (#174812) +- 2.13.37 * Fri May 05 2006 - jsuchome@suse.cz - fixed broken dialog in online_update_setup (#172668) - 2.13.36 ++++++ yast2-online-update-2.13.36.tar.bz2 -> yast2-online-update-2.13.37.tar.bz2 ++++++ ++++ 11146 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-online-update-2.13.36/Makefile.am new/yast2-online-update-2.13.37/Makefile.am --- old/yast2-online-update-2.13.36/Makefile.am 2006-03-20 15:06:41.000000000 +0100 +++ new/yast2-online-update-2.13.37/Makefile.am 2006-05-17 15:41:30.000000000 +0200 @@ -8,6 +8,7 @@ #where devtools are PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools) +Y2TOOL = $(PREFIX)/bin/y2tool VERSION = $(shell cat $(srcdir)/VERSION) RPMNAME = $(shell cat $(srcdir)/RPMNAME) @@ -95,7 +96,7 @@ done pot: - y2tool y2makepot -s $(srcdir) + $(Y2TOOL) y2makepot -s $(srcdir) install-pot: pot @POT_DST=`find -type d -name testsuite -prune , \ @@ -116,7 +117,7 @@ fi spellcheck: pot - y2tool pot-spellcheck + $(Y2TOOL) pot-spellcheck # all-local: $(if $(IS_DEVTOOLS),,$(POT_DST)) @@ -143,20 +144,20 @@ rm -f package/*.bak rm -f package/*.auto mv $(RPMNAME)-$(VERSION).tar.bz2 package/ - if ! test -x $(PREFIX)/bin/y2tool; then \ - echo "$(PREFIX)/bin/y2tool: not found."; \ + if ! test -x $(Y2TOOL); then \ + echo "$(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"`"; \ - $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \ + $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \ done -package: check-up-to-date check-tagversion check-all-packages package-local +package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local -TAGVERSION = $(PREFIX)/bin/y2tool tagversion +TAGVERSION = $(Y2TOOL) tagversion check-up-to-date check-cvs-up-to-date check-svn-up-to-date: if [ -d $(srcdir)/CVS ]; then \ @@ -199,10 +200,13 @@ false; \ fi +check-textdomain: + $(Y2TOOL) check-textdomain $(srcdir) + stable: checkin-stable checkin-stable: package - $(PREFIX)/bin/y2tool checkin-stable + $(Y2TOOL) checkin-stable # For po/ modules 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-online-update-2.13.36/VERSION new/yast2-online-update-2.13.37/VERSION --- old/yast2-online-update-2.13.36/VERSION 2006-05-05 15:31:30.000000000 +0200 +++ new/yast2-online-update-2.13.37/VERSION 2006-05-17 15:41:16.000000000 +0200 @@ -1 +1 @@ -2.13.36 +2.13.37 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-online-update-2.13.36/configure.in new/yast2-online-update-2.13.37/configure.in --- old/yast2-online-update-2.13.36/configure.in 2006-03-20 15:06:41.000000000 +0100 +++ new/yast2-online-update-2.13.37/configure.in 2006-05-17 15:41:30.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-online-update dnl -dnl -- This file is generated by y2autoconf - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-online-update, 2.13.8, http://www.suse.de/feedback, yast2-online-update) +AC_INIT(yast2-online-update, 2.13.37, http://bugs.opensuse.org/, yast2-online-update) 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.13.8" +VERSION="2.13.37" RPMNAME="yast2-online-update" MAINTAINER="Michael Radziej <mir@suse.de>" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de