Files
ports/sysutils/py-keep/Makefile
Vsevolod Stakhov 8b878d88b4 security/libsodium: Update to 1.0.21
The API remains compatible but bumping all dependent ports as SHLIB
has changed.

Changelog: https://github.com/jedisct1/libsodium/releases/tag/1.0.21-RELEASE
Security: https://00f.net/2025/12/30/libsodium-vulnerability/
PR: 279347
2026-01-07 10:22:10 +00:00

37 lines
1.0 KiB
Makefile

PORTNAME= keep
DISTVERSION= 2.11
PORTREVISION= 1
CATEGORIES= sysutils python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= dtxdf@FreeBSD.org
COMMENT= Personal shell command keeper
WWW= https://github.com/OrkoHunter/keep
LICENSE= MIT
LICENSE_FILE= ${FILESDIR}/LICENSE.md
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=0:devel/py-flit-core@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}terminaltables3>0:textproc/py-terminaltables3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}PyGithub>0:devel/py-PyGithub@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist pep517
SUB_FILES= pkg-message
PORTDATA= completions/keep.zsh \
completions/keep.bash
post-patch:
@${REINPLACE_CMD} -e 's|%%VERSION%%|${DISTVERSION}|g' ${PATCH_WRKSRC}/keep/about.py
post-install:
@${MKDIR} ${STAGEDIR}${DATADIR}/completions
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDATA} ${STAGEDIR}${DATADIR}/completions)
.include <bsd.port.mk>