]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blob - lib/CPANPLUS/Dist/Gentoo.pm
Make $stat->portdir_overlay an array reference
[perl/modules/CPANPLUS-Dist-Gentoo.git] / lib / CPANPLUS / Dist / Gentoo.pm
1 package CPANPLUS::Dist::Gentoo;
2
3 use strict;
4 use warnings;
5
6 use Cwd qw/abs_path/;
7 use File::Copy qw/copy/;
8 use File::Path qw/mkpath/;
9 use File::Spec::Functions qw/catdir catfile/;
10
11 use IPC::Cmd qw/run can_run/;
12
13 use CPANPLUS::Error;
14
15 use base qw/CPANPLUS::Dist::Base/;
16
17 =head1 NAME
18
19 CPANPLUS::Dist::Gentoo - CPANPLUS backend generating Gentoo ebuilds.
20
21 =head1 VERSION
22
23 Version 0.04
24
25 =cut
26
27 our $VERSION = '0.04';
28
29 =head1 SYNOPSIS
30
31     cpan2dist --format=CPANPLUS::Dist::Gentoo \
32               --dist-opts overlay=/usr/local/portage \
33               --dist-opts distdir=/usr/portage/distfiles \
34               --dist-opts manifest=yes \
35               --dist-opts keywords=x86 \
36               --dist-opts header="# Copyright 1999-2008 Gentoo Foundation" \
37               --dist-opts footer="# End" \
38               Any::Module You::Like
39
40 =head1 DESCRPITON
41
42 This module is a CPANPLUS backend that recursively generates Gentoo ebuilds for a given package in the specified overlay (defaults to F</usr/local/portage>), updates the manifest, and even emerges it (together with its dependencies) if the user requires it. You need write permissions on the directory where Gentoo fetches its source files (usually F</usr/portage/distfiles>). The valid C<KEYWORDS> for the generated ebuilds are by default those given in C<ACCEPT_KEYWORDS>, but you can specify your own with the C<keywords> dist-option.
43
44 The generated ebuilds are placed into the C<perl-gcpanp> category. They favour depending on C<perl-core>, C<dev-perl> or C<perl-gcpan> (in that order) rather than C<perl-gcpanp>.
45
46 =head1 INSTALLATION
47
48 After installing this module, you should append C<perl-gcpanp> to your F</etc/portage/categories> file.
49
50 =head1 METHODS
51
52 All the methods are inherited from L<CPANPLUS::Dist::Base>. Please refer to its documentation for precise information on what's done at each step.
53
54 =cut
55
56 use constant CATEGORY => 'perl-gcpanp';
57
58 my $overlays;
59 my $default_keywords;
60 my $default_distdir;
61
62 sub _unquote {
63  my $s = shift;
64  $s =~ s/^["']*//;
65  $s =~ s/["']*$//;
66  return $s;
67 }
68
69 sub format_available {
70  for my $prog (qw/emerge ebuild/) {
71   unless (can_run($prog)) {
72    error "$prog is required to write ebuilds -- aborting";
73    return 0;
74   }
75  }
76
77  if (IPC::Cmd->can_capture_buffer) {
78   my ($success, $errmsg, $output) = run command => [ qw/emerge --info/ ],
79                                         verbose => 0;
80   if ($success) {
81    for (@{$output || []}) {
82     if (/^PORTDIR_OVERLAY=(.*)$/m) {
83      $overlays = [ map abs_path($_), split ' ', _unquote($1) ];
84     }
85     if (/^ACCEPT_KEYWORDS=(.*)$/m) {
86      $default_keywords = [ split ' ', _unquote($1) ];
87     }
88     if (/^DISTDIR=(.*)$/m) {
89      $default_distdir = abs_path(_unquote($1));
90     }
91    }
92   } else {
93    error $errmsg;
94   }
95  }
96
97  $default_keywords = [ 'x86' ] unless defined $default_keywords;
98  $default_distdir  = '/usr/portage/distfiles' unless defined $default_distdir;
99
100  return 1;
101 }
102
103 sub init {
104  my ($self) = @_;
105  my $stat = $self->status;
106  my $conf = $self->parent->parent->configure_object;
107
108  $stat->mk_accessors(qw/name version author distribution desc uri license
109                         deps eb_name eb_version eb_dir eb_file fetched_arch
110                         portdir_overlay
111                         overlay distdir keywords do_manifest header footer
112                         force verbose/);
113
114  $stat->force($conf->get_conf('force'));
115  $stat->verbose($conf->get_conf('verbose'));
116
117  return 1;
118 }
119
120 our %gentooism = (
121  'ANSIColor'               => 'Term-ANSIColor',
122  'Audio-CD'                => 'Audio-CD-disc-cover',
123  'CGI-Simple'              => 'Cgi-Simple',
124  'Cache-Mmap'              => 'cache-mmap',
125  'Class-Loader'            => 'class-loader',
126  'Class-ReturnValue'       => 'class-returnvalue',
127  'Config-General'          => 'config-general',
128  'Convert-ASCII-Armour'    => 'convert-ascii-armour',
129  'Convert-PEM'             => 'convert-pem',
130  'Crypt-CBC'               => 'crypt-cbc',
131  'Crypt-DES_EDE3'          => 'crypt-des-ede3',
132  'Crypt-DH'                => 'crypt-dh',
133  'Crypt-DSA'               => 'crypt-dsa',
134  'Crypt-IDEA'              => 'crypt-idea',
135  'Crypt-Primes'            => 'crypt-primes',
136  'Crypt-RSA'               => 'crypt-rsa',
137  'Crypt-Random'            => 'crypt-random',
138  'DBIx-SearchBuilder'      => 'dbix-searchbuilder',
139  'Data-Buffer'             => 'data-buffer',
140  'Digest'                  => 'digest-base',
141  'Digest-BubbleBabble'     => 'digest-bubblebabble',
142  'Digest-MD2'              => 'digest-md2',
143  'ExtUtils-Depends'        => 'extutils-depends',
144  'ExtUtils-PkgConfig'      => 'extutils-pkgconfig',
145  'Frontier-RPC'            => 'frontier-rpc',
146  'Gimp'                    => 'gimp-perl',
147  'Glib'                    => 'glib-perl',
148  'Gnome2-Canvas'           => 'gnome2-canvas',
149  'Gnome2-GConf'            => 'gnome2-gconf',
150  'Gnome2-Print'            => 'gnome2-print',
151  'Gnome2-VFS'              => 'gnome2-vfs-perl',
152  'Gnome2-Wnck'             => 'gnome2-wnck',
153  'Gtk2'                    => 'gtk2-perl',
154  'Gtk2-Ex-FormFactory'     => 'gtk2-ex-formfactory',
155  'Gtk2-GladeXML'           => 'gtk2-gladexml',
156  'Gtk2-Spell'              => 'gtk2-spell',
157  'Gtk2-TrayIcon'           => 'gtk2-trayicon',
158  'Gtk2-TrayManager'        => 'gtk2-traymanager',
159  'Gtk2Fu'                  => 'gtk2-fu',
160  'I18N-LangTags'           => 'i18n-langtags',
161  'Image-Info'              => 'ImageInfo',
162  'Image-Size'              => 'ImageSize',
163  'Inline-Files'            => 'inline-files',
164  'Locale-Maketext'         => 'locale-maketext',
165  'Locale-Maketext-Fuzzy'   => 'locale-maketext-fuzzy',
166  'Locale-Maketext-Lexicon' => 'locale-maketext-lexicon',
167  'Log-Dispatch'            => 'log-dispatch',
168  'Math-Pari'               => 'math-pari',
169  'Module-Info'             => 'module-info',
170  'Net-Ping'                => 'net-ping',
171  'Net-SFTP'                => 'net-sftp',
172  'Net-SSH-Perl'            => 'net-ssh-perl',
173  'Net-Server'              => 'net-server',
174  'OLE-Storage_Lite'        => 'OLE-StorageLite',
175  'Ogg-Vorbis-Header'       => 'ogg-vorbis-header',
176  'PathTools'               => 'File-Spec',
177  'Pod-Parser'              => 'PodParser',
178  'Regexp-Common'           => 'regexp-common',
179  'SDL_Perl'                => 'sdl-perl',
180  'Set-Scalar'              => 'set-scalar',
181  'String-CRC32'            => 'string-crc32',
182  'Text-Autoformat'         => 'text-autoformat',
183  'Text-Reform'             => 'text-reform',
184  'Text-Template'           => 'text-template',
185  'Text-Wrapper'            => 'text-wrapper',
186  'Tie-EncryptedHash'       => 'tie-encryptedhash',
187  'Tk'                      => 'perl-tk',
188  'Wx'                      => 'wxperl',
189  'YAML'                    => 'yaml',
190  'gettext'                 => 'Locale-gettext',
191  'txt2html'                => 'TextToHTML',
192 );
193
194 sub prepare {
195  my $self = shift;
196  my $mod  = $self->parent;
197  my $stat = $self->status;
198  my $int  = $mod->parent;
199  my $conf = $int->configure_object;
200
201  my %opts = @_;
202
203  $stat->prepared(0);
204
205  my $keywords = delete $opts{'keywords'};
206  if (defined $keywords) {
207   $keywords = [ split ' ', $keywords ];
208  } else {
209   $keywords = $default_keywords;
210  }
211  $stat->keywords($keywords);
212
213  my $manifest = delete $opts{'manifest'};
214  $manifest = 1 unless defined $manifest;
215  $manifest = 0 if $manifest =~ /^\s*no?\s*$/i;
216  $stat->do_manifest($manifest);
217
218  my $header = delete $opts{'header'};
219  if (defined $header) {
220   1 while chomp $header;
221   $header .= "\n\n";
222  } else {
223   $header = '';
224  }
225  $stat->header($header);
226
227  my $footer = delete $opts{'footer'};
228  if (defined $footer) {
229   $footer = "\n" . $footer;
230  } else {
231   $footer = '';
232  }
233  $stat->footer($footer);
234
235  my $overlay = delete $opts{'overlay'};
236  $overlay = (defined $overlay) ? abs_path $overlay : '/usr/local/portage';
237  $stat->overlay($overlay);
238
239  my $distdir = delete $opts{'distdir'};
240  $distdir = (defined $distdir) ? abs_path $distdir : $default_distdir;
241  $stat->distdir($distdir);
242
243  if ($stat->do_manifest && !-w $stat->distdir) {
244   error 'distdir isn\'t writable -- aborting';
245   return 0;
246  }
247  $stat->fetched_arch($mod->status->fetch);
248
249  my $cur = File::Spec::Functions::curdir();
250  my $portdir_overlay;
251  for (@$overlays) {
252   if ($_ eq $overlay or File::Spec::Functions::abs2rel($overlay, $_) eq $cur) {
253    $portdir_overlay = [ @$overlays ];
254    last;
255   }
256  }
257  $portdir_overlay = [ @$overlays, $overlay ] unless $portdir_overlay;
258  $stat->portdir_overlay($portdir_overlay);
259
260  my $name = $mod->package_name;
261  $stat->name($name);
262
263  my $version = $mod->package_version;
264  $stat->version($version);
265
266  my $author = $mod->author->cpanid;
267  $stat->author($author);
268
269  $stat->distribution($name . '-' . $version);
270
271  $version =~ s/[^\d._]+//g;
272  $version =~ s/^[._]*//;
273  $version =~ s/[._]*$//;
274  $version =~ s/[._]*_[._]*/_/g;
275  {
276   ($version, my $patch, my @rest) = split /_/, $version;
277   $version .= '_p' . $patch if defined $patch;
278   $version .= join('.', '', @rest) if @rest;
279  }
280  $stat->eb_version($version);
281
282  $stat->eb_name($gentooism{$name} || $name);
283
284  $stat->eb_dir(catdir($stat->overlay, CATEGORY, $stat->eb_name));
285
286  my $file = catfile($stat->eb_dir,
287                     $stat->eb_name . '-' . $stat->eb_version . '.ebuild');
288  $stat->eb_file($file);
289
290  if (-e $file) {
291   my $skip = 1;
292   if ($stat->force) {
293    if (-w $file) {
294     1 while unlink $file;
295     $skip = 0;
296    } else {
297     error "Can't force rewriting of $file -- skipping";
298    }
299   } else {
300    msg 'Ebuild already generated for ' . $stat->distribution . ' -- skipping';
301   }
302   if ($skip) {
303    $stat->prepared(1);
304    $stat->created(1);
305    $stat->dist($file);
306    return 1;
307   }
308  }
309
310  $self->SUPER::prepare(%opts);
311
312  $stat->prepared(0);
313
314  my $desc = $mod->description;
315  ($desc = $name) =~ s/-+/::/g unless $desc;
316  $stat->desc($desc);
317
318  $stat->uri('http://search.cpan.org/dist/' . $name);
319
320  $stat->license([ qw/Artistic GPL-2/ ]);
321
322  my $prereqs = $mod->status->prereqs;
323  my @depends;
324  for my $prereq (sort keys %$prereqs) {
325   next if $prereq =~ /^perl(?:-|\z)/;
326   my $obj = $int->module_tree($prereq);
327   unless ($obj) {
328    error 'Wrong module object -- aborting';
329    return 0;
330   }
331   next if $obj->package_is_perl_core;
332   {
333    my $version;
334    if ($prereqs->{$prereq}) {
335     if ($obj->installed_version && $obj->installed_version < $obj->version) {
336      $version = $obj->installed_version;
337     } else {
338      $version = $obj->package_version;
339     }
340    }
341    push @depends, [ $obj , $version ];
342   }
343  }
344  $stat->deps(\@depends);
345
346  $stat->prepared(1);
347  return 1;
348 }
349
350 sub create {
351  my $self = shift;
352  my $stat = $self->status;
353
354  unless ($stat->prepared) {
355   error 'Can\'t create ' . $stat->distribution . ' since it was never prepared -- aborting';
356   $stat->created(0);
357   $stat->dist(undef);
358   return 0;
359  }
360
361  if ($stat->created) {
362   msg $stat->distribution . ' was already created -- skipping';
363   $stat->dist($stat->eb_file);
364   return 1;
365  }
366
367  $stat->created(0);
368  $stat->dist(undef);
369
370  $self->SUPER::create(@_);
371
372  $stat->created(0);
373  $stat->dist(undef);
374
375  my $dir = $stat->eb_dir;
376  unless (-d $dir) {
377   eval { mkpath $dir };
378   if ($@) {
379    error "mkpath($dir): $@";
380    return 0;
381   }
382  }
383
384  my $d = $stat->header;
385  $d   .= "# Generated by CPANPLUS::Dist::Gentoo version $VERSION\n\n";
386  $d   .= 'MODULE_AUTHOR="' . $stat->author . "\"\ninherit perl-module\n\n";
387  $d   .= 'DESCRIPTION="' . $stat->desc . "\"\n";
388  $d   .= 'HOMEPAGE="' . $stat->uri . "\"\n\n";
389  $d   .= "SLOT=\"0\"\n";
390  $d   .= 'LICENSE="|| ( ' . join(' ', sort @{$stat->license}) . " )\"\n";
391  $d   .= 'KEYWORDS="' . join(' ', sort @{$stat->keywords}) . "\"\n";
392  $d   .= 'DEPEND="' . join "\n",
393   'dev-lang/perl',
394   map {
395    my $a = $_->[0]->package_name;
396    $a = $gentooism{$a} || $a;
397    my $x = '';
398    if (defined $_->[1]) {
399     $x  = '>=';
400     $a .= '-' . $_->[1];
401    }
402    '|| ( ' . join(' ', map "$x$_/$a",
403                            qw/perl-core dev-perl perl-gcpan/, CATEGORY)
404            . ' )';
405   } @{$stat->deps};
406  $d   .= "\"\n";
407  $d   .= "SRC_TEST=\"do\"\n";
408  $d   .= $stat->footer;
409
410  my $file = $stat->eb_file;
411  open my $eb, '>', $file or do {
412   error "open($file): $! -- aborting";
413   return 0;
414  };
415  print $eb $d;
416  close $eb;
417
418  if ($stat->do_manifest) {
419   unless (copy $stat->fetched_arch, $stat->distdir) {
420    error "Couldn\'t copy the distribution file to distdir ($!) -- aborting";
421    1 while unlink $file;
422    return 0;
423   }
424
425   msg 'Adding Manifest entry for ' . $stat->distribution;
426   unless ($self->_run([ 'ebuild', $file, 'manifest' ], 0)) {
427    1 while unlink $file;
428    return 0;
429   }
430  }
431
432  $stat->created(1);
433  $stat->dist($file);
434  return 1;
435 }
436
437 sub install {
438  my $self = shift;
439  my $stat = $self->status;
440  my $conf = $self->parent->parent->configure_object;
441
442  my $sudo = $conf->get_program('sudo');
443  my @cmd = ('emerge', '=' . $stat->eb_name . '-' . $stat->eb_version);
444  unshift @cmd, $sudo if $sudo;
445
446  my $success = $self->_run(\@cmd, 1);
447  $stat->installed($success);
448
449  return $success;
450 }
451
452 sub uninstall {
453  my $self = shift;
454  my $stat = $self->status;
455  my $conf = $self->parent->parent->configure_object;
456
457  my $sudo = $conf->get_program('sudo');
458  my @cmd = ('emerge', '-C', '=' . $stat->eb_name . '-' . $stat->eb_version);
459  unshift @cmd, $sudo if $sudo;
460
461  my $success = $self->_run(\@cmd, 1);
462  $stat->uninstalled($success);
463
464  return $success;
465 }
466
467 sub _run {
468  my ($self, $cmd, $verbose) = @_;
469  my $stat = $self->status;
470
471  my ($success, $errmsg, $output) = do {
472   local $ENV{PORTDIR_OVERLAY}     = join ' ', @{$stat->portdir_overlay};
473   local $ENV{PORTAGE_RO_DISTDIRS} = $stat->distdir;
474   run command => $cmd, verbose => $verbose;
475  };
476
477  unless ($success) {
478   error "$errmsg -- aborting";
479   if (not $verbose and defined $output and $self->status->verbose) {
480    my $msg = join '', @$output;
481    1 while chomp $msg;
482    error $msg;
483   }
484  }
485
486  return $success;
487 }
488
489 =head1 DEPENDENCIES
490
491 Gentoo (L<http://gentoo.org>).
492
493 L<CPANPLUS>, L<IPC::Cmd> (core modules since 5.9.5).
494
495 L<Cwd> (since perl 5) L<File::Path> (5.001), L<File::Copy> (5.002), L<File::Spec::Functions> (5.00504).
496
497 =head1 SEE ALSO
498
499 L<cpan2dist>.
500
501 L<CPANPLUS::Dist::Base>, L<CPANPLUS::Dist::Deb>, L<CPANPLUS::Dist::Mdv>.
502
503 =head1 AUTHOR
504
505 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
506
507 You can contact me by mail or on C<irc.perl.org> (vincent).
508
509 =head1 BUGS
510
511 Please report any bugs or feature requests to C<bug-cpanplus-dist-gentoo at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPANPLUS-Dist-Gentoo>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
512
513 =head1 SUPPORT
514
515 You can find documentation for this module with the perldoc command.
516
517     perldoc CPANPLUS::Dist::Gentoo
518
519 =head1 ACKNOWLEDGEMENTS
520
521 The module is to some extend cargo-culted from L<CPANPLUS::Dist::Deb> and L<CPANPLUS::Dist::Mdv>.
522
523 Kent Fredric, for testing and suggesting improvements.
524
525 =head1 COPYRIGHT & LICENSE
526
527 Copyright 2008 Vincent Pit, all rights reserved.
528
529 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
530
531 =cut
532
533 1; # End of CPANPLUS::Dist::Gentoo