diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-03 15:39:45 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-03 15:54:28 +0000 |
commit | 209080ebc410ba3396572d2e78cd1152f6e3985f (patch) | |
tree | 00ac0e4e8d635249160af0eec835227cb87743f4 | |
parent | ead786c236d11f2951d81e6f2eedc4bb344f4ed4 (diff) |
astro/kosmorro: Fix PLIST issue with py-poetry-core 2.0.0+
====> Checking for pkg-plist issues (check-plist)
===> Parsing plist
===> Checking for items in STAGEDIR missing from pkg-plist
===> Checking for items in pkg-plist which are not in STAGEDIR
Error: Missing: %%PYTHON_SITELIBDIR%%/CHANGELOG.md
===> Error: Plist issues found.
*** Error code 1
Approved by: portmgr (blanket)
With hat: python
-rw-r--r-- | astro/kosmorro/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/astro/kosmorro/Makefile b/astro/kosmorro/Makefile index 7f55acba7bd6..0c062dd0dfae 100644 --- a/astro/kosmorro/Makefile +++ b/astro/kosmorro/Makefile @@ -39,4 +39,7 @@ PDF_RUN_DEPENDS=pdflatex:print/tex-formats NO_ARCH= yes +post-install: + @${INSTALL_DATA} ${WRKSRC}/CHANGELOG.md ${STAGEDIR}${PYTHON_SITELIBDIR}/ + .include <bsd.port.mk> |