From owner-svn-ports-head@freebsd.org Sun Apr 29 19:46:08 2018 Return-Path: Delivered-To: svn-ports-head@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 9422CFB6D3A; Sun, 29 Apr 2018 19:46:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46F6181A7C; Sun, 29 Apr 2018 19:46:08 +0000 (UTC) (envelope-from sunpoet@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 41F80B71; Sun, 29 Apr 2018 19:46:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3TJk87Y063892; Sun, 29 Apr 2018 19:46:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3TJk7vl063887; Sun, 29 Apr 2018 19:46:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804291946.w3TJk7vl063887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 29 Apr 2018 19:46:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468646 - in head: . astro astro/py-metar X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head: . astro astro/py-metar X-SVN-Commit-Revision: 468646 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Apr 2018 19:46:08 -0000 Author: sunpoet Date: Sun Apr 29 19:46:07 2018 New Revision: 468646 URL: https://svnweb.freebsd.org/changeset/ports/468646 Log: Add py-metar 1.5.0 Metar is a python package for interpreting METAR and SPECI weather reports. This module extracts the data recorded in the main-body groups of reports that follow the WMO spec or the US conventions, except for the runway state and trend groups, which are parsed but ignored. The most useful remark groups defined in the US spec are parsed, as well, such as the cumulative precipitation, min/max temperature, peak wind and sea-level pressure groups. No other regional conventions are formally supported, but a large number of variant formats found in international reports are accepted. WWW: https://pypi.org/project/metar/ WWW: https://github.com/tomp/python-metar Added: head/astro/py-metar/ head/astro/py-metar/Makefile (contents, props changed) head/astro/py-metar/distinfo (contents, props changed) head/astro/py-metar/pkg-descr (contents, props changed) Modified: head/MOVED head/astro/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sun Apr 29 19:36:09 2018 (r468645) +++ head/MOVED Sun Apr 29 19:46:07 2018 (r468646) @@ -7946,7 +7946,6 @@ devel/pyinstaller|devel/py-pyinstaller|2015-12-09|Add math/why3-gpl|math/why3-spark|2015-12-10|Change why3 suffix (upstream request and for consistency) devel/py-memoryprofiler|devel/py-memory_profiler|2015-12-11|Rename to consistency with other Python ports print/py-cups|print/py-pycups|2015-12-11|Renamed to match upstream naming -astro/py-metar|astro/py-pymetar|2015-12-11|Renamed to match upstream naming devel/jep|devel/py-jep|2015-12-11|Renamed to match upstream naming ftp/py-curl|ftp/py-pycurl|2015-12-13|Renamed to match upstream naming www/py-django-pipeline12||2015-12-15|Has expired: Django 1.4 extended support ended on 2015-10-01 Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Sun Apr 29 19:36:09 2018 (r468645) +++ head/astro/Makefile Sun Apr 29 19:46:07 2018 (r468646) @@ -87,6 +87,7 @@ SUBDIR += py-astLib SUBDIR += py-astropy SUBDIR += py-horoscopegenerator + SUBDIR += py-metar SUBDIR += py-metpy SUBDIR += py-pymetar SUBDIR += py-pywapi Added: head/astro/py-metar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-metar/Makefile Sun Apr 29 19:46:07 2018 (r468646) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= metar +PORTVERSION= 1.5.0 +CATEGORIES= astro python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Parse METAR-coded weather reports + +LICENSE= MIT + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/astro/py-metar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-metar/distinfo Sun Apr 29 19:46:07 2018 (r468646) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524959591 +SHA256 (metar-1.5.0.tar.gz) = 1a1cc2047b7fe0fd3444ad0fb4d432c2950bc67e9904f29cc4349270802c287a +SIZE (metar-1.5.0.tar.gz) = 24058 Added: head/astro/py-metar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-metar/pkg-descr Sun Apr 29 19:46:07 2018 (r468646) @@ -0,0 +1,12 @@ +Metar is a python package for interpreting METAR and SPECI weather reports. + +This module extracts the data recorded in the main-body groups of reports that +follow the WMO spec or the US conventions, except for the runway state and trend +groups, which are parsed but ignored. The most useful remark groups defined in +the US spec are parsed, as well, such as the cumulative precipitation, min/max +temperature, peak wind and sea-level pressure groups. No other regional +conventions are formally supported, but a large number of variant formats found +in international reports are accepted. + +WWW: https://pypi.org/project/metar/ +WWW: https://github.com/tomp/python-metar