public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sven Eden" <sven.eden@gmx.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/ufed:master commit in: /
Date: Sat, 19 Jan 2013 21:43:34 +0000 (UTC)	[thread overview]
Message-ID: <1358405949.e78d0f4211ad6e5963c359d566965990d72d537c.yamakuzure@gentoo> (raw)

commit:     e78d0f4211ad6e5963c359d566965990d72d537c
Author:     Sven Eden <sven.eden <AT> gmx <DOT> de>
AuthorDate: Thu Jan 17 06:59:09 2013 +0000
Commit:     Sven Eden <sven.eden <AT> gmx <DOT> de>
CommitDate: Thu Jan 17 06:59:09 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=e78d0f42

Fixed several Perl::Critic warnings. This has been done as a
preparation for future changes implementing new features.

The following warnings have been fixed:

[Variables::RequireLexicalLoo pIterators]
  Loop iterator is not lexical (See page 108 of PBP)

[Subroutines::RequireArgUnpacking]
  Always unpack @_ first (See page 178 of PBP)

[Subroutines::ProhibitSubroutinePrototypes]
  Subroutine prototypes used (See page 194 of PBP)

[Subrotines::RequireFinalReturn]
  Subroutine did not end with "return" (See page 197 of PBP)

---
 ufed.pl.in |   90 ++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 48 insertions(+), 42 deletions(-)

diff --git a/ufed.pl.in b/ufed.pl.in
index 341cb55..7bd37b2 100644
--- a/ufed.pl.in
+++ b/ufed.pl.in
@@ -14,10 +14,10 @@ my $version = 'XX_PACKAGE_VERSION@';
 my %use_descriptions;
 my %masked_descriptions;
 
-sub finalise(@);
-sub flags_dialog();
-sub read_use_descs();
-sub save_flags(@);
+sub finalise;
+sub flags_dialog;
+sub read_use_descs;
+sub save_flags;
 
 delete $Portage::all_flags{'*'};
 
