452714f0d8
2021.3.31 Pass 4391 tests. Use JPEG restart markers as tile offsets in NDPI. Support version 1 and more codecs in fsspec ReferenceFileSystem (untested). 2021.3.17 Fix regression reading multi-file OME-TIFF with missing files. Fix fsspec ReferenceFileSystem with non-native byte order. 2021.3.16 TIFF is no longer a defended trademark. Add method to export fsspec ReferenceFileSystem from ZarrTiffStore
25 lines
668 B
Makefile
25 lines
668 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/04/02 07:47:00 adam Exp $
|
|
|
|
DISTNAME= tifffile-2021.3.31
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tifffile/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.lfd.uci.edu/~gohlke/
|
|
COMMENT= Read and write TIFF(r) files
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 36
|
|
|
|
post-install:
|
|
.for bin in lsm2bin tiff2fsspec tiffcomment tifffile
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
|
|
.endfor
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|