mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 20:06:29 -04:00
mtbl (1.0.0) * Backwards-incompatible file format change to enable block sizes >4G. * Add support for zstd compression. This adds a new library dependency on libzstd. * Add mtbl_iter_seek function. * Add mtbl_fileset_partition function. * Breaks ABI for version 0.x.x. mtbl (0.8.1) * Add portability for clock time. * Simplify and improve portability related to byte order primitives. * Fix assertion failure. If there is a broken mtbl file in the fileset then a NULL reader will be returned. This change checks for that error condition in fs_reinit_merger() and does not pass the empty reader onwards to mtbl_merger_add_source(). Compatiblity with the latest libz4 has been added so files/patch-configure is no longer needed. Bump PORTREVISION on dependent ports due to ABI / shared library version change.
32 lines
725 B
Makefile
32 lines
725 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pymtbl
|
|
PORTVERSION= 0.4.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Python wrapper for devel/mtbl
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
LIB_DEPENDS= libmtbl.so:devel/mtbl
|
|
|
|
USE_PYTHON= autoplist distutils
|
|
USES= pkgconfig python shebangfix uniquefiles:dirs
|
|
|
|
SHEBANG_FILES= examples/*.py examples/*/*.py
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/mtbl.so
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|