@@ -56,17 +56,19 @@ for(keys %Portage::use_masked_flags) {
 
 flags_dialog;
 
-sub finalise(@) {
-	return sort {
+sub finalise {
+	my @arg = @_;
+	my @result = sort {
 		($a ne '-*') <=> ($b ne '-*')
 		||
 		($a =~ /^-/) <=> ($b =~ /^-/)
 		||
 		$a cmp $b
-	} @_;
+	} @arg;
+	return @result;
 }
 
-sub flags_dialog() {
+sub flags_dialog {
 	use POSIX ();
 	POSIX::dup2 1, 3;
 	POSIX::dup2 1, 4;
@@ -87,47 +89,47 @@ sub flags_dialog() {
 	}
 	POSIX::close $iread;
 	POSIX::close $owrite;
-	if(open my $fh, '>&=', $iwrite) {
-		
-		# Write masked flags first so they sort at the beginning of the list
-		for my $flag (sort { uc $a cmp uc $b } keys %masked_descriptions) {
-			print $fh "(" . $flag . ") msk "
-			. (exists($Portage::make_defaults_flags{$flag})
-				? $Portage::make_defaults_flags{$flag} ? '(+' :'(-'
-				: '( ')
-			. (exists($Portage::make_conf_flags{$flag})
-				? $Portage::make_conf_flags{$flag}     ? '+)': '-)'
-				: ' )')
-			. ' ' . scalar(@{$masked_descriptions{$flag}}) . "\n";
-			print $fh $_, "\n" for(@{$masked_descriptions{$flag}});
-		}
+	my $outTxt = "";
 
-		# Then write regular flags
-		for my $flag (sort { uc $a cmp uc $b } keys %use_descriptions) {
-			print $fh $flag
-			. (defined($Portage::make_conf_flags{$flag})
-				? $Portage::make_conf_flags{$flag} ? ' on ' : ' off '
-				: ' def ' )
-			. (exists($Portage::make_defaults_flags{$flag})
-				? $Portage::make_defaults_flags{$flag} ? '(+' :'(-'
-				: '( ')
-			. (exists($Portage::make_conf_flags{$flag})
-				? $Portage::make_conf_flags{$flag}     ? '+)': '-)'
-				: ' )')
-			. ' ' . scalar(@{$use_descriptions{$flag}}) . "\n";
-			print $fh $_, "\n" for(@{$use_descriptions{$flag}});
-		}
+	# Write masked flags first so they sort at the beginning of the list
+	for my $flag (sort { uc $a cmp uc $b } keys %masked_descriptions) {
+		$outTxt .= sprintf ("(%s) msk (%s%s) %d\n", $flag,
+					exists($Portage::make_defaults_flags{$flag})
+						? $Portage::make_defaults_flags{$flag} ? '+' : '-' : ' ',
+					exists($Portage::make_conf_flags{$flag})
+						? $Portage::make_conf_flags{$flag}     ? '+' : '-' : ' ',
+					scalar @{$masked_descriptions{$flag}} );
+		$outTxt .= sprintf ("%s\n", $_) for(@{$masked_descriptions{$flag}});
+	}
+
+	# Then write regular flags
+	for my $flag (sort { uc $a cmp uc $b } keys %use_descriptions) {
+		$outTxt .= sprintf ("%s %s (%s%s) %d\n", $flag,
+					defined($Portage::make_conf_flags{$flag})
+						? $Portage::make_conf_flags{$flag} ? ' on ' : ' off ' : ' def ',
+					exists($Portage::make_defaults_flags{$flag})
+						? $Portage::make_defaults_flags{$flag} ? '+' : '-' : ' ',
+					exists($Portage::make_conf_flags{$flag})
+						? $Portage::make_conf_flags{$flag}     ? '+' : '-' : ' ',
+					scalar @{$use_descriptions{$flag}}  );
+		$outTxt .= sprintf ("%s\n", $_) for(@{$use_descriptions{$flag}});
+	}
+
+	# Now let the interface know of the result
+	if (open my $fh, '>&=', $iwrite) {
+		print $fh $outTxt;
 		close $fh;
 	} else {
 		die "Couldn't let interface know of flags\n";
 	}
 	POSIX::close $iwrite;
 	wait;
-	open my $fh, '<&=', $oread or die "Couldn't read output.\n";
 	if(POSIX::WIFEXITED($?)) {
 		my $rc = POSIX::WEXITSTATUS($?);
 		if($rc==0) {
+			open my $fh, '<&=', $oread or die "Couldn't read output.\n";
 			my @flags = grep { $_ ne '--*' } do { local $/; split /\n/, <$fh> };
+			close $fh;
 			save_flags finalise @flags;
 		} elsif($rc==1)
 		{ print "Cancelled, not saving changes.\n" }
@@ -136,9 +138,10 @@ sub flags_dialog() {
 	{ kill POSIX::WTERMSIG($?), $$ }
 	else
 	{ exit 127 }
+	return;
 }
 
-sub read_use_descs() {
+sub read_use_descs {
 	my %_use_descriptions;
 	for my $dir(@Portage::portagedirs) {
 		for(Portage::noncomments "$dir/profiles/use.desc") {
@@ -160,9 +163,11 @@ sub read_use_descs() {
 		for my $desc(sort keys %{$_use_local_descriptions{$_}})
 		{ push @{$use_descriptions{$_}}, "Local flag: $desc (@{[sort keys %{$_use_local_descriptions{$_}{$desc}}]})" }
 	}
+	return;
 }
 
-sub save_flags(@) {
+sub save_flags {
+	my (@flags) = @_;
 	my $BLANK = qr{(?:[ \n\t]+|#.*)+};              # whitespace and comments
 	my $UBLNK = qr{(?:                              # as above, but scan for #USE=
 		[ \n\t]+ |
@@ -176,7 +181,6 @@ sub save_flags(@) {
 	my $BNUQV = qr{(?:[^ \\\n\t'"#]+|\\\n()|\\.)+}s;# unquoted value (scan for \\\n)
 	my $BNDQV = qr{"(?:[^\\"]|\\\n()|\\.)*"}s;      # doublequoted value (scan for \\\n)
 
-	my (@flags) = @_;
 	my $contents;
 
 	my $makeconf_name = "$Portage::eprefix/etc/portage/make.conf";
@@ -257,7 +261,7 @@ sub save_flags(@) {
 						$flags   = $nl.$flag;
 						$length  = length $flag;
 					}
-					for $flag(@flags[1..$#flags]) {
+					for my $flag (@flags[1..$#flags]) {
 						if($length + 1 + length $flag <= $linelength) {
 							$flags  .= " $flag";
 							$length += 1+length $flag;
@@ -326,4 +330,6 @@ EOF
 		print $makeconf $_;
 		close $makeconf;
 	}
+	
+	return;
 }


             reply	other threads:[~2013-01-19 21:43 UTC|newest]

Thread overview: 238+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-19 21:43 Sven Eden [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-11-07 14:25 [gentoo-commits] proj/ufed:master commit in: / Sven Eden
2020-05-02  8:38 Ulrich Müller
2019-09-27  6:42 Sven Eden
2019-09-27  6:39 Sven Eden
2019-09-24 17:57 Sven Eden
2019-09-24 17:56 Sven Eden
2019-04-07 15:17 David Seifert
2019-04-07 13:56 David Seifert
2019-04-07 13:19 David Seifert
2019-04-07 13:19 David Seifert
2019-04-07 13:19 David Seifert
2019-04-07 13:19 David Seifert
2019-04-07 13:19 David Seifert
2015-02-12 15:47 Sven Eden
2015-02-11  9:03 Sven Eden
2014-11-10  9:59 Sven Eden
2014-10-28 11:43 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-26 10:26 Sven Eden
2014-02-25  8:18 Sven Eden
2014-02-25  8:18 Sven Eden
2014-02-25  8:18 Sven Eden
2014-02-25  8:18 Sven Eden
2013-11-25 21:43 Sven Eden
2013-11-25 21:43 Sven Eden
2013-11-25 21:43 Sven Eden
2013-11-25 21:43 Sven Eden
2013-11-25 21:43 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-20  8:30 Sven Eden
2013-09-11  7:09 Sven Eden
2013-09-11  6:31 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-11  6:04 Sven Eden
2013-09-10 12:37 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-09-10  6:36 Sven Eden
2013-07-22  9:34 Sven Eden
2013-07-22  6:09 Sven Eden
2013-07-22  6:09 Sven Eden
2013-04-09  7:22 Sven Eden
2013-04-09  7:22 Sven Eden
2013-04-09  7:22 Sven Eden
2013-04-08  7:18 Sven Eden
2013-04-03 13:39 Sven Eden
2013-03-05 16:53 Sven Eden
2013-03-05 16:49 Sven Eden
2013-03-05 16:49 Sven Eden
2013-03-05 16:49 Sven Eden
2013-03-05 16:49 Sven Eden
2013-03-05 16:49 Sven Eden
2013-02-21 10:02 Sven Eden
2013-02-19 15:16 Sven Eden
2013-02-19 13:34 Sven Eden
2013-02-18  7:22 Sven Eden
2013-02-15  8:36 Sven Eden
2013-02-15  8:36 Sven Eden
2013-02-15  8:36 Sven Eden
2013-02-14  8:35 Sven Eden
2013-02-14  8:35 Sven Eden
2013-02-14  8:35 Sven Eden
2013-02-13  9:23 Sven Eden
2013-02-13  9:23 Sven Eden
2013-02-13  9:23 Sven Eden
2013-02-13  9:23 Sven Eden
2013-02-13  9:23 Sven Eden
2013-02-12 10:51 Sven Eden
2013-02-12 10:51 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-12  9:01 Sven Eden
2013-02-06  9:09 Sven Eden
2013-02-06  9:09 Sven Eden
2013-02-05 18:06 Paul Varner
2013-02-05 13:53 Sven Eden
2013-02-05 13:53 Sven Eden
2013-02-05 11:24 Sven Eden
2013-02-03 14:32 Sven Eden
2013-02-03 14:32 Sven Eden
2013-02-03 14:32 Sven Eden
2013-02-03 14:32 Sven Eden
2013-02-03 14:32 Sven Eden
2013-02-02 20:49 Sven Eden
2013-02-02 10:11 Sven Eden
2013-02-02  9:47 Sven Eden
2013-02-02  9:47 Sven Eden
2013-02-02  9:47 Sven Eden
2013-02-01 21:12 Sven Eden
2013-02-01 21:12 Sven Eden
2013-02-01 21:12 Sven Eden
2013-02-01 16:04 Sven Eden
2013-02-01 15:55 Sven Eden
2013-02-01 15:26 Sven Eden
2013-02-01 14:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-02-01 10:49 Sven Eden
2013-01-24 10:15 Sven Eden
2013-01-24 10:15 Sven Eden
2013-01-24 10:15 Sven Eden
2013-01-24 10:15 Sven Eden
2013-01-24 10:15 Sven Eden
2013-01-23 14:44 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-23 12:05 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-19 21:43 Sven Eden
2013-01-16 13:43 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-16 12:56 Sven Eden
2013-01-08 11:02 Sven Eden
2013-01-02  8:47 Sven Eden
2013-01-02  8:01 Sven Eden
2013-01-02  8:01 Sven Eden
2012-11-20 17:31 Paul Varner
2012-11-20 17:25 Paul Varner
2012-10-23 16:13 Paul Varner
2012-10-23 16:13 Paul Varner
2012-10-23 16:13 Paul Varner
2012-10-23 16:01 Paul Varner
2012-10-22 20:42 Paul Varner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1358405949.e78d0f4211ad6e5963c359d566965990d72d537c.yamakuzure@gentoo \
    --to=sven.eden@gmx.de \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox