Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Try-Tiny/
Date: Tue, 26 Apr 2016 20:03:17
Message-Id: 1461700974.f71051e0685f783eaf6089fe408ef5dbaf233afd.dilfridge@gentoo
1 commit: f71051e0685f783eaf6089fe408ef5dbaf233afd
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 25 06:16:23 2016 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 20:02:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71051e0
7
8 dev-perl/Try-Tiny: Bump to version 0.240.0
9
10 - EAPI6
11 - Fix DESCRIPTION interpolating "$@"
12 - Add optional deps with USE="!minimal"
13
14 Upstream:
15 - Allow using Sub::Util instead of Sub::Name where its available.
16
17 Package-Manager: portage-2.2.28
18 RepoMan-Options: --ignore-arches --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
19
20 dev-perl/Try-Tiny/Manifest | 1 +
21 dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild | 36 +++++++++++++++++++++++++++++++
22 2 files changed, 37 insertions(+)
23
24 diff --git a/dev-perl/Try-Tiny/Manifest b/dev-perl/Try-Tiny/Manifest
25 index 5919f4a..f249e5c 100644
26 --- a/dev-perl/Try-Tiny/Manifest
27 +++ b/dev-perl/Try-Tiny/Manifest
28 @@ -1 +1,2 @@
29 DIST Try-Tiny-0.22.tar.gz 18311 SHA256 60fba46f4693d33d54539104f9001df008dabb400b6837e9605c39a6ee6a1b19 SHA512 4e39b4da16480bb2b93c05e8e016e9d1b5a68f29c527b19bbf9333442ca708e88dd2720a5812d141a152ae088ed1fcb1ce179018c2d0fe105545256396b2ccc4 WHIRLPOOL 1d260b96ef061e7a8ae605e5168bbac807a93387bcb3e085e2b305b8196fedebbebdaa3ac190edbd4c3772b8fd1e46219e6718ee849b8ae0b1d6e0360a88c82d
30 +DIST Try-Tiny-0.24.tar.gz 30666 SHA256 9b7a1af24c0256973d175369ebbdc25ec01e2452a97f2d3ab61481c826f38d81 SHA512 403ce12b7cda7356b1a86d7661ed406ce4e526f416033fa5eb04b83bbeb7f198b4660342383232affe2ef9a8e0dbd237a6e6c0f290c277c8abc319c949d3c959 WHIRLPOOL 2aece95a840369d710a1e7249bdf76a1850d7974ccf811f01e399bd68e4927be9343baa38b4c81367c895baaf618c43c30e1e4662412ac27e71bd4b5199eb625
31
32 diff --git a/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild b/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild
33 new file mode 100644
34 index 0000000..eb0a015
35 --- /dev/null
36 +++ b/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild
37 @@ -0,0 +1,36 @@
38 +# Copyright 1999-2016 Gentoo Foundation
39 +# Distributed under the terms of the GNU General Public License v2
40 +# $Id$
41 +
42 +EAPI=6
43 +
44 +DIST_AUTHOR=ETHER
45 +DIST_VERSION=0.24
46 +inherit perl-module
47 +
48 +DESCRIPTION="Minimal try/catch with proper localization of \$@"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
53 +IUSE="test minimal"
54 +
55 +RDEPEND="
56 + !minimal? (
57 + || ( >=virtual/perl-Scalar-List-Utils-1.400.0 dev-perl/Sub-Name )
58 + )
59 + virtual/perl-Carp
60 + >=virtual/perl-Exporter-5.570.0
61 +"
62 +DEPEND="${RDEPEND}
63 + virtual/perl-ExtUtils-MakeMaker
64 + test? (
65 + !minimal? (
66 + >=virtual/perl-CPAN-Meta-2.120.900
67 + >=dev-perl/Capture-Tiny-0.120.0
68 + )
69 + virtual/perl-File-Spec
70 + virtual/perl-Test-Simple
71 + virtual/perl-if
72 + )
73 +"