Mailinglist Archive: opensuse-commit (762 mails)

< Previous Next >
commit yast2-add-on-creator for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Tue, 03 Aug 2010 01:48:10 +0200
  • Message-id: <20100802234810.95C00202BA@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-add-on-creator for
openSUSE:Factory
checked in at Tue Aug 3 01:48:10 CEST 2010.



--------
--- yast2-add-on-creator/yast2-add-on-creator.changes 2009-12-22
14:38:26.000000000 +0100
+++
/mounts/work_src_done/STABLE/yast2-add-on-creator/yast2-add-on-creator.changes
2010-07-27 13:50:12.000000000 +0200
@@ -1,0 +2,14 @@
+Tue Jul 27 13:48:15 CEST 2010 - jsuchome@xxxxxxx
+
+- cleanup the preparation directory for building iso image
+ (bnc#623036)
+- 2.19.2
+
+------------------------------------------------------------------
+Wed Jan 13 18:56:03 CET 2010 - kmachalkova@xxxxxxx
+
+- Adjusted .desktop file(s) to wrap /sbin/yast2/ calls in xdg-su
+ where root privileges are needed, removed X-KDE-SubstituteUID key
+ (bnc#540627)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
yast2-add-on-creator-2.19.1.tar.bz2

New:
----
yast2-add-on-creator-2.19.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-add-on-creator.spec ++++++
--- /var/tmp/diff_new_pack.9LXATm/_old 2010-08-03 01:47:53.000000000 +0200
+++ /var/tmp/diff_new_pack.9LXATm/_new 2010-08-03 01:47:53.000000000 +0200
@@ -1,7 +1,7 @@
#
-# spec file for package yast2-add-on-creator (Version 2.19.1)
+# spec file for package yast2-add-on-creator (Version 2.19.2)
#
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2010 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
@@ -19,31 +19,38 @@


Name: yast2-add-on-creator
-Version: 2.19.1
+Version: 2.19.2
Release: 1
+
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-add-on-creator-2.19.1.tar.bz2
+Source0: yast2-add-on-creator-2.19.2.tar.bz2
+
Prefix: /usr
+
Group: System/YaST
License: GPL v2 only GPL v2 or later
PreReq: %fillup_prereq
Requires: yast2
BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-devtools
yast2-testsuite
+
BuildArch: noarch
+
Summary: YaST2 - module for creating Add-On product

%description
A wizard for creating your own Add-On product

%prep
-%setup -n yast2-add-on-creator-2.19.1
+%setup -n yast2-add-on-creator-2.19.2

%build
%{prefix}/bin/y2tool y2autoconf
%{prefix}/bin/y2tool y2automake
autoreconf --force --install
+
export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
+
%{?suse_update_config:%{suse_update_config -f}}
./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
# V=1: verbose build in case we used AM_SILENT_RULES(yes)

++++++ yast2-add-on-creator-2.19.1.tar.bz2 ->
yast2-add-on-creator-2.19.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-add-on-creator-2.19.1/VERSION
new/yast2-add-on-creator-2.19.2/VERSION
--- old/yast2-add-on-creator-2.19.1/VERSION 2009-12-22 14:17:20.000000000
+0100
+++ new/yast2-add-on-creator-2.19.2/VERSION 2010-07-27 13:49:02.000000000
+0200
@@ -1 +1 @@
-2.19.1
+2.19.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-add-on-creator-2.19.1/src/AddOnCreator.ycp
new/yast2-add-on-creator-2.19.2/src/AddOnCreator.ycp
--- old/yast2-add-on-creator-2.19.1/src/AddOnCreator.ycp 2009-12-22
14:15:09.000000000 +0100
+++ new/yast2-add-on-creator-2.19.2/src/AddOnCreator.ycp 2010-08-02
15:07:06.000000000 +0200
@@ -24,7 +24,7 @@
* Summary: AddOnCreator settings, input and output functions
* Authors: Jiri Suchomel <jsuchome@xxxxxxx>
*
- * $Id: AddOnCreator.ycp 59618 2009-11-19 13:46:40Z jsuchome $
+ * $Id: AddOnCreator.ycp 62328 2010-08-02 13:07:06Z jsuchome $
*
* Representation of the configuration of add-on-creator.
* Input and output routines.
@@ -3088,6 +3088,8 @@

Progress::NextStage();

+ // when building ISO, target directory is defined by iso_path:
+ // let's use base_output_path for gathering data needed for iso creation
if (current_product["iso"]:false)
{
string iso_path = current_product["iso_path"]:"";
@@ -3097,6 +3099,10 @@
if (!only_sign_product)
{
base_output_path= tmpdir + "/output";
+ if (FileUtils::Exists (base_output_path))
+ {
+ SCR::Execute (.target.bash, sformat ("/bin/rm -rf '%1'",
base_output_path));
+ }
SCR::Execute (.target.mkdir, base_output_path);
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-add-on-creator-2.19.1/src/add-on-creator.desktop
new/yast2-add-on-creator-2.19.2/src/add-on-creator.desktop
--- old/yast2-add-on-creator-2.19.1/src/add-on-creator.desktop 2009-09-03
14:16:45.000000000 +0200
+++ new/yast2-add-on-creator-2.19.2/src/add-on-creator.desktop 2010-01-15
09:17:32.000000000 +0100
@@ -18,9 +18,8 @@
X-SuSE-YaST-Keywords=product,appliance,add-on

Icon=yast-addon
-Exec=/sbin/yast2 add-on-creator
+Exec=xdg-su -c "/sbin/yast2 add-on-creator"

Name=Add-On Creator
GenericName=Create Add-On product
-X-KDE-SubstituteUID=true
StartupNotify=true


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread