Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2019 08:24:50 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520157 - in head/astro: . py-pymeeus
Message-ID:  <201912150824.xBF8OoGv075252@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912150824.xBF8OoGv075252>