public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/pdal/, sci-libs/pdal/files/
Date: Sun,  1 Dec 2024 11:45:37 +0000 (UTC)	[thread overview]
Message-ID: <1733053470.a20cba1146cb3db3b0cb98dc84650131d4c84fc3.sam@gentoo> (raw)

commit:     a20cba1146cb3db3b0cb98dc84650131d4c84fc3
Author:     Thomas Bettler <thomas.bettler <AT> gmail <DOT> com>
AuthorDate: Fri Sep  6 09:03:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 11:44:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20cba11

sci-libs/pdal: drop 2.5.3

Signed-off-by: Thomas Bettler <thomas.bettler <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/pdal/Manifest                          |  1 -
 sci-libs/pdal/files/pdal-2.4.3-fix-gdal37.patch | 37 ---------------
 sci-libs/pdal/pdal-2.5.3-r1.ebuild              | 61 -------------------------
 3 files changed, 99 deletions(-)

diff --git a/sci-libs/pdal/Manifest b/sci-libs/pdal/Manifest
index 81a247560380..b1cc562098a7 100644
--- a/sci-libs/pdal/Manifest
+++ b/sci-libs/pdal/Manifest
@@ -1,4 +1,3 @@
-DIST PDAL-2.5.3-src.tar.bz2 102669314 BLAKE2B 1c6c8406f8de65a04364cc1141be809c00ea716fcfd5578833883357258855b3f7e70ea03c86f487dff0bc98072c29bed45a613c14ace05aef6ae49627b40374 SHA512 f67a303711b7d9e9dc14260afb96d299bcd5327ba0cc947143a583f55bd532a248b131e4602fd37d711ad0084e8601420828dacac40c414b95b8e9f9e8175e1b
 DIST PDAL-2.6.2-src.tar.bz2 87274819 BLAKE2B 5855a268889064fdc72d15ec1dbe7ab3ed8eb6bee2fa4ec724e9f287f25d6b9f9f9171829a2121e156bec575c96a42f26e223c807c8aa9d3a88f77c245c3d01c SHA512 4a9c07deaca6fbe994808904a6b90e09beb418155c662369046b6ddea03c8aa57ca2e9b4c2057c8e409bb197b90adb36e334c9c2136034a021be84763fa93551
 DIST PDAL-2.7.2-src.tar.bz2 87431434 BLAKE2B f5093008a84c9e5250bb9e8124c694a919b2a31c0f55b750f8d186e954c51c6672b5e63824203dfeb4efa24e6b0a8c0d354229a655416d5ef56336dc2bcd3a80 SHA512 81e4d4b136e292f5a2e4145f730e00375a26a6a2aa52af679bea6d9d371b55c92641475ea332fc8301fe35d237415b70ea311da3fc1bc4ff69013a7448f66896
 DIST PDAL-2.8.0-src.tar.bz2 87483358 BLAKE2B 8d15187f2b6a7110d52e2621d65ee8eedce0dd21c415c18fbb1e48dbdb0b24307b42487f4631f227875079ba47031c27196399970458236c7139b8f1418aa3b8 SHA512 d3b02f13e56423c5086e72908f932db384cb0d64f3d3e5cec121c1e283268f8e38f6123ff852d77c07ea9777001a78595bdafed458dc06aa52402d92e76ce995

diff --git a/sci-libs/pdal/files/pdal-2.4.3-fix-gdal37.patch b/sci-libs/pdal/files/pdal-2.4.3-fix-gdal37.patch
deleted file mode 100644
index 29edb8518b9d..000000000000
--- a/sci-libs/pdal/files/pdal-2.4.3-fix-gdal37.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From https://github.com/PDAL/PDAL/commit/516e33ad7f40e54affd5754617fbe26d70ef2dd4
-From: Jorge Gustavo Rocha <jgr@geomaster.pt>
-Date: Thu, 20 Apr 2023 13:11:46 +0100
-Subject: [PATCH] prevent invalid conversion from const compile error (#4030)
-squashed with
-From https://github.com/dg0yt/PDAL/commit/49eb31840dc1c07d6ff235ea292c7c0703f8a884
-From: Kai Pastor <dg0yt@darc.de>
-Date: Fri, 12 May 2023 07:44:59 +0200
-Subject: [PATCH] Don't use const_cast
-
-Amends #4030.
----
- pdal/Geometry.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/pdal/Geometry.cpp b/pdal/Geometry.cpp
-index 10d185dbe4..8b010d3378 100644
---- a/pdal/Geometry.cpp
-+++ b/pdal/Geometry.cpp
-@@ -153,7 +153,7 @@ Geometry& Geometry::operator=(const Geometry& input)
- 
- bool Geometry::srsValid() const
- {
--    OGRSpatialReference *srs = m_geom->getSpatialReference();
-+    const OGRSpatialReference *srs = m_geom->getSpatialReference();
-     return srs && srs->GetRoot();
- }
- 
-@@ -172,7 +172,7 @@ Utils::StatusWithReason Geometry::transform(SpatialReference out)
-         return StatusWithReason(-2,
-             "Geometry::transform() failed.  NULL target SRS.");
- 
--    OGRSpatialReference *inSrs = m_geom->getSpatialReference();
-+    const OGRSpatialReference *inSrs = m_geom->getSpatialReference();
-     SrsTransform transform(*inSrs, OGRSpatialReference(out.getWKT().data()));
-     if (m_geom->transform(transform.get()) != OGRERR_NONE)
-         return StatusWithReason(-1, "Geometry::transform() failed.");

diff --git a/sci-libs/pdal/pdal-2.5.3-r1.ebuild b/sci-libs/pdal/pdal-2.5.3-r1.ebuild
deleted file mode 100644
index a3c13fdd4978..000000000000
--- a/sci-libs/pdal/pdal-2.5.3-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A 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"
-
-LICENSE="BSD"
-SLOT="0/15"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
-IUSE="postgres test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	sys-devel/gettext
-	virtual/pkgconfig
-"
-RDEPEND="
-	net-misc/curl
-	app-arch/zstd:=
-	dev-libs/libxml2
-	dev-libs/openssl:=
-	sci-libs/gdal:=
-	sci-libs/libgeotiff:=
-	sys-libs/libunwind:=
-	sys-libs/zlib
-	postgres? ( dev-db/postgresql:*[xml] )
-"
-DEPEND="
-	test? ( sci-libs/gdal[geos,jpeg,png] )
-	${RDEPEND}
-"
-
-S="${WORKDIR}/PDAL-${PV}-src"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.4.3-fix-gdal37.patch"
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_PLUGIN_PGPOINTCLOUD="$(usex postgres)"
-		-DWITH_COMPLETION=ON
-	)
-
-	cmake_src_configure
-}
-
-src_test() {
-	local myctestargs=(
-		--exclude-regex '(pgpointcloudtest|pdal_io_bpf_base_test|pdal_io_bpf_zlib_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	other threads:[~2024-12-01 11:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-01 11:45 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-01-20  1:23 [gentoo-commits] repo/gentoo:master commit in: sci-libs/pdal/, sci-libs/pdal/files/ Sam James
2022-10-13 23:01 Sam James
2022-10-09 18:29 Andreas Sturmlechner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1733053470.a20cba1146cb3db3b0cb98dc84650131d4c84fc3.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox