diff options
author | Torsten Veller <tove@gentoo.org> | 2010-02-06 13:09:50 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2010-02-06 13:09:50 +0000 |
commit | 22a7114740b831cc7c90b0bbccae81e8b62c5e5a (patch) | |
tree | 7eef8259c7bbef545b915b0f2a14b70acc68f945 /dev-perl/Tie-Array-Sorted | |
parent | Fix building with -Wl,--as-needed wrt #247761 by Kacper Kowalik. (diff) | |
download | gentoo-2-22a7114740b831cc7c90b0bbccae81e8b62c5e5a.tar.gz gentoo-2-22a7114740b831cc7c90b0bbccae81e8b62c5e5a.tar.bz2 gentoo-2-22a7114740b831cc7c90b0bbccae81e8b62c5e5a.zip |
Fix LICENSE (#301969). Maintenance
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/Tie-Array-Sorted')
-rw-r--r-- | dev-perl/Tie-Array-Sorted/ChangeLog | 8 | ||||
-rw-r--r-- | dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild | 24 |
2 files changed, 19 insertions, 13 deletions
diff --git a/dev-perl/Tie-Array-Sorted/ChangeLog b/dev-perl/Tie-Array-Sorted/ChangeLog index 973ff447e2be..1a9a1c871645 100644 --- a/dev-perl/Tie-Array-Sorted/ChangeLog +++ b/dev-perl/Tie-Array-Sorted/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-perl/Tie-Array-Sorted -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Array-Sorted/ChangeLog,v 1.18 2009/05/02 09:29:46 tove Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Array-Sorted/ChangeLog,v 1.19 2010/02/06 13:09:50 tove Exp $ + + 06 Feb 2010; Torsten Veller <tove@gentoo.org> + Tie-Array-Sorted-1.4.1.ebuild: + Fix LICENSE (#301969). Maintenance 02 May 2009; Torsten Veller <tove@gentoo.org> -Tie-Array-Sorted-1.3.ebuild: diff --git a/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild b/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild index a4f7f536ca16..4405a4685c78 100644 --- a/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild +++ b/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild @@ -1,22 +1,24 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild,v 1.4 2007/03/05 12:35:24 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Array-Sorted/Tie-Array-Sorted-1.4.1.ebuild,v 1.5 2010/02/06 13:09:50 tove Exp $ -inherit perl-module versionator +EAPI=2 -MY_PV="$(delete_version_separator 2)" -MY_P="${PN}-${MY_PV}" +inherit versionator +MY_P=${PN}-$(delete_version_separator 2) S=${WORKDIR}/${MY_P} +MODULE_AUTHOR=TMTM +inherit perl-module DESCRIPTION="An array which is kept sorted" -HOMEPAGE="http://search.cpan.org/~tmtm/" -SRC_URI="mirror://cpan/authors/id/T/TM/TMTM/${MY_P}.tar.gz" -LICENSE="Artistic" +LICENSE="|| ( GPL-2 GPL-3 )" # GPL-2+ SLOT="0" KEYWORDS="amd64 ia64 ~ppc sparc x86" -IUSE="" +IUSE="test" -SRC_TEST="do" +RDEPEND="" +DEPEND="test? ( dev-perl/Test-Pod + dev-perl/Test-Pod-Coverage )" -DEPEND="dev-lang/perl" +SRC_TEST="do" |