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/GSSAPI | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz |
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/GSSAPI')
-rw-r--r-- | dev-perl/GSSAPI/GSSAPI-0.280.0-r1.ebuild | 21 | ||||
-rw-r--r-- | dev-perl/GSSAPI/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/GSSAPI/files/0.26-libs-parse.patch | 11 | ||||
-rw-r--r-- | dev-perl/GSSAPI/metadata.xml | 12 |
4 files changed, 45 insertions, 0 deletions
diff --git a/dev-perl/GSSAPI/GSSAPI-0.280.0-r1.ebuild b/dev-perl/GSSAPI/GSSAPI-0.280.0-r1.ebuild new file mode 100644 index 00000000000..541d911a248 --- /dev/null +++ b/dev-perl/GSSAPI/GSSAPI-0.280.0-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=AGROLMS +MODULE_VERSION=0.28 +inherit perl-module + +DESCRIPTION="GSSAPI - Perl extension providing access to the GSSAPIv2 library" + +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" +IUSE="test" + +RDEPEND="virtual/krb5" +DEPEND="${RDEPEND} + test? ( virtual/perl-Test-Simple )" + +SRC_TEST="do" diff --git a/dev-perl/GSSAPI/Manifest b/dev-perl/GSSAPI/Manifest new file mode 100644 index 00000000000..b734412d562 --- /dev/null +++ b/dev-perl/GSSAPI/Manifest @@ -0,0 +1 @@ +DIST GSSAPI-0.28.tar.gz 67915 SHA256 7d8f2c7b61762fb4ec72d2ec281290f2f87f9c7d298273da4525432a65e770d6 SHA512 4bae4729c216da099f6f0479ef34874fa62c1afc57bf56860e1ce082e9e6a902ec072f9e976ab2f1914df1bbad6b6689af04a9867b3ca1a9f11d0287e58aa204 WHIRLPOOL 12e4a00477236f1b9826818587285183dde10ab4975b678897a402044d7c350836522e43de27a553db28257c418f41c9d6fd8b8fbe79ff3c183cca2d39b3db74 diff --git a/dev-perl/GSSAPI/files/0.26-libs-parse.patch b/dev-perl/GSSAPI/files/0.26-libs-parse.patch new file mode 100644 index 00000000000..fa72cedaf04 --- /dev/null +++ b/dev-perl/GSSAPI/files/0.26-libs-parse.patch @@ -0,0 +1,11 @@ +--- GSSAPI-0.26/Makefile.PL ++++ GSSAPI-0.26/Makefile.PL +@@ -267,7 +267,7 @@ + my ( $confstringstring ) = @_; + my (@libs, @others); + foreach ( split ' ', $confstringstring ) { +- if ( m/(-(Wl,-R|[LlR])[^ ]*)/) { ++ if ( m/(^-(Wl,-R|[LlR])[^ ]*)/) { + push @libs, $1 + } else { + push @others, $_; diff --git a/dev-perl/GSSAPI/metadata.xml b/dev-perl/GSSAPI/metadata.xml new file mode 100644 index 00000000000..7d1e3403059 --- /dev/null +++ b/dev-perl/GSSAPI/metadata.xml @@ -0,0 +1,12 @@ +<?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">GSSAPI</remote-id> + <remote-id type="cpan-module">GSSAPI</remote-id> + <remote-id type="cpan-module">GSSAPI::OID</remote-id> + <remote-id type="cpan-module">GSSAPI::OID::Set</remote-id> + <remote-id type="cpan-module">GSSAPI::Status</remote-id> + </upstream> +</pkgmetadata> |