diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-perl/PerlIO-gzip | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-perl/PerlIO-gzip')
-rw-r--r-- | dev-perl/PerlIO-gzip/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/PerlIO-gzip/PerlIO-gzip-0.180.0-r1.ebuild | 22 | ||||
-rw-r--r-- | dev-perl/PerlIO-gzip/files/perl-5.20-build.patch | 12 | ||||
-rw-r--r-- | dev-perl/PerlIO-gzip/metadata.xml | 9 |
4 files changed, 44 insertions, 0 deletions
diff --git a/dev-perl/PerlIO-gzip/Manifest b/dev-perl/PerlIO-gzip/Manifest new file mode 100644 index 000000000000..03d1d37226c9 --- /dev/null +++ b/dev-perl/PerlIO-gzip/Manifest @@ -0,0 +1 @@ +DIST PerlIO-gzip-0.18.tar.gz 19179 SHA256 67b20e7e4dcc4230a44500dbbc63c6a267b09fdf4d4465275cc98a3f9f31bcf3 SHA512 b2f8cc1f00654ae40625cb8dfd1d529c48fad1578290a307a1dd51b4b57737d6476bdf7a122501984d047b3d01f5f0d49ab3bdd6f2e45f8435fce86eae0aa8f8 WHIRLPOOL 031219d2dbea6fa7e8e6a7b1054f4d8c937b652ff5eaa85f27246b8cd68dfb4683b4a5fa2c48d40de2d4cd789617cbf2a9391de10e41bba52ff9b939078146e4 diff --git a/dev-perl/PerlIO-gzip/PerlIO-gzip-0.180.0-r1.ebuild b/dev-perl/PerlIO-gzip/PerlIO-gzip-0.180.0-r1.ebuild new file mode 100644 index 000000000000..4e33d4e8ffac --- /dev/null +++ b/dev-perl/PerlIO-gzip/PerlIO-gzip-0.180.0-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=NWCLARK +MODULE_VERSION=0.18 +inherit perl-module + +DESCRIPTION="PerlIO::Gzip - PerlIO layer to gzip/gunzip" + +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +IUSE="" + +DEPEND="sys-libs/zlib" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/perl-5.20-build.patch" ) + +SRC_TEST="do" diff --git a/dev-perl/PerlIO-gzip/files/perl-5.20-build.patch b/dev-perl/PerlIO-gzip/files/perl-5.20-build.patch new file mode 100644 index 000000000000..8c325d659a17 --- /dev/null +++ b/dev-perl/PerlIO-gzip/files/perl-5.20-build.patch @@ -0,0 +1,12 @@ +--- a/Makefile.PL 2006-10-01 21:28:25.000000000 +0000 ++++ b/Makefile.PL 2014-01-23 15:40:56.784222851 +0000 +@@ -4,7 +4,8 @@ + use ExtUtils::MakeMaker; + use Config; + +-unless ($Config{useperlio} eq 'define' and $Config{usesfio} eq 'false') { ++unless ($Config{useperlio} eq 'define' and ++ (defined($Config{usesfio}) ? $Config{usesfio} : 'false') eq 'false') { + die <<BARF; + You need perl 5.8.0 or later, configured to use perlio (and not to use sfio) + BARF diff --git a/dev-perl/PerlIO-gzip/metadata.xml b/dev-perl/PerlIO-gzip/metadata.xml new file mode 100644 index 000000000000..29670eebc465 --- /dev/null +++ b/dev-perl/PerlIO-gzip/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>perl</herd> + <upstream> + <remote-id type="cpan">PerlIO-gzip</remote-id> + <remote-id type="cpan-module">PerlIO::gzip</remote-id> + </upstream> +</pkgmetadata> |