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/URI/
Date: Tue, 26 Apr 2016 20:03:44
Message-Id: 1461700974.061ef413875777e95f71167f0a457dee5bbd9d8f.dilfridge@gentoo
1 commit: 061ef413875777e95f71167f0a457dee5bbd9d8f
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 25 11:08:29 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=061ef413
7
8 dev-perl/URI: Bump to version 1.710.0
9
10 - EAPI6
11 - Re-enable tests because there is no evidence that network IO is being done
12 anymore. Please file bugs with specific details of which tests fail and how
13 if there are any bugs on this, so we can mask out *only* failing tests.
14
15 Upstream:
16 - Better error handling when loading URI subclasses
17 - Construction time made faster w/ no redundant loading of known missing plugins.
18
19 Package-Manager: portage-2.2.28
20 RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
21
22 dev-perl/URI/Manifest | 1 +
23 dev-perl/URI/URI-1.710.0.ebuild | 29 +++++++++++++++++++++++++++++
24 dev-perl/URI/metadata.xml | 1 +
25 3 files changed, 31 insertions(+)
26
27 diff --git a/dev-perl/URI/Manifest b/dev-perl/URI/Manifest
28 index ce3f800..67631d3 100644
29 --- a/dev-perl/URI/Manifest
30 +++ b/dev-perl/URI/Manifest
31 @@ -1,3 +1,4 @@
32 DIST URI-1.60.tar.gz 81196 SHA256 1f92d3dc64acb8845e9917c945e22b9a5275aeb9ff924eb7873c3b7a5c0d2377 SHA512 8a4ea901ad16595a76eec85f690369f30b2ff46e8f7d8512fb800113b0f30ede7ea7e7f407174e58b95e7e5423c202c032858883b913a4642a6ee489940a6136 WHIRLPOOL 16d470306d23e029c22ad7eaf7fcdf44178b0ef49ed27f254b104006698e2edfe4636f434a0f7161a1c18eb23b451b38b7df6427a2567b3983fd0bc423dc5f60
33 DIST URI-1.68.tar.gz 99425 SHA256 c840d30f7657bfd4b2acbb311bd764232911cd3dc97e92415fbd0a242185c358 SHA512 1c17d293c633c909a468887b6aadf9f91a8c0477e5e6be7a97d6573ac58e5ad213c67f122a3d3a20238b7f094d69cef5cd4415caafe1844b18f7300942d5d233 WHIRLPOOL 075a626aab99433a0a8e51f5e03c3751ac1a616ad2a08de08bf10d0e0a7d9272cedfeb8d87235c863b11a90217059c8a92a13b84b1fa81d76fa035847453bca6
34 DIST URI-1.69.tar.gz 99836 SHA256 b74b16ea626b6f8061821bb350674c638a98be1fc766eadb24fec6635998b42d SHA512 4e58cd450c58be4c3e0254c8e53bd0b4d3516468efb466c933343efc12191856bfc6c0d5c3de3b523e66d4930c2426f0089d5cd9ece7b4a5b8aff0a9596064cc WHIRLPOOL 331c632a0d4457b07ba03c1fe477065b27bd2abd0c4406f328befb3daca29bee4b1c61fbb34b3a44edb868e941e2957d0c0258384753068d55f15240d44f7d62
35 +DIST URI-1.71.tar.gz 100141 SHA256 9c8eca0d7f39e74bbc14706293e653b699238eeb1a7690cc9c136fb8c2644115 SHA512 db412b75054a4d315eb861060fa4641832c2428b9dfe56bbe35f530c9ba572d4de2061d9782454750293dd5a64f3375830988d8512f410e84a9d599c80458405 WHIRLPOOL 753a5e0ab519236e24ac038cf4b59c8f01ea7648b33df7941809deada06d9bdffccefc07c4ef4bdb0ea37eb3ab9bf3dd04a48d97acafa2cf80368c722f1733f6
36
37 diff --git a/dev-perl/URI/URI-1.710.0.ebuild b/dev-perl/URI/URI-1.710.0.ebuild
38 new file mode 100644
39 index 0000000..6c16236
40 --- /dev/null
41 +++ b/dev-perl/URI/URI-1.710.0.ebuild
42 @@ -0,0 +1,29 @@
43 +# Copyright 1999-2016 Gentoo Foundation
44 +# Distributed under the terms of the GNU General Public License v2
45 +# $Id$
46 +
47 +EAPI=6
48 +
49 +DIST_AUTHOR=ETHER
50 +DIST_VERSION=1.71
51 +inherit perl-module
52 +
53 +DESCRIPTION="Uniform Resource Identifiers (absolute and relative)"
54 +
55 +SLOT="0"
56 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
57 +IUSE="test"
58 +
59 +RDEPEND="
60 + >=virtual/perl-Exporter-5.570.0
61 + >=virtual/perl-MIME-Base64-2
62 + virtual/perl-Scalar-List-Utils
63 + virtual/perl-parent
64 +"
65 +DEPEND="${RDEPEND}
66 + virtual/perl-ExtUtils-MakeMaker
67 + test? (
68 + virtual/perl-File-Temp
69 + >=virtual/perl-Test-Simple-0.960.0
70 + )
71 +"
72
73 diff --git a/dev-perl/URI/metadata.xml b/dev-perl/URI/metadata.xml
74 index b3e2a61..fbd3424 100644
75 --- a/dev-perl/URI/metadata.xml
76 +++ b/dev-perl/URI/metadata.xml
77 @@ -50,6 +50,7 @@
78 <remote-id type="cpan-module">URI::rsync</remote-id>
79 <remote-id type="cpan-module">URI::rtsp</remote-id>
80 <remote-id type="cpan-module">URI::rtspu</remote-id>
81 + <remote-id type="cpan-module">URI::sftp</remote-id>
82 <remote-id type="cpan-module">URI::sip</remote-id>
83 <remote-id type="cpan-module">URI::sips</remote-id>
84 <remote-id type="cpan-module">URI::snews</remote-id>