From owner-svn-ports-all@freebsd.org Sun Dec 15 08:24:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 581581E623C; Sun, 15 Dec 2019 08:24:51 +0000 (UTC) (envelope-from koobs@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 47bHWl1cWzz4Hlw; Sun, 15 Dec 2019 08:24:51 +0000 (UTC) (envelope-from koobs@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 18786A43A; Sun, 15 Dec 2019 08:24:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBF8OocE075256; Sun, 15 Dec 2019 08:24:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBF8OoGv075252; Sun, 15 Dec 2019 08:24:50 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201912150824.xBF8OoGv075252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 15 Dec 2019 08:24:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520157 - in head/astro: . py-pymeeus X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/astro: . py-pymeeus X-SVN-Commit-Revision: 520157 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sun, 15 Dec 2019 08:24:51 -0000 Author: koobs Date: Sun Dec 15 08:24:50 2019 New Revision: 520157 URL: https://svnweb.freebsd.org/changeset/ports/520157 Log: [NEW PORT] astro/py-pymeeus: Python implementation of Jean Meeus astronomical routines PyMeeus is a Python implementation of the astronomical algorithms described in the classical book "Astronomical Algorithms, 2nd Edition, Willmann-Bell Inc. (1998)" by Jean Meeus. WWW: https://github.com/architest/pymeeus MFH: 2019Q3 (required to fix broken py-convertdate) Added: head/astro/py-pymeeus/ head/astro/py-pymeeus/Makefile (contents, props changed) head/astro/py-pymeeus/distinfo (contents, props changed) head/astro/py-pymeeus/pkg-descr (contents, props changed) Modified: head/astro/Makefile Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Sun Dec 15 07:50:06 2019 (r520156) +++ head/astro/Makefile Sun Dec 15 08:24:50 2019 (r520157) @@ -84,6 +84,7 @@ SUBDIR += py-horoscopegenerator SUBDIR += py-metar SUBDIR += py-metpy + SUBDIR += py-pymeeus SUBDIR += py-pymetar SUBDIR += py-pysofa SUBDIR += py-pywapi Added: head/astro/py-pymeeus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pymeeus/Makefile Sun Dec 15 08:24:50 2019 (r520157) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pymeeus +PORTVERSION= 0.3.6 +CATEGORIES= astro science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyMeeus-${DISTVERSION} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Python implementation of Jean Meeus astronomical routines + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/COPYING.LESSER + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs -o addopts= + +.include Added: head/astro/py-pymeeus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pymeeus/distinfo Sun Dec 15 08:24:50 2019 (r520157) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576391625 +SHA256 (PyMeeus-0.3.6.tar.gz) = 1f1ba0682e1b5c6b0cd6432c966e8bc8acc31737ea6f0ae79917a2189a98bb87 +SIZE (PyMeeus-0.3.6.tar.gz) = 736212 Added: head/astro/py-pymeeus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pymeeus/pkg-descr Sun Dec 15 08:24:50 2019 (r520157) @@ -0,0 +1,5 @@ +PyMeeus is a Python implementation of the astronomical algorithms +described in the classical book "Astronomical Algorithms, 2nd Edition, +Willmann-Bell Inc. (1998)" by Jean Meeus. + +WWW: https://github.com/architest/pymeeus