Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CCFA184ED2 for ; Fri, 30 Jun 2023 10:03:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 VIiieqYcWRxG for ; Fri, 30 Jun 2023 10:03:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D802C84F07 for ; Fri, 30 Jun 2023 10:03:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D123CFA89; Fri, 30 Jun 2023 10:03:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688119413176970" MIME-Version: 1.0 Date: Fri, 30 Jun 2023 10:03:33 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/geography/p5-Geo-Gpx To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20230630100333.D123CFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688119413176970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Fri Jun 30 10:03:33 UTC 2023 Modified Files: pkgsrc/geography/p5-Geo-Gpx: Makefile distinfo Log Message: Update to 1.09 Update DEPENDS Update Comment Update HOMEPAGE Add geography to CATEGORIES Upstream changes: 1.09 [2022-12-06] Fixed bug in parsing absolute and relative paths in MSWin32 1.08 [2022-12-03] Removed Geo::Calc from dependencies and added Math::Trig 1.07 [2022-10-26] Removed > 15 year old legacy bits likely to conflict with newly added support for tracks and routes 1.06 [2022-10-25] Added method Geo::Gpx::Point->time_datetime() returning a DateTime object corresponding to the time of a point Removed use_datetime option in Geo::Gpx->new() in favour of the new Geo::Gpx::Point method above 1.05 [2022-10-23] Various new methods for waypoints: - waypoints_search(), waypoints_merge(), waypoints_count(), waypoints_delete_all(), waypoint_delete(), waypoint_closest_to() Other new methods: routes_count(), tracks_count(), 1.04 [2022-10-20] The waypoints() method now gets but no longer sets: - call waypoints_add() to set instead - users would need to replace calls to waypoints with waypoints_add but only if they were setting Renamed method waypoints_add(), was add_waypoint(): - this change was necessary for consistency in method naming - users should replace all calls to add_waypoint with waypoints_add New methods to replace current accessors: routes(), tracks() New methods: routes_add(), tracks_add(), clone() 1.03 [2022-10-16] new()'s 'input' key now accepts a filename as argument and a work_dir key can be specified to set the instance's working directory. Has no effect on the caller's current working directory. Added methods set_filename(), set_wd() and save(). 1.02 [2022-10-10] Switched to Dist::Zilla to manage and release the module 1.01 [2022-10-08] fixed missing dependencies in Makefile.PL and Build.PL: - Geo::Calc - Geo::Coordinates::Transform 1.00 [2022-10-07] Added Geo/Gpx/Point.pm: a new class to store and edit GPX points Initialize points with Geo::Gpx::Point->new() objects To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/geography/p5-Geo-Gpx/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/geography/p5-Geo-Gpx/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688119413176970 Content-Disposition: inline Content-Length: 2394 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/p5-Geo-Gpx/Makefile diff -u pkgsrc/geography/p5-Geo-Gpx/Makefile:1.11 pkgsrc/geography/p5-Geo-Gpx/Makefile:1.12 --- pkgsrc/geography/p5-Geo-Gpx/Makefile:1.11 Tue Jun 28 11:33:58 2022 +++ pkgsrc/geography/p5-Geo-Gpx/Makefile Fri Jun 30 10:03:33 2023 @@ -1,25 +1,24 @@ -# $NetBSD: Makefile,v 1.11 2022/06/28 11:33:58 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2023/06/30 10:03:33 wen Exp $ # -DISTNAME= Geo-Gpx-0.26 +DISTNAME= Geo-Gpx-1.09 PKGNAME= p5-${DISTNAME} -PKGREVISION= 7 -CATEGORIES= perl5 +CATEGORIES= geography perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Geo/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://metacpan.org/pod/release/ANDYA/Geo-Gpx-0.26/lib/Geo/Gpx.pm -COMMENT= Geo::Gpx - Create and parse GPX files. +HOMEPAGE= https://metacpan.org/dist/Geo-Gpx/changes +COMMENT= Geo::Gpx - Create and parse GPX files LICENSE= ${PERL5_LICENSE} PERL5_PACKLIST= auto/Geo/Gpx/.packlist -#PERL5_MODULE_TYPE= Module::Install::Bundled + MAKE_PARAMS+= --skipdeps DEPENDS+= p5-DateTime-Format-ISO8601>=0.0800:../../time/p5-DateTime-Format-ISO8601 DEPENDS+= p5-HTML-Parser>=3.71:../../www/p5-HTML-Parser DEPENDS+= p5-XML-Descent>=1.04:../../textproc/p5-XML-Descent - +DEPENDS+= p5-Geo-Coordinates-Transform>=0:../../geography/p5-Geo-Coordinates-Transform .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/geography/p5-Geo-Gpx/distinfo diff -u pkgsrc/geography/p5-Geo-Gpx/distinfo:1.4 pkgsrc/geography/p5-Geo-Gpx/distinfo:1.5 --- pkgsrc/geography/p5-Geo-Gpx/distinfo:1.4 Tue Oct 26 10:45:13 2021 +++ pkgsrc/geography/p5-Geo-Gpx/distinfo Fri Jun 30 10:03:33 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 10:45:13 nia Exp $ +$NetBSD: distinfo,v 1.5 2023/06/30 10:03:33 wen Exp $ -BLAKE2s (Geo-Gpx-0.26.tar.gz) = cd3342c0efdd7266b282c0f3c87581039ea09d20e21a134cd00bdf9c1e4b3d12 -SHA512 (Geo-Gpx-0.26.tar.gz) = 8687f6cdafa9750568d129a6af7583fe13f1e1598c6c6e8bbd14c7dc73e71b940cb33ea274d4b1fa7f0e3aa69bc65acf6bfe743e2cfa24d5879b4ba21ed9a2f0 -Size (Geo-Gpx-0.26.tar.gz) = 20452 bytes +BLAKE2s (Geo-Gpx-1.09.tar.gz) = c532e17c36cc67f2aa6b28d4030e27c89f8e281dcf7c3f3a965db64cf0fefda1 +SHA512 (Geo-Gpx-1.09.tar.gz) = 2b68b406dcfd60578e8f99813748c33af04f3ecc036ccb45d5f5d8b488b6c79d23fe6f641b15f9d73007274a2e8bef5cf020bda6aecd74310afbd743d5820dd3 +Size (Geo-Gpx-1.09.tar.gz) = 40946 bytes --_----------=_1688119413176970--