diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-07-09 10:18:40 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-07-09 10:18:40 +0000 |
commit | 1bca5297b3d08bfd22199ed43b989571e9266cf9 (patch) | |
tree | 85940d6f23505a268940fa25e1818243f313d660 | |
parent | 6ff48e9b6a12ed202ff92644cefd97cfd239c11d (diff) | |
download | ports-1bca5297b3d08bfd22199ed43b989571e9266cf9.tar.gz ports-1bca5297b3d08bfd22199ed43b989571e9266cf9.zip |
astro/py-metpy: Add missing file
- Bump PORTREVISION for package change
-rw-r--r-- | astro/py-metpy/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/astro/py-metpy/Makefile b/astro/py-metpy/Makefile index cdc1026d25b5..27ae77581866 100644 --- a/astro/py-metpy/Makefile +++ b/astro/py-metpy/Makefile @@ -1,6 +1,6 @@ PORTNAME= metpy PORTVERSION= 1.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= astro python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -31,10 +31,15 @@ USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes +PLIST_FILES= ${PYTHON_SITELIBDIR}/metpy/static-data-manifest.txt + .include <bsd.port.pre.mk> .if ${PYTHON_REL} < 30900 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-resources>=1.3.0:devel/py-importlib-resources@${PY_FLAVOR} .endif +post-install: + ${INSTALL_DATA} ${WRKSRC}/src/metpy/static-data-manifest.txt ${STAGEDIR}${PYTHON_SITELIBDIR}/metpy/static-data-manifest.txt + .include <bsd.port.post.mk> |