From: "Kent Fredric" <kentfredric@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/perl-overlay:master commit in: scripts/
Date: Fri, 22 Jun 2012 07:34:32 +0000 (UTC) [thread overview]
Message-ID: <1340349551.94de4825f65caa983f0c816917c872e68c67bcd9.kent@gentoo> (raw)
commit: 94de4825f65caa983f0c816917c872e68c67bcd9
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Fri Jun 22 07:19:11 2012 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Fri Jun 22 07:19:11 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=94de4825
[scripts/aggregate_tree] refactor to use the new Gentoo::Overlay::Group::INI class, loadable via --from-ini, which enables processing multiple repositories into a single output file
---
scripts/aggregate_tree.pl | 201 +++++++++++++++++++++++++--------------------
1 files changed, 112 insertions(+), 89 deletions(-)
diff --git a/scripts/aggregate_tree.pl b/scripts/aggregate_tree.pl
index f8f797e..1e7e92a 100755
--- a/scripts/aggregate_tree.pl
+++ b/scripts/aggregate_tree.pl
@@ -21,116 +21,139 @@ use Gentoo::Overlay;
use XML::Smart;
-my $env = env::gentoo::perl_experimental->new();
-my $opts = optparse->new(
- argv => \@ARGV,
- help => sub { print <DATA>; return },
-);
-my $root = $env->root;
-use Path::Class::Dir;
-
-if ( defined $opts->long_opts->{root} ) {
- $root = Path::Class::Dir->new( $opts->long_opts->{root} );
-}
-my $overlay = Gentoo::Overlay->new( path => $root );
+my ( $env, $packages, $cat );
+main();
+
+sub main {
+ $env = env::gentoo::perl_experimental->new();
+ my $opts = optparse->new(
+ argv => \@ARGV,
+ help => sub { print <DATA>; return },
+ );
+ my $tree;
+
+ if ( $opts->long_opts->{'from-ini'} ) {
+ require Gentoo::Overlay::Group::INI;
+ $tree = Gentoo::Overlay::Group::INI->load_named('aggregate_tree')->overlay_group;
+ }
+ else {
+ require Gentoo::Overlay::Group;
+ $tree = Gentoo::Overlay::Group->new();
+ $tree->add_overlay( set_root( $opts->long_opts->{root} ));
+ }
-my $overlay_name = $overlay->name;
-use JSON;
+ $packages = {};
-my $data;
+ my $dest = open_output( $opts->long_opts->{output} );
-my $packages = $data->{ $overlay_name } = {};
+ $|++;
+ $tree->iterate(
+ 'packages' => \&handle_package
+ );
-my $encoder = JSON->new()->pretty->utf8->canonical;
+ $dest->print( make_format( $opts->long_opts->{format} ) );
-my $dest = \*STDOUT;
-if ( not $opts->long_opts->{output} or $opts->long_opts->{output} eq '-' ) {
- $dest = \*STDOUT;
}
-else {
- use Path::Class::File;
- my $file = Path::Class::File->new( $opts->long_opts->{output} )->absolute();
- $dest = $file->openw( iomode => ':utf8' );
+
+sub set_root {
+ my ($root) = @_;
+ return $env->root unless defined $root;
+ require Path::Class::Dir;
+ return Path::Class::Dir->new($root);
}
-my $cat;
-$|++;
-$overlay->iterate(
- 'packages' => sub {
- my ( $self, $c ) = @_;
- my $CP = $c->{category_name} . '/' . $c->{package_name};
- my $xmlfile = $root->subdir( $c->{category_name}, $c->{package_name} )->file('metadata.xml');
- if ( not -e $xmlfile ) {
- warn "\e[31mNo metadata.xml for $CP\e[0m\n";
- return;
- }
- if( not $cat or $c->{category_name} ne $cat ) {
- *STDERR->print("\nProcessing " . $c->{category_name} . " :");
- $cat = $c->{category_name};
- }
- *STDERR->print(".");
- my $XML = XML::Smart->new( $xmlfile->absolute()->stringify() );
- if ( not exists $XML->{pkgmetadata} ) {
- warn "\e[31m<pkgmetadata> missing in $xmlfile\e[0m\n";
- return;
- }
- if ( not exists $XML->{pkgmetadata}->{upstream} ) {
- # warn "<pkgmetadata>/<upstream> missing in $xmlfile\n";
- return;
- }
- if ( not exists $XML->{pkgmetadata}->{upstream}->{'remote-id'} ) {
+sub open_output {
+ my ($output) = @_;
+ return \*STDOUT if not defined $output;
+ return \*STDOUT if $output eq '-';
+ require Path::Class::File;
+ my $file = Path::Class::File->new($output)->absolute();
+ return $file->openw( iomode => ':utf8' );
+}
- # warn "<pkgmetadata>/<upstream>/<remote-id> missing in $xmlfile\n";
- return;
- }
- for my $remote ( @{ $XML->{pkgmetadata}->{upstream}->{'remote-id'} } ) {
+sub make_format {
+ my ($format) = @_;
+ $format ||= 'JSON';
+ if ( $format eq 'JSON' ) {
+ goto &make_format_json;
+ }
+ if ( $format eq 'distlist' ) {
+ goto &make_format_distlist;
+ }
+ die "Unknown format type " . $format;
+}
- next if not exists $remote->{type};
- next unless $remote->{type} eq 'cpan';
+sub make_format_json {
+ require JSON;
+ my $encoder = JSON->new()->pretty->utf8->canonical;
+ return $encoder->encode($packages);
+}
- my $upstream = $remote->content();
+sub make_format_distlist {
+ return join qq{\n}, keys %{$packages};
+}
- if ( not defined $packages->{$upstream} ) {
- $packages->{$upstream} = [];
- }
- my $versions = [];
- my $record = {
- category => $c->{category_name},
- package => $c->{package_name},
- repository => $overlay_name,
- versions_gentoo => $versions,
- };
- $c->{package}->iterate( ebuilds => sub {
+sub handle_package {
+ my ( $self, $c ) = @_;
+ my $CP = $c->{category_name} . '/' . $c->{package_name};
+ my $xmlfile = $c->{package}->path->file('metadata.xml');
+ if ( not -e $xmlfile ) {
+ warn "\e[31mNo metadata.xml for $CP\e[0m\n";
+ return;
+ }
+ if ( not $cat or $c->{category_name} ne $cat ) {
+ *STDERR->print( "\nProcessing " . $c->{category_name} . " :" );
+ $cat = $c->{category_name};
+ }
+ *STDERR->print(".");
+ my $XML = XML::Smart->new( $xmlfile->absolute()->stringify() );
+ if ( not exists $XML->{pkgmetadata} ) {
+ warn "\e[31m<pkgmetadata> missing in $xmlfile\e[0m\n";
+ return;
+ }
+ if ( not exists $XML->{pkgmetadata}->{upstream} ) {
+
+ # warn "<pkgmetadata>/<upstream> missing in $xmlfile\n";
+ return;
+ }
+ if ( not exists $XML->{pkgmetadata}->{upstream}->{'remote-id'} ) {
+
+ # warn "<pkgmetadata>/<upstream>/<remote-id> missing in $xmlfile\n";
+ return;
+ }
+ for my $remote ( @{ $XML->{pkgmetadata}->{upstream}->{'remote-id'} } ) {
+
+ next if not exists $remote->{type};
+ next unless $remote->{type} eq 'cpan';
+
+ my $upstream = $remote->content();
+
+ if ( not defined $packages->{$upstream} ) {
+ $packages->{$upstream} = [];
+ }
+ my $versions = [];
+ my $record = {
+ category => $c->{category_name},
+ package => $c->{package_name},
+ repository => $c->{overlay_name},
+ versions_gentoo => $versions,
+ };
+ $c->{package}->iterate(
+ ebuilds => sub {
my ( $self, $d ) = @_;
my $version = $d->{ebuild_name};
- my $p = $c->{package_name};
+ my $p = $c->{package_name};
$version =~ s/\.ebuild$//;
$version =~ s/^\Q${p}\E-//;
push @{$versions}, $version;
- });
- push @{ $packages->{$upstream} }, $record;
+ }
+ );
+ push @{ $packages->{$upstream} }, $record;
- *STDERR->print("\e[32m $CP -> $upstream\e[0m ");
- }
+ *STDERR->print("\e[32m $CP -> $upstream\e[0m ");
}
-);
-my $out;
-if ( not $opts->long_opts->{format} ) {
- $opts->long_opts->{format} = "JSON";
-}
-if ( $opts->long_opts->{format} eq "JSON" ) {
- $out = $encoder->encode($packages);
}
-elsif ( $opts->long_opts->{format} eq 'distlist' ) {
- $out = join "\n", keys %{$packages};
-}
-else {
- die "Unknown format type " . $opts->long_opts->{format};
-}
-
-$dest->print($out);
-
0;
__DATA__
next reply other threads:[~2012-06-22 7:34 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-22 7:34 Kent Fredric [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-09-16 22:36 [gentoo-commits] proj/perl-overlay:master commit in: scripts/ Kent Fredric
2015-02-28 23:17 Kent Fredric
2015-02-28 23:17 Kent Fredric
2013-12-23 15:28 Kent Fredric
2013-05-01 23:03 Kent Fredric
2013-05-01 23:03 Kent Fredric
2012-10-24 15:49 Kent Fredric
2012-09-15 23:19 Kent Fredric
2012-08-02 11:46 Kent Fredric
2012-08-02 11:46 Kent Fredric
2012-07-31 3:04 Kent Fredric
2012-07-12 19:23 Torsten Veller
2012-06-08 17:14 Kent Fredric
2012-05-27 2:30 Kent Fredric
2012-04-28 10:40 Kent Fredric
2012-04-18 3:32 Kent Fredric
2012-04-18 3:32 Kent Fredric
2012-04-18 3:32 Kent Fredric
2012-04-12 19:46 Kent Fredric
2012-04-09 16:05 Kent Fredric
2012-04-08 13:20 Kent Fredric
2012-04-08 13:20 Kent Fredric
2012-04-05 10:02 Kent Fredric
2012-03-27 1:26 Kent Fredric
2012-03-27 1:26 Kent Fredric
2012-03-27 1:26 Kent Fredric
2012-03-01 11:38 Kent Fredric
2012-02-29 12:22 Kent Fredric
2012-02-29 12:22 Kent Fredric
2012-02-29 12:06 Kent Fredric
2012-02-28 21:55 Kent Fredric
2012-02-28 21:55 Kent Fredric
2012-02-28 21:55 Kent Fredric
2012-02-24 7:13 Kent Fredric
2012-02-24 7:13 Kent Fredric
2012-02-12 7:22 Kent Fredric
2012-02-12 7:22 Kent Fredric
2011-12-05 21:45 Kent Fredric
2011-11-14 2:57 Kent Fredric
2011-11-14 2:57 Kent Fredric
2011-11-11 14:38 Kent Fredric
2011-10-31 18:05 Kent Fredric
2011-10-31 18:05 Kent Fredric
2011-10-31 8:46 Kent Fredric
2011-10-31 7:10 Kent Fredric
2011-10-31 4:52 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-31 2:48 Kent Fredric
2011-10-25 19:46 Kent Fredric
2011-10-25 19:46 Kent Fredric
2011-10-25 19:46 Kent Fredric
2011-10-24 21:17 Kent Fredric
2011-10-24 18:26 Kent Fredric
2011-10-24 9:09 Kent Fredric
2011-09-23 6:17 Kent Fredric
2011-08-29 5:44 Kent Fredric
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=1340349551.94de4825f65caa983f0c816917c872e68c67bcd9.kent@gentoo \
--to=kentfredric@gmail.com \
--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