Hello community, here is the log from the commit of package yast2-add-on-creator checked in at Tue May 22 15:04:32 CEST 2007. -------- --- yast2-add-on-creator/yast2-add-on-creator.changes 2007-05-21 13:33:36.000000000 +0200 +++ /mounts/work_src_done/NOARCH/yast2-add-on-creator/yast2-add-on-creator.changes 2007-05-22 10:56:13.348773000 +0200 @@ -1,0 +2,6 @@ +Tue May 22 10:42:36 CEST 2007 - jsuchome@suse.cz + +- enable rpm directory with .rpm extension (#276861) +- 2.15.9 + +------------------------------------------------------------------- Old: ---- yast2-add-on-creator-2.15.8.tar.bz2 New: ---- yast2-add-on-creator-2.15.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-add-on-creator.spec ++++++ --- /var/tmp/diff_new_pack.RU5242/_old 2007-05-22 15:04:23.000000000 +0200 +++ /var/tmp/diff_new_pack.RU5242/_new 2007-05-22 15:04:23.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-add-on-creator (Version 2.15.8) +# spec file for package yast2-add-on-creator (Version 2.15.9) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-add-on-creator -Version: 2.15.8 +Version: 2.15.9 Release: 1 License: GNU General Public License (GPL) Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-add-on-creator-2.15.8.tar.bz2 +Source0: yast2-add-on-creator-2.15.9.tar.bz2 prefix: /usr Requires: yast2 BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-testsuite @@ -33,7 +33,7 @@ Jiř� Suchomel <jsuchome@suse.cz> %prep -%setup -n yast2-add-on-creator-2.15.8 +%setup -n yast2-add-on-creator-2.15.9 %build %{prefix}/bin/y2tool y2autoconf @@ -69,6 +69,9 @@ %doc %{prefix}/share/doc/packages/yast2-add-on-creator %changelog +* Tue May 22 2007 - jsuchome@suse.cz +- enable rpm directory with .rpm extension (#276861) +- 2.15.9 * Mon May 21 2007 - jsuchome@suse.cz - fixed signing content file (#275883) - fixed exporting gpg key (#275900) ++++++ yast2-add-on-creator-2.15.8.tar.bz2 -> yast2-add-on-creator-2.15.9.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-add-on-creator-2.15.8/src/add-on-creator.ycp new/yast2-add-on-creator-2.15.9/src/add-on-creator.ycp --- old/yast2-add-on-creator-2.15.8/src/add-on-creator.ycp 2007-04-11 14:01:03.000000000 +0200 +++ new/yast2-add-on-creator-2.15.9/src/add-on-creator.ycp 2007-05-22 10:42:23.000000000 +0200 @@ -272,13 +272,16 @@ boolean CreateAddOn (map<string,any> options) { AddOnCreator::clone = false; - AddOnCreator::rpm_path = options["rpm_dir"]:""; - if (AddOnCreator::rpm_path == "") + string rpm_dir = options["rpm_dir"]:""; + if (rpm_dir == "") { // error message Report::Error (_("Path to directory with packages is missing.")); return false; } + if (substring (rpm_dir, size (rpm_dir) - 1, 1) != "/") + rpm_dir = rpm_dir + "/"; + AddOnCreator::rpm_path = rpm_dir; if (!haskey (options, "content")) { // error message diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-add-on-creator-2.15.8/src/AddOnCreator.ycp new/yast2-add-on-creator-2.15.9/src/AddOnCreator.ycp --- old/yast2-add-on-creator-2.15.8/src/AddOnCreator.ycp 2007-05-21 10:26:55.000000000 +0200 +++ new/yast2-add-on-creator-2.15.9/src/AddOnCreator.ycp 2007-05-21 13:32:05.000000000 +0200 @@ -24,7 +24,7 @@ * Summary: AddOnCreator settings, input and output functions * Authors: Jiri Suchomel <jsuchome@suse.cz> * - * $Id: AddOnCreator.ycp 37776 2007-05-02 11:43:20Z jsuchome $ + * $Id: AddOnCreator.ycp 38061 2007-05-21 11:34:03Z jsuchome $ * * Representation of the configuration of add-on-creator. * Input and output routines. diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-add-on-creator-2.15.8/src/complex.ycp new/yast2-add-on-creator-2.15.9/src/complex.ycp --- old/yast2-add-on-creator-2.15.8/src/complex.ycp 2007-04-19 14:45:22.000000000 +0200 +++ new/yast2-add-on-creator-2.15.9/src/complex.ycp 2007-05-22 10:42:23.000000000 +0200 @@ -330,7 +330,11 @@ UI::SetFocus (`id(`required_rpm_path)); continue; } + if (substring (dir, size (dir) - 1, 1) != "/") + dir = dir + "/"; AddOnCreator::rpm_path = dir; + if (req_dir != "" && substring (req_dir, size (req_dir) - 1, 1) != "/") + req_dir = req_dir + "/"; AddOnCreator::required_rpm_path = req_dir; if (requires == "") requires = (string) UI::QueryWidget (`id(`other_val), `Value); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-add-on-creator-2.15.8/VERSION new/yast2-add-on-creator-2.15.9/VERSION --- old/yast2-add-on-creator-2.15.8/VERSION 2007-05-21 13:21:50.000000000 +0200 +++ new/yast2-add-on-creator-2.15.9/VERSION 2007-05-22 10:42:34.000000000 +0200 @@ -1 +1 @@ -2.15.8 +2.15.9 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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