public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/URI/
Date: Tue, 26 Apr 2016 20:03:10 +0000 (UTC)	[thread overview]
Message-ID: <1461700974.061ef413875777e95f71167f0a457dee5bbd9d8f.dilfridge@gentoo> (raw)

commit:     061ef413875777e95f71167f0a457dee5bbd9d8f
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Mon Apr 25 11:08:29 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Apr 26 20:02:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=061ef413

dev-perl/URI: Bump to version 1.710.0

- EAPI6
- Re-enable tests because there is no evidence that network IO is being done
  anymore. Please file bugs with specific details of which tests fail and how
  if there are any bugs on this, so we can mask out *only* failing tests.

Upstream:
- Better error handling when loading URI subclasses
- Construction time made faster w/ no redundant loading of known missing plugins.

Package-Manager: portage-2.2.28
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"

 dev-perl/URI/Manifest           |  1 +
 dev-perl/URI/URI-1.710.0.ebuild | 29 +++++++++++++++++++++++++++++
 dev-perl/URI/metadata.xml       |  1 +
 3 files changed, 31 insertions(+)

diff --git a/dev-perl/URI/Manifest b/dev-perl/URI/Manifest
index ce3f800..67631d3 100644
--- a/dev-perl/URI/Manifest
+++ b/dev-perl/URI/Manifest
@@ -1,3 +1,4 @@
 DIST URI-1.60.tar.gz 81196 SHA256 1f92d3dc64acb8845e9917c945e22b9a5275aeb9ff924eb7873c3b7a5c0d2377 SHA512 8a4ea901ad16595a76eec85f690369f30b2ff46e8f7d8512fb800113b0f30ede7ea7e7f407174e58b95e7e5423c202c032858883b913a4642a6ee489940a6136 WHIRLPOOL 16d470306d23e029c22ad7eaf7fcdf44178b0ef49ed27f254b104006698e2edfe4636f434a0f7161a1c18eb23b451b38b7df6427a2567b3983fd0bc423dc5f60
 DIST URI-1.68.tar.gz 99425 SHA256 c840d30f7657bfd4b2acbb311bd764232911cd3dc97e92415fbd0a242185c358 SHA512 1c17d293c633c909a468887b6aadf9f91a8c0477e5e6be7a97d6573ac58e5ad213c67f122a3d3a20238b7f094d69cef5cd4415caafe1844b18f7300942d5d233 WHIRLPOOL 075a626aab99433a0a8e51f5e03c3751ac1a616ad2a08de08bf10d0e0a7d9272cedfeb8d87235c863b11a90217059c8a92a13b84b1fa81d76fa035847453bca6
 DIST URI-1.69.tar.gz 99836 SHA256 b74b16ea626b6f8061821bb350674c638a98be1fc766eadb24fec6635998b42d SHA512 4e58cd450c58be4c3e0254c8e53bd0b4d3516468efb466c933343efc12191856bfc6c0d5c3de3b523e66d4930c2426f0089d5cd9ece7b4a5b8aff0a9596064cc WHIRLPOOL 331c632a0d4457b07ba03c1fe477065b27bd2abd0c4406f328befb3daca29bee4b1c61fbb34b3a44edb868e941e2957d0c0258384753068d55f15240d44f7d62
+DIST URI-1.71.tar.gz 100141 SHA256 9c8eca0d7f39e74bbc14706293e653b699238eeb1a7690cc9c136fb8c2644115 SHA512 db412b75054a4d315eb861060fa4641832c2428b9dfe56bbe35f530c9ba572d4de2061d9782454750293dd5a64f3375830988d8512f410e84a9d599c80458405 WHIRLPOOL 753a5e0ab519236e24ac038cf4b59c8f01ea7648b33df7941809deada06d9bdffccefc07c4ef4bdb0ea37eb3ab9bf3dd04a48d97acafa2cf80368c722f1733f6

diff --git a/dev-perl/URI/URI-1.710.0.ebuild b/dev-perl/URI/URI-1.710.0.ebuild
new file mode 100644
index 0000000..6c16236
--- /dev/null
+++ b/dev-perl/URI/URI-1.710.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=ETHER
+DIST_VERSION=1.71
+inherit perl-module
+
+DESCRIPTION="Uniform Resource Identifiers (absolute and relative)"
+
+SLOT="0"
+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"
+IUSE="test"
+
+RDEPEND="
+	>=virtual/perl-Exporter-5.570.0
+	>=virtual/perl-MIME-Base64-2
+	virtual/perl-Scalar-List-Utils
+	virtual/perl-parent
+"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	test? (
+		virtual/perl-File-Temp
+		>=virtual/perl-Test-Simple-0.960.0
+	)
+"

diff --git a/dev-perl/URI/metadata.xml b/dev-perl/URI/metadata.xml
index b3e2a61..fbd3424 100644
--- a/dev-perl/URI/metadata.xml
+++ b/dev-perl/URI/metadata.xml
@@ -50,6 +50,7 @@
     <remote-id type="cpan-module">URI::rsync</remote-id>
     <remote-id type="cpan-module">URI::rtsp</remote-id>
     <remote-id type="cpan-module">URI::rtspu</remote-id>
