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 6A964158041 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 BF891E29C2; 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 9D0D7E29C2 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 7644433BF29 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 D36651515 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.5426205390c7afe9a53817e27035c76a1460cda2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/laszip/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/laszip/Manifest sci-geosciences/laszip/laszip-3.4.3.ebuild X-VCS-Directories: sci-geosciences/laszip/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5426205390c7afe9a53817e27035c76a1460cda2 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: 4dfa2e1d-175e-4abe-a8f4-7de2ae209baa X-Archives-Hash: f421f7d1fd06acdeca2ee7899b7b0f21 commit: 5426205390c7afe9a53817e27035c76a1460cda2 Author: Eli Schwartz gmail com> AuthorDate: Fri Mar 15 06:55:22 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=54262053 sci-geosciences/laszip: add 3.4.3 New version contains fix for LTO. Drop workaround. Bug: https://bugs.gentoo.org/862582 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-geosciences/laszip/Manifest | 1 + sci-geosciences/laszip/laszip-3.4.3.ebuild | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/sci-geosciences/laszip/Manifest b/sci-geosciences/laszip/Manifest index f9670a5d9ccf..f95abaa14bf2 100644 --- a/sci-geosciences/laszip/Manifest +++ b/sci-geosciences/laszip/Manifest @@ -1 +1,2 @@ DIST laszip-src-3.4.1.tar.gz 219421 BLAKE2B b1bb3f66d9209c6a137af84c8d220ee6a50309139721b8e0befb4f56991e8153fc6446666ca5c2cdcb57abf297694f1f679a3961dabdff6450bc6dcc965ef6cd SHA512 001602a602dda1e43a08ee306b9c7c23faaf5777d551c269aac4a21b1c99449d2f12f46a0f95ff237003a0ab691eaca15b43b2f4d354651abc5d54930a39a134 +DIST laszip-src-3.4.3.tar.gz 219534 BLAKE2B fb19a3494a8ba8ecf7463087eb9eb11112d9c6a84f722c394e33574c774b802e80e5eb69bea1ca900b580b21b58515d1176018d36a761151354f9775caf88ded SHA512 52033d4e271a75f77de9f112e034ff080e476c0d117010136088b255323e4542550c0fa4f87d86521959787919ca3c7e49ef8c8975ba8f8239799a4d7f34d53f diff --git a/sci-geosciences/laszip/laszip-3.4.3.ebuild b/sci-geosciences/laszip/laszip-3.4.3.ebuild new file mode 100644 index 000000000000..f933e83e1d19 --- /dev/null +++ b/sci-geosciences/laszip/laszip-3.4.3.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +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}"