From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23874158041 for ; Fri, 15 Mar 2024 07:03:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4688E29BD; Fri, 15 Mar 2024 07:03:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91E33E29BD for ; Fri, 15 Mar 2024 07:03:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AF7533BDE1 for ; Fri, 15 Mar 2024 07:03:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF4481504 for ; Fri, 15 Mar 2024 07:03:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710486110.c92e549181c8713a1e15a659d1e79529e9722ba5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/laszip/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/laszip/laszip-3.4.1-r1.ebuild X-VCS-Directories: sci-geosciences/laszip/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c92e549181c8713a1e15a659d1e79529e9722ba5 X-VCS-Branch: master Date: Fri, 15 Mar 2024 07:03:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2a9269cc-63d5-4007-8fb2-029572560330 X-Archives-Hash: 6d1d8848d6896c4e0e40c643df78e306 commit: c92e549181c8713a1e15a659d1e79529e9722ba5 Author: Eli Schwartz gmail com> AuthorDate: Fri Mar 15 06:54:11 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 15 07:01:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c92e5491 sci-geosciences/laszip: update EAPI 7 -> 8 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-geosciences/laszip/laszip-3.4.1-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/sci-geosciences/laszip/laszip-3.4.1-r1.ebuild b/sci-geosciences/laszip/laszip-3.4.1-r1.ebuild new file mode 100644 index 000000000000..39ce3fba99a0 --- /dev/null +++ b/sci-geosciences/laszip/laszip-3.4.1-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Library for free and lossless compression of the LAS LiDAR format" +HOMEPAGE="https://laszip.org/" +SRC_URI="https://github.com/LASzip/LASzip/releases/download/${PV}/${PN}-src-${PV}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +S="${WORKDIR}/${PN}-src-${PV}" + +src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/862582 + # Fixed in newer version. + filter-lto + + cmake_src_configure +}