Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -2004,6 +2004,7 @@
"lept"
],
"versions": [
"1.87.0-1",
"1.84.1-2",
"1.84.1-1",
"1.84.0-1",
Expand Down
8 changes: 4 additions & 4 deletions subprojects/leptonica.wrap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[wrap-file]
directory = leptonica-1.84.1
source_url = https://github.com/DanBloomberg/leptonica/releases/download/1.84.1/leptonica-1.84.1.tar.gz
source_filename = leptonica-1.84.1.tar.gz
source_hash = 2b3e1254b1cca381e77c819b59ca99774ff43530209b9aeb511e1d46588a64f6
directory = leptonica-1.87.0
source_url = https://github.com/DanBloomberg/leptonica/releases/download/1.87.0/leptonica-1.87.0.tar.gz
source_filename = leptonica-1.87.0.tar.gz
source_hash = c73363397f96eb1295602bf44d708a994ad42046c791bf03ea0505d829bdb6a7
patch_directory = leptonica

[provide]
Expand Down
7 changes: 4 additions & 3 deletions subprojects/packagefiles/leptonica/meson.build
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
project(
'leptonica',
'c',
version: '1.84.1',
license: 'BSD-2-Clause',
version: '1.87.0',
meson_version: '>=0.59.0',

Check notice on line 6 in subprojects/packagefiles/leptonica/meson.build

View workflow job for this annotation

GitHub Actions / Ubuntu (x86_64)

Minimum Meson version is 0.59.0

0.56.0: oldest version supported by WrapDB 0.59.0: feature_option.allowed(), feature_option.require()
)

cc = meson.get_compiler('c')
Expand All @@ -19,10 +20,10 @@
foreach _feat, _spec : {
'libjp2k': ['libopenjp2', '>=2.1.0'],
'libjpeg': ['libjpeg'],
'libpng' : ['libpng'],
'libpng': ['libpng'],
'libtiff': ['libtiff-4'],
'libwebp': ['libwebp'],
'libz' : ['zlib'],
'libz': ['zlib'],
}
_dep = dependency(
_spec[0],
Expand Down
18 changes: 9 additions & 9 deletions subprojects/packagefiles/leptonica/meson_options.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
option(
'libgif' ,
'libgif',
type: 'feature',
value: 'auto',
)
option(
'libjp2k' ,
'libjp2k',
type: 'feature',
value: 'auto',
)
option(
'libjpeg' ,
'libjpeg',
type: 'feature',
value: 'auto',
)
option(
'libpng' ,
'libpng',
type: 'feature',
value: 'auto',
)
option(
'libtiff' ,
'libtiff',
type: 'feature',
value: 'auto',
)
option(
'libwebp' ,
'libwebp',
type: 'feature',
value: 'auto',
)
Expand All @@ -34,17 +34,17 @@ option(
value: 'auto',
)
option(
'libz' ,
'libz',
type: 'feature',
value: 'auto',
)
option(
'progs' ,
'progs',
type: 'feature',
value: 'auto',
)
option(
'tests' ,
'tests',
type: 'feature',
value: 'auto',
)
Loading
Loading