@img/sharp-libvips-dev-wasm32 1.2.4 → 1.3.0-rc.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/README.md +23 -22
  2. package/include/aom/aom_codec.h +1 -1
  3. package/include/aom/aom_decoder.h +4 -0
  4. package/include/aom/aom_encoder.h +19 -8
  5. package/include/aom/aom_ext_ratectrl.h +664 -0
  6. package/include/aom/aom_image.h +93 -30
  7. package/include/aom/aom_tpl.h +99 -0
  8. package/include/aom/aomcx.h +89 -16
  9. package/include/aom/aomdx.h +12 -0
  10. package/include/expat.h +15 -3
  11. package/include/expat_config.h +6 -6
  12. package/include/expat_external.h +4 -4
  13. package/include/glib-2.0/gio/gdbusconnection.h +2 -8
  14. package/include/glib-2.0/gio/gdbusinterfaceskeleton.h +8 -1
  15. package/include/glib-2.0/gio/gfileattribute.h +1 -1
  16. package/include/glib-2.0/gio/gfileinfo.h +12 -0
  17. package/include/glib-2.0/gio/gicon.h +1 -1
  18. package/include/glib-2.0/gio/gio-autocleanups.h +0 -1
  19. package/include/glib-2.0/gio/gio-visibility.h +68 -0
  20. package/include/glib-2.0/gio/gio.h +2 -0
  21. package/include/glib-2.0/gio/gioenums.h +66 -44
  22. package/include/glib-2.0/gio/gioenumtypes.h +2 -0
  23. package/include/glib-2.0/gio/giptosmessage.h +46 -0
  24. package/include/glib-2.0/gio/gipv6tclassmessage.h +46 -0
  25. package/include/glib-2.0/gio/gresolver.h +1 -1
  26. package/include/glib-2.0/gio/gsettings.h +1 -1
  27. package/include/glib-2.0/gio/gsocketcontrolmessage.h +2 -0
  28. package/include/glib-2.0/glib/gatomic.h +26 -2
  29. package/include/glib-2.0/glib/gfileutils.h +2 -2
  30. package/include/glib-2.0/glib/ghook.h +3 -1
  31. package/include/glib-2.0/glib/giochannel.h +1 -1
  32. package/include/glib-2.0/glib/gkeyfile.h +1 -1
  33. package/include/glib-2.0/glib/glib-visibility.h +68 -0
  34. package/include/glib-2.0/glib/gmacros.h +36 -0
  35. package/include/glib-2.0/glib/gmain.h +4 -0
  36. package/include/glib-2.0/glib/gmarkup.h +20 -1
  37. package/include/glib-2.0/glib/gmem.h +4 -4
  38. package/include/glib-2.0/glib/gmessages.h +7 -9
  39. package/include/glib-2.0/glib/gnode.h +1 -1
  40. package/include/glib-2.0/glib/goption.h +1 -1
  41. package/include/glib-2.0/glib/gsequence.h +2 -2
  42. package/include/glib-2.0/glib/gslice.h +12 -4
  43. package/include/glib-2.0/glib/gspawn.h +1 -1
  44. package/include/glib-2.0/glib/gstrfuncs.h +191 -1
  45. package/include/glib-2.0/glib/gtestutils.h +6 -3
  46. package/include/glib-2.0/glib/gtimer.h +1 -0
  47. package/include/glib-2.0/glib/gtypes.h +46 -4
  48. package/include/glib-2.0/glib/gunicode.h +13 -1
  49. package/include/glib-2.0/glib/guri.h +3 -3
  50. package/include/glib-2.0/glib/gutils.h +10 -1
  51. package/include/glib-2.0/glib/gvarianttype.h +16 -16
  52. package/include/glib-2.0/glib/gversionmacros.h +31 -0
  53. package/include/glib-2.0/glib-unix.h +4 -0
  54. package/include/glib-2.0/gmodule/gmodule-visibility.h +68 -0
  55. package/include/glib-2.0/gmodule.h +1 -1
  56. package/include/glib-2.0/gobject/gbinding.h +1 -1
  57. package/include/glib-2.0/gobject/genums.h +2 -2
  58. package/include/glib-2.0/gobject/gobject-visibility.h +68 -0
  59. package/include/glib-2.0/gobject/gobject.h +1 -1
  60. package/include/glib-2.0/gobject/gparam.h +1 -1
  61. package/include/glib-2.0/gobject/gsignal.h +8 -8
  62. package/include/glib-2.0/gobject/gtype.h +17 -17
  63. package/include/hwy/aligned_allocator.h +44 -2
  64. package/include/hwy/auto_tune.h +22 -6
  65. package/include/hwy/base.h +60 -90
  66. package/include/hwy/bit_set.h +410 -0
  67. package/include/hwy/cache_control.h +3 -2
  68. package/include/hwy/detect_compiler_arch.h +134 -14
  69. package/include/hwy/detect_targets.h +82 -36
  70. package/include/hwy/highway.h +15 -0
  71. package/include/hwy/nanobenchmark.h +12 -3
  72. package/include/hwy/ops/arm_neon-inl.h +96 -25
  73. package/include/hwy/ops/arm_sve-inl.h +250 -95
  74. package/include/hwy/ops/emu128-inl.h +12 -7
  75. package/include/hwy/ops/generic_ops-inl.h +271 -131
  76. package/include/hwy/ops/loongarch_lasx-inl.h +31 -9
  77. package/include/hwy/ops/loongarch_lsx-inl.h +33 -12
  78. package/include/hwy/ops/ppc_vsx-inl.h +99 -19
  79. package/include/hwy/ops/rvv-inl.h +239 -130
  80. package/include/hwy/ops/scalar-inl.h +22 -7
  81. package/include/hwy/ops/set_macros-inl.h +163 -107
  82. package/include/hwy/ops/wasm_128-inl.h +13 -22
  83. package/include/hwy/ops/x86_128-inl.h +223 -120
  84. package/include/hwy/ops/x86_256-inl.h +70 -134
  85. package/include/hwy/ops/x86_512-inl.h +130 -134
  86. package/include/hwy/print-inl.h +2 -0
  87. package/include/hwy/profiler.h +355 -264
  88. package/include/hwy/robust_statistics.h +3 -1
  89. package/include/hwy/timer.h +44 -0
  90. package/include/lcms2.h +35 -5
  91. package/include/lcms2_plugin.h +1 -1
  92. package/include/libexif/exif-utils.h +1 -1
  93. package/include/libheif/heif.h +2 -0
  94. package/include/libheif/heif_aux_images.h +2 -2
  95. package/include/libheif/heif_brands.h +16 -4
  96. package/include/libheif/heif_color.h +147 -25
  97. package/include/libheif/heif_components.h +264 -0
  98. package/include/libheif/heif_context.h +18 -4
  99. package/include/libheif/heif_cxx.h +20 -18
  100. package/include/libheif/heif_decoding.h +63 -9
  101. package/include/libheif/heif_encoding.h +46 -12
  102. package/include/libheif/heif_error.h +15 -6
  103. package/include/libheif/heif_export.h +48 -0
  104. package/include/libheif/heif_image.h +94 -32
  105. package/include/libheif/heif_image_handle.h +54 -3
  106. package/include/libheif/heif_items.h +25 -2
  107. package/include/libheif/heif_library.h +13 -18
  108. package/include/libheif/heif_metadata.h +5 -2
  109. package/include/libheif/heif_omaf.h +104 -0
  110. package/include/libheif/heif_plugin.h +80 -13
  111. package/include/libheif/heif_properties.h +259 -5
  112. package/include/libheif/heif_regions.h +5 -3
  113. package/include/libheif/heif_security.h +24 -2
  114. package/include/libheif/heif_sequences.h +163 -14
  115. package/include/libheif/heif_text.h +161 -0
  116. package/include/libheif/heif_tiling.h +2 -2
  117. package/include/libheif/heif_uncompressed.h +29 -5
  118. package/include/libheif/heif_version.h +2 -2
  119. package/include/libpng16/png.h +3526 -0
  120. package/include/libpng16/pngconf.h +615 -0
  121. package/include/libpng16/pnglibconf.h +233 -0
  122. package/include/png.h +3526 -0
  123. package/include/pngconf.h +615 -0
  124. package/include/pnglibconf.h +233 -0
  125. package/include/resvg.h +3 -3
  126. package/include/tiffconf.h +9 -10
  127. package/include/tiffio.h +10 -9
  128. package/include/tiffvers.h +1 -1
  129. package/include/ultrahdr_api.h +892 -0
  130. package/include/vips/VError8.h +17 -14
  131. package/include/vips/VImage8.h +235 -32
  132. package/include/vips/arithmetic.h +9 -9
  133. package/include/vips/basic.h +11 -1
  134. package/include/vips/colour.h +19 -2
  135. package/include/vips/conversion.h +8 -8
  136. package/include/vips/convolution.h +1 -1
  137. package/include/vips/create.h +2 -2
  138. package/include/vips/draw.h +1 -1
  139. package/include/vips/enumtypes.h +3 -0
  140. package/include/vips/foreign.h +74 -15
  141. package/include/vips/header.h +22 -0
  142. package/include/vips/image.h +8 -5
  143. package/include/vips/memory.h +1 -1
  144. package/include/vips/morphology.h +1 -1
  145. package/include/vips/operation.h +2 -1
  146. package/include/vips/private.h +5 -10
  147. package/include/vips/region.h +7 -1
  148. package/include/vips/resample.h +2 -2
  149. package/include/vips/semaphore.h +1 -5
  150. package/include/vips/threadpool.h +0 -1
  151. package/include/vips/version.h +6 -6
  152. package/include/zlib.h +5 -5
  153. package/lib/glib-2.0/include/glibconfig.h +2 -4
  154. package/lib/libaom.a +0 -0
  155. package/lib/libcgif.a +0 -0
  156. package/lib/libexif.a +0 -0
  157. package/lib/libexif.la +1 -1
  158. package/lib/libexpat.a +0 -0
  159. package/lib/libexpat.la +2 -2
  160. package/lib/libffi.a +0 -0
  161. package/lib/libgio-2.0.a +0 -0
  162. package/lib/libglib-2.0.a +0 -0
  163. package/lib/libgmodule-2.0.a +0 -0
  164. package/lib/libgobject-2.0.a +0 -0
  165. package/lib/libgthread-2.0.a +0 -0
  166. package/lib/libheif.a +0 -0
  167. package/lib/libhwy.a +0 -0
  168. package/lib/libimagequant.a +0 -0
  169. package/lib/libjpeg.a +0 -0
  170. package/lib/liblcms2.a +0 -0
  171. package/lib/libpng.a +0 -0
  172. package/lib/{libsharpyuv.la → libpng.la} +8 -8
  173. package/lib/libpng16.a +0 -0
  174. package/lib/{libwebp.la → libpng16.la} +7 -7
  175. package/lib/libresvg.a +0 -0
  176. package/lib/libsharpyuv.a +0 -0
  177. package/lib/libtiff.a +0 -0
  178. package/lib/libuhdr.a +0 -0
  179. package/lib/libvips-cpp.a +0 -0
  180. package/lib/libvips.a +0 -0
  181. package/lib/libwebp.a +0 -0
  182. package/lib/libwebpdecoder.a +0 -0
  183. package/lib/libwebpdemux.a +0 -0
  184. package/lib/libwebpmux.a +0 -0
  185. package/lib/libz.a +0 -0
  186. package/lib/pkgconfig/aom.pc +2 -2
  187. package/lib/pkgconfig/cgif.pc +1 -1
  188. package/lib/pkgconfig/expat.pc +1 -1
  189. package/lib/pkgconfig/gio-2.0.pc +1 -1
  190. package/lib/pkgconfig/glib-2.0.pc +1 -1
  191. package/lib/pkgconfig/gmodule-2.0.pc +1 -1
  192. package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
  193. package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
  194. package/lib/pkgconfig/gobject-2.0.pc +1 -1
  195. package/lib/pkgconfig/gthread-2.0.pc +1 -1
  196. package/lib/pkgconfig/lcms2.pc +1 -1
  197. package/lib/pkgconfig/libexif.pc +1 -1
  198. package/lib/pkgconfig/libheif.pc +1 -1
  199. package/lib/pkgconfig/libhwy.pc +3 -4
  200. package/lib/pkgconfig/libpng.pc +12 -0
  201. package/lib/pkgconfig/libpng16.pc +12 -0
  202. package/lib/pkgconfig/libsharpyuv.pc +1 -1
  203. package/lib/pkgconfig/libtiff-4.pc +2 -2
  204. package/lib/pkgconfig/libuhdr.pc +11 -0
  205. package/lib/pkgconfig/libwebp.pc +1 -1
  206. package/lib/pkgconfig/libwebpdecoder.pc +11 -0
  207. package/lib/pkgconfig/libwebpmux.pc +1 -1
  208. package/lib/pkgconfig/vips-cpp.pc +2 -2
  209. package/lib/pkgconfig/vips.pc +2 -2
  210. package/package.json +1 -1
  211. package/versions.json +15 -14
  212. package/include/spng.h +0 -537
  213. package/lib/libspng.a +0 -0
  214. package/lib/libtiff.la +0 -41
  215. package/lib/libwebpdemux.la +0 -41
  216. package/lib/libwebpmux.la +0 -41
  217. package/lib/pkgconfig/spng.pc +0 -10
