From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RKhvf-0003O6-9X for garchives@archives.gentoo.org; Mon, 31 Oct 2011 02:48:51 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DA9A21C103; Mon, 31 Oct 2011 02:48:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4E72D21C0DD for ; Mon, 31 Oct 2011 02:48:09 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AAED31B4017 for ; Mon, 31 Oct 2011 02:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 24B2080037 for ; Mon, 31 Oct 2011 02:48:08 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <96d11ac266c595c159fb4b39da0f8d59312b864a.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: scripts/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: scripts/gen_ebuild.pl X-VCS-Directories: scripts/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 96d11ac266c595c159fb4b39da0f8d59312b864a Date: Mon, 31 Oct 2011 02:48:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 5a19603a-9022-4070-ab7d-33c38de2e2e1 X-Archives-Hash: 41abdcb69ae0403dd82fc219bbbff272 commit: 96d11ac266c595c159fb4b39da0f8d59312b864a Author: Kent Fredric gmail com> AuthorDate: Mon Oct 31 02:43:45 2011 +0000 Commit: Kent Fredric gmail com> CommitDate: Mon Oct 31 02:45:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/perl-overlay.= git;a=3Dcommit;h=3D96d11ac2 generator script now producing full stubs --- scripts/gen_ebuild.pl | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/gen_ebuild.pl b/scripts/gen_ebuild.pl index 4f09d25..d068a0b 100755 --- a/scripts/gen_ebuild.pl +++ b/scripts/gen_ebuild.pl @@ -101,7 +101,7 @@ $fh->say("MODULE_VERSION=3D" . $release_info->{versio= n}); $fh->say('inherit perl-module'); $fh->say(''); =20 -$fh->say('DESCRIPTION=3D"' . quotemeta( $release_info->{abstract} ) . '"= '); +$fh->say('DESCRIPTION=3D\'' . $release_info->{abstract} . '\''); =20 my $lics =3D []; my $licmap =3D { @@ -171,8 +171,8 @@ if ( $handler2->has_tdeps ) { push @{ $depends }, 'test? ( $(perl_meta_test) )'; } =20 -$fh->say("DEPENDS=3D\"\n" . ( join qq{\n}, map { "\t$_" } @{$depends} )= . "\n\""); -$fh->say("RDEPENDS=3D\"\n" . ( join qq{\n}, map { "\t$_" } @{$rdepends}= ) . "\n\""); +$fh->say("DEPEND=3D\"\n" . ( join qq{\n}, map { "\t$_" } @{$depends} ) = . "\n\""); +$fh->say("RDEPEND=3D\"\n" . ( join qq{\n}, map { "\t$_" } @{$rdepends} = ) . "\n\""); $fh->say("SRC_TEST=3D\"do\""); =20 #say pp( \%modules,);# { pretty =3D> 1 } );