commit:     6396035612a623ee63deece111ecd342c3587460
Author:     Thomas Bettler <thomas.bettler <AT> gmail <DOT> com>
AuthorDate: Fri Feb 13 18:56:48 2026 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 14 11:46:09 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63960356

sci-libs/pdal: bump v2.10.0

Signed-off-by: Thomas Bettler <thomas.bettler <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/45803
Closes: https://github.com/gentoo/gentoo/pull/45803
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/pdal/Manifest           |  1 +
 sci-libs/pdal/pdal-2.10.0.ebuild | 58 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/sci-libs/pdal/Manifest b/sci-libs/pdal/Manifest
index 6fb1b42152d9..d70ca34d7be7 100644
--- a/sci-libs/pdal/Manifest
+++ b/sci-libs/pdal/Manifest
@@ -1,2 +1,3 @@
 DIST PDAL-2.8.4-src.tar.bz2 86725389 BLAKE2B 
f1f1009be5d0655f33fe6c57f1efe0f878bb2a2de2075a3d18b2e64d4a07d5201857a78b13288365b9110e106022a473cf7793e1ac2c744499ba0752c67bd0c3
 SHA512 
5d754d6fa656615aa4a9dc31ca5d5c051194148d721ce217ca4b8a87af54889717b8470b789899e486e0ed3154906659b0c336ed7571abddda0a182febf37e6b
 DIST PDAL-2.9.2-src.tar.bz2 96877895 BLAKE2B 
f8b163c4338051c477d045024214060506c8041fec99c1a921929774962878516cc205978d9cff92a85ebe2d56f4bb7578b913eda636158b98e49d8c8bc833c4
 SHA512 
eaf2e9b57880a561165850c059ff1d3abee90864bb3944a8c0a8af697687b4b195423ad95f4efc15a74b98e7397a60bed1a6d94ce84e9e4b3555729618f23942
+DIST PDAL-2.10.0-src.tar.bz2 102249186 BLAKE2B 
d1be9ccc588c7cfba07c3a8291311cbed03ed31c4d55e6cd193ef9af5b0293be4e71a17d86d06b47b764adfaa4b17f185c4376e3b4e9ef156708b6392515835b
 SHA512 
5da36265be94c941983765c2d25e0a2a74df382641c24c7fa1566ff463927412faa2c9656ab7f6ce22eace0ec6e86da3efb8eb98bc524cb9c282a052d30adafd

diff --git a/sci-libs/pdal/pdal-2.10.0.ebuild b/sci-libs/pdal/pdal-2.10.0.ebuild
new file mode 100644
index 000000000000..b9fcb4315fbc
--- /dev/null
+++ b/sci-libs/pdal/pdal-2.10.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2021-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++ library for translating and manipulating point cloud data"
+HOMEPAGE="https://pdal.io/";
+SRC_URI="https://github.com/PDAL/PDAL/releases/download/${PV}/PDAL-${PV}-src.tar.bz2";
+S="${WORKDIR}/PDAL-${PV}-src"
+
+LICENSE="BSD"
+SLOT="0/20"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="debug postgres test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+       sys-devel/gettext
+       virtual/pkgconfig
+"
+RDEPEND="
+       app-arch/zstd:=
+       dev-libs/libxml2:=
+       dev-libs/openssl:=
+       net-misc/curl
+       sci-libs/gdal:=
+       >=sci-libs/libgeotiff-1.7.0:=
+       virtual/zlib:=
+       debug? ( sys-libs/libunwind:= )
+       postgres? ( dev-db/postgresql:*[xml] )
+"
+DEPEND="
+       ${RDEPEND}
+       test? ( sci-libs/gdal[geos,jpeg(+),png,sqlite] )
+"
+
+src_configure() {
+       local mycmakeargs=(
+               -DBUILD_PLUGIN_PGPOINTCLOUD="$(usex postgres)"
+               -DWITH_COMPLETION=ON
+               -DWITH_BACKTRACE="$(usex debug)"
+               -DWITH_TESTS="$(usex test)"
+       )
+
+       cmake_src_configure
+}
+
+src_test() {
+       local myctestargs=(
+               --exclude-regex 
'(pgpointcloudtest|pdal_info_test|pdal_io_bpf_base_test|pdal_io_bpf_zlib_test|pdal_io_copc_reader_test|pdal_filters_overlay_test|pdal_filters_stats_test|pdal_app_plugin_test|pdal_merge_test|pdal_io_stac_reader_test)'
+               --output-on-failure
+               -j1
+       )
+
+       cmake_src_test
+}

Reply via email to