diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-02-15 07:38:50 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-02-15 07:38:50 +0000 |
commit | 66e51c1c15fa666a67335b0725a1a6246c88c8a0 (patch) | |
tree | c9edc12aed85164bf029c78e24cf6062a54549a5 /app-portage | |
parent | Version bump. (diff) | |
download | gentoo-2-66e51c1c15fa666a67335b0725a1a6246c88c8a0.tar.gz gentoo-2-66e51c1c15fa666a67335b0725a1a6246c88c8a0.tar.bz2 gentoo-2-66e51c1c15fa666a67335b0725a1a6246c88c8a0.zip |
Bug #269173: fix hangs on build scripts that expect interactivity. Bug #176627: new variable GCPAN_OVERLAY to explicitly select output location of new ebuilds. Also GCPAN_CAT for category of new ebuilds. Confirm bug #178089 fixed in previous 0.16.0 release.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/g-cpan/ChangeLog | 10 | ||||
-rw-r--r-- | app-portage/g-cpan/g-cpan-0.16.1.ebuild | 36 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-portage/g-cpan/ChangeLog b/app-portage/g-cpan/ChangeLog index 5b88fbd4f2f6..845e63911ad4 100644 --- a/app-portage/g-cpan/ChangeLog +++ b/app-portage/g-cpan/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-portage/g-cpan # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.51 2010/02/12 23:00:45 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.52 2010/02/15 07:38:50 robbat2 Exp $ + +*g-cpan-0.16.1 (15 Feb 2010) + + 15 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> +g-cpan-0.16.1.ebuild: + Bug #269173: fix hangs on build scripts that expect interactivity. Bug + #176627: new variable GCPAN_OVERLAY to explicitly select output location + of new ebuilds. Also GCPAN_CAT for category of new ebuilds. Confirm bug + #178089 fixed in previous 0.16.0 release. *g-cpan-0.16.0 (12 Feb 2010) diff --git a/app-portage/g-cpan/g-cpan-0.16.1.ebuild b/app-portage/g-cpan/g-cpan-0.16.1.ebuild new file mode 100644 index 000000000000..1a267e247000 --- /dev/null +++ b/app-portage/g-cpan/g-cpan-0.16.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/g-cpan-0.16.1.ebuild,v 1.1 2010/02/15 07:38:50 robbat2 Exp $ + +EAPI=2 + +inherit perl-module + +DESCRIPTION="g-cpan: generate and install CPAN modules using portage" +HOMEPAGE="http://www.gentoo.org/proj/en/perl/g-cpan.xml" +SRC_URI="mirror://gentoo/${P}.tar.bz2 + http://dev.gentoo.org/~robbat2/${P}.tar.bz2" + +LICENSE="|| ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="dev-lang/perl + >=dev-perl/yaml-0.60 + dev-perl/Shell-EnvImporter + dev-perl/Log-Agent" + +src_install() { + perl-module_src_install + diropts "-m0755" + dodir "/var/tmp/g-cpan" + keepdir "/var/tmp/g-cpan" + dodir "/var/log/g-cpan" + keepdir "/var/log/g-cpan" +} + +pkg_postinst() { + elog "You may wish to adjust the permissions on /var/tmp/g-cpan" + elog "if you have users besides root expecting to use g-cpan." +} |