From owner-svn-ports-head@freebsd.org Thu Jul 26 03:12:25 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 0DCCC105D449; Thu, 26 Jul 2018 03:12:25 +0000 (UTC) (envelope-from yuri@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 B80EA799C0; Thu, 26 Jul 2018 03:12:24 +0000 (UTC) (envelope-from yuri@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 809952345D; Thu, 26 Jul 2018 03:12:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6Q3COjk008468; Thu, 26 Jul 2018 03:12:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6Q3CNfB008086; Thu, 26 Jul 2018 03:12:23 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201807260312.w6Q3CNfB008086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 26 Jul 2018 03:12:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475344 - in head/astro: . py-pysofa X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/astro: . py-pysofa X-SVN-Commit-Revision: 475344 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.27 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: Thu, 26 Jul 2018 03:12:25 -0000 Author: yuri Date: Thu Jul 26 03:12:23 2018 New Revision: 475344 URL: https://svnweb.freebsd.org/changeset/ports/475344 Log: New port: astro/py-pysofa: Python binding for SOFA, the fundamental astronomy library Added: head/astro/py-pysofa/ head/astro/py-pysofa/Makefile (contents, props changed) head/astro/py-pysofa/distinfo (contents, props changed) head/astro/py-pysofa/pkg-descr (contents, props changed) Modified: head/astro/Makefile Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Thu Jul 26 02:40:15 2018 (r475343) +++ head/astro/Makefile Thu Jul 26 03:12:23 2018 (r475344) @@ -90,6 +90,7 @@ SUBDIR += py-metar SUBDIR += py-metpy SUBDIR += py-pymetar + SUBDIR += py-pysofa SUBDIR += py-pywapi SUBDIR += py-spacetrack SUBDIR += pyephem Added: head/astro/py-pysofa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pysofa/Makefile Thu Jul 26 03:12:23 2018 (r475344) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pysofa +DISTVERSION= 0.1.1 +CATEGORIES= astro devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python binding for SOFA, the fundamental astronomy library + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${LOCALBASE}/lib/libsofa_c.so:astro/sofa \ + ${PYNUMPY} + +USES= python +NO_ARCH= yes +USE_PYTHON= distutils autoplist + +post-patch: + @${REINPLACE_CMD} -e "s|find_library('sofa_c')|\"${LOCALBASE}/lib/libsofa_c.so\"|" \ + ${WRKSRC}/pysofa/pysofa_ctypes.py + +.include Added: head/astro/py-pysofa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pysofa/distinfo Thu Jul 26 03:12:23 2018 (r475344) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532573338 +SHA256 (pysofa-0.1.1.tar.gz) = 3bc309f5a43f44bd6d543ede054657dca9335b4e12726db0e929eb7f863a8f63 +SIZE (pysofa-0.1.1.tar.gz) = 44550 Added: head/astro/py-pysofa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/py-pysofa/pkg-descr Thu Jul 26 03:12:23 2018 (r475344) @@ -0,0 +1,6 @@ +pysofa is a Python module for accessing International Astronomical Union's SOFA +library from python. SOFA (Standards of Fundamental Astronomy) is a set of +algorithms and procedures that implement standard models used in fundamental +astronomy. + +WWW: https://code.google.com/archive/p/pysofa/