From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB6C9138359 for ; Fri, 24 Jul 2020 10:32:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD3D8E0822; Fri, 24 Jul 2020 10:32:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6187E0822 for ; Fri, 24 Jul 2020 10:32:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A29E34F11F for ; Fri, 24 Jul 2020 10:32:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAC6A2EA for ; Fri, 24 Jul 2020 10:32:45 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1595586662.acb9acbf0f5395f9ac77cd4a95fd653c4fb0c6ff.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Date-Manip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Date-Manip/Date-Manip-6.820.0.ebuild dev-perl/Date-Manip/Manifest X-VCS-Directories: dev-perl/Date-Manip/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: acb9acbf0f5395f9ac77cd4a95fd653c4fb0c6ff X-VCS-Branch: master Date: Fri, 24 Jul 2020 10:32:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 127171f6-0556-49fa-bf2a-4ec2f3bf5dc8 X-Archives-Hash: 2a598a82bca15f51b033628a2a6b400e commit: acb9acbf0f5395f9ac77cd4a95fd653c4fb0c6ff Author: Kent Fredric gentoo org> AuthorDate: Fri Jul 24 10:30:37 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Fri Jul 24 10:31:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb9acbf dev-perl/Date-Manip: Bump to version 6.820.0 - EAPI7 - Unconditionally patch bad tests Upstream: - Improved delta handling - Deprecate some parts of Date::Manip::Delta - Speed improvements - Use GMT timezone instead of panicking when timezone not determined - Update to tzdata 2020a - Fix rare problem with recurrences not producing a valid date and infinitely looping - Fix math int overflow on non 64-bit architectures - Fix badly normalized business deltas - Fix incorrectly using 'now' instead of 'stored date' for list_holidays Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/Date-Manip/Date-Manip-6.820.0.ebuild | 42 +++++++++++++++++++++++++++ dev-perl/Date-Manip/Manifest | 1 + 2 files changed, 43 insertions(+) diff --git a/dev-perl/Date-Manip/Date-Manip-6.820.0.ebuild b/dev-perl/Date-Manip/Date-Manip-6.820.0.ebuild new file mode 100644 index 00000000000..b30ff8a2c85 --- /dev/null +++ b/dev-perl/Date-Manip/Date-Manip-6.820.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=SBECK +DIST_VERSION=6.82 + +inherit perl-module + +DESCRIPTION="Perl date manipulation routines" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="elibc_musl test" +RESTRICT="!test? ( test )" + +RDEPEND=" + virtual/perl-Carp + virtual/perl-Data-Dumper + virtual/perl-Encode + virtual/perl-File-Spec + virtual/perl-IO + virtual/perl-Storable + elibc_musl? ( sys-libs/timezone-data ) +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.670.100 + test? ( + >=dev-perl/Test-Inter-1.90.0 + virtual/perl-Test-Simple + ) +" +PERL_RM_FILES=( + t/_pod.t + t/_pod_coverage.t + t/_version.t +) + +src_test() { + TZ=UTC perl-module_src_test +} diff --git a/dev-perl/Date-Manip/Manifest b/dev-perl/Date-Manip/Manifest index a9939459db5..45ba8153708 100644 --- a/dev-perl/Date-Manip/Manifest +++ b/dev-perl/Date-Manip/Manifest @@ -1 +1,2 @@ DIST Date-Manip-6.60.tar.gz 1824792 BLAKE2B fd3d85beda01db21efd4c81dfe45a888f39773a649207e5d36412477312d06dcb63fcb15c25c441769bfc575c6402323d4fc8cb3502d09728a1df0e3dd5a2183 SHA512 46ac9696aea04167427957a43de1b44041ea05d3eaf01ffbdbfda9f458b3073f36ec46c9661ac437f96731d0f40aebc206ef385c6c4aff1b147917fc2c89a1cf +DIST Date-Manip-6.82.tar.gz 2015204 BLAKE2B 8b5af3a5b813d5c42c4fe444faa299684b57c993e7a678f14b84ce7743ed1780e1396a550d17f1bb104fc19bb2f6231419eee969b790b423351835c436448f7d SHA512 2e34011b678d7efdd0f9c850c86f573316aa835d4b67732ee042403f90460e43c2fac76f2c0635a61512f1aa0eb64fc56fb2c4b2d80068ba7d1a603ae9c1dac2