Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2016-03-26 15:12:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2016-03-18 21:38:30.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2016-03-26 15:12:02.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Mar 23 16:26:26 UTC 2016 - [email protected] + +- Added proc_modules.scr from yast-installation to avoid that + yast-sound depends on yast-installation (bsc#972310) +- 3.1.180 + +------------------------------------------------------------------- Old: ---- yast2-3.1.179.tar.bz2 New: ---- yast2-3.1.180.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.1nPndb/_old 2016-03-26 15:12:03.000000000 +0100 +++ /var/tmp/diff_new_pack.1nPndb/_new 2016-03-26 15:12:03.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version: 3.1.179 +Version: 3.1.180 Release: 0 Url: https://github.com/yast/yast-yast2 ++++++ yast2-3.1.179.tar.bz2 -> yast2-3.1.180.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.179/library/general/src/Makefile.am new/yast2-3.1.180/library/general/src/Makefile.am --- old/yast2-3.1.179/library/general/src/Makefile.am 2016-03-17 12:40:52.000000000 +0100 +++ new/yast2-3.1.180/library/general/src/Makefile.am 2016-03-23 18:50:52.000000000 +0100 @@ -63,6 +63,7 @@ scrconf/anyxml.scr \ scrconf/yast2_desktop.scr \ scrconf/proc_mounts.scr \ + scrconf/proc_modules.scr \ scrconf/cfg_ypserv.scr \ scrconf/cfg_security.scr diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.179/library/general/src/scrconf/proc_modules.scr new/yast2-3.1.180/library/general/src/scrconf/proc_modules.scr --- old/yast2-3.1.179/library/general/src/scrconf/proc_modules.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.180/library/general/src/scrconf/proc_modules.scr 2016-03-23 18:50:52.000000000 +0100 @@ -0,0 +1,47 @@ +/** + * File: + * proc_modules.scr + * Summary: + * SCR Agent for reading /proc/modules + * Access: + * read-only + * Authors: + * Unknown <[email protected]> + * See: + * anyagent + * libscr + * Example: + * Read(.proc.modules) + * ($["aic7xxx":$["size":129600, "used":"3"], + * "autofs4":$["size":9344, "used":"4"], + * "de4x5":$["size":40320, "used":"1"], + * ... + * ]) + * + * $Id$ + * + * Returns a <b>map</b>i. Keys are the module names, values are maps. + * Keys of those maps are: "size", "used" + */ +.proc.modules + +`ag_anyagent( + `Description ( + (`File("/proc/modules")), // real file name + "#\n", // Comment + true, // read-only + (`Tuple ( + `Name(`String("^ \t")), + `Whitespace (), + `Value ( + `Tuple ( + `size (`Number()), + `Whitespace(), + `used (`String("^ \n")), + `Optional (`String ("^\n")) + ) + ), + `Continue ("\n") + ) ) + ) +) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.179/package/yast2.changes new/yast2-3.1.180/package/yast2.changes --- old/yast2-3.1.179/package/yast2.changes 2016-03-17 12:40:52.000000000 +0100 +++ new/yast2-3.1.180/package/yast2.changes 2016-03-23 18:50:52.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Mar 23 16:26:26 UTC 2016 - [email protected] + +- Added proc_modules.scr from yast-installation to avoid that + yast-sound depends on yast-installation (bsc#972310) +- 3.1.180 + +------------------------------------------------------------------- Wed Mar 16 17:10:37 UTC 2016 - [email protected] - Added cfg_mail.scr from yast-mail to avoid circular dependencies diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.179/package/yast2.spec new/yast2-3.1.180/package/yast2.spec --- old/yast2-3.1.179/package/yast2.spec 2016-03-17 12:40:52.000000000 +0100 +++ new/yast2-3.1.180/package/yast2.spec 2016-03-23 18:50:52.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version: 3.1.179 +Version: 3.1.180 Release: 0 Url: https://github.com/yast/yast-yast2