@@ -4,19 +4,19 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.3"
8
- #define VIPS_VERSION_STRING "8.17.3"
7
+ #define VIPS_VERSION "8.18.3"
8
+ #define VIPS_VERSION_STRING "8.18.3"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
- #define VIPS_MINOR_VERSION (17)
10
+ #define VIPS_MINOR_VERSION (18)
11
11
  #define VIPS_MICRO_VERSION (3)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
- #define VIPS_LIBRARY_CURRENT (61)
15
+ #define VIPS_LIBRARY_CURRENT (62)
16
16
  #define VIPS_LIBRARY_REVISION (3)
17
- #define VIPS_LIBRARY_AGE (19)
17
+ #define VIPS_LIBRARY_AGE (20)
18
18
 
19
- #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with spng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nMagick load/save with MagickCore: false (dynamic module: false)"
19
+ #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nUHDR load/save with libuhdr: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with libpng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nRAW load with libraw: false\nMagick load/save with MagickCore: false (dynamic module: false)"
20
20
 
21
21
  /* Not really anything to do with versions, but this is a handy place to put
22
22
  * it.
package/include/zlib.h CHANGED
@@ -49,13 +49,13 @@
49
49
  extern "C" {
50
50
  #endif
51
51
 
52
- #define ZLIBNG_VERSION "2.2.5"
53
- #define ZLIBNG_VERNUM 0x020205F0L /* MMNNRRSM: major minor revision status modified */
52
+ #define ZLIBNG_VERSION "2.3.3"
53
+ #define ZLIBNG_VERNUM 0x020303F0L /* MMNNRRSM: major minor revision status modified */
54
54
  #define ZLIBNG_VER_MAJOR 2
