YaST Commits
Threads by month
- ----- 2025 -----
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
June 2008
- 27 participants
- 711 discussions
[yast-commit] r48107 - in /trunk/yast2: library/wizard/src/Progress.ycp package/yast2.changes
by locilka@svn.opensuse.org 06 Jun '08
by locilka@svn.opensuse.org 06 Jun '08
06 Jun '08
Author: locilka
Date: Fri Jun 6 12:52:39 2008
New Revision: 48107
URL: http://svn.opensuse.org/viewcvs/yast?rev=48107&view=rev
Log:
- Fixed Progress stages layout, stage-mark has a reseved space now
(bnc #395752).
Modified:
trunk/yast2/library/wizard/src/Progress.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/wizard/src/Progress.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/wizard/src/Progres…
==============================================================================
--- trunk/yast2/library/wizard/src/Progress.ycp (original)
+++ trunk/yast2/library/wizard/src/Progress.ycp Fri Jun 6 12:52:39 2008
@@ -267,7 +267,7 @@
*/
any Mark (symbol kind) {
if (kind == `todo)
- return "- ";
+ return "-";
if (kind == `current)
return UI::Glyph (`BulletArrowRight);
if (kind == `done)
@@ -368,8 +368,16 @@
if (!visible)
return ;
- y2milestone("Progress::New(%1, %2, %3)", window_title, length, stg);
+ if (Mode::commandline ())
+ return;
+ // a progress is already running, remember the current status
+ if (IsRunning())
+ {
+ PushState();
+ }
+
+ y2milestone("Progress::New(%1, %2, %3)", window_title, length, stg);
integer orig_current_step = current_step;
@@ -379,15 +387,6 @@
current_step = -1;
current_stage = -1;
- if (Mode::commandline ())
- return;
-
- // a progress is already running, remember the current status
- if (IsRunning())
- {
- PushState();
- }
-
if (length < size(stg))
{
y2warning("Number of stages (%1) is greater than number of steps (%2)", size(stg), length);
@@ -439,17 +438,26 @@
bar = `VBox (`VSpacing (1));
integer i = 0;
any label_heading = Mark (`todo);
+
+ term items = `VBox ();
foreach (string item, stg, ``{
- bar = add (bar,
- `HBox (
- `HSpacing (1),
- // check_ycp wants this text to be translatable. I do not know why.
- `Heading (MarkId (i), label_heading),
- `Label (`opt (`hstretch), item)
- )
+ items = add (items,
+ `HBox (
+ `HSpacing (1),
+ // check_ycp wants this text to be translatable. I do not know why.
+ // HSquash + MinWidth(4) reserves a defined space for 'mark' plus 'emtpy space'
+ // see bnc #395752
+ `HSquash (`MinWidth (4, `Heading (MarkId (i), label_heading))),
+ `Label (item),
+ `HStretch()
+ )
);
i = i+1;
});
+ bar = add (bar, `Left (`HBox (
+ `HSquash (items)
+ )));
+
if (0 != steps)
{ // stages and progress
term progress_icons = `Empty ();
Modified: trunk/yast2/package/yast2.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=…
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Fri Jun 6 12:52:39 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Fri Jun 6 12:50:02 CEST 2008 - locilka(a)suse.cz
+
+- Fixed Progress stages layout, stage-mark has a reseved space now
+ (bnc #395752).
+
+-------------------------------------------------------------------
Wed Jun 4 16:32:13 CEST 2008 - lslezak(a)suse.cz
- added PackageLock::Connect() - similar to PackageLock::Check()
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
06 Jun '08
Author: jsuchome
Date: Fri Jun 6 10:44:17 2008
New Revision: 48106
URL: http://svn.opensuse.org/viewcvs/yast?rev=48106&view=rev
Log:
Created tag stable-2_17_0 for users
Added:
tags/stable-2_17_0/users/
- copied from r48105, trunk/users/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
Author: jsuchome
Date: Fri Jun 6 10:44:12 2008
New Revision: 48105
URL: http://svn.opensuse.org/viewcvs/yast?rev=48105&view=rev
Log:
Created tag stable-2_17_0
Added:
tags/stable-2_17_0/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r48104 - in /trunk/users: VERSION package/yast2-users.changes src/users_plugin_quota.ycp
by jsuchome@svn.opensuse.org 06 Jun '08
by jsuchome@svn.opensuse.org 06 Jun '08
06 Jun '08
Author: jsuchome
Date: Fri Jun 6 10:44:08 2008
New Revision: 48104
URL: http://svn.opensuse.org/viewcvs/yast?rev=48104&view=rev
Log:
- fixed typo (bnc#374628)
- 2.17.0
Modified:
trunk/users/VERSION
trunk/users/package/yast2-users.changes
trunk/users/src/users_plugin_quota.ycp
Modified: trunk/users/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/users/VERSION?rev=48104&r1=48103…
==============================================================================
--- trunk/users/VERSION (original)
+++ trunk/users/VERSION Fri Jun 6 10:44:08 2008
@@ -1 +1 @@
-2.16.33
+2.17.0
Modified: trunk/users/package/yast2-users.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/users/package/yast2-users.change…
==============================================================================
--- trunk/users/package/yast2-users.changes (original)
+++ trunk/users/package/yast2-users.changes Fri Jun 6 10:44:08 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Fri Jun 6 10:28:23 CEST 2008 - jsuchome(a)suse.cz
+
+- fixed typo (bnc#374628)
+- 2.17.0
+
+-------------------------------------------------------------------
Fri May 23 15:51:33 CEST 2008 - jsuchome(a)suse.cz
- enable auth and user clients in 2nd stage when necessary
Modified: trunk/users/src/users_plugin_quota.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/users/src/users_plugin_quota.ycp…
==============================================================================
--- trunk/users/src/users_plugin_quota.ycp (original)
+++ trunk/users/src/users_plugin_quota.ycp Fri Jun 6 10:44:08 2008
@@ -134,7 +134,7 @@
help_text = _("<p>Here, configure quota settings of the group on selected file systems.</p>") +
// helptext for quota, cont.
- _("<p>Define a size simit by specifying the number of 1 kB blocks the
+ _("<p>Define a size limit by specifying the number of 1 kB blocks the
group may have on this file system. Additionally, you can define an inode limit specifying the number of inodes the group may have on the file system.</p>
") +
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r48103 - in /branches/tmp/dmacvicar/yast2-cmake/core: ./ agent-any/ agent-any/doc/ agent-any/src/ agent-any/testsuite/ agent-any/testsuite/ag_anyagent.test/ agent-any/testsuite/config/ agent-any/te...
by dmacvicar@svn.opensuse.org 05 Jun '08
by dmacvicar@svn.opensuse.org 05 Jun '08
05 Jun '08
Author: dmacvicar
Date: Thu Jun 5 23:33:58 2008
New Revision: 48103
URL: http://svn.opensuse.org/viewcvs/yast?rev=48103&view=rev
Log:
merge trunk
Modified:
branches/tmp/dmacvicar/yast2-cmake/core/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/VERSION
branches/tmp/dmacvicar/yast2-cmake/core/VERSION.cmake
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/ag_anyagent.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.debug/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.multi/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/debug/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/multi/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/ag_modules.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/autodocs/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/ag_process.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/ag_resolver.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/ag_system.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/conf/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/autodocs/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/autorun/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/devtools/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/elf-arch/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/startshell/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/config.h.cmake
branches/tmp/dmacvicar/yast2-cmake/core/libscr/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libscr/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/scr/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libscr/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/genericfrontend.cc
branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/y2/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/y2util/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/liby2util.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/ycp/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/ycp/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/libycp.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/9.1/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/package/yast2-core.changes
branches/tmp/dmacvicar/yast2-cmake/core/scr/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/scr.test/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/doc/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/src/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/config/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/lib/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/tests/CMakeLists.txt
branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/wfm.test/CMakeLists.txt
Modified: branches/tmp/dmacvicar/yast2-cmake/core/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,33 +0,0 @@
-project(yast2-core)
-include(YastCommon)
-
-SET( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
-
-include_directories(${CMAKE_CURRENT_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/liby2util-r/src/include
- ${CMAKE_SOURCE_DIR}/liby2/src/include
- ${CMAKE_SOURCE_DIR}/liby2/src/include/y2
- ${CMAKE_SOURCE_DIR}/wfm/src/include
- ${CMAKE_SOURCE_DIR}/wfm/src/include/wfm
- ${CMAKE_SOURCE_DIR}/libscr/src/include
- ${CMAKE_SOURCE_DIR}/libscr/src/include/scr
- ${CMAKE_SOURCE_DIR}/libycp/src/include
- ${CMAKE_SOURCE_DIR}/libycp/src/include/ycp)
-
-configure_file(${CMAKE_SOURCE_DIR}/config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
-# add it to the include path
-include_directories( ${CMAKE_BINARY_DIR} )
-
-find_package(Bison REQUIRED)
-find_package(Flex REQUIRED)
-include(Flex)
-
-add_subdirectory(libycp)
-add_subdirectory(liby2)
-add_subdirectory(libscr)
-add_subdirectory(wfm)
-add_subdirectory(agent-dummy)
-add_subdirectory(agent-ini)
-add_subdirectory(agent-any)
-add_subdirectory(agent-modules)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/VERSION (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/VERSION Thu Jun 5 23:33:58 2008
@@ -1 +1 @@
-2.16.48
+2.16.51
Modified: branches/tmp/dmacvicar/yast2-cmake/core/VERSION.cmake
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/VERSION.cmake (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/VERSION.cmake Thu Jun 5 23:33:58 2008
@@ -1,3 +0,0 @@
-SET(VERSION_MAJOR "2")
-SET(VERSION_MINOR "16")
-SET(VERSION_PATCH "48")
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,4 +0,0 @@
-add_subdirectory(src)
-#add_subdirectory(doc)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,21 +0,0 @@
-
-########### install files ###############
-
-install(FILES anyagent.html DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/agent-any
-#
-#html_DATA = anyagent.html
-#
-#EXTRA_DIST = $(html_DATA)
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,2 +0,0 @@
-
-y2_add_plugin(ag_any)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,50 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_anyagent.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(runag_anyagent_SRCS
- runag_anyagent.cc
-)
-
-add_executable(runag_anyagent ${runag_anyagent_SRCS})
-
-target_link_libraries(runag_anyagent py2ag_anyagent)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/testsuite
-##
-#
-#SUBDIRS = config lib ag_anyagent.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-any\"
-#
-#PACKAGE = ag_anyagent
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runag_anyagent
-#
-#runag_anyagent_SOURCES = runag_anyagent.cc
-#runag_anyagent_LDADD = ${AGENT_LIBADD}
-## why is whole-archive necessary?
-#runag_anyagent_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_anyagent.la \
-# -Xlinker --no-whole-archive
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* *.sum *.log site.*
-# rm -f runag_anyagent
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/ag_anyagent.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/ag_anyagent.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/ag_anyagent.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/testsuite/ag_anyagent.test
-##
-#
-#EXTRA_DIST = ag_anyagent.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/testsuite/lib
-##
-#
-#EXTRA_DIST = ag_anyagent_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-any/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-any/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.scr *.in *.out *.err runtest.sh
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,5 +0,0 @@
-#add_subdirectory(conf)
-#add_subdirectory(doc)
-add_subdirectory(src)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES dummy.scr DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-dummy/conf
-##
-#
-#scrconf_DATA = dummy.scr
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,20 +0,0 @@
-
-########### install files ###############
-
-install(FILES dummyagent.txt DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-dummy/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/agent-dummy
-#
-#html_DATA = dummyagent.txt
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,3 +0,0 @@
-
-y2_add_plugin(dummy)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-dummy/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,42 +0,0 @@
-
-########### next target ###############
-
-SET(y2ag_dummy_SRCS
- y2ag_dummy.cc
-)
-
-add_executable(y2ag_dummy ${y2ag_dummy_SRCS})
-
-target_link_libraries(y2ag_dummy y2 ycp scr py2ag_dummy)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-dummy/testsuite
-##
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-dummy\"
-#
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = \
-# ${Y2UTIL_CFLAGS}
-#
-#noinst_PROGRAMS = y2ag_dummy
-#
-#y2ag_dummy_SOURCES = y2ag_dummy.cc
-#y2ag_dummy_LDADD = \
-# ../../liby2/src/liby2.la \
-# ../../libycp/src/libycp.la \
-# ../../libscr/src/libscr.la \
-# ${Y2UTIL_LIBS}
-#y2ag_dummy_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_dummy.la \
-# -Xlinker --no-whole-archive
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,5 +0,0 @@
-#add_subdirectory(conf)
-add_subdirectory(src)
-#add_subdirectory(doc)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,15 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/conf
-##
-#
-#scrconf_DATA =
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,20 +0,0 @@
-
-########### install files ###############
-
-install(FILES ini.html DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/agent-ini
-#
-#html_DATA = ini.html
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,3 +0,0 @@
-
-y2_add_plugin(ag_ini IniAgent.cc IniAgent.h IniParser.cc IniParser.h IniFile.cc IniFile.h)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,52 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_ini.test)
-add_subdirectory(tests)
-add_subdirectory(ag_ini.debug)
-add_subdirectory(debug)
-add_subdirectory(ag_ini.multi)
-add_subdirectory(multi)
-
-
-########### next target ###############
-
-SET(runag_ini_SRCS
- runag_ini.cc
-)
-
-add_executable(runag_ini ${runag_ini_SRCS})
-
-target_link_libraries(runag_ini py2scr py2ag_system py2ag_ini)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite
-##
-#
-#SUBDIRS = config lib ag_ini.test tests ag_ini.debug debug ag_ini.multi multi
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-ini\"
-#
-#PACKAGE = ag_ini
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runag_ini
-#
-#runag_ini_SOURCES = runag_ini.cc
-#runag_ini_LDADD = ${AGENT_LIBADD}
-#runag_ini_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(top_builddir)/scr/src/libpy2scr.la \
-# $(top_builddir)/agent-system/src/libpy2ag_system.la \
-# ../src/libpy2ag_ini.la \
-# -Xlinker --no-whole-archive
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.debug/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.debug/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.debug/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/ag_ini.debug
-##
-#
-#EXTRA_DIST = ag_ini.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.multi/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.multi/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.multi/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/ag_ini.multi
-##
-#
-#EXTRA_DIST = ag_ini.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/ag_ini.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/ag_ini.test
-##
-#
-#EXTRA_DIST = ag_ini.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/debug/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/debug/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/debug/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/debug
-##
-#
-#EXTRA_DIST = *.in *.ycp *.scr *.out *.err runtest.sh
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/lib
-##
-#
-#EXTRA_DIST = ag_ini_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/multi/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/multi/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/multi/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/multi
-##
-#
-#EXTRA_DIST = *.in.[0-9] *.ycp *.scr *.out *.err runtest.sh
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-ini/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-ini/testsuite/tests
-##
-#
-#EXTRA_DIST = *.in *.ycp *.scr *.out *.err runtest.sh
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,5 +0,0 @@
-#add_subdirectory(conf)
-#add_subdirectory(doc)
-add_subdirectory(src)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-install(FILES modules.scr modprobe_blacklist.scr DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-modules/conf
-#
-#scrconf_DATA = modules.scr modprobe_blacklist.scr
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,17 +0,0 @@
-
-########### install files ###############
-
-install(FILES modules.html TODO.txt DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-modules/doc
-#
-#htmldir = $(docdir)/agent-modules
-#
-#html_DATA = modules.html TODO.txt
-#
-#EXTRA_DIST = $(html_DATA)
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,3 +0,0 @@
-
-y2_add_plugin(ag_modules)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,49 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_modules.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(runmodules_SRCS
- runmodules.cc
-)
-
-add_executable(runmodules ${runmodules_SRCS})
-
-target_link_libraries(runmodules py2ag_modules)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-modules/testsuite
-##
-#
-#SUBDIRS = config lib ag_modules.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-modules\"
-#
-#PACKAGE = ag_modules
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runmodules
-#
-#runmodules_SOURCES = runmodules.cc
-#runmodules_LDADD = ${AGENT_LIBADD}
-#runmodules_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_modules.la \
-# -Xlinker --no-whole-archive
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* site.exp *.log *.sum *.bak
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/ag_modules.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/ag_modules.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/ag_modules.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-modules/testsuite/ag_modules.test
-##
-#
-#EXTRA_DIST = ag_modules.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-modules/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-modules/testsuite/lib
-##
-#
-#EXTRA_DIST = ag_modules_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-modules/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-modules/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.in *.out *.err *.scr runtest.sh
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,18 +0,0 @@
-add_subdirectory(conf)
-add_subdirectory(doc)
-add_subdirectory(src)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-process
-##
-#
-#SUBDIRS = conf doc src testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES process.scr DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for .../agent-process/conf
-##
-#
-#scrconf_DATA = process.scr
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,21 +0,0 @@
-add_subdirectory(autodocs)
-
-
-########### install files ###############
-
-install(FILES process.html DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for .../agent-process/doc
-##
-#
-#SUBDIRS = autodocs
-#
-#htmldir = $(docdir)
-#
-#html_DATA = process.html
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/autodocs/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/autodocs/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/doc/autodocs/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,27 +0,0 @@
-
-########### install files ###############
-
-install(FILES ag_process-builtins.html DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-process/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/agent-process
-#
-#html_DATA = ag_process-builtins.html
-#EXTRA_DIST = $(html_DATA)
-#
-#builtin = $(srcdir)/../../src/ProcessAgent.cc
-#
-#ag_process-builtins.html: $(builtin)
-# `pkg-config --variable=ybindir yast2-devtools`/makebuiltindocs -t "SCR Process agent functions" -a $(builtin) > $@.new
-# mv $@.new $@
-#
-#CLEANFILES = ag_process-builtins.html
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,45 +0,0 @@
-
-########### next target ###############
-
-SET(y2ag_process_STAT_SRCS
- ProcessAgent.cc
- ProcessAgent.h
- Process.cc
- Process.h
-)
-
-add_library(y2ag_process STATIC ${y2ag_process_STAT_SRCS})
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for .../agent-process/src
-##
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-process\" -Wall
-#
-#plugin_LTLIBRARIES = libpy2ag_process.la
-#noinst_LTLIBRARIES = liby2ag_process.la
-#
-#liby2ag_process_la_SOURCES = \
-# ProcessAgent.cc \
-# ProcessAgent.h \
-# Process.cc \
-# Process.h
-#
-#liby2ag_process_la_LDFLAGS = -version-info 2:0
-#liby2ag_process_la_LIBADD = @AGENT_LIBADD@
-#
-#libpy2ag_process_la_SOURCES = \
-# $(liby2ag_process_la_SOURCES) \
-# Y2CCProcessAgent.cc
-#libpy2ag_process_la_LDFLAGS = -version-info 2:0
-#libpy2ag_process_la_LIBADD = @AGENT_LIBADD@
-#
-#INCLUDES = @AGENT_INCLUDES@
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,47 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_process.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(run_ag_process_SRCS
- run_ag_process.cc
-)
-
-add_executable(run_ag_process ${run_ag_process_SRCS})
-
-target_link_libraries(run_ag_process py2ag_process)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-process/testsuite
-##
-#
-#SUBDIRS = config lib ag_process.test tests
-#
-#CLEANFILES = $(wildcard tmp.out.* tmp.err.* tmp.write.* *.sum *.log)
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-process\"
-#
-#PACKAGE = ag_process
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = run_ag_process
-#
-#run_ag_process_SOURCES = run_ag_process.cc
-#run_ag_process_LDADD = ${AGENT_LIBADD}
-#run_ag_process_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_process.la \
-# -Xlinker --no-whole-archive
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/ag_process.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/ag_process.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/ag_process.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/ag_system.test
-##
-#
-#EXTRA_DIST = ag_process.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/lib
-##
-#
-#EXTRA_DIST = ag_process_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-process/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.out *.err runtest.sh
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-add_subdirectory(conf)
-add_subdirectory(doc)
-add_subdirectory(src)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver
-#
-#SUBDIRS = conf doc src testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES resolv.scr DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-resolver/conf
-##
-#
-#scrconf_DATA = resolv.scr
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,18 +0,0 @@
-
-########### install files ###############
-
-install(FILES resolveragent.txt DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-resolver/doc
-##
-#
-#htmldir = $(docdir)/agent-resolver
-#
-#html_DATA = resolveragent.txt
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,23 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/src
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-resolver\"
-#
-#plugin_LTLIBRARIES = libpy2ag_resolver.la
-#
-#libpy2ag_resolver_la_SOURCES = \
-# ResolverAgent.cc \
-# ResolverAgent.h \
-# Y2CCResolverAgent.cc
-#
-#libpy2ag_resolver_la_LDFLAGS = -version-info 2:0
-#libpy2ag_resolver_la_LIBADD = @AGENT_LIBADD@
-#
-#INCLUDES = ${AGENT_INCLUDES}
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,47 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_resolver.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(runresolver_SRCS
- runresolver.cc
-)
-
-add_executable(runresolver ${runresolver_SRCS})
-
-target_link_libraries(runresolver py2ag_resolver)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/testsuite
-#
-#SUBDIRS = config lib ag_resolver.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-resolver\"
-#
-#PACKAGE = ag_resolver
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runresolver
-#
-#runresolver_SOURCES = runresolver.cc
-#runresolver_LDADD = ${AGENT_LIBADD}
-#runresolver_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_resolver.la \
-# -Xlinker --no-whole-archive
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* site.exp *.log *.sum *.bak
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/ag_resolver.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/ag_resolver.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/ag_resolver.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,11 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/testsuite/ag_resolver.test
-#
-#EXTRA_DIST = ag_resolver.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,11 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/testsuite/config
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,11 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/testsuite/lib
-#
-#EXTRA_DIST = ag_resolver_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-resolver/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,11 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/agent-resolver/testsuite/tests
-#
-#EXTRA_DIST = *.ycp *.in *.out *.err runtest.sh
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,18 +0,0 @@
-add_subdirectory(conf)
-add_subdirectory(doc)
-add_subdirectory(src)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system
-##
-#
-#SUBDIRS = conf doc src testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES target.scr DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/conf
-##
-#
-#scrconf_DATA = target.scr
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,27 +0,0 @@
-
-########### install files ###############
-
-install(FILES systemagent.txt passwdagent.txt ag_system-builtins.html DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/agent-system
-#
-#html_DATA = systemagent.txt passwdagent.txt ag_system-builtins.html
-#EXTRA_DIST = $(html_DATA)
-#
-#builtin = $(srcdir)/../src/SystemAgent.cc
-#
-#ag_system-builtins.html: $(builtin)
-# `pkg-config --variable=ybindir yast2-devtools`/makebuiltindocs -t "SCR System agent functions" -a $(builtin) > $@.new
-# mv $@.new $@
-#
-#CLEANFILES = ag_system-builtins.html
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,25 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/src
-##
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-system\"
-#
-#plugin_LTLIBRARIES = libpy2ag_system.la
-#
-#libpy2ag_system_la_SOURCES = \
-# Y2CCSystemAgent.cc \
-# ShellCommand.cc ShellCommand.h \
-# SystemAgent.cc SystemAgent.h
-#
-#libpy2ag_system_la_LDFLAGS = -version-info 2:0
-#libpy2ag_system_la_LIBADD = @AGENT_LIBADD@
-#
-#INCLUDES = @AGENT_INCLUDES@
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,47 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(ag_system.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(runag_system_SRCS
- runag_system.cc
-)
-
-add_executable(runag_system ${runag_system_SRCS})
-
-target_link_libraries(runag_system py2ag_system)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite
-##
-#
-#SUBDIRS = config lib ag_system.test tests
-#
-#CLEANFILES = $(wildcard tmp.out.* tmp.err.* tmp.write.* *.sum *.log)
-#
-#AM_CXXFLAGS = -DY2LOG=\"agent-system\"
-#
-#PACKAGE = ag_system
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runag_system
-#
-#runag_system_SOURCES = runag_system.cc
-#runag_system_LDADD = ${AGENT_LIBADD}
-#runag_system_LDFLAGS = \
-# -Xlinker --whole-archive \
-# ../src/libpy2ag_system.la \
-# -Xlinker --no-whole-archive
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/ag_system.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/ag_system.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/ag_system.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/ag_system.test
-##
-#
-#EXTRA_DIST = ag_system.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/lib
-##
-#
-#EXTRA_DIST = ag_system_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agent-system/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agent-system/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.out *.err *.read *.write runtest.sh
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,23 +0,0 @@
-add_subdirectory(conf)
-
-
-########### install files ###############
-
-install(FILES ag_hostnames ag_xauth DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-non-y2
-##
-#
-#SUBDIRS = conf
-#
-## liby2 only distinguishes between server and clients,
-## since agents do a "service", they go to "servers_non_y2"
-#agentdir = $(execcompdir)/servers_non_y2
-#agent_SCRIPTS = ag_hostnames ag_xauth
-#
-#EXTRA_DIST = $(agent_SCRIPTS)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-non-y2/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES $(wildcard *.scr) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-non-y2/conf
-##
-#
-#scrconf_DATA = $(wildcard *.scr)
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,28 +0,0 @@
-add_subdirectory(conf)
-add_subdirectory(lib)
-add_subdirectory(doc)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-install(FILES ag_ping ag_yp_makefile ag_modinfo ag_background DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-perl
-##
-#
-#SUBDIRS = conf lib doc testsuite
-#
-#agentdir = @execcompdir@/servers_non_y2
-#
-#agent_SCRIPTS = ag_ping \
-# ag_yp_makefile \
-# ag_modinfo \
-# ag_background
-#
-#EXTRA_DIST = $(agent_SCRIPTS)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/conf/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/conf/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/conf/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-install(FILES $(wildcard $(srcdir)/*.scr) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-perl/conf
-##
-#
-#scrconf_DATA = $(wildcard $(srcdir)/*.scr)
-#
-#EXTRA_DIST = $(scrconf_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,33 +0,0 @@
-
-########### install files ###############
-
-install(FILES ag_yp_makefile.txt ycp-pm.html ycp-pm-pod.html docu0perl.htm docu1perl.htm docu2perl.htm docu3perl.htm docu4perl.htm docu5perl.htm docu6perl.htm docu7perl.htm ag_background.html ag_background_example.ycp DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-perl/doc
-##
-#
-#htmldir = $(docdir)/agents-perl
-#
-#html_DATA = ag_yp_makefile.txt \
-# ycp-pm.html \
-# ycp-pm-pod.html \
-# docu0perl.htm \
-# docu1perl.htm \
-# docu2perl.htm \
-# docu3perl.htm \
-# docu4perl.htm \
-# docu5perl.htm \
-# docu6perl.htm \
-# docu7perl.htm \
-# ag_background.html \
-# ag_background_example.ycp
-#
-#ycp-pm-pod.html: ../lib/ycp.pm
-# pod2html < $^ > $@
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,38 +0,0 @@
-
-########### install files ###############
-
-install(FILES .made_mod DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/agents-perl/lib
-##
-#
-## google: automake makemaker
-## http://sources.redhat.com/ml/automake/2001-03/msg00395.html
-#PERL=perl
-## Makefile: when configure runs, we may have a different prefix,
-## even different perl
-#Makefile.perl: Makefile.PL Makefile
-# $(PERL) $< MAKEFILE=$@ PREFIX=$(prefix)
-#
-#noinst_DATA = .made_mod
-## a flag file meaning that perl's make was run
-#.made_mod: Makefile.perl
-# $(MAKE) -f Makefile.perl
-# touch $@
-#
-#install-data-local:
-# $(MAKE) -f Makefile.perl install_vendor
-#
-#CLEANFILES = .made_mod
-#clean-local:
-# -$(MAKE) -f Makefile.perl realclean
-# rm -f Makefile.perl Makefile.perl.old
-#
-#TESTS = ycp.test
-#
-#EXTRA_DIST = Makefile.PL MANIFEST ycp.pm YaST/SCRAgent.pm $(TESTS)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/agents-perl/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,17 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-#TESTS = \
-# t-norun.exp \
-# t-echo.exp \
-# t-echo-sleep.exp \
-# t-double-status.exp \
-# t-srcmgr1.exp \
-# t-srcmgr2.exp
-#
-#EXTRA_DIST = test-common.exp $(TESTS)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/autodocs/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/autodocs/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/autodocs/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,26 +0,0 @@
-
-########### install files ###############
-
-install(FILES index.html $(wildcard *.html *.png *.gif *.css) @RPMNAME@.tag DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/autodocs
-##
-#htmldir = $(docdir)/autodocs
-#
-#html_DATA = index.html $(wildcard *.html *.png *.gif *.css) @RPMNAME@.tag
-#
-#CLEANFILES = $(html_DATA) doxygen.log doxygen.conf installdox
-#
-#DOC=/usr/share/doc/packages
-#
-#doxygen.css @RPMNAME@.tag: index.html
-#
-#index.html: $(wildcard $(top_srcdir)/*/*.cc $(top_srcdir)/*/*/*.cc)
-# ${YDOXYGEN} PROJECT_NAME=@RPMNAME@ \
-# INPUT=..
-## TODO: create libzypp.tag and use it (elsewhere)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-add_subdirectory(src)
-add_subdirectory(tools)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base
-##
-#
-#SUBDIRS = src tools
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,59 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base/src
-##
-#
-#ybin_PROGRAMS = y2base
-#
-#y2base_SOURCES = y2base.cc
-#
-#YAST2CORE = \
-# ../../wfm/src/libpy2wfm.la \
-# ../../libycp/src/libycp.la \
-# ../../liby2/src/liby2.la \
-# ../../libscr/src/libscr.la
-#
-## ../../scr/src/libpy2scr.la
-#
-#
-#y2base_DEPENDENCIES = $(YAST2CORE)
-#
-##
-## do not add any libraries needed by a plugin.
-## link the plugin against any special library.
-##
-#
-#y2base_LDADD = ${Y2UTIL_LIBS}
-#
-#y2base_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(PERL_LDFLAGS) \
-# $(YAST2CORE) \
-# -Xlinker --no-whole-archive
-#
-#AM_CXXFLAGS = -DY2LOG=\"scr\" -DSUSEVERSION=\"${SUSEVERSION}\"
-#
-#serversdir = $(execcompdir)/servers
-#servers_PROGRAMS = scr
-#
-#INCLUDES = ${AGENT_INCLUDES} \
-# -I$(srcdir)/../../libscr/src/include \
-# -I$(srcdir)/../../scr/src
-#
-#scr_SOURCES = \
-# scr.cc
-#
-#scr_LDADD = ${AGENT_LIBADD}
-#
-#scr_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(top_builddir)/scr/src/libpy2scr.la \
-# $(top_builddir)/wfm/src/libpy2wfm.la \
-# -Xlinker --no-whole-archive
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,20 +0,0 @@
-add_subdirectory(startshell)
-add_subdirectory(autorun)
-add_subdirectory(elf-arch)
-add_subdirectory(ycpc)
-add_subdirectory(devtools)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base/tools
-##
-#
-#SUBDIRS = startshell autorun elf-arch ycpc devtools
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/autorun/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/autorun/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/autorun/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base/tools/autorun
-##
-#
-#ybin_PROGRAMS = md_autorun
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/devtools/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/devtools/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/devtools/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,20 +0,0 @@
-
-########### install files ###############
-
-install(FILES generateYCPWrappers DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/tools/devtools
-##
-#
-#pkgdatadir = ${prefix}/share/YaST2/data/devtools/bin/
-#
-#pkgdata_SCRIPTS = \
-# generateYCPWrappers
-#
-#EXTRA_DIST = $(pkgdata_SCRIPTS)
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/elf-arch/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/elf-arch/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/elf-arch/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base/tools/elf-arch
-##
-#
-#ybin_PROGRAMS = elf-arch
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/startshell/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/startshell/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/startshell/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,14 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/base/tools/startshell
-##
-#
-#ybin_PROGRAMS = startshell
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,52 +0,0 @@
-add_subdirectory(doc)
-
-include_directories(${CMAKE_SOURCE_DIR}/libycp/src/include ${CMAKE_SOURCE_DIR}/liby2/src/include ${CMAKE_SOURCE_DIR}/libscr/src/include ${CMAKE_SOURCE_DIR}/wfm/src )
-
-
-########### next target ###############
-
-SET(ycpc_SRCS
- ycpc.cc
-)
-
-add_executable(ycpc ${ycpc_SRCS})
-
-target_link_libraries(ycpc ycp py2wfm y2 scr py2scr)
-
-install(TARGETS ycpc DESTINATION bin)
-
-
-########### install files ###############
-
-install(FILES ybcdump DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for ycpc command line compiler
-##
-#
-#SUBDIRS = doc
-#
-#AM_CXXFLAGS = -DY2LOG=\"libycp\"
-#
-#INCLUDES = -I$(top_srcdir)/libycp/src/include \
-# -I$(top_srcdir)/liby2/src/include \
-# -I$(top_srcdir)/libscr/src/include \
-# -I$(top_srcdir)/wfm/src \
-# ${Y2UTIL_CFLAGS}
-#
-#bin_PROGRAMS = ycpc
-#ycpc_SOURCES = ycpc.cc
-#ycpc_LDADD = $(top_builddir)/libycp/src/libycp.la \
-# $(top_builddir)/wfm/src/libpy2wfm.la \
-# $(top_builddir)/liby2/src/liby2.la \
-# $(top_builddir)/libscr/src/libscr.la \
-# $(top_builddir)/scr/src/libpy2scr.la \
-# ${Y2UTIL_LIBS}
-#
-#ybin_SCRIPTS = ybcdump
-#
-#EXTRA_DIST = $(ybin_SCRIPTS)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/base/tools/ycpc/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,38 +0,0 @@
-
-########### install files ###############
-
-install(FILES html/yast2docs.css html/index.html $(htmlfiles) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/y2base/tools/ycpc
-##
-#htmldir = $(docdir)/ycpc
-#xmlfiles = ycpc.xml ycpc-data.xml
-#htmlfiles = $(wildcard html/.html)
-#
-#
-#html_DATA = \
-# html/yast2docs.css \
-# html/index.html \
-# $(htmlfiles)
-#
-#html/index.html: $(xmlfiles)
-# XML_CATALOG_FILES=@XML_CATALOG@ $(XSLTPROC) $(XSLTPROC_FLAGS) --xinclude @STYLESHEET_HTML@ ycpc.xml
-#
-#
-#html/yast2docs.css: html/index.html
-# cp @STYLESHEET_CSS@ html
-# cp -a `pkg-config --variable=yast2dir yast2-devtools`/data/docbook/images html
-#
-#EXTRA_DIST = $(xmlfiles)
-#
-#clean-local:
-# rm -rf html
-#
-#install-data-local:
-# mkdir -p $(DESTDIR)$(htmldir)
-# cp -a $(srcdir)/html/images $(DESTDIR)$(htmldir)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/config.h.cmake
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/config.h.cmake (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/config.h.cmake Thu Jun 5 23:33:58 2008
@@ -1,89 +0,0 @@
-/* config.h. Generated from config.h.in by configure. */
-/* config.h.in. Generated from configure.in by autoheader. */
-
-/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
- systems. This function is required for `alloca.c' support on those systems.
- */
-/* #undef CRAY_STACKSEG_END */
-
-/* Define to 1 if using `alloca.c'. */
-/* #undef C_ALLOCA */
-
-/* Define to 1 if you have `alloca', as a function or macro. */
-#cmakedefine HAVE_ALLOCA 1
-
-/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
- */
-#cmakedefine HAVE_ALLOCA_H 1
-
-/* Define to 1 if you have the <dlfcn.h> header file. */
-#cmakedefine HAVE_DLFCN_H 1
-
-/* Define to 1 if you have the <inttypes.h> header file. */
-#cmakedefine HAVE_INTTYPES_H 1
-
-/* Define to 1 if you have the <memory.h> header file. */
-#cmakedefine HAVE_MEMORY_H 1
-
-/* Define to 1 if you have the <stdint.h> header file. */
-#cmakedefine HAVE_STDINT_H 1
-
-/* Define to 1 if you have the <stdlib.h> header file. */
-#cmakedefine HAVE_STDLIB_H 1
-
-/* Define to 1 if you have the <strings.h> header file. */
-#cmakedefine HAVE_STRINGS_H 1
-
-/* Define to 1 if you have the <string.h> header file. */
-#cmakedefine HAVE_STRING_H 1
-
-/* Define to 1 if you have the <sys/stat.h> header file. */
-#cmakedefine HAVE_SYS_STAT_H 1
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#cmakedefine HAVE_SYS_TYPES_H 1
-
-/* Define to 1 if you have the <unistd.h> header file. */
-#cmakedefine HAVE_UNISTD_H 1
-
-/* Name of package */
-#define PACKAGE "yast2-core"
-
-/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "http://bugs.opensuse.org/"
-
-/* Define to the full name of this package. */
-#define PACKAGE_NAME "yast2-core"
-
-/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "yast2-core 2.16.48"
-
-/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME "yast2-core"
-
-/* Define to the version of this package. */
-#define PACKAGE_VERSION "2.16.48"
-
-/* If using the C implementation of alloca, define if you know the
- direction of stack growth for your system; otherwise it will be
- automatically deduced at runtime.
- STACK_DIRECTION > 0 => grows toward higher addresses
- STACK_DIRECTION < 0 => grows toward lower addresses
- STACK_DIRECTION = 0 => direction of growth unknown */
-/* #undef STACK_DIRECTION */
-
-/* Define to 1 if you have the ANSI C header files. */
-#cmakedefine STDC_HEADERS 1
-
-/* Version number of package */
-#define VERSION "2.16.48"
-
-/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
- `char[]'. */
-#cmakedefine YYTEXT_POINTER 1
-
-/* Number of bits in a file offset, on hosts where this is settable. */
-/* #undef _FILE_OFFSET_BITS */
-
-/* Define for large files, on AIX-style hosts. */
-/* #undef _LARGE_FILES */
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,4 +0,0 @@
-add_subdirectory(src)
-add_subdirectory(doc)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-
-########### install files ###############
-
-#install(FILES repository.png DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/libscr/doc
-#
-#htmldir = $(docdir)/libscr
-#
-#html_DATA = repository.png
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,47 +0,0 @@
-add_definitions(-DY2LOG=\\\"libscr\\\")
-
-add_subdirectory(include)
-
-
-########### next target ###############
-
-SET(scr_LIB_SRCS
- SCRAgent.cc
- SCR.cc
-)
-
-add_library(scr SHARED ${scr_LIB_SRCS})
-
-target_link_libraries(scr)
-
-set_target_properties(scr PROPERTIES VERSION 4.2.0 SOVERSION 4)
-install(TARGETS scr DESTINATION lib)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libscr/src
-##
-#
-#SUBDIRS = include
-#
-#AM_CXXFLAGS = -DY2LOG=\"libscr\"
-#
-#lib_LTLIBRARIES = libscr.la
-#
-#libscr_la_SOURCES = \
-# SCRAgent.cc SCR.cc
-#
-#INCLUDES = \
-# -I$(srcdir)/../../libycp/src/include \
-# -I$(srcdir)/../../liby2/src/include \
-# -I$(srcdir)/include \
-# ${Y2UTIL_CFLAGS}
-#
-#libscr_la_LDFLAGS = -version-info 2:0
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-add_subdirectory(scr)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libscr/src/include
-##
-#
-#SUBDIRS = scr
-#
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/scr/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/scr/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/src/include/scr/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,46 +0,0 @@
-
-########### install files ###############
-
-install(FILES SCRAgent.h Y2AgentComponent.h Y2CCAgentComponent.h SCR.h run_agent.h DESTINATION /include/scr)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libscr/src/include/scr
-##
-#
-#pkgincludedir = $(includedir)/scr
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = \
-# SCRAgent.h \
-# Y2AgentComponent.h \
-# Y2CCAgentComponent.h \
-# SCR.h \
-# run_agent.h
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libscr/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libscr/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libscr/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,47 +0,0 @@
-add_definitions(-DY2LOG=\\\"scrtestsuite\\\")
-
-include_directories(${CMAKE_SOURCE_DIR}/libycp/src/include ${CMAKE_SOURCE_DIR}/liby2/src/include )
-
-
-########### next target ###############
-
-SET(runscr_SRCS
- runscr.cc
-)
-
-add_executable(runscr ${runscr_SRCS})
-
-target_link_libraries(runscr scr y2 ycp)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libscr/testsuite
-##
-#
-#AM_CXXFLAGS = -DY2LOG=\"libscr\"
-#
-#INCLUDES = \
-# -I$(top_srcdir)/libycp/src/include \
-# -I$(top_srcdir)/liby2/src/include \
-# -I$(srcdir)/../src/include \
-# ${Y2UTIL_CFLAGS}
-#
-#noinst_PROGRAMS = runscr
-#runscr_SOURCES = runscr.cc
-#runscr_LDADD = ../src/libscr.la ../../liby2/src/liby2.la ../../libycp/src/libycp.la ${Y2UTIL_LIBS}
-#
-#PACKAGE = libscr
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* ycp.log ycp.sum site.exp \
-# libycp.log libycp.sum site.bak
-#
-#EXTRA_DIST = README
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,16 +0,0 @@
-add_subdirectory(src)
-add_subdirectory(doc)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/liby2
-##
-#
-#SUBDIRS = src doc
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,24 +0,0 @@
-
-########### install files ###############
-
-#install(FILES Y2-access.html Y2-components.html Y2-overview.html componentbroker.txt README.componentsearch DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/liby2/doc
-##
-#
-#
-#
-#htmldir = $(docdir)/liby2
-#
-#html_DATA = \
-# Y2-access.html Y2-components.html \
-# Y2-overview.html \
-# componentbroker.txt \
-# README.componentsearch
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,24 +0,0 @@
-
-add_definitions(-DY2LOG=\\\"y2\\\")
-
-SET(y2_LIB_SRCS
- Y2Component.cc
- Y2ComponentBroker.cc
- Y2ComponentCreator.cc
- Y2Namespace.cc
- Y2LanguageLoader.cc
- genericfrontend.cc
- SymbolEntry.cc
- Y2ErrorComponent.cc
- Y2ProgramComponent.cc
- Y2CCProgram.cc
- Y2PluginComponent.cc
- Y2CCPlugin.cc
- Y2StdioComponent.cc
- Y2CCStdio.cc
-)
-
-add_library(y2 SHARED ${y2_LIB_SRCS})
-target_link_libraries(y2 util dl pthread blocxx pcre)
-set_target_properties(y2 PROPERTIES VERSION 4.2.0 SOVERSION 4)
-install(TARGETS y2 DESTINATION lib)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/genericfrontend.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/genericfrontend.cc (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/genericfrontend.cc Thu Jun 5 23:33:58 2008
@@ -55,7 +55,7 @@
static void print_usage ();
static void print_help ();
static void print_error (const char*, ...) __attribute__ ((format (printf, 1, 2)));
-static bool is_ycp_value (const char* arg);
+static bool has_parens (const char* arg);
string demangle( const char * mangled );
static
@@ -258,6 +258,8 @@
void
parse_client_and_options (int argc, char ** argv, int& arg, char *& client_name, YCPList& arglist)
{
+ bool args_are_ycp = true;
+
if (!argv[arg]) {
print_usage ();
exit (1);
@@ -279,6 +281,10 @@
// Logfile already done at program start --> ignore here
arg++; // skip filename
}
+ else if (!strcmp(argv[arg], "-S"))
+ {
+ args_are_ycp = false;
+ }
else if (!strcmp(argv[arg], "-s")) // Parse one value (YCPList of options) from stdin
{
Parser parser (0, "<stdin>"); // set parser to stdin
@@ -346,8 +352,10 @@
exit(5);
}
}
- else if (is_ycp_value (argv[arg])) // option is a YCP value -> parse it directly
+ else if (has_parens (argv[arg])) // client args
{
+ if (args_are_ycp) // bnc#382883
+ {
Parser parser (argv[arg]); // set parser to option
YCodePtr pc = parser.parse ();
@@ -359,6 +367,12 @@
}
arglist->add( pc->evaluate (true)); // add to arglist
+ }
+ else
+ {
+ string value(argv[arg] + 1, strlen (argv[arg]) - 2);
+ arglist->add (YCPString (value));
+ }
}
else break; // must be server name
@@ -436,7 +450,7 @@
exit(5);
}
}
- else if (is_ycp_value (argv[arg])) // option is a YCP value -> parse it directly
+ else if (has_parens (argv[arg])) // option is a YCP value -> parse it directly
{
Parser parser (argv[arg]); // set parser to option
@@ -666,6 +680,14 @@
if (!client)
{
print_error ("No such client module %s", client_name);
+
+ std::list<string>::const_iterator
+ i = YCPPathSearch::searchListBegin(YCPPathSearch::Client),
+ e = YCPPathSearch::searchListEnd(YCPPathSearch::Client);
+ fprintf (stderr, "The search path follows. It does not include the current directory.\n");
+ for (; i != e; ++i)
+ fprintf (stderr, " %s\n", i->c_str());
+
print_usage ();
exit (5);
}
@@ -679,9 +701,9 @@
// The environment variable YAST_IS_RUNNING is checked in rpm
// post install scripts. Might be useful for other scripts as
// well.
- if ((strcmp (client_name, "installation") == 0 ||
- strcmp (client_name, "installation.ycp") == 0) &&
- arglist->contains (YCPString ("initial")))
+ if (strcmp (client_name, "live-installer") == 0 // bnc#389099
+ || (strcmp (client_name, "installation") == 0
+ && arglist->contains (YCPString ("initial"))))
{
setenv ("YAST_IS_RUNNING", "instsys", 1);
}
@@ -740,7 +762,9 @@
"ClientOptions are:\n"
" -s : Get options as one YCPList from stdin\n"
" -f FileName : Get YCPValue(s) from file\n"
- " '(any YCPValue)' : Parameter _IS_ a YCPValue\n"
+ " -S : Parameters are strings, not YCP to be parsed\n"
+ " '(any YCPValue)...' : Parameter _IS_ a YCPValue\n"
+ " -S '(t1)' '(\\t2)' is equivalent to '(\"t1\")' '(\"\\\\t2\")'\n"
"Generic ServerOptions are:\n"
" -p FileName : Evaluate YCPValue(s) from file (preload)\n"
" '(any YCPValue)' : Parameter _IS_ a YCPValue to be evaluated\n"
@@ -773,7 +797,7 @@
static bool
-is_ycp_value (const char* arg)
+has_parens (const char* arg)
{
return arg[0] == '(' && arg[strlen (arg) - 1] == ')';
}
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,45 +0,0 @@
-add_subdirectory(y2)
-
-
-########### install files ###############
-
-install(FILES Y2.h DESTINATION /include)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/liby2/src/include
-##
-#
-#SUBDIRS = y2
-#
-#pkgincludedir = $(includedir)
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = Y2.h
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/y2/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/y2/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/src/include/y2/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,49 +0,0 @@
-
-########### install files ###############
-
-install(FILES Y2Component.h Y2ComponentBroker.h Y2ComponentCreator.h Y2CCProgram.h Y2CCSerial.h Y2CCStdio.h Y2ErrorComponent.h Y2ProgramComponent.h Y2SerialComponent.h Y2StdioComponent.h Y2PluginComponent.h Y2CCPlugin.h Y2Namespace.h Y2Function.h SymbolEntry.h DESTINATION /include/y2)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/liby2/src/include/y2
-##
-#
-#pkgincludedir = $(includedir)/y2
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = \
-# Y2Component.h Y2ComponentBroker.h Y2ComponentCreator.h \
-# Y2CCProgram.h Y2CCSerial.h Y2CCStdio.h \
-# Y2ErrorComponent.h \
-# Y2ProgramComponent.h \
-# Y2SerialComponent.h Y2StdioComponent.h \
-# Y2PluginComponent.h Y2CCPlugin.h \
-# Y2Namespace.h \
-# Y2Function.h SymbolEntry.h
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,130 +0,0 @@
-
-########### next target ###############
-
-SET(rungeneric_SRCS
- runy2.cc
-)
-
-add_executable(rungeneric ${rungeneric_SRCS})
-
-target_link_libraries(rungeneric ycp y2util y2)
-
-
-########### next target ###############
-
-SET(runplugin_SRCS
- $(rungeneric_SOURCES)
-)
-
-add_executable(runplugin ${runplugin_SRCS})
-
-target_link_libraries(runplugin ycp y2)
-
-
-########### next target ###############
-
-SET(runprogram_SRCS
- $(rungeneric_SOURCES)
-)
-
-add_executable(runprogram ${runprogram_SRCS})
-
-target_link_libraries(runprogram ycp y2)
-
-
-########### next target ###############
-
-SET(runremote_SRCS
- dummy.cpp
-)
-
-file(WRITE dummy.cpp "//autogenerated file by cmake\n")
-add_executable(runremote ${runremote_SRCS})
-
-target_link_libraries(runremote)
-
-
-########### next target ###############
-
-SET(runserial_SRCS
- $(rungeneric_SOURCES)
-)
-
-add_executable(runserial ${runserial_SRCS})
-
-target_link_libraries(runserial ycp y2 py2serial)
-
-
-########### next target ###############
-
-SET(runstdio_SRCS
- $(rungeneric_SOURCES)
-)
-
-add_executable(runstdio ${runstdio_SRCS})
-
-target_link_libraries(runstdio ycp y2)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/liby2/testsuite
-##
-#
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = \
-# -I$(srcdir)/../../libycp/src/include \
-# -I$(srcdir)/../src/include \
-# -I$(includedir)
-#
-#noinst_PROGRAMS = rungeneric runplugin runprogram runremote \
-# runserial runstdio
-#
-#rungeneric_SOURCES = runy2.cc
-#rungeneric_LDADD = -lycp -ly2util
-#rungeneric_LDFLAGS = -L$(srcdir)/../../libycp/src -L$(libdir) \
-# -Xlinker --whole-archive \
-# ../src/liby2.la \
-# -Xlinker --no-whole-archive
-#
-#runplugin_SOURCES = $(rungeneric_SOURCES)
-#runplugin_LDADD = -lycp
-#runplugin_LDFLAGS = -L$(srcdir)/../../libycp/src -L$(libdir) \
-# -Xlinker --whole-archive \
-# ../src/liby2.la \
-# -Xlinker --no-whole-archive
-#
-#runprogram_SOURCES = $(rungeneric_SOURCES)
-#runprogram_LDADD = -lycp
-#runprogram_LDFLAGS = -L$(srcdir)/../../libycp/src -L$(libdir) \
-# -Xlinker --whole-archive \
-# ../src/liby2.la \
-# -Xlinker --no-whole-archive
-#
-#runserial_SOURCES = $(rungeneric_SOURCES)
-#runserial_LDADD = -lycp
-#runserial_LDFLAGS = -L$(srcdir)/../../libycp/src -L$(libdir) \
-# -Xlinker --whole-archive \
-# ../src/liby2.la \
-# ../src/libpy2serial.la \
-# -Xlinker --no-whole-archive
-#
-#runstdio_SOURCES = $(rungeneric_SOURCES)
-#runstdio_LDADD = -lycp
-#runstdio_LDFLAGS = -L$(srcdir)/../../libycp/src -L$(libdir) \
-# -Xlinker --whole-archive \
-# ../src/liby2.la \
-# -Xlinker --no-whole-archive
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* ycp.log ycp.sum site.exp libycp.log \
-# libycp.sum site.bak
-#
-#EXTRA_DIST = README
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,12 +0,0 @@
-add_subdirectory(src)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-#SUBDIRS=src testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,19 +0,0 @@
-add_subdirectory(include)
-
-SET(y2util_LIB_SRCS
- ExternalDataSource.cc
- ExternalProgram.cc
- MemUsage.cc
- PathInfo.cc
- Pathname.cc
- Rep.cc
- Y2SLog.cc
- miniini.cc
- stringutil.cc
- y2log.cc
-)
-
-add_library(y2util SHARED ${y2util_LIB_SRCS})
-target_link_libraries(y2util util)
-set_target_properties(y2util PROPERTIES VERSION 4.2.0 SOVERSION 4)
-install(TARGETS y2util DESTINATION lib)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,45 +0,0 @@
-add_subdirectory(y2util)
-
-
-########### install files ###############
-
-install(FILES DESTINATION /include)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for liby2util/src/include
-##
-#
-#SUBDIRS = y2util
-#
-#pkgincludedir = $(includedir)
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS =
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/y2util/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/y2util/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/src/include/y2util/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,55 +0,0 @@
-
-########### install files ###############
-
-install(FILES ExternalDataSource.h ExternalProgram.h MemUsage.h PathInfo.h Pathname.h Rep.h RepDef.h TreeItem.h Ustring.h Y2SLog.h miniini.h stringutil.h y2log.h DESTINATION /include/y2util)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for liby2util/src/include/y2util
-##
-#
-#pkgincludedir = $(includedir)/y2util
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = \
-# ExternalDataSource.h \
-# ExternalProgram.h \
-# MemUsage.h \
-# PathInfo.h \
-# Pathname.h \
-# Rep.h \
-# RepDef.h \
-# TreeItem.h \
-# Ustring.h \
-# Y2SLog.h \
-# miniini.h \
-# stringutil.h \
-# y2log.h
-#
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,92 +0,0 @@
-add_subdirectory(lib)
-add_subdirectory(config)
-add_subdirectory(liby2util.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(test_Y2SLog.prg_SRCS
- test_Y2SLog.cc
-)
-
-add_executable(test_Y2SLog.prg ${test_Y2SLog.prg_SRCS})
-
-target_link_libraries(test_Y2SLog.prg)
-
-
-########### next target ###############
-
-SET(test_strutil.prg_SRCS
- test_strutil.cc
-)
-
-add_executable(test_strutil.prg ${test_strutil.prg_SRCS})
-
-target_link_libraries(test_strutil.prg)
-
-
-########### next target ###############
-
-SET(test_mkdir.prg_SRCS
- test_mkdir.cc
-)
-
-add_executable(test_mkdir.prg ${test_mkdir.prg_SRCS})
-
-target_link_libraries(test_mkdir.prg)
-
-
-########### next target ###############
-
-SET(test_chroot.prg_SRCS
- test_chroot.cc
-)
-
-add_executable(test_chroot.prg ${test_chroot.prg_SRCS})
-
-target_link_libraries(test_chroot.prg)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for liby2util/testsuite
-##
-#SUBDIRS = lib config liby2util.test tests
-#PACKAGE = liby2util
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES= -I$(srcdir)/../src/include
-#
-#AM_CPPFLAGS = -DY2LOG=\"liby2util-testsuite\"
-#
-#AM_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(srcdir)/../src/liby2util.la \
-# -Xlinker --no-whole-archive
-#
-#noinst_PROGRAMS = \
-# test_Y2SLog.prg \
-# test_strutil.prg \
-# test_mkdir.prg \
-# test_chroot.prg
-#
-#test_Y2SLog_prg_SOURCES = test_Y2SLog.cc
-#
-#test_strutil_prg_SOURCES = test_strutil.cc
-#
-#test_mkdir_prg_SOURCES = test_mkdir.cc
-#
-#test_chroot_prg_SOURCES = test_chroot.cc
-#test_chroot_prg_LDFLAGS = $(AM_LDFLAGS) -static
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* y2util.log y2util.sum site.exp site.bak
-#
-#EXTRA_DIST =
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,9 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for liby2util/testsuite/lib
-##
-#
-#EXTRA_DIST = liby2util_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/liby2util.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/liby2util.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/liby2util.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,9 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-#EXTRA_DIST = liby2util.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/liby2util-r/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,9 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-#EXTRA_DIST = urls *.out
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,20 +0,0 @@
-
-add_definitions(-DY2LOG=\\\"libycp\\\")
-
-add_subdirectory(src)
-add_subdirectory(doc)
-#add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp
-##
-#
-#SUBDIRS = src doc testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,53 +0,0 @@
-add_subdirectory(ycp)
-
-
-########### install files ###############
-
-#install(FILES html/yast2docs.css html/index.html $(htmlfiles) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/doc
-##
-#SUBDIRS = ycp
-#
-#htmldir = $(docdir)/libycp
-#builtin = $(wildcard $(srcdir)/../src/YCPBuiltin*.cc)
-#builtinxml := $(builtin:%.cc=%.xml)
-#xmlfiles := $(foreach xml,$(builtinxml),$(notdir $(xml)))
-#htmlfiles = $(wildcard html/*.html)
-#
-#
-#html_DATA = \
-# html/yast2docs.css \
-# html/index.html \
-# $(htmlfiles)
-#
-#html/index.html: $(xmlfiles) builtins.xml
-# XML_CATALOG_FILES=@XML_CATALOG@ $(XSLTPROC) $(XSLTPROC_FLAGS) --xinclude @STYLESHEET_HTML@ builtins.xml
-#
-#YDOC := $(shell pkg-config --variable=ybindir yast2-devtools)/ydoc2
-#RENT := $(shell pkg-config --variable=ybindir yast2-devtools)/replace_entities
-#$(xmlfiles) : $(builtin)
-# $(YDOC) -o $@.tmp ../src/$(subst xml,cc,$@)
-# $(XSLTPROC) $(XSLTPROC_FLAGS) @STYLESHEET_YDOC@ $@.tmp > $@
-# $(RENT) $@
-# rm $@.tmp
-#
-#html/yast2docs.css: html/index.html
-# cp @STYLESHEET_CSS@ html
-# cp -a `pkg-config --variable=yast2dir yast2-devtools`/data/docbook/images html
-#
-#EXTRA_DIST = builtins.xml
-#
-#CLEANFILES = $(xmlfiles)
-#
-#clean-local:
-# rm -rf html
-#
-#install-data-local:
-# mkdir -p $(DESTDIR)$(htmldir)
-# cp -a $(srcdir)/html/images $(DESTDIR)$(htmldir)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/ycp/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/ycp/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/doc/ycp/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,34 +0,0 @@
-
-########### install files ###############
-
-#install(FILES $(wildcard html/*) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/doc/ycp
-##
-#htmldir = $(docdir)/libycp
-#
-#validate:
-# xmllint --valid --noout ycp.xml
-#
-#ycp.fo: ycp.xml customize-fo.xsl
-# $(XSLTPROC) $(XSLTPROC_FLAGS) -o ycp.fo customize-fo.xsl ycp.xml
-#
-#ycp.pdf: ycp.fo
-# fop -q ycp.fo ycp.pdf
-#
-#html/index.html: ycp.xml customize-html.xsl
-# $(XSLTPROC) $(XSLTPROC_FLAGS) customize-html.xsl ycp.xml
-#
-#html_DATA = $(wildcard html/*)
-#
-#EXTRA_DIST = *.xml $(html_DATA)
-#
-#CLEANFILES = CATALOG.local *.out *.aux *.dvi *.tex *.ps *.pdf *.log *.dsl *.fo
-#
-#clean-local:
-# rm -rf html/*.html
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,79 +0,0 @@
-#add_subdirectory(include)
-
-add_definitions( -DY2LOG=\\\"libycp\\\" )
-add_definitions( -DYAST2DIR=\\\"${CMAKE_INSTALL_PREFIX}/share/YaST2\\\" )
-add_definitions( -DPLUGINDIR=\\\"${LIB_INSTALL_DIR}/YaST2/plugins\\\" )
-add_definitions( -DEXECCOMPDIR=\\\"${CMAKE_PREFIX}/lib/YaST2\\\")
-add_definitions( -DLOCALEDIR=\\\"${CMAKE_PREFIX}/share/YaST2/locale\\\")
-
-include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include )
-include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include/ycp )
-include_directories(${CMAKE_SOURCE_DIR}/liby2/src/include )
-
-SET(ycpvalues_LIB_SRCS
- Bytecode.cc
- Import.cc
- Point.cc
- Xmlcode.cc
- YCPBoolean.cc
- YCPElement.cc
- YCPByteblock.cc
- YCPFloat.cc
- YCPInteger.cc
- YCPList.cc
- YCPMap.cc
- YCPPath.cc
- YCPString.cc
- YCPSymbol.cc
- YCPTerm.cc
- YCPValue.cc
- YCPVoid.cc
- YCPExternal.cc
- Type.cc
-)
-
-add_library(ycpvalues SHARED ${ycpvalues_LIB_SRCS})
-target_link_libraries(ycpvalues)
-set_target_properties(ycpvalues PROPERTIES VERSION 4.2.0 SOVERSION 4)
-install(TARGETS ycpvalues DESTINATION lib)
-
-BISON_TARGET(ycpParser ${CMAKE_CURRENT_SOURCE_DIR}/parser.yy ${CMAKE_CURRENT_BINARY_DIR}/parser.cc)
-
-SET(ycp_LIB_SRCS
- pathsearch.cc
- ExecutionEnvironment.cc
- StaticDeclaration.cc
- YCode.cc
- YCPCode.cc
- YExpression.cc
- YStatement.cc
- YBlock.cc
- SymbolTable.cc
- Scanner.cc
- Parser.cc
- YBuiltin.cc
- YCPBuiltinInteger.cc
- YCPBuiltinByteblock.cc
- YCPBuiltinPath.cc
- YCPBuiltinFloat.cc
- YCPBuiltinList.cc
- YCPBuiltinBoolean.cc
- YCPBuiltinString.cc
- YCPBuiltinTerm.cc
- YCPBuiltinVoid.cc
- YCPBuiltinMap.cc
- YCPBuiltinMisc.cc
- YSymbolEntry.cc
- TypeStatics.cc
- y2string.cc
- y2crypt.cc
- y2crypt.h
- ${BISON_ycpParser_OUTPUTS}
-)
-
-add_flex_files( ${ycp_lib_SRCS} scanner.ll)
-
-add_library(ycp SHARED ${ycp_LIB_SRCS})
-target_link_libraries(ycp xcrypt ycpvalues y)
-set_target_properties(ycp PROPERTIES VERSION 4.2.0 SOVERSION 4)
-install(TARGETS ycp DESTINATION lib )
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,45 +0,0 @@
-add_subdirectory(ycp)
-
-
-########### install files ###############
-
-install(FILES YCP.h DESTINATION /include)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/src/include
-##
-#
-#SUBDIRS = ycp
-#
-#pkgincludedir = $(includedir)
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = YCP.h
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/ycp/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/ycp/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/src/include/ycp/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,69 +0,0 @@
-
-########### install files ###############
-
-install(FILES Xmlcode.h YCPBoolean.h YCPByteblock.h YCPElement.h YCPFloat.h YCPInteger.h YCPList.h YCPMap.h YCPPath.h YCPString.h YCPSymbol.h YCPTerm.h YCPValue.h YCPVoid.h toString.h YCPExternal.h YCPDebugger.h Type.h TypePtr.h YCPBuiltinBoolean.h YCPBuiltinFloat.h YCPBuiltinByteblock.h YCPBuiltinInteger.h YCPBuiltinList.h YCPBuiltinMap.h YCPBuiltinMisc.h YCPBuiltinPath.h YCPBuiltinString.h YCPBuiltinTerm.h YCPBuiltinVoid.h StaticDeclaration.h YCode.h YCodePtr.h YCPCode.h YCPCodeCompare.h Bytecode.h Import.h Point.h YExpression.h YStatement.h YBlock.h SymbolTable.h Scanner.h Parser.h YSymbolEntry.h y2log.h ycpless.h pathsearch.h y2string.h ExecutionEnvironment.h DESTINATION /include/ycp)
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/src/include/ycp
-##
-#
-#pkgincludedir = $(includedir)/ycp
-#
-## these go to $(pkgincludedir)
-#
-#pkginclude_HEADERS = \
-# \
-# Xmlcode.h \
-# YCPBoolean.h YCPByteblock.h \
-# YCPElement.h YCPFloat.h \
-# YCPInteger.h YCPList.h \
-# YCPMap.h YCPPath.h \
-# YCPString.h YCPSymbol.h YCPTerm.h \
-# YCPValue.h YCPVoid.h toString.h \
-# YCPExternal.h \
-# YCPDebugger.h \
-# Type.h TypePtr.h \
-# YCPBuiltinBoolean.h YCPBuiltinFloat.h \
-# YCPBuiltinByteblock.h \
-# YCPBuiltinInteger.h YCPBuiltinList.h \
-# YCPBuiltinMap.h YCPBuiltinMisc.h \
-# YCPBuiltinPath.h YCPBuiltinString.h \
-# YCPBuiltinTerm.h YCPBuiltinVoid.h \
-# StaticDeclaration.h \
-# YCode.h YCodePtr.h \
-# YCPCode.h \
-# YCPCodeCompare.h \
-# Bytecode.h Import.h Point.h \
-# YExpression.h YStatement.h YBlock.h \
-# SymbolTable.h Scanner.h Parser.h \
-# YSymbolEntry.h \
-# y2log.h ycpless.h pathsearch.h \
-# y2string.h \
-# ExecutionEnvironment.h
-#
-##<INSTALL-HEADER-TARGET>
-#
-## Automatically inserted by insert_install_target
-## DO NOT REMOVE THE TAGS!
-#
-## Install header files only if different to version already installed -
-## prevent unnecessary installations to keep make dependency changes
-## and thus rebuilds for dependent packages as low as possible.
-#
-#install-pkgincludeHEADERS: $(pkginclude_HEADERS)
-# @$(NORMAL_INSTALL)
-# $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)
-# @list='$(pkginclude_HEADERS)'; \
-# for p in $$list; do \
-# if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
-# if ! cmp -s $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; then \
-# echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p"; \
-# $(INSTALL_DATA) $$d$$p $(DESTDIR)$(pkgincludedir)/$$p; \
-# fi \
-# done
-#
-##</INSTALL-HEADER-TARGET>
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,81 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(libycp.test)
-add_subdirectory(tests)
-
-include_directories(${CMAKE_SOURCE_DIR}/liby2/src/include )
-
-
-########### next target ###############
-
-SET(testSignature_SRCS
- testSignature.cc
-)
-
-add_executable(testSignature ${testSignature_SRCS})
-
-target_link_libraries(testSignature ycp y2)
-
-
-########### next target ###############
-
-SET(runc_SRCS
- runc.cc
-)
-
-add_executable(runc ${runc_SRCS})
-
-target_link_libraries(runc ycp y2)
-
-
-########### next target ###############
-
-SET(runycp_SRCS
- runycp.cc
-)
-
-add_executable(runycp ${runycp_SRCS})
-
-target_link_libraries(runycp ycp y2)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite
-##
-#
-#SUBDIRS = config lib libycp.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"libycp\"
-#
-#INCLUDES = -I$(srcdir)/../src/include -I$(top_srcdir)/liby2/src/include ${Y2UTIL_CFLAGS}
-#
-#bindir = $(prefix)/bin
-#libdir = ../src/.libs
-#
-#noinst_PROGRAMS = testSignature runc runycp
-#
-#runc_SOURCES = runc.cc
-#runc_LDADD = ../src/libycp.la ../../liby2/src/liby2.la ${Y2UTIL_LIBS}
-#
-#runycp_SOURCES = runycp.cc
-#runycp_LDADD = ../src/libycp.la ../../liby2/src/liby2.la ${Y2UTIL_LIBS}
-#
-#testSignature_SOURCES = testSignature.cc
-#testSignature_LDADD = ../src/libycp.la ../../liby2/src/liby2.la ${Y2UTIL_LIBS}
-#
-#PACKAGE=libycp
-#
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* ycp.log ycp.sum site.exp libycp.log libycp.sum site.bak log.tmp
-# rm -f $(bin_PROGRAMS)
-#
-#EXTRA_DIST = README runtest.sh xfail
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/libycp/testsuite/lib
-##
-#
-#EXTRA_DIST = libycp_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/libycp.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/libycp.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/libycp.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite/libycp.test
-##
-#
-#EXTRA_DIST = ycp.exp bytecode.exp bytecode-compatibility.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,31 +0,0 @@
-add_subdirectory(bytecode)
-add_subdirectory(bytecode-compatibility)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite/tests
-##
-#
-#SUBDIRS = bytecode bytecode-compatibility
-#
-#EXTRA_DIST= Include/*.inc \
-# Module/*.ycp \
-# builtin/*ycp builtin/*.err builtin/*.out \
-# errors/*ycp errors/*.err errors/*.out \
-# expressions/*.ycp expressions/*.err expressions/*.out \
-# include/*.inc \
-# includes/*.inc1 includes/*.ycp includes/*.err includes/*.out \
-# modules/*ycp modules/*.err modules/*.out \
-# namespace/*ycp \
-# scope/*ycp scope/*.err scope/*.out \
-# statements/*ycp statements/*.err statements/*.out \
-# types/*ycp types/*.err types/*.out \
-# is/*ycp is/*.err is/*.out \
-# values/*ycp values/*.err values/*.out
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/9.1/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/9.1/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/9.1/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,19 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite/tests/bytecode-compatibility/9.1
-##
-#
-#EXTRA_DIST= Include/*.inc \
-# Module/*.ybc Module/*.out Module/*.err \
-# Xmodules/*.ybc Xmodules/*.err Xmodules/*.out \
-# constants/*.ybc constants/*.err constants/*.out \
-# expressions/*.ybc expressions/*.err expressions/*.out \
-# imports/*.ybc imports/*.err imports/*.out \
-# statements/*.ybc statements/*.err statements/*.out
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode-compatibility/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,15 +0,0 @@
-add_subdirectory(9.1)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite/tests/bytecode-compatibility
-##
-#
-#SUBDIRS = 9.1
Modified: branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/libycp/testsuite/tests/bytecode/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,19 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for libycp/testsuite/tests/bytecode
-##
-#
-#EXTRA_DIST= Include/*.inc \
-# Module/*.ycp Module/*.out Module/*.err \
-# Xmodules/*ycp Xmodules/*.err Xmodules/*.out \
-# constants/*ycp constants/*.err constants/*.out \
-# expressions/*.ycp expressions/*.err expressions/*.out \
-# imports/*ycp imports/*.err imports/*.out \
-# statements/*ycp statements/*.err statements/*.out
Modified: branches/tmp/dmacvicar/yast2-cmake/core/package/yast2-core.changes
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/package/yast2-core.changes (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/package/yast2-core.changes Thu Jun 5 23:33:58 2008
@@ -1,4 +1,24 @@
-------------------------------------------------------------------
+Thu May 15 09:36:44 CEST 2008 - mvidner(a)suse.cz
+
+- Set YAST_IS_RUNNING to "instsys" also for the live-installer (bnc#389099).
+- 2.16.51
+
+-------------------------------------------------------------------
+Mon May 5 16:16:37 CEST 2008 - mvidner(a)suse.cz
+
+- Show search path when client is not found (bnc#342213).
+- 2.16.50
+
+-------------------------------------------------------------------
+Mon May 5 13:08:05 CEST 2008 - mvidner(a)suse.cz
+
+- Allow literal strings as arguments (bnc#382883):
+ Before: y2base foo '("\\t")' '("\"")' UI
+ Now also: y2base foo -S '(\t)' '(")' UI
+- 2.16.49
+
+-------------------------------------------------------------------
Mon Apr 14 20:47:27 CEST 2008 - mvidner(a)suse.cz
- If Y2DEBUGONCRASH is set, the crash handler will also print the
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,17 +0,0 @@
-add_subdirectory(src)
-add_subdirectory(doc)
-add_subdirectory(testsuite)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr
-##
-#
-#SUBDIRS = src doc testsuite
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,22 +0,0 @@
-
-########### install files ###############
-
-install(FILES SCR.html intro_to_scr.html scripting-agent.txt SCR-additional.html scr-arch.sda scr.txt scr-arch.png scr-tree.png DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/doc
-##
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/scr
-#
-#html_DATA = SCR.html intro_to_scr.html \
-# scripting-agent.txt \
-# SCR-additional.html scr-arch.sda scr.txt scr-arch.png scr-tree.png
-#
-#EXTRA_DIST = $(html_DATA)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,41 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/src
-##
-#
-#AM_CXXFLAGS = -DY2LOG=\"scr\" -DSUSEVERSION=\"${SUSEVERSION}\"
-#
-#serversdir = $(execcompdir)/servers
-#servers_PROGRAMS = scr
-#
-#scr_SOURCES = \
-# scr.cc
-#
-#scr_LDADD = ${AGENT_LIBADD} \
-# $(top_builddir)/liby2/src/liby2.la
-#
-#scr_DEPENDENCIES = libpy2scr.la
-#
-#scr_LDFLAGS = \
-# -Xlinker --whole-archive \
-# libpy2scr.la \
-# -Xlinker --no-whole-archive
-#
-#plugin_LTLIBRARIES = libpy2scr.la
-#
-#libpy2scr_la_SOURCES = \
-# Y2CCSCR.cc \
-# ScriptingAgent.cc ScriptingAgent.h \
-# StdioSCRAgent.cc StdioSCRAgent.h \
-# SCRSubAgent.cc SCRSubAgent.h
-#
-#libpy2scr_la_LDFLAGS = -version-info 2:0
-#
-#INCLUDES = ${AGENT_INCLUDES}
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,65 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(scr.test)
-add_subdirectory(tests)
-
-
-########### next target ###############
-
-SET(runscr_SRCS
- runscr.cc
-)
-
-add_executable(runscr ${runscr_SRCS})
-
-target_link_libraries(runscr py2ag_dummy py2scr)
-
-
-########### next target ###############
-
-SET(y2scr_SRCS
- y2scr.cc
-)
-
-add_executable(y2scr ${y2scr_SRCS})
-
-target_link_libraries(y2scr py2ag_dummy py2scr)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/testsuite
-##
-#
-#SUBDIRS = config lib scr.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"scr\"
-#
-#PACKAGE = scr
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = ${AGENT_INCLUDES}
-#
-#noinst_PROGRAMS = runscr y2scr
-#
-#runscr_SOURCES = runscr.cc
-#runscr_LDADD = ${AGENT_LIBADD}
-#runscr_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(top_builddir)/agent-dummy/src/libpy2ag_dummy.la \
-# ../src/libpy2scr.la \
-# -Xlinker --no-whole-archive
-#
-#y2scr_SOURCES = y2scr.cc
-#y2scr_LDADD = ${AGENT_LIBADD}
-#y2scr_LDFLAGS = \
-# -Xlinker --whole-archive \
-# $(top_builddir)/agent-dummy/src/libpy2ag_dummy.la \
-# ../src/libpy2scr.la \
-# -Xlinker --no-whole-archive
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/testsuite/lib
-##
-#
-#EXTRA_DIST = scr_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/scr.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/scr.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/scr.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/testsuite/scr.test
-##
-#
-#EXTRA_DIST = scr.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/scr/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/scr/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.scr *.out *.err runtest.sh
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,4 +0,0 @@
-add_subdirectory(src)
-#add_subdirectory(doc)
-#add_subdirectory(testsuite)
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/doc/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/doc/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/doc/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,50 +0,0 @@
-
-########### install files ###############
-
-install(FILES html/yast2docs.css html/index.html $(htmlfiles) DESTINATION )
-
-
-
-#original Makefile.am contents follow:
-
-## Makefile.am for core/wfm/doc
-#
-#SUBDIRS =
-#
-#htmldir = $(docdir)/wfm
-#htmlfiles = $(wildcard html/*.html)
-#builtin = $(srcdir)/../src/Y2WFMComponent.cc
-#builtinxml := $(builtin:%.cc=%.xml)
-#xmlfiles := $(foreach xml,$(builtinxml),$(notdir $(xml)))
-#
-#
-#html_DATA = \
-# html/yast2docs.css \
-# html/index.html \
-# $(htmlfiles)
-#
-#html/index.html: $(xmlfiles) wfm.xml
-# XML_CATALOG_FILES=@XML_CATALOG@ $(XSLTPROC) $(XSLTPROC_FLAGS) --xinclude @STYLESHEET_HTML@ wfm.xml
-#
-#
-#
-#$(xmlfiles) : $(builtin)
-# `pkg-config --variable=ybindir yast2-devtools`/ydoc2 -o $@.tmp ../src/$(subst xml,cc,$@)
-# $(XSLTPROC) $(XSLTPROC_FLAGS) @STYLESHEET_YDOC@ $@.tmp > $@
-# `pkg-config --variable=ybindir yast2-devtools`/replace_entities $@
-# rm $@.tmp
-#
-#html/yast2docs.css: html/index.html
-# cp @STYLESHEET_CSS@ html
-# cp -a `pkg-config --variable=yast2dir yast2-devtools`/data/docbook/images html
-#
-#EXTRA_DIST = wfm.xml
-#
-#CLEANFILES = $(xmlfiles)
-#
-#clean-local:
-# rm -rf html
-#
-#install-data-local:
-# mkdir -p $(DESTDIR)$(htmldir)
-# cp -a $(srcdir)/html/images $(DESTDIR)$(htmldir)
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/src/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/src/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/src/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,11 +0,0 @@
-#include_directories(${CMAKE_SOURCE_DIR}/libycp/src/include ${CMAKE_SOURCE_DIR}/liby2/src/include ${CMAKE_SOURCE_DIR}/libscr/src/include )
-
-add_definitions(-DSUSEVERSION=\\\"${VERSION}\\\")
-include_directories(${CMAKE_CURRENT_SOURCE_DIR})
-y2_add_plugin(wfm)
-
-#install(FILES Y2WFMComponent.h WFMSubAgent.h WFM.h DESTINATION /include/wfm)
-
-
-
-
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,79 +0,0 @@
-add_subdirectory(config)
-add_subdirectory(lib)
-add_subdirectory(wfm.test)
-add_subdirectory(tests)
-
-include_directories(${CMAKE_SOURCE_DIR}/libycp/src/include ${CMAKE_SOURCE_DIR}/liby2/src/include ${CMAKE_SOURCE_DIR}/libscr/src/include )
-
-
-########### next target ###############
-
-SET(runwfm_SRCS
- runwfm.cc
-)
-
-add_executable(runwfm ${runwfm_SRCS})
-
-target_link_libraries(runwfm py2wfm scr ycp y2)
-
-
-########### next target ###############
-
-SET(runc_SRCS
- runc.cc
-)
-
-add_executable(runc ${runc_SRCS})
-
-target_link_libraries(runc py2wfm scr ycp y2)
-
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/wfm/testsuite
-##
-#
-#SUBDIRS = config lib wfm.test tests
-#
-#AM_CXXFLAGS = -DY2LOG=\"wfm\"
-#
-#PACKAGE = wfm
-#AUTOMAKE_OPTIONS = dejagnu
-#
-#INCLUDES = \
-# -I$(top_srcdir)/libycp/src/include \
-# -I$(top_srcdir)/liby2/src/include \
-# -I$(top_srcdir)/libscr/src/include \
-# -I$(srcdir)/../src \
-# ${Y2UTIL_CFLAGS}
-#
-#noinst_PROGRAMS = runwfm runc
-#
-#runwfm_SOURCES = runwfm.cc
-#
-#runwfm_LDADD = \
-# ../src/libpy2wfm.la \
-# $(top_builddir)/libscr/src/libscr.la \
-# $(top_builddir)/libycp/src/libycp.la \
-# $(top_builddir)/liby2/src/liby2.la \
-# ${Y2UTIL_LIBS}
-#
-#runc_SOURCES = runc.cc
-#runc_LDFLAGS = -L$(libdir)
-#runc_LDADD = ../src/libpy2wfm.la \
-# $(top_builddir)/libscr/src/libscr.la \
-# $(top_builddir)/libycp/src/libycp.la \
-# $(top_builddir)/liby2/src/liby2.la \
-# ${Y2UTIL_LIBS}
-#
-#clean-local:
-# rm -f tmp.err.* tmp.out.* ycp.log ycp.sum site.exp \
-# libycp.log libycp.sum site.bak
-#
-#EXTRA_DIST = README
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/config/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/config/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/config/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/wfm/testsuite/config
-##
-#
-#EXTRA_DIST = default.exp unix.exp unknown.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/lib/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/lib/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/lib/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/wfm/testsuite/lib
-##
-#
-#EXTRA_DIST = wfm_init.exp
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/tests/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/tests/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/tests/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/wfm/testsuite/tests
-##
-#
-#EXTRA_DIST = *.ycp *.out *.err runtest.sh
Modified: branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/wfm.test/CMakeLists.txt
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/dmacvicar/yast2-cmake/cor…
==============================================================================
--- branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/wfm.test/CMakeLists.txt (original)
+++ branches/tmp/dmacvicar/yast2-cmake/core/wfm/testsuite/wfm.test/CMakeLists.txt Thu Jun 5 23:33:58 2008
@@ -1,13 +0,0 @@
-
-########### install files ###############
-
-
-
-
-#original Makefile.am contents follow:
-
-##
-## Makefile.am for core/wfm/testsuite/wfm.test
-##
-#
-#EXTRA_DIST = wfm.exp
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r48102 - /trunk/metapackage/src/OneClickInstallWidgets.ycp
by benjimanw@svn.opensuse.org 05 Jun '08
by benjimanw@svn.opensuse.org 05 Jun '08
05 Jun '08
Author: benjimanw
Date: Thu Jun 5 20:13:00 2008
New Revision: 48102
URL: http://svn.opensuse.org/viewcvs/yast?rev=48102&view=rev
Log:
Fix bnc #397485.
Modified:
trunk/metapackage/src/OneClickInstallWidgets.ycp
Modified: trunk/metapackage/src/OneClickInstallWidgets.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/metapackage/src/OneClickInstallW…
==============================================================================
--- trunk/metapackage/src/OneClickInstallWidgets.ycp (original)
+++ trunk/metapackage/src/OneClickInstallWidgets.ycp Thu Jun 5 20:13:00 2008
@@ -237,7 +237,7 @@
(
`id(`yes),
`opt (`key_F10),
- "Yes"
+ Label::YesButton()
)
),
`HSpacing(2),
@@ -245,7 +245,7 @@
`PushButton(
`id(`no),
`opt(`default, `key_F9),
- "No"
+ Label::NoButton()
)
),
`HStretch ()
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r48101 - /trunk/ncurses-pkg/src/NCPkgFilterRepo.cc
by kmachalkova@svn.opensuse.org 05 Jun '08
by kmachalkova@svn.opensuse.org 05 Jun '08
05 Jun '08
Author: kmachalkova
Date: Thu Jun 5 16:27:59 2008
New Revision: 48101
URL: http://svn.opensuse.org/viewcvs/yast?rev=48101&view=rev
Log:
update label and the description when switching
between repositories (#397388)
Modified:
trunk/ncurses-pkg/src/NCPkgFilterRepo.cc
Modified: trunk/ncurses-pkg/src/NCPkgFilterRepo.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/ncurses-pkg/src/NCPkgFilterRepo.…
==============================================================================
--- trunk/ncurses-pkg/src/NCPkgFilterRepo.cc (original)
+++ trunk/ncurses-pkg/src/NCPkgFilterRepo.cc Thu Jun 5 16:27:59 2008
@@ -230,7 +230,9 @@
pkgList->createListEntry ( pkg, *it);
}
+ pkgList->setCurrentItem( 0 );
pkgList->drawList();
+ pkgList->showInformation();
return true;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r48100 - in /trunk/tune: VERSION hwinfo/src/SystemSettings.ycp package/yast2-tune.changes
by lslezak@svn.opensuse.org 05 Jun '08
by lslezak@svn.opensuse.org 05 Jun '08
05 Jun '08
Author: lslezak
Date: Thu Jun 5 15:04:51 2008
New Revision: 48100
URL: http://svn.opensuse.org/viewcvs/yast?rev=48100&view=rev
Log:
- do not write ENABLE_SYSRQ 'nil' value (do not remove the
variable from sysconfig/sysctl file) (bnc#397101)
- 2.16.2
Modified:
trunk/tune/VERSION
trunk/tune/hwinfo/src/SystemSettings.ycp
trunk/tune/package/yast2-tune.changes
Modified: trunk/tune/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/VERSION?rev=48100&r1=48099&…
==============================================================================
--- trunk/tune/VERSION (original)
+++ trunk/tune/VERSION Thu Jun 5 15:04:51 2008
@@ -1 +1 @@
-2.16.1
+2.16.2
Modified: trunk/tune/hwinfo/src/SystemSettings.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/hwinfo/src/SystemSettings.y…
==============================================================================
--- trunk/tune/hwinfo/src/SystemSettings.ycp (original)
+++ trunk/tune/hwinfo/src/SystemSettings.ycp Thu Jun 5 15:04:51 2008
@@ -18,7 +18,7 @@
import "Mode";
/* Internal Data */
- boolean ENABLE_SYSRQ = nil;
+ string ENABLE_SYSRQ = nil;
string elevator = nil;
/* Internal Data */
@@ -37,14 +37,17 @@
}
global define boolean Read () {
- ENABLE_SYSRQ = ((string) SCR::Read(.sysconfig.sysctl.ENABLE_SYSRQ) == "yes");
+ ENABLE_SYSRQ = (string) SCR::Read(.sysconfig.sysctl.ENABLE_SYSRQ);
y2milestone("SysRq enabled: %1", ENABLE_SYSRQ);
- boolean current_sysrq = (string)SCR::Read(.target.string, "/proc/sys/kernel/sysrq") == "1\n";
+ string current_sysrq = (string)SCR::Read(.target.string, "/proc/sys/kernel/sysrq");
+
+ // read just the first line
+ current_sysrq = splitstring(current_sysrq, "\n")[0]:"";
if (current_sysrq != ENABLE_SYSRQ)
{
- y2warning("SysRq mismatch: sysconfig value: %1, current: %2", ENABLE_SYSRQ, current_sysrq);
+ y2warning("SysRq mismatch: sysconfig value: '%1', current: '%2'", ENABLE_SYSRQ, current_sysrq);
}
/*
@@ -92,10 +95,30 @@
global boolean Activate()
{
// activate the SysRq setting
- string proc_value = (ENABLE_SYSRQ) ? "1" : "0";
- y2milestone("Activating SysRq config: %1", proc_value);
+ string proc_value = "";
- SCR::Execute(.target.bash, sformat("echo '%1' > /proc/sys/kernel/sysrq", proc_value));
+ if (ENABLE_SYSRQ == "yes")
+ {
+ proc_value = "1";
+ }
+ else if (ENABLE_SYSRQ == "no")
+ {
+ proc_value = "0";
+ }
+ else if (regexpmatch(ENABLE_SYSRQ, "^[0-9]*$"))
+ {
+ proc_value = ENABLE_SYSRQ;
+ }
+ else
+ {
+ y2warning("Unknown ENABLE_SYSRQ value: %1, not activating", ENABLE_SYSRQ);
+ }
+
+ if (proc_value != "")
+ {
+ y2milestone("Activating SysRq config: %1", proc_value);
+ SCR::Execute(.target.bash, sformat("echo '%1' > /proc/sys/kernel/sysrq", proc_value));
+ }
if (elevator != nil)
{
@@ -116,9 +139,17 @@
global define boolean Write () {
// writing SysRq settings
- y2milestone("ENABLE_SYSRQ: %1", ENABLE_SYSRQ);
- SCR::Write(.sysconfig.sysctl.ENABLE_SYSRQ, (ENABLE_SYSRQ ? "yes":"no"));
- SCR::Write(.sysconfig.sysctl, nil);
+ if (ENABLE_SYSRQ == "yes" || ENABLE_SYSRQ == "no" || regexpmatch(ENABLE_SYSRQ, "^[0-9]*$"))
+ {
+ // save the SysRq setting
+ y2milestone("Saving ENABLE_SYSRQ: %1", ENABLE_SYSRQ);
+ SCR::Write(.sysconfig.sysctl.ENABLE_SYSRQ, ENABLE_SYSRQ);
+ SCR::Write(.sysconfig.sysctl, nil);
+ }
+ else
+ {
+ y2warning("Not writing invalid ENABLE_SYSRQ value: %1", ENABLE_SYSRQ);
+ }
// enable boot.proc service which sets the value after boot
Service::Enable("boot.proc");
@@ -158,8 +189,8 @@
}
global define boolean GetSysRqKeysEnabled () {
- if (ENABLE_SYSRQ == true || ENABLE_SYSRQ == false)
- return ENABLE_SYSRQ;
+ if (ENABLE_SYSRQ == "yes")
+ return true;
else
return false;
}
@@ -171,12 +202,14 @@
return;
}
- if (ENABLE_SYSRQ != enable_sysrq)
+ string enable_sysrq_string = enable_sysrq ? "yes" : "no";
+
+ if (ENABLE_SYSRQ != enable_sysrq_string)
{
modified = true;
}
- ENABLE_SYSRQ = enable_sysrq;
+ ENABLE_SYSRQ = enable_sysrq_string;
y2milestone("SysRq was set to %1", ENABLE_SYSRQ);
}
Modified: trunk/tune/package/yast2-tune.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/tune/package/yast2-tune.changes?…
==============================================================================
--- trunk/tune/package/yast2-tune.changes (original)
+++ trunk/tune/package/yast2-tune.changes Thu Jun 5 15:04:51 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu Jun 5 14:47:21 CEST 2008 - lslezak(a)suse.cz
+
+- do not write ENABLE_SYSRQ 'nil' value (do not remove the
+ variable from sysconfig/sysctl file) (bnc#397101)
+- 2.16.2
+
+-------------------------------------------------------------------
Fri May 16 16:40:22 CEST 2008 - jsrain(a)suse.cz
- added categories Settings and System into desktop file
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
05 Jun '08
Author: lslezak
Date: Thu Jun 5 14:52:24 2008
New Revision: 48099
URL: http://svn.opensuse.org/viewcvs/yast?rev=48099&view=rev
Log:
Created tag branch-Linux-11_0-2_16_2 for tune
Added:
tags/branch-Linux-11_0-2_16_2/tune/
- copied from r48098, branches/SuSE-Linux-11_0-Branch/tune/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
05 Jun '08
Author: lslezak
Date: Thu Jun 5 14:52:22 2008
New Revision: 48098
URL: http://svn.opensuse.org/viewcvs/yast?rev=48098&view=rev
Log:
Created tag branch-Linux-11_0-2_16_2
Added:
tags/branch-Linux-11_0-2_16_2/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0