From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2F4A259CB1 for ; Mon, 11 Apr 2016 22:54:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F269A21C00D; Mon, 11 Apr 2016 22:54:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A43E21C00B for ; Mon, 11 Apr 2016 22:54:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82A0A340928 for ; Mon, 11 Apr 2016 22:54:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72565853 for ; Mon, 11 Apr 2016 22:54:23 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1460415250.0b08b57171c81225bf7217354457b5ffa02ba459.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Shell/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Shell/Manifest dev-perl/Shell/Shell-0.730.0.ebuild X-VCS-Directories: dev-perl/Shell/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 0b08b57171c81225bf7217354457b5ffa02ba459 X-VCS-Branch: master Date: Mon, 11 Apr 2016 22:54:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c4ad138f-6820-4ca2-8b3e-8d3638c6825c X-Archives-Hash: 2f8c20535c4ae39ab9fbd9a26c017dbf commit: 0b08b57171c81225bf7217354457b5ffa02ba459 Author: Kent Fredric gmail com> AuthorDate: Sun Apr 10 10:02:36 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon Apr 11 22:54:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b08b571 dev-perl/Shell: Bump to version 0.730.0 - EAPI6 - Cleanup tests and provide missing deps Upstream: - Minor packaging and documentation fixes Package-Manager: portage-2.2.28 dev-perl/Shell/Manifest | 1 + dev-perl/Shell/Shell-0.730.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-perl/Shell/Manifest b/dev-perl/Shell/Manifest index 5ee1a4c..2dc7ce4 100644 --- a/dev-perl/Shell/Manifest +++ b/dev-perl/Shell/Manifest @@ -1 +1,2 @@ DIST Shell-0.72.tar.gz 5653 SHA256 c1a54aef7f07adf2d3d3ff2a22cf276ff4d1c5b063dc160672878e29ac7de14c SHA512 9ad0df35304feacf5d3fff2ff652805eac5eeb424db9b13bc4e710d618721c6cfbb89b9dc825be5c01fc4bbf5684b5dd0d179c181bcf1849343a0f816a34a88c WHIRLPOOL 25e2408513cc15de4d9dc4475a6565737da7c743d656e3944e5d4f3f1e5745ab40e65f8c29f5cad0750ed132ea5741dc6c38ec05c0ed2cdbc06fb37cc2f4de05 +DIST Shell-0.73.tar.gz 6186 SHA256 f7dbebf65261ed0e5abd0f57052b64d665a1a830bab4c8bbc220f235bd39caf5 SHA512 0845425a30bf7a569e36445cd4f9cf2a5f5d18bd727e2c1eae2ac9b943fb4e6d111ece8dc1d40fea6b993bc1a73490b06aa539f38b4f8e473778e40d2af7fbd8 WHIRLPOOL 226719d387a6e999b9eeb8aa568d3402f270dc4edd1184d50e5d40a078ffdeacba804a4ad6ffdc6751e78f15df18f9d299f75a6534508ffdb9d8077ed123da7e diff --git a/dev-perl/Shell/Shell-0.730.0.ebuild b/dev-perl/Shell/Shell-0.730.0.ebuild new file mode 100644 index 0000000..a51a1fb --- /dev/null +++ b/dev-perl/Shell/Shell-0.730.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=FERREIRA +DIST_VERSION=0.73 +inherit perl-module + +DESCRIPTION="Run shell commands transparently within perl" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="virtual/perl-File-Spec" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( virtual/perl-Test-Simple ) +" + +src_test() { + perl_rm_files "t/99_pod.t" + perl-module_src_test +}