public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Kent Fredric" <kentnl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Params-Validate/
Date: Tue, 30 May 2017 00:19:46 +0000 (UTC)	[thread overview]
Message-ID: <1496103566.f1fa6fd528077f00ab72d605dd1d6e882efd0d8e.kentnl@gentoo> (raw)

commit:     f1fa6fd528077f00ab72d605dd1d6e882efd0d8e
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue May 30 00:19:26 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Tue May 30 00:19:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1fa6fd5

dev-perl/Params-Validate: Bump to version 1.280.0

Upstream:
- Move author/release tests from install-side test paths
- List missing but required parameters in error message

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-perl/Params-Validate/Manifest                  |  1 +
 .../Params-Validate/Params-Validate-1.280.0.ebuild | 35 ++++++++++++++++++++++
 dev-perl/Params-Validate/metadata.xml              |  1 -
 3 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Params-Validate/Manifest b/dev-perl/Params-Validate/Manifest
index 60a780ac03f..ed1bf198475 100644
--- a/dev-perl/Params-Validate/Manifest
+++ b/dev-perl/Params-Validate/Manifest
@@ -1,3 +1,4 @@
 DIST Params-Validate-1.07.tar.gz 100822 SHA256 c1df34746723480336b5357a5007afa219ed2c8330d462c6c854f6ac3a17bf96 SHA512 fc49cdba84a1d9cc3d526fd86328bf724adbfee7c161c4bcc2dac84b6a9a4369f50f216be23606e3bef46ba58aa476be38f93075a068941245ca4ab6393d75d6 WHIRLPOOL 64b488969d36cb81ed10fbff7e7a1d4d4af71ce56a347a05f74b598cf854bf316bda5ead1ce14c31d3a0cfa1b87a0517ba796c593632c466bef4dbe55d49f34c
 DIST Params-Validate-1.22.tar.gz 125866 SHA256 0df8bc8543a75b25ea355a12cf2ef0bb9c85c6083988839adb0e5f98f8bf33b5 SHA512 48451f2dcae1432c0b3111668609214ef080281d4d480501e04798a249c938fc69f45a81d2d77d653be86305aa4176fc854487e37288d9f271b1723a072fd6ba WHIRLPOOL 41e59e6e2d5a1fbe23b931fcd0fac4b936f1f9b23417757c825b586bc7a1a2fd2c3fb5849a5ed85a443ed7427ea7fb4d1c28ee815967512819c5a2e74904b951
 DIST Params-Validate-1.23.tar.gz 129865 SHA256 dd5a4def2991e9fe26ec2f12410a40eefb7e036733cf78deb540eb8e4dd09d79 SHA512 0f39f269ebfbe22b42fb9f76fb5e5cd12252dcfef057b9b3458aa66b28662a4ab1cc84c5124294e339421982d3343cf7218fc47db2913bb69927137d2bfd1267 WHIRLPOOL d93d2762016e36bd2ec888a884d1f6ef41a21a2a0f00c893f47c280064679f655a660c0756de11d95f8d76420848eb3a372b6569f2225ad8ee1ec77598d9111f
+DIST Params-Validate-1.28.tar.gz 137099 SHA256 dde5ec77993a9cac300c53053588a50b9c5aeadb77626fe8bc9c2d9b29aaff77 SHA512 e2ebf320c84120090224c5a22f313e11ff7317b433a82e20f9aa6706832e375ea31520d4d1ebcbd4aac68063c6c1addcea6c56002678a87cfabc9e4f4b4fad0d WHIRLPOOL 64d326d758bb0daf4d6293e720288742dd36defcefb2be131e728de4cd2142e485104864cd6d546a7fa7a9ad8a45e81b79b4f7ae40cce44f9d93a5cff98de249

diff --git a/dev-perl/Params-Validate/Params-Validate-1.280.0.ebuild b/dev-perl/Params-Validate/Params-Validate-1.280.0.ebuild
new file mode 100644
index 00000000000..ca3e012ddc4
--- /dev/null
+++ b/dev-perl/Params-Validate/Params-Validate-1.280.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=DROLSKY
+DIST_VERSION=1.28
+inherit perl-module
+
+DESCRIPTION="Flexible system for validation of method/function call parameters"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+	virtual/perl-Carp
+	virtual/perl-Exporter
+	dev-perl/Module-Implementation
+	>=virtual/perl-Scalar-List-Utils-1.110.0
+	virtual/perl-XSLoader
+"
+DEPEND="${RDEPEND}
+	>=dev-perl/Module-Build-0.280.0
+	>=virtual/perl-JSON-PP-2.273.0
+	test? (
+		virtual/perl-ExtUtils-MakeMaker
+		virtual/perl-File-Spec
+		virtual/perl-File-Temp
+		dev-perl/Test-Fatal
+		>=virtual/perl-Test-Simple-0.960.0
+		dev-perl/Test-Requires
+	)
+"

diff --git a/dev-perl/Params-Validate/metadata.xml b/dev-perl/Params-Validate/metadata.xml
index 5e51fb1f116..5c6fc192290 100644
--- a/dev-perl/Params-Validate/metadata.xml
+++ b/dev-perl/Params-Validate/metadata.xml
@@ -7,7 +7,6 @@
   </maintainer>
   <upstream>
     <remote-id type="cpan">Params-Validate</remote-id>
-    <remote-id type="cpan-module">Attribute::Params::Validate</remote-id>
     <remote-id type="cpan-module">Params::Validate</remote-id>
     <remote-id type="cpan-module">Params::Validate::Constants</remote-id>
     <remote-id type="cpan-module">Params::Validate::PP</remote-id>


             reply	other threads:[~2017-05-30  0:19 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-30  0:19 Kent Fredric [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-20 15:07 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Params-Validate/ Ionen Wolkens
2023-08-02 16:54 Sam James
2023-07-24  4:12 Sam James
2023-07-24  4:12 Sam James
2023-07-24  3:59 Sam James
2023-06-19 23:41 Sam James
2021-11-24 16:18 Andreas K. Hüttel
2021-11-17 17:31 Arthur Zamarin
2021-11-17 17:31 Arthur Zamarin
2021-11-04 21:44 Sam James
2021-11-04 21:44 Sam James
2021-11-02 10:20 Sam James
2021-11-02 10:20 Sam James
2021-11-01  2:07 Sam James
2021-07-24 22:00 Andreas K. Hüttel
2020-07-20 20:45 Kent Fredric
2018-10-17 19:03 Fabian Groffen
2018-10-02  7:33 Sergei Trofimovich
2018-09-01 19:01 Thomas Deutschmann
2018-08-30  4:44 Markus Meier
2018-08-20  4:40 Matt Turner
2018-07-27  7:12 Sergei Trofimovich
2018-07-27  7:08 Sergei Trofimovich
2018-07-24  0:12 Mikle Kolyada
2017-12-26  8:48 Kent Fredric
2017-02-14 21:27 Michael Weber
2017-02-03 22:00 Jeroen Roovers
2017-01-29 16:45 Fabian Groffen
2016-08-18  3:01 Kent Fredric
2016-05-26  0:31 Matt Turner
2016-05-19 19:21 Markus Meier
2016-04-13 23:15 Andreas Hüttel
2016-04-13 23:15 Andreas Hüttel
2016-03-16 22:50 Andreas Hüttel
2016-01-01 21:32 Andreas Hüttel
2016-01-01 21:32 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=1496103566.f1fa6fd528077f00ab72d605dd1d6e882efd0d8e.kentnl@gentoo \
    --to=kentnl@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