From owner-svn-ports-all@freebsd.org Mon Mar 11 15:40:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47C971517CEF; Mon, 11 Mar 2019 15:40:55 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAE4D6C6E0; Mon, 11 Mar 2019 15:40:54 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3364CD1B; Mon, 11 Mar 2019 15:40:54 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2BFesYd042722; Mon, 11 Mar 2019 15:40:54 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2BFerbI042718; Mon, 11 Mar 2019 15:40:53 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201903111540.x2BFerbI042718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 11 Mar 2019 15:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495356 - in head/astro: . p5-GPS-Point X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/astro: . p5-GPS-Point X-SVN-Commit-Revision: 495356 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DAE4D6C6E0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.995,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2019 15:40:55 -0000 Author: kai Date: Mon Mar 11 15:40:53 2019 New Revision: 495356 URL: https://svnweb.freebsd.org/changeset/ports/495356 Log: New port: astro/p5-GPS-Point: Provides an object interface for a GPS point Provides an object interface for a GPS point (e.g. Position, Velocity and Time). This is a re-write of Net::GPSD::Point with the goal of being more re-usable. WWW: https://metacpan.org/release/GPS-Point PR: 235820 Submitted by: Brian Scott Reviewed by: tcberner (mentor) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19420 Added: head/astro/p5-GPS-Point/ head/astro/p5-GPS-Point/Makefile (contents, props changed) head/astro/p5-GPS-Point/distinfo (contents, props changed) head/astro/p5-GPS-Point/pkg-descr (contents, props changed) Modified: head/astro/Makefile Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Mon Mar 11 15:10:12 2019 (r495355) +++ head/astro/Makefile Mon Mar 11 15:40:53 2019 (r495356) @@ -70,6 +70,7 @@ SUBDIR += p5-GPS SUBDIR += p5-GPS-Babel SUBDIR += p5-GPS-OID + SUBDIR += p5-GPS-Point SUBDIR += p5-Geo-METAR SUBDIR += p5-Misc-Quality SUBDIR += p5-Starlink-AST Added: head/astro/p5-GPS-Point/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/p5-GPS-Point/Makefile Mon Mar 11 15:40:53 2019 (r495356) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= GPS-Point +PORTVERSION= 0.20 +CATEGORIES= astro perl5 geography +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bscott@bunyatech.com.au +COMMENT= Provides an object interface for a GPS point + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Number-Delta>0:devel/p5-Test-Number-Delta \ + p5-Test-Simple>=0.44:devel/p5-Test-Simple + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes +PLIST_FILES= ${SITE_PERL_REL}/GPS/Point.pm \ + ${SITE_MAN3_REL}/GPS::Point.3.gz + +.include Added: head/astro/p5-GPS-Point/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/p5-GPS-Point/distinfo Mon Mar 11 15:40:53 2019 (r495356) @@ -0,0 +1,3 @@ +TIMESTAMP = 1552318618 +SHA256 (GPS-Point-0.20.tar.gz) = fee13168bdfc3e6b738ffce37cd1d187f00f24a29bd4d3ec2888e2c5a480a615 +SIZE (GPS-Point-0.20.tar.gz) = 10271 Added: head/astro/p5-GPS-Point/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/p5-GPS-Point/pkg-descr Mon Mar 11 15:40:53 2019 (r495356) @@ -0,0 +1,6 @@ +Provides an object interface for a GPS point (e.g. Position, Velocity and +Time). + +This is a re-write of Net::GPSD::Point with the goal of being more re-usable. + +WWW: https://metacpan.org/release/GPS-Point