package/libosmium: bump version to 2.17.2

Changelog: https://github.com/osmcode/libosmium/releases/tag/v2.17.2

Since commit ac5a20e64b: "Github actions: Use lz4 library in CI builds"
lz4 is mandatory dependency, so move it to permanent dependencies list.

Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Maxim Kochetkov 2021-12-30 10:50:28 +03:00 committed by Thomas Petazzoni
parent 5084994d3f
commit e2f2186ffa
3 changed files with 4 additions and 7 deletions

View file

@ -6,6 +6,7 @@ config BR2_PACKAGE_LIBOSMIUM
depends on BR2_USE_WCHAR # boost
select BR2_PACKAGE_BOOST
select BR2_PACKAGE_PROTOZERO
select BR2_PACKAGE_LZ4
help
A fast and flexible C++ library for working with OpenStreetMap
data. Libosmium works on Linux, macOS and Windows.

View file

@ -1,3 +1,3 @@
# Locally calculated
sha256 6faa7952aa1210dcd9ae4ef83e7653a4f8eb880e6a4e5b37f87a5d4835f6327b libosmium-2.17.1.tar.gz
sha256 f30e37c28f37ca3857b8107a12e6d138a0719831eca52a836692909801c8b0bd libosmium-2.17.2.tar.gz
sha256 c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566 LICENSE

View file

@ -4,12 +4,12 @@
#
################################################################################
LIBOSMIUM_VERSION = 2.17.1
LIBOSMIUM_VERSION = 2.17.2
LIBOSMIUM_SITE = $(call github,osmcode,libosmium,v$(LIBOSMIUM_VERSION))
LIBOSMIUM_LICENSE = BSL-1.0
LIBOSMIUM_LICENSE_FILES = LICENSE
LIBOSMIUM_INSTALL_STAGING = YES
LIBOSMIUM_DEPENDENCIES = boost protozero
LIBOSMIUM_DEPENDENCIES = boost protozero lz4
ifeq ($(BR2_PACKAGE_BZIP2),y)
LIBOSMIUM_DEPENDENCIES += bzip2
@ -23,10 +23,6 @@ ifeq ($(BR2_PACKAGE_LIBGEOS),y)
LIBOSMIUM_DEPENDENCIES += libgeos
endif
ifeq ($(BR2_PACKAGE_LZ4),y)
LIBOSMIUM_DEPENDENCIES += lz4
endif
ifeq ($(BR2_PACKAGE_PROJ),y)
LIBOSMIUM_DEPENDENCIES += proj
endif