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/Shell-EnvImporter | |
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/Shell-EnvImporter')
5 files changed, 110 insertions, 0 deletions
diff --git a/dev-perl/Shell-EnvImporter/Manifest b/dev-perl/Shell-EnvImporter/Manifest new file mode 100644 index 000000000000..7a5a8dff6f9d --- /dev/null +++ b/dev-perl/Shell-EnvImporter/Manifest @@ -0,0 +1 @@ +DIST Shell-EnvImporter-1.07.tar.gz 15655 SHA256 db747657fa725968f5fb3b09e763c1fed7bef64b740eba80786906d0db55c909 SHA512 44988bf8a13d6a8d73d4c0a2f40b23506af4cfab979beed4a135df92876697fa7831d51549bd77a46a32598818c6f50ad1742766e2e0295afb2bf09eecbfcd4d WHIRLPOOL 7ccb948b74632b002a7ad5ad171e700bb23c77da3abad3eba4f7a63f273538138dd668a2d8083d34a9363ea565aadc275a9d74e768736e7a60aea94b256d08ef diff --git a/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r1.ebuild b/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r1.ebuild new file mode 100644 index 000000000000..0298c190b9f9 --- /dev/null +++ b/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=DFARALDO +MODULE_VERSION=1.07 +inherit perl-module + +DESCRIPTION="Import environment variable changes from external commands or shell scripts" + +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +DEPEND=">=dev-perl/Class-MethodMaker-2" +RDEPEND="${DEPEND}" + +SRC_TEST=no diff --git a/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r2.ebuild b/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r2.ebuild new file mode 100644 index 000000000000..c5159ac71e4a --- /dev/null +++ b/dev-perl/Shell-EnvImporter/Shell-EnvImporter-1.70.0-r2.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=DFARALDO +MODULE_VERSION=1.07 +inherit perl-module + +DESCRIPTION="Import environment variable changes from external commands or shell scripts" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +DEPEND=">=dev-perl/Class-MethodMaker-2" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-perl520.patch" ) + +SRC_TEST=no diff --git a/dev-perl/Shell-EnvImporter/files/Shell-EnvImporter-1.70.0-perl520.patch b/dev-perl/Shell-EnvImporter/files/Shell-EnvImporter-1.70.0-perl520.patch new file mode 100644 index 000000000000..4ccf44166f39 --- /dev/null +++ b/dev-perl/Shell-EnvImporter/files/Shell-EnvImporter-1.70.0-perl520.patch @@ -0,0 +1,48 @@ +Avoid warnings on perl 5.20. + +"Possible precedence issue with control flow operator + at Shell/EnvImporter/Result.pm line 88" + +This one is due to the fact that "return ..." binds more strongly than +"and", so the function would simply "return $self->shell_status == 0", +disregarding $self->command_status and $self->env_status. +Changing "and" to "&&" solves this issue. + +"Use of uninitialized value $_[1] in read at IO/Handle.pm" + +This is because we don't initialize the hash "%buf" into which we read. +Initializing the relevant keys with the empty string solves this issue. + +References: +* https://rt.cpan.org/Public/Bug/Display.html?id=86171 +* https://github.com/gentoo-perl/g-cpan/issues/6 +* https://github.com/gentoo-perl/g-cpan/issues/6 + +2014-10-21 Martin von Gagern + +diff -ur Shell-EnvImporter-1.07/lib/Shell/EnvImporter/Result.pm Shell-EnvImporter/lib/Shell/EnvImporter/Result.pm +--- Shell-EnvImporter-1.07/lib/Shell/EnvImporter/Result.pm 2006-09-01 03:53:30.000000000 +0200 ++++ Shell-EnvImporter/lib/Shell/EnvImporter/Result.pm 2014-10-21 09:34:00.814867969 +0200 +@@ -84,8 +84,8 @@ + ############### + my $self = shift; + +- return $self->shell_status == 0 and +- $self->command_status == 0 and ++ return $self->shell_status == 0 && ++ $self->command_status == 0 && + $self->env_status == 0; + + } +diff -ur Shell-EnvImporter-1.07/lib/Shell/EnvImporter/Shell.pm Shell-EnvImporter/lib/Shell/EnvImporter/Shell.pm +--- Shell-EnvImporter-1.07/lib/Shell/EnvImporter/Shell.pm 2009-07-03 07:00:30.000000000 +0200 ++++ Shell-EnvImporter/lib/Shell/EnvImporter/Shell.pm 2014-10-21 09:35:08.010881726 +0200 +@@ -183,7 +183,7 @@ + my $s = IO::Select->new($fh{'STDOUT'}, $fh{'STDERR'}); + + my $t0 = time; +- my %buf; ++ my %buf = (STDOUT => '', STDERR => ''); + while (1) { + + my @ready = $s->can_read(); diff --git a/dev-perl/Shell-EnvImporter/metadata.xml b/dev-perl/Shell-EnvImporter/metadata.xml new file mode 100644 index 000000000000..27efb24cec58 --- /dev/null +++ b/dev-perl/Shell-EnvImporter/metadata.xml @@ -0,0 +1,19 @@ +<?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">Shell-EnvImporter</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Change</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Result</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::bash</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::csh</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::ksh</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::perl</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::sh</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::tcsh</remote-id> + <remote-id type="cpan-module">Shell::EnvImporter::Shell::zsh</remote-id> + </upstream> +</pkgmetadata> |