From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-perl/Test-Class/Manifest | 3 ++ dev-perl/Test-Class/Test-Class-0.390.0-r1.ebuild | 24 ++++++++++++++++ dev-perl/Test-Class/Test-Class-0.410.0.ebuild | 24 ++++++++++++++++ dev-perl/Test-Class/Test-Class-0.480.0.ebuild | 35 ++++++++++++++++++++++++ dev-perl/Test-Class/metadata.xml | 11 ++++++++ 5 files changed, 97 insertions(+) create mode 100644 dev-perl/Test-Class/Manifest create mode 100644 dev-perl/Test-Class/Test-Class-0.390.0-r1.ebuild create mode 100644 dev-perl/Test-Class/Test-Class-0.410.0.ebuild create mode 100644 dev-perl/Test-Class/Test-Class-0.480.0.ebuild create mode 100644 dev-perl/Test-Class/metadata.xml (limited to 'dev-perl/Test-Class') diff --git a/dev-perl/Test-Class/Manifest b/dev-perl/Test-Class/Manifest new file mode 100644 index 000000000000..699a726d0342 --- /dev/null +++ b/dev-perl/Test-Class/Manifest @@ -0,0 +1,3 @@ +DIST Test-Class-0.39.tar.gz 78655 SHA256 d3a7d9b3ac24580524fc52865529457df4f43c0384f12264e884315d97f4bad5 SHA512 0fb2c2b30c17e1f3a8f787f0384eb4d1d08b4fe0a83fdb4a02aa5d030e5ecde36f8a8f9b8c641fb5bf69f015f03c86c610a2303135b98e5880db10a9908cc4fb WHIRLPOOL bb50a31ea06dd08237ecba77deb80d976b2bb32996de50ca42dbee08754c84b9c1eb1fef5a1019330fea31cf5ede043fdb3e963dd5d578f2fa84160a5727070d +DIST Test-Class-0.41.tar.gz 78297 SHA256 97edc01f236e952357e95c0f77cbbc75fa16093ed254f2cace1bde824777d6fe SHA512 c4f4efb19d65d60744eddc8b3c203473dc1b71a8f865fdf1b04a8583f782854e181d8dcece9712fe6381d208faaab6d3e1f37d4f94e0df80eb11eb2c920d738a WHIRLPOOL ad5174b494f9a42dc10fda8771c3a3c6be94754e754f3a2bfdac5337f9f705c9567642d833732ff27278dd9704becbc964b286eb021701407752b7480fa9a337 +DIST Test-Class-0.48.tar.gz 71256 SHA256 2db02f774063fe22e3c259168ac091aa0e77d2f587e005e4a777da63665670d3 SHA512 6d2c90dc221bd7b8019dd0416f86c3aa960ed40fd50e20ca5b28e4cdc3c77646bbd4df04a72811fedd288c8bb3c9393911eb329efe6374eefeeb3fb105462f4c WHIRLPOOL ba09fd09126c39dddc69775be37feaef60530a2e7e6affd712bc1e795582d5edaa875a3a456f1931d4810fdcf827cb7ac6ce4f761d895729ea4551ad2c18e2a1 diff --git a/dev-perl/Test-Class/Test-Class-0.390.0-r1.ebuild b/dev-perl/Test-Class/Test-Class-0.390.0-r1.ebuild new file mode 100644 index 000000000000..64e7270523f4 --- /dev/null +++ b/dev-perl/Test-Class/Test-Class-0.390.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=ADIE +MODULE_VERSION=0.39 +inherit perl-module + +DESCRIPTION="Easily create test classes in an xUnit style" + +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND=">=virtual/perl-Storable-2 + >=virtual/perl-Test-Simple-0.78 + dev-perl/MRO-Compat" +DEPEND="${RDEPEND} + >=dev-perl/Module-Build-0.380.0 + test? ( >=dev-perl/Test-Exception-0.25 )" + +SRC_TEST="do" diff --git a/dev-perl/Test-Class/Test-Class-0.410.0.ebuild b/dev-perl/Test-Class/Test-Class-0.410.0.ebuild new file mode 100644 index 000000000000..278bfab81d11 --- /dev/null +++ b/dev-perl/Test-Class/Test-Class-0.410.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=RJBS +MODULE_VERSION=0.41 +inherit perl-module + +DESCRIPTION="Easily create test classes in an xUnit style" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND=">=virtual/perl-Storable-2 + >=virtual/perl-Test-Simple-0.78 + dev-perl/MRO-Compat" +DEPEND="${RDEPEND} + >=dev-perl/Module-Build-0.420.0 + test? ( >=dev-perl/Test-Exception-0.25 )" + +SRC_TEST="do" diff --git a/dev-perl/Test-Class/Test-Class-0.480.0.ebuild b/dev-perl/Test-Class/Test-Class-0.480.0.ebuild new file mode 100644 index 000000000000..4e5871b2d03d --- /dev/null +++ b/dev-perl/Test-Class/Test-Class-0.480.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=ETHER +MODULE_VERSION=0.48 +inherit perl-module + +DESCRIPTION="Easily create test classes in an xUnit/JUnit style" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND=" + virtual/perl-Carp + virtual/perl-File-Spec + >=dev-perl/MRO-Compat-0.110.0 + dev-perl/Module-Runtime + >=virtual/perl-Storable-2.40.0 + virtual/perl-Test-Simple + dev-perl/Try-Tiny +" +DEPEND="${RDEPEND} + >=dev-perl/Module-Build-0.400.400 + test? ( + virtual/perl-IO + virtual/perl-Test-Simple + >=dev-perl/Test-Exception-0.250.0 + ) +" + +SRC_TEST="do" diff --git a/dev-perl/Test-Class/metadata.xml b/dev-perl/Test-Class/metadata.xml new file mode 100644 index 000000000000..4c1c2edb56e3 --- /dev/null +++ b/dev-perl/Test-Class/metadata.xml @@ -0,0 +1,11 @@ + + + + perl + + Test-Class + Test::Class + Test::Class::Load + Test::Class::MethodInfo + + -- cgit v1.2.3-65-gdbad