ports/filesystems/py-dfvfs/Makefile
Robert Clausecker 6e2da9672f filesystems: add new category for file systems and related utilities
The filesystems category houses file systems and file system utilities.
It is added mainly to turn the sysutils/fusefs-* pseudo-category into
a proper one, but is also useful for the sundry of other file systems
related ports found in the tree.

Ports that seem like they belong there are moved to the new category.
Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are
not moved as they currently don't fetch and don't have TIMESTAMP set
in their distinfo, but that is required to be able to push a rename
of the port by the pre-receive hook.

Approved by:	portmgr (rene)
Reviewed by:	mat
Pull Request:	https://github.com/freebsd/freebsd-ports/pull/302
PR:		281988
2024-11-06 16:17:35 +01:00

60 lines
1.9 KiB
Makefile

PORTNAME= dfvfs
PORTVERSION= 20231208
PORTREVISION= 1
CATEGORIES= filesystems security devel python
MASTER_SITES= https://github.com/log2timeline/dfvfs/releases/download/${PORTVERSION}/ \
LOCAL/antoine
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= antoine@FreeBSD.org
COMMENT= Digital Forensics Virtual File System
WWW= https://github.com/log2timeline/dfvfs
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= libbde>=a:filesystems/libbde \
libewf>=0:devel/libewf \
libfsapfs>=e:filesystems/libfsapfs \
libfsext>=e:filesystems/libfsext \
libfsfat>=e:filesystems/libfsfat \
libfshfs>=e:filesystems/libfshfs \
libfsntfs>=e:filesystems/libfsntfs \
libfsxfs>=e:filesystems/libfsxfs \
libfvde>=0:sysutils/libfvde \
libfwnt>=e:devel/libfwnt \
libluksde>=e:devel/libluksde \
libmodi>=e:filesystems/libmodi \
libphdi>=e:devel/libphdi \
libqcow>=a:devel/libqcow \
libsigscan>=e:devel/libsigscan \
libsmdev>=a:devel/libsmdev \
libsmraw>=a:devel/libsmraw \
libvhdi>=e:devel/libvhdi \
libvmdk>=e:devel/libvmdk \
libvsapm>=e:devel/libvsapm \
libvsgpt>=e:devel/libvsgpt \
libvshadow>=0:devel/libvshadow \
libvslvm>=e:devel/libvslvm \
${PYTHON_PKGNAMEPREFIX}dfdatetime>=0:security/py-dfdatetime@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}dtfabric>=0:devel/py-dtfabric@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytsk>=0:sysutils/py-pytsk@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}xattr>=0:devel/py-xattr@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyyaml>=3.10:devel/py-pyyaml@${PY_FLAVOR}
USES= python
USE_LOCALE= en_US.UTF-8
USE_PYTHON= autoplist concurrent cryptography distutils
DO_MAKE_TEST= ${SETENV} ${TEST_ENV} ${PYTHON_CMD}
TEST_TARGET= run_tests.py
NO_ARCH= yes
# Upstream archive contains files with UTF-8 names
EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
post-patch:
${REINPLACE_CMD} "/cffi/d" ${WRKSRC}/requirements.txt
.include <bsd.port.mk>