diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2017-12-30 14:42:38 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2017-12-30 14:42:38 +0800 |
commit | 5a13d48d4cfd1182ecf69196cd9caae63c797b10 (patch) | |
tree | 0434c4c9fc234da328a1aaa65715d7ce5d5db3dc /astro | |
parent | 0a8ecd557e983ab5fcccd7a5c44f783843af1289 (diff) | |
download | freebsd-ports-graphics-5a13d48d4cfd1182ecf69196cd9caae63c797b10.tar.gz freebsd-ports-graphics-5a13d48d4cfd1182ecf69196cd9caae63c797b10.tar.zst freebsd-ports-graphics-5a13d48d4cfd1182ecf69196cd9caae63c797b10.zip |
Update *_DEPENDS: change from deprecated py-pyfits to py-astropy
- Sort *_DEPENDS
- Bump PORTREVISION for dependency change
Diffstat (limited to 'astro')
-rw-r--r-- | astro/py-astLib/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/astro/py-astLib/Makefile b/astro/py-astLib/Makefile index beaaed8dd72..dfc2332ba70 100644 --- a/astro/py-astLib/Makefile +++ b/astro/py-astLib/Makefile @@ -3,6 +3,7 @@ PORTNAME= astLib PORTVERSION= 0.9.2 +PORTREVISION= 1 CATEGORIES= astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,10 +15,10 @@ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYNUMPY} \ - ${PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} \ + ${PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ + ${PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ ${PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}pyfits>=1.1:astro/py-pyfits@${FLAVOR} \ - ${PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} + ${PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.15,0.17,0.17.1 # incorrect versioning upstream @@ -25,6 +26,10 @@ PORTSCOUT= skipv:0.15,0.17,0.17.1 # incorrect versioning upstream USES= python:2.7 USE_PYTHON= autoplist distutils +post-patch: + @${REINPLACE_CMD} -e 's|import pyfits|from astropy.io import fits as pyfits|' \ + ${WRKSRC}/astLib/astPlots.py ${WRKSRC}/examples/*/*.py + post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyWCSTools/*.so |