55
- #define ZLIBNG_VER_MINOR 2
56
- #define ZLIBNG_VER_REVISION 5
55
+ #define ZLIBNG_VER_MINOR 3
56
+ #define ZLIBNG_VER_REVISION 3
57
57
  #define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
58
- #define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
58
+ #define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-9=beta, A-E=Release Candidate, F=Release */
59
59
  #define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
60
60
 
61
61
  #define ZLIB_VERSION "1.3.1.zlib-ng"
@@ -17,8 +17,6 @@
17
17
  #define GIO_STATIC_COMPILATION 1
18
18
  #define GMODULE_STATIC_COMPILATION 1
19
19
  #define GI_STATIC_COMPILATION 1
20
- #define G_INTL_STATIC_COMPILATION 1
21
- #define FFI_STATIC_BUILD 1
22
20
 
23
21
  /* Specifies that GLib's g_print*() functions wrap the
24
22
  * system printf functions. This is useful to know, for example,
@@ -114,8 +112,8 @@ typedef unsigned int guintptr;
114
112
  #define G_GUINTPTR_FORMAT "u"
115
113
 
116
114
  #define GLIB_MAJOR_VERSION 2
117
- #define GLIB_MINOR_VERSION 86
118
- #define GLIB_MICRO_VERSION 1
115
+ #define GLIB_MINOR_VERSION 89
116
+ #define GLIB_MICRO_VERSION 0
119
117
 
120
118
  #define G_OS_UNIX
121
119
  #define G_PLATFORM_WASM
package/lib/libaom.a CHANGED
Binary file
package/lib/libcgif.a CHANGED
Binary file
package/lib/libexif.a CHANGED
Binary file
package/lib/libexif.la CHANGED
@@ -1,5 +1,5 @@
1
1
  # libexif.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.4.7
2
+ # Generated by libtool (GNU libtool) 2.5.4
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
package/lib/libexpat.a CHANGED
Binary file
package/lib/libexpat.la CHANGED
@@ -23,8 +23,8 @@ dependency_libs=' -lm -L/src/build/target/lib'
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libexpat.
26
- current=12
27
- age=11
26
+ current=13
27
+ age=12
28
28
  revision=1
29
29
 
30
30
  # Is this an already installed library?
package/lib/libffi.a CHANGED
Binary file
package/lib/libgio-2.0.a CHANGED
Binary file
package/lib/libglib-2.0.a CHANGED
Binary file
Binary file
Binary file
Binary file
package/lib/libheif.a CHANGED
Binary file
package/lib/libhwy.a CHANGED
Binary file
Binary file
package/lib/libjpeg.a CHANGED
Binary file
package/lib/liblcms2.a CHANGED
Binary file
package/lib/libpng.a ADDED
Binary file
@@ -1,5 +1,5 @@
1
- # libsharpyuv.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.5.4 Debian-2.5.4-4
1
+ # libpng16.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.5.4
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
@@ -11,21 +11,21 @@ dlname=''
11
11
  library_names=''
12
12
 
13
13
  # The name of the static archive.
14
- old_library='libsharpyuv.a'
14
+ old_library='libpng16.a'
15
15
 
16
16
  # Linker flags that cannot go in dependency_libs.
17
17
  inherited_linker_flags=' -pthread'
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -lm -L/src/build/target/lib'
20
+ dependency_libs=' -L/src/build/target/lib -lz'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
24
24
 
25
- # Version information for libsharpyuv.
26
- current=1
27
- age=1
28
- revision=2
25
+ # Version information for libpng16.
26
+ current=74
27
+ age=58
28
+ revision=0
29
29
 
30
30
  # Is this an already installed library?
31
31
  installed=yes
package/lib/libpng16.a ADDED
Binary file
@@ -1,5 +1,5 @@
1
- # libwebp.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.5.4 Debian-2.5.4-4
1
+ # libpng16.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.5.4
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
@@ -11,20 +11,20 @@ dlname=''
11
11
  library_names=''
12
12
 
13
13
  # The name of the static archive.
14
- old_library='libwebp.a'
14
+ old_library='libpng16.a'
15
15
 
16
16
  # Linker flags that cannot go in dependency_libs.
17
17
  inherited_linker_flags=' -pthread'
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -L/src/build/target/lib /src/build/target/lib/libsharpyuv.la -lm'
20
+ dependency_libs=' -L/src/build/target/lib -lz'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
24
24
 
25
- # Version information for libwebp.
26
- current=9
27
- age=2
25
+ # Version information for libpng16.
26
+ current=74
27
+ age=58
28
28
  revision=0
29
29
 
30
30
  # Is this an already installed library?
package/lib/libresvg.a CHANGED
Binary file
package/lib/libsharpyuv.a CHANGED
Binary file
package/lib/libtiff.a CHANGED
Binary file
package/lib/libuhdr.a ADDED
Binary file
package/lib/libvips-cpp.a CHANGED
Binary file
package/lib/libvips.a CHANGED
Binary file
package/lib/libwebp.a CHANGED
Binary file
Binary file
Binary file
package/lib/libwebpmux.a CHANGED
Binary file
package/lib/libz.a CHANGED
Binary file
@@ -5,8 +5,8 @@ includedir=${prefix}/include
5
5
  libdir=${exec_prefix}/lib
6
6
 
7
7
  Name: aom
8
- Description: Alliance for Open Media AV1 codec library v3.13.1.
9
- Version: 3.13.1
8
+ Description: Alliance for Open Media AV1 codec library v3.14.1.
9
+ Version: 3.14.1
10
10
  Requires:
11
11
  Conflicts:
12
12
  Libs: -L${libdir} -laom
@@ -4,6 +4,6 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: cgif
6
6
  Description: A fast and lightweight GIF encoder
7
- Version: 0.5.0
7
+ Version: 0.5.3
8
8
  Libs: -L${libdir} -lcgif
9
9
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
4
4
  includedir=${prefix}/include
5
5
 
6
6
  Name: expat
7
- Version: 2.7.3
7
+ Version: 2.8.1
8
8
  Description: expat XML parser
9
9
  URL: https://libexpat.github.io/
10
10
  Libs: -L${libdir} -lexpat
@@ -18,7 +18,7 @@ gsettings=${bindir}/gsettings
18
18
 
19
19
  Name: GIO
20
20
  Description: glib I/O library
21
- Version: 2.86.1
21
+ Version: 2.89.0
22
22
  Requires: glib-2.0, gobject-2.0, gmodule-no-export-2.0, zlib
23
23
  Libs: -L${libdir} -lgio-2.0
24
24
  Cflags: -I${includedir}
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
11
11
 
12
12
  Name: GLib
13
13
  Description: C Utility Library
14
- Version: 2.86.1
14
+ Version: 2.89.0
15
15
  Libs: -L${libdir} -lglib-2.0 -lm -pthread
16
16
  Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.86.1
9
+ Version: 2.89.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.86.1
9
+ Version: 2.89.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.86.1
9
+ Version: 2.89.0
10
10
  Requires: glib-2.0
11
11
  Libs: -L${libdir} -lgmodule-2.0 -pthread
12
12
  Cflags: -I${includedir} -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GObject
6
6
  Description: GLib Type, Object, Parameter and Signal Library
7
- Version: 2.86.1
7
+ Version: 2.89.0
8
8
  Requires: glib-2.0, libffi >= 3.0.0
9
9
  Libs: -L${libdir} -lgobject-2.0
10
10
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GThread
6
6
  Description: Thread support for GLib
7
- Version: 2.86.1
7
+ Version: 2.89.0
8
8
  Requires: glib-2.0
9
9
  Libs: -L${libdir} -lgthread-2.0 -pthread
10
10
  Cflags: -I${includedir} -pthread
@@ -4,6 +4,6 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: lcms2
6
6
  Description: LCMS Color Management Library
7
- Version: 2.17
7
+ Version: 2.19
8
8
  Libs: -L${libdir} -llcms2 -lm -pthread
9
9
  Cflags: -I${includedir} -pthread
@@ -8,7 +8,7 @@ includedir=${prefix}/include
8
8
  Name: libexif
9
9
  Description: Library for easy access to EXIF data
10
10
  Requires:
11
- Version: 0.6.25
11
+ Version: 0.6.26
12
12
  Libs: -L${libdir} -lexif
13
13
  Libs.private: -lm
14
14
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ includedir=${prefix}/include
6
6
  Name: libheif
7
7
  Description: HEIF image codec.
8
8
  URL: https://github.com/strukturag/libheif
9
- Version: 1.20.2
9
+ Version: 1.23.0
10
10
  Requires:
11
11
  Requires.private: aom libsharpyuv
12
12
  Libs: -L${libdir} -lheif
@@ -1,10 +1,9 @@
1
1
  prefix=/src/build/target
2
- exec_prefix=${prefix}
3
- libdir=${exec_prefix}/lib
4
2
  includedir=${prefix}/include
3
+ libdir=${prefix}/lib
5
4
 
6
5
  Name: libhwy
7
6
  Description: Efficient and performance-portable SIMD wrapper
8
- Version: 1.3.0
7
+ Version: 1.4.0
9
8
  Libs: -L${libdir} -lhwy
10
- Cflags: -I${includedir} -DHWY_STATIC_DEFINE
9
+ Cflags: -I${includedir}
@@ -0,0 +1,12 @@
1
+ prefix=/src/build/target
2
+ exec_prefix=${prefix}
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include/libpng16
5
+
6
+ Name: libpng
7
+ Description: Loads and saves PNG files
8
+ Version: 1.6.58
9
+ Requires.private: zlib
10
+ Libs: -L${libdir} -lpng16
11
+ Libs.private: -lz
12
+ Cflags: -I${includedir}
@@ -0,0 +1,12 @@
1
+ prefix=/src/build/target
2
+ exec_prefix=${prefix}
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include/libpng16
5
+
6
+ Name: libpng
7
+ Description: Loads and saves PNG files
8
+ Version: 1.6.58
9
+ Requires.private: zlib
10
+ Libs: -L${libdir} -lpng16
11
+ Libs.private: -lz
12
+ Cflags: -I${includedir}
@@ -8,4 +8,4 @@ Description: Library for sharp RGB to YUV conversion
8
8
  Version: 1.6.0
9
9
  Cflags: -I${includedir}
10
10
  Libs: -L${libdir} -lsharpyuv
11
- Libs.private: -lm
11
+ Libs.private:
@@ -7,6 +7,6 @@ Name: libtiff
7
7
  Description: Tag Image File Format (TIFF) library.
8
8
  Version: 4.7.1
9
9
  Libs: -L${libdir} -ltiff
10
- Libs.private: -lwebp -ljpeg -lz -lm
10
+ Libs.private:
11
11
  Cflags: -I${includedir}
12
- Requires.private: libwebp libjpeg zlib
12
+ Requires.private: zlib libjpeg libwebp
@@ -0,0 +1,11 @@
1
+ prefix=/src/build/target
2
+ libdir=${prefix}/lib
3
+ includedir=${prefix}/include
4
+
5
+ Name: libuhdr
6
+ Description: Library for encoding and decoding ultrahdr images
7
+ Version: 1.4.0
8
+ Requires.private: libjpeg
9
+ Cflags: -I${includedir}
10
+ Libs: -L${libdir} -luhdr
11
+ Libs.private:
@@ -9,4 +9,4 @@ Version: 1.6.0
9
9
  Requires.private: libsharpyuv
10
10
  Cflags: -I${includedir}
11
11
  Libs: -L${libdir} -lwebp
12
- Libs.private: -lm
12
+ Libs.private:
@@ -0,0 +1,11 @@
1
+ prefix=/src/build/target
2
+ exec_prefix=${prefix}
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include
5
+
6
+ Name: libwebpdecoder
7
+ Description: Library for the WebP graphics format (decode only)
8
+ Version: 1.6.0
9
+ Cflags: -I${includedir}
10
+ Libs: -L${libdir} -lwebpdecoder
11
+ Libs.private:
@@ -9,4 +9,4 @@ Version: 1.6.0
9
9
  Requires.private: libwebp >= 0.2.0
10
10
  Cflags: -I${includedir}
11
11
  Libs: -L${libdir} -lwebpmux
12
- Libs.private: -lm
12
+ Libs.private:
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips-cpp
6
6
  Description: C++ API for vips8 image processing library
7
- Version: 8.17.3
8
- Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
7
+ Version: 8.18.3
8
+ Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips-cpp -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips
6
6
  Description: Image processing library
7
- Version: 8.17.3
8
- Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
7
+ Version: 8.18.3
8
+ Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev-wasm32",
3
- "version": "1.2.4",
3
+ "version": "1.3.0-rc.10",
4
4
  "description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",
package/versions.json CHANGED
@@ -1,20 +1,21 @@
1
1
  {
2
- "aom": "3.13.1",
3
- "cgif": "0.5.0",
4
- "emscripten": "4.0.18",
5
- "exif": "0.6.25",
6
- "expat": "2.7.3",
2
+ "aom": "3.14.1",
3
+ "cgif": "0.5.3",
4
+ "emscripten": "6.0.0",
5
+ "exif": "0.6.26",
6
+ "expat": "2.8.1",
7
7
  "ffi": "3.5.2",
8
- "glib": "2.86.1",
9
- "heif": "1.20.2",
10
- "highway": "1.3.0",
8
+ "glib": "2.89.0",
9
+ "heif": "1.23.0",
10
+ "highway": "1.4.0",
11
11
  "imagequant": "2.4.1",
12
- "lcms": "2.17",
12
+ "lcms": "2.19.1",
13
13
  "mozjpeg": "0826579",
14
- "resvg": "0.45.1",
15
- "spng": "0.7.4",
16
- "tiff": "4.7.1",
17
- "vips": "8.17.3",
14
+ "png": "1.6.58",
15
+ "resvg": "0.47.0",
16
+ "tiff": "732665c",
17
+ "uhdr": "13a058f",
18
+ "vips": "8.18.3",
18
19
  "webp": "1.6.0",
19
- "zlib-ng": "2.2.5"
20
+ "zlib-ng": "2.3.3"
20
21
  }