Hello community,
here is the log from the commit of package yast2-installation for
openSUSE:Factory checked in at 2014-09-19 13:55:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old)
and /work/SRC/openSUSE:Factory/.yast2-installation.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation"
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2014-09-07 11:09:58.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes
2014-09-19 13:56:09.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Sep 17 16:04:11 UTC 2014 - [email protected]
+
+- additionaly return file system type in ".run.df" agent result,
+ (to use it in the disk usage calculation bnc#896176)
+- 3.1.116
+
+-------------------------------------------------------------------
Old:
----
yast2-installation-3.1.115.tar.bz2
New:
----
yast2-installation-3.1.116.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-installation.spec ++++++
--- /var/tmp/diff_new_pack.sE8L2u/_old 2014-09-19 13:56:10.000000000 +0200
+++ /var/tmp/diff_new_pack.sE8L2u/_new 2014-09-19 13:56:10.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-installation
-Version: 3.1.115
+Version: 3.1.116
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-installation-3.1.115.tar.bz2 -> yast2-installation-3.1.116.tar.bz2
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-3.1.115/MAINTAINER
new/yast2-installation-3.1.116/MAINTAINER
--- old/yast2-installation-3.1.115/MAINTAINER 2014-09-04 16:34:13.000000000
+0200
+++ new/yast2-installation-3.1.116/MAINTAINER 2014-09-18 16:54:12.000000000
+0200
@@ -1 +1 @@
-Ladislav Slezák <[email protected]>
+Deprecated file. Use `osc maintainer yast2-installation` instead.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-3.1.115/package/yast2-installation.changes
new/yast2-installation-3.1.116/package/yast2-installation.changes
--- old/yast2-installation-3.1.115/package/yast2-installation.changes
2014-09-04 16:34:13.000000000 +0200
+++ new/yast2-installation-3.1.116/package/yast2-installation.changes
2014-09-18 16:54:12.000000000 +0200
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Wed Sep 17 16:04:11 UTC 2014 - [email protected]
+
+- additionaly return file system type in ".run.df" agent result,
+ (to use it in the disk usage calculation bnc#896176)
+- 3.1.116
+
+-------------------------------------------------------------------
Thu Sep 4 12:21:25 UTC 2014 - [email protected]
- Use a more flexible rubygem requirement syntax (bnc#895069)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-3.1.115/package/yast2-installation.spec
new/yast2-installation-3.1.116/package/yast2-installation.spec
--- old/yast2-installation-3.1.115/package/yast2-installation.spec
2014-09-04 16:34:13.000000000 +0200
+++ new/yast2-installation-3.1.116/package/yast2-installation.spec
2014-09-18 16:54:12.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-installation
-Version: 3.1.115
+Version: 3.1.116
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-3.1.115/src/scrconf/run_df.scr
new/yast2-installation-3.1.116/src/scrconf/run_df.scr
--- old/yast2-installation-3.1.115/src/scrconf/run_df.scr 2014-09-04
16:34:13.000000000 +0200
+++ new/yast2-installation-3.1.116/src/scrconf/run_df.scr 2014-09-18
16:54:12.000000000 +0200
@@ -2,7 +2,7 @@
* File:
* run_df.scr
* Summary:
- * SCR Agent for reading the result from /bin/df -P
+ * SCR Agent for reading the result from /bin/df -P -T
* Access:
* read-only
* Authors:
@@ -33,25 +33,30 @@
* "used":"3382",
* "whole":"23300"],
* ])
- *
- * $Id$
*
* Returns a <b>list of maps</b>. Each map (list-entry) corresponds
* with one mount.
- * Keys for the maps are: "spec", "whole", "used", "free", "prz", "name",
+ * Keys for the maps are: "spec", "type", "whole", "used", "free", "prz",
"name",
* "dummy"
*/
.run.df
`ag_anyagent(
`Description (
- (`Run("/bin/df -P 2>/dev/null")), // real file name
+ // TODO FIXME: remove the header from df output before processing
+ // to get rid of the strange first item in the list (see the example
above)
+ // (but first check the existing code, someone might rely on this...)
+ // -P = portable POSIX output format
+ // -T = additionaly print the file system type
+ (`Run("/bin/df -P -T 2>/dev/null")), // real file name
"\n", // Comment
true, // read-only
(`List (
`Tuple (
`spec (`String("^\t ")),
`Separator ("\t "),
+ `type (`String("^\t ")),
+ `Separator ("\t "),
`whole (`String("^\t ")),
`Separator ("\t "),
`used (`String("^\t ")),
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]