Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=V43RC7C6; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=XKXB7hAM Received: by mail.netbsd.org (Postfix, from userid 605) id E9D1984D6C; Sun, 28 Apr 2024 08:26:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714292767; bh=cFze/UmY/dPwddZVzNUKx9Xtwo92AbUKclN22SO1FRA=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=V43RC7C6GQ9arM+ojOc9vPAOoa0bYWG7kEPsGy19gNIiHv80P75QoETd9dPgCKn9o Ae0x1jga5Xx10xyPkouB61T5RCZJ+YsxqdWMXqp+LaTHYd7/oq9h9EC7VRA+4F10n+ 6z2QPOUknftafFsG4QcJlICENR6ukOb3p/NemY8M= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA6D984D08 for ; Sun, 28 Apr 2024 08:26:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id oGwIvd2OQSt7 for ; Sun, 28 Apr 2024 08:26:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 41C5484CFE for ; Sun, 28 Apr 2024 08:26:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714292765; bh=cFze/UmY/dPwddZVzNUKx9Xtwo92AbUKclN22SO1FRA=; h=Date:From:Subject:To:Reply-To; b=XKXB7hAMDzNczhPGcgbEOnQc5p7+jZzH96Ti4SpzumBajN6RTdGJel1c2h9rFJKcs NA+MB6/KDlCcXO2gAtT79Ix0SMl/WmPRsJMqxFCTaasrjVJX1p56gFgVmVYVQSS0Ut ucesgpXunVOIxPP2yf+JmBNxooV0eCiC0lMPAQ+k= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3271EFA2C; Sun, 28 Apr 2024 08:26:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714292765262460" MIME-Version: 1.0 Date: Sun, 28 Apr 2024 08:26:05 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/devel/p5-Date-Manip To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20240428082605.3271EFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714292765262460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Sun Apr 28 08:26:05 UTC 2024 Modified Files: pkgsrc/devel/p5-Date-Manip: Makefile distinfo Log Message: Update to 6.95 Upstream changes: 6.95 expected 2024-03-01 - Better support for weeks of the year Added the Week1ofYear config variable and deprecated the Jan1Week1 variable. The first week of the year can now be specified much more easily. - Support for the standard POSIX strftime directives in printf The Date::Manip::Date::printf method uses a set of directives which is similar, but not identical, to the POSIX strftime directives. A new config variable Use_POSIX_Printf has been added. If set, the printf method will use the POSIX strftime directives more fully (see the PRINTF DIRECTIVES section in the Date::Manip::Date POD for more information). Reported in GitHub #48 - Time zone fixes Newest zoneinfo data (tzdata 2024a). To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.90 pkgsrc/devel/p5-Date-Manip/Makefile cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/p5-Date-Manip/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714292765262460 Content-Disposition: inline Content-Length: 1594 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Date-Manip/Makefile diff -u pkgsrc/devel/p5-Date-Manip/Makefile:1.89 pkgsrc/devel/p5-Date-Manip/Makefile:1.90 --- pkgsrc/devel/p5-Date-Manip/Makefile:1.89 Wed Jan 17 22:54:51 2024 +++ pkgsrc/devel/p5-Date-Manip/Makefile Sun Apr 28 08:26:04 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.89 2024/01/17 22:54:51 mef Exp $ +# $NetBSD: Makefile,v 1.90 2024/04/28 08:26:04 wen Exp $ -DISTNAME= Date-Manip-6.94 +DISTNAME= Date-Manip-6.95 PKGNAME= p5-${DISTNAME} CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Date/} Index: pkgsrc/devel/p5-Date-Manip/distinfo diff -u pkgsrc/devel/p5-Date-Manip/distinfo:1.55 pkgsrc/devel/p5-Date-Manip/distinfo:1.56 --- pkgsrc/devel/p5-Date-Manip/distinfo:1.55 Wed Jan 17 22:54:51 2024 +++ pkgsrc/devel/p5-Date-Manip/distinfo Sun Apr 28 08:26:04 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.55 2024/01/17 22:54:51 mef Exp $ +$NetBSD: distinfo,v 1.56 2024/04/28 08:26:04 wen Exp $ -BLAKE2s (Date-Manip-6.94.tar.gz) = 4a664581b4a3172befa3f42f4f013ceaaddb037c61ab4cd54d45d29b6dcf264e -SHA512 (Date-Manip-6.94.tar.gz) = 0c7131b023774616e5e3eacd270273d2b5e9cc9169d7be4433f98cb404b10dff38a8fe655522c29fdb68039f2ca6dc834dadf20586657e72151d26b6e782eb21 -Size (Date-Manip-6.94.tar.gz) = 1882490 bytes +BLAKE2s (Date-Manip-6.95.tar.gz) = af46b45b16df378644a092d534f8e610ad33aaf1bf10d2e0ff3bb359fda0d7d9 +SHA512 (Date-Manip-6.95.tar.gz) = 08cefda5b9795484e7fbd7ebecc4094be6ad1fbdc53a6d295b52118a1114338ee36ba0bffccc9ddba40583884a50b5dd46fd2a701259783c812a70ec8dd2ea81 +Size (Date-Manip-6.95.tar.gz) = 1887360 bytes --_----------=_1714292765262460--