+    <remote-id type="cpan-module">URI::sftp</remote-id>
     <remote-id type="cpan-module">URI::sip</remote-id>
     <remote-id type="cpan-module">URI::sips</remote-id>
     <remote-id type="cpan-module">URI::snews</remote-id>


             reply	other threads:[~2016-04-26 20:03 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-26 20:03 Andreas Hüttel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-05 12:15 [gentoo-commits] repo/gentoo:master commit in: dev-perl/URI/ WANG Xuerui
2024-12-05 18:31 Sam James
2024-12-02 13:15 Jakov Smolić
2024-11-27  8:08 Sam James
2024-11-10 22:14 James Le Cuirot
2024-10-25  6:13 Arthur Zamarin
2024-10-23 21:01 Arthur Zamarin
2024-10-18 15:40 Arthur Zamarin
2024-10-18 15:40 Arthur Zamarin
2024-10-17 15:29 Jakov Smolić
2024-10-17  6:57 Arthur Zamarin
2024-10-17  4:48 Sam James
2024-10-17  4:48 Sam James
2024-10-17  4:48 Sam James
2024-10-17  3:53 Sam James
2024-07-10  4:21 Ionen Wolkens
2024-06-14  1:50 Sam James
2024-06-09 20:41 Sam James
2024-05-02  2:29 Andreas K. Hüttel
2023-12-05 19:48 Arthur Zamarin
2023-09-28  6:17 Sam James
2023-09-28  5:12 Sam James
2023-09-27  7:21 Sam James
2023-09-27  5:23 Sam James
2023-09-27  4:58 Sam James
2023-09-27  4:49 Sam James
2023-08-26  5:43 Sam James
2023-08-19  7:53 Arthur Zamarin
2023-08-19  7:42 Arthur Zamarin
2023-08-19  7:42 Arthur Zamarin
2023-08-19  6:37 Sam James
2023-08-19  6:19 Sam James
2023-08-19  6:09 Sam James
2023-08-05 12:24 Arthur Zamarin
2023-07-04  5:22 WANG Xuerui
2023-06-24  7:54 Arthur Zamarin
2023-06-24  6:43 Sam James
2023-06-24  4:30 Sam James
2023-06-24  4:30 Sam James
2023-06-24  4:30 Sam James
2023-06-24  4:30 Sam James
2023-06-24  4:30 Sam James
2023-06-21 17:02 Sam James
2023-06-20  5:02 Sam James
2023-06-18  1:07 Sam James
2022-12-18 19:59 Arthur Zamarin
2022-12-18 11:44 Sam James
2022-12-18 11:44 Sam James
2022-07-09  6:01 Sam James
2022-05-09  5:29 WANG Xuerui
2022-02-22  9:30 Arthur Zamarin
2022-02-19 12:31 Arthur Zamarin
2022-02-19 12:12 Arthur Zamarin
2022-02-19 10:05 Arthur Zamarin
2022-02-19  8:29 Arthur Zamarin
2022-02-19  7:36 Arthur Zamarin
2022-02-19  7:00 Arthur Zamarin
2021-12-11  6:20 Andreas K. Hüttel
2021-12-11  6:20 Andreas K. Hüttel
2021-12-09 21:59 Sam James
2021-12-06  0:14 Sam James
2021-12-05 22:30 Sam James
2021-12-05  5:09 Sam James
2021-12-05  4:43 Sam James
2021-12-05  4:40 Sam James
2021-12-05  4:37 Sam James
2021-12-05  3:31 Sam James
2021-10-02 13:10 Andreas K. Hüttel
2021-10-02 13:10 Andreas K. Hüttel
2020-12-27 16:19 Fabian Groffen
2020-07-24 18:58 Fabian Groffen
2020-07-18  4:43 Kent Fredric
2019-05-04 19:08 Andreas K. Hüttel
2019-01-17 20:39 Mikle Kolyada
2018-12-22 10:37 Mikle Kolyada
2018-12-08 15:22 Mikle Kolyada
2018-12-08 12:35 Mikle Kolyada
2018-10-19 18:15 Fabian Groffen
2018-10-04  9:17 Fabian Groffen
2018-09-26 19:05 Markus Meier
2018-08-25 18:08 Sergei Trofimovich
2018-08-22 21:38 Mart Raudsepp
2018-08-21  0:05 Sergei Trofimovich
2018-08-20  4:13 Matt Turner
2018-08-20  2:45 Mikle Kolyada
2018-08-19 18:45 Matt Turner
2018-08-19 18:39 Matt Turner
2018-08-18 22:15 Thomas Deutschmann
2018-06-08  9:21 Mikle Kolyada
2018-06-07 13:32 Mikle Kolyada
2018-04-28 20:58 Patrice Clement
2018-03-26  4:27 Matt Turner
2018-03-19  6:39 Kent Fredric
2017-03-11 23:44 Michael Weber
2017-01-29 16:59 Fabian Groffen
2016-07-10 13:15 Andreas Hüttel
2016-07-10 13:14 Andreas Hüttel
2016-06-21 18:37 Markus Meier
2016-06-20 10:43 Tobias Klausmann
2016-06-19 23:44 Andreas Hüttel
2015-09-09 19:34 Andreas Hüttel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1461700974.061ef413875777e95f71167f0a457dee5bbd9d8f.dilfridge@gentoo \
    --to=dilfridge@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox