diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-12-16 22:18:21 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-16 22:18:21 +0100 |
commit | add85e7636ac8a8972fdb43f1fc77e4c87680ec4 (patch) | |
tree | d6adde4a1452d3894b3c4371ba598a4f624d105b /script | |
parent | e7ec0e8f26d5700fd1b48911f4e4c91bb8eaa7bc (diff) | |
download | App-ArchLinux-PackagerTools-add85e7636ac8a8972fdb43f1fc77e4c87680ec4.tar.gz App-ArchLinux-PackagerTools-add85e7636ac8a8972fdb43f1fc77e4c87680ec4.tar.xz |
WIP get_maintainer
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'script')
-rwxr-xr-x | script/perlpkg.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/perlpkg.pl b/script/perlpkg.pl index 7bfff3a..8c20f22 100755 --- a/script/perlpkg.pl +++ b/script/perlpkg.pl @@ -57,9 +57,9 @@ my $app = App::ArchLinux::PackagerTools->new(); use Data::Dumper; my $dists = $app->get_distributions_in_repo(); my $dist_names = [map {$_->{dist_name}} $dists->@*]; -print Dumper($app->get_updateable_packages($dist_names)); +my $updateable = $app->get_updateable_packages($dist_names); +my $pkgs = $app->add_maintainers($updateable); -# TODO fetch maintainer from archweb # TODO generate new pacakge pkgbuild # TODO build # TODO release |