Gentoo Archives: gentoo-commits

From: Sven Eden <sven.eden@×××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ufed:master commit in: /
Date: Wed, 26 Feb 2014 10:26:40
Message-Id: 1393408102.0d2941afbeb5b812949fe85895558d9015c06e9e.yamakuzure@gentoo
1 commit: 0d2941afbeb5b812949fe85895558d9015c06e9e
2 Author: Sven Eden <yamakuzure <AT> gmx <DOT> net>
3 AuthorDate: Wed Feb 26 09:48:22 2014 +0000
4 Commit: Sven Eden <sven.eden <AT> gmx <DOT> de>
5 CommitDate: Wed Feb 26 09:48:22 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=0d2941af
7
8 ufed.pl.in: Minor updates to the documentation.
9
10 ---
11 ufed.pl.in | 18 ++++++++++--------
12 1 file changed, 10 insertions(+), 8 deletions(-)
13
14 diff --git a/ufed.pl.in b/ufed.pl.in
15 index 17f4c7a..fdcdf18 100644
16 --- a/ufed.pl.in
17 +++ b/ufed.pl.in
18 @@ -2,7 +2,7 @@
19 use strict;
20 use warnings;
21
22 -# Copyright 1999-2013 Gentoo Foundation
23 +# Copyright 1999-2014 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 # $
26
27 @@ -11,6 +11,9 @@ use Portage;
28
29 # 0 = normal, 1 = gdb, 2 = valgrind
30 use constant { EXEC => 0 };
31 +# Note on PBP: Like Portage.pm one single value for debugging purposes is not
32 +# enough to justify an additional dependency, so this stays being
33 +# a (discouraged) constant.
34
35 my $version = 'XX_PACKAGE_VERSION@';
36
37 @@ -30,8 +33,8 @@ flags_dialog;
38
39
40 # Take a list and return it ordered the following way:
41 -# Put "-*" first, followed by enabling flags and put
42 -# disabling flags to the end.
43 +# Put "-*" first, followed by enabling flags and put disabling flags to the
44 +# end.
45 # Parameters: list of flags
46 sub finalise {
47 my @arg = @_;
48 @@ -45,9 +48,8 @@ sub finalise {
49 return @result;
50 }
51
52 -# Launch the curses interface. Communication is done using
53 -# pipes. Waiting for pipe read/write to finish is done
54 -# automatically.
55 +# Launch the curses interface. Communication is done using pipes. Waiting for
56 +# pipe read/write to finish is done automatically.
57 # No parameters accepted.
58 sub flags_dialog {
59 use POSIX ();
60 @@ -165,8 +167,8 @@ sub flags_dialog {
61 }
62
63
64 -# Write given list of flags back to make.conf if
65 -# the file has not been changed since reading it.
66 +# Write given list of flags back to make.conf if the file has not been changed
67 +# since reading it.
68 # Parameters: list of flags
69 sub save_flags {
70 my (@flags) = @_;