28 lines
547 B
Makefile
28 lines
547 B
Makefile
# $OpenBSD: Makefile,v 1.6 2020/10/03 08:37:39 paco Exp $
|
|
|
|
COMMENT = tool for deleting old Mastodon toots
|
|
|
|
MODPY_EGG_VERSION = 3.1.0
|
|
DISTNAME = ephemetoot-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = www
|
|
|
|
MAINTAINER = Paco Esteban <paco@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_3}
|
|
|
|
RUN_DEPENDS = textproc/py-pyaml${MODPY_FLAVOR} \
|
|
www/py-mastodon.py${MODPY_FLAVOR} \
|
|
www/py-requests${MODPY_FLAVOR}
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|