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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 77102138353 for ; Sun, 8 Mar 2020 20:33:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A247E0882; Sun, 8 Mar 2020 20:33:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 434A7E0882 for ; Sun, 8 Mar 2020 20:33:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 931BA34F35E for ; Sun, 8 Mar 2020 20:32:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8C5E12B for ; Sun, 8 Mar 2020 20:32:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1583697429.803867c67fd65907ce18865eb1a3c9292e65f5f1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/liblas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/liblas/liblas-1.8.1-r2.ebuild X-VCS-Directories: sci-geosciences/liblas/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 803867c67fd65907ce18865eb1a3c9292e65f5f1 X-VCS-Branch: master Date: Sun, 8 Mar 2020 20:32:56 +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: 6e4d44e4-437e-4d00-b2fd-4683f75ec81e X-Archives-Hash: bcc047bf7246acc6c6a289318629a999 commit: 803867c67fd65907ce18865eb1a3c9292e65f5f1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 8 19:57:09 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 8 19:57:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=803867c6 sci-geosciences/liblas: Drop 1.8.1-r2 Closes: https://bugs.gentoo.org/698846 Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-geosciences/liblas/liblas-1.8.1-r2.ebuild | 50 --------------------------- 1 file changed, 50 deletions(-) diff --git a/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild b/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild deleted file mode 100644 index 949af96ab07..00000000000 --- a/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="C/C++ library for manipulating the LAS LiDAR format common in GIS" -HOMEPAGE="https://github.com/libLAS/libLAS/" -SRC_URI="https://github.com/libLAS/libLAS/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 ~ia64 ppc ppc64 x86" -IUSE="gdal" - -DEPEND=" - dev-libs/boost:= - sci-geosciences/laszip - sci-libs/libgeotiff:= - gdal? ( sci-libs/gdal:= ) -" -RDEPEND="${DEPEND}" - -# tests known to fail due to LD_LIBRARY_PATH issue -RESTRICT="test" - -S="${WORKDIR}/libLAS-${PV}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8.0_remove-std-c++98.patch - "${FILESDIR}"/${P}-fix-overload-call.patch # bug 661654 - "${FILESDIR}"/${P}-CVE-2018-20540.patch # bug 678482 -) - -src_prepare() { - cmake_src_prepare - - # add missing linkage - sed -e 's:${LAS2COL} ${LIBLAS_C_LIB_NAME}:& ${CMAKE_THREAD_LIBS_INIT}:' \ - -i "${S}/apps/CMakeLists.txt" || die -} - -src_configure() { - local mycmakeargs=( - -DLIBLAS_LIB_SUBDIR=$(get_libdir) - -DWITH_GDAL=$(usex gdal) - ) - cmake_src_configure -}