forked from pool/python-imagecodecs
- Update to 2022.12.24 * Pass 6512 tests. * Fix PNG codec error handling. * Fix truncated transferfunctions in cms_profile (#57). * Fix exceptions not raised in cdef functions not returning Python object. - Release 2022.12.22 * Require libtiff 4.5 (breaking). * Require libavif 0.11 (breaking). * Change jpegxl_encode level parameter to resemble libjpeg quality (breaking). * Add LZFSE codec via lzfse library. * Add LZHAM codec via lzham library. * Fix AttributeError in cms_profile (#52). * Support gamma argument in cms_profile (#53). * Raise limit of TIFF pages to 1048576. * Use libtiff thread-safe error/warning handlers. * Add option to specify filters and strategy in png_encode. * Add option to specify integrity check type in lzma_encode. * Fix DeprecationWarning with NumPy 1.24. OBS-URL: https://build.opensuse.org/request/show/1060173 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imagecodecs?expand=0&rev=19
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
# openSUSE extension setup to build python-imagecodecs
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
def customize_build(EXTENSIONS, OPTIONS):
|
|
|
|
includedir = os.getenv("INCDIR",'') + '/'
|
|
|
|
del EXTENSIONS['apng'] # png-apng library not available
|
|
del EXTENSIONS['blosc2'] # blosc2 library not available
|
|
del EXTENSIONS['brunsli'] # graphics/brunsli not in Factory
|
|
del EXTENSIONS['jetraw'] # jetraw library not available
|
|
del EXTENSIONS['jpeg12'] # jpeg12 requires custom build
|
|
del EXTENSIONS['jpegxl'] # jpeg-xl library not available
|
|
del EXTENSIONS['lerc'] # LERC library not available
|
|
del EXTENSIONS['lz4f'] # requires static linking
|
|
del EXTENSIONS['mozjpeg'] # Win32 only
|
|
|
|
EXTENSIONS['avif']['libraries'] = [
|
|
'avif',
|
|
'aom',
|
|
'dav1d',
|
|
'rav1e',
|
|
]
|
|
|
|
if sys.maxsize < 2**63 - 1:
|
|
# no zfp on 32-bit platforms
|
|
del EXTENSIONS['zfp']
|
|
# avif tests fail on 32-bit
|
|
del EXTENSIONS['avif']
|
|
# spng build fail on 32-bit
|
|
del EXTENSIONS['spng']
|
|
|
|
openjpeg_inc = subprocess.check_output(
|
|
['pkgconf', '--variable=includedir', 'libopenjp2'],
|
|
text=True,
|
|
).strip()
|
|
EXTENSIONS['jpeg2k']['include_dirs'].append(openjpeg_inc)
|
|
EXTENSIONS['jpegxr']['include_dirs'].append(includedir + 'jxrlib')
|
|
EXTENSIONS['rcomp']['include_dirs'].append(includedir + 'cfitsio')
|
|
EXTENSIONS['zopfli']['include_dirs'].append(includedir + 'zopfli')
|
|
EXTENSIONS['lzham']['libraries'] = ['lzhamdll']
|
|
|