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 282CC15808B for ; Sun, 6 Mar 2022 16:46:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66522E0934; Sun, 6 Mar 2022 16:46:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D47FE0934 for ; Sun, 6 Mar 2022 16:46:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 66CA33432C0 for ; Sun, 6 Mar 2022 16:46:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5E871F1 for ; Sun, 6 Mar 2022 16:46:44 +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: <1646585170.a75b2ab7578d359fd5ed292279ebc2df29bbaaf6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/itpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/itpp/itpp-4.3.1-r1.ebuild X-VCS-Directories: sci-libs/itpp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a75b2ab7578d359fd5ed292279ebc2df29bbaaf6 X-VCS-Branch: master Date: Sun, 6 Mar 2022 16:46:44 +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: cc446dd7-dcac-415a-b09e-809ea572c836 X-Archives-Hash: 3286ac9483762d1c79a32698d848a04a commit: a75b2ab7578d359fd5ed292279ebc2df29bbaaf6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 6 16:46:10 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 6 16:46:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75b2ab7 sci-libs/itpp: Drop 4.3.1-r1, EAPI-6-- Closes: https://bugs.gentoo.org/834293 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/itpp/itpp-4.3.1-r1.ebuild | 59 -------------------------------------- 1 file changed, 59 deletions(-) diff --git a/sci-libs/itpp/itpp-4.3.1-r1.ebuild b/sci-libs/itpp/itpp-4.3.1-r1.ebuild deleted file mode 100644 index 8d522b501ed5..000000000000 --- a/sci-libs/itpp/itpp-4.3.1-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="C++ library of mathematical, signal processing and communication" -HOMEPAGE="http://itpp.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-3" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND=" - sci-libs/fftw:3.0= - virtual/blas - virtual/lapack -" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - virtual/latex-base - ) -" - -DOCS=( ChangeLog NEWS AUTHORS README ) - -src_prepare() { - cmake-utils_src_prepare - - # gentoo redefines the CMAKE_BUILD_TYPE - sed -i \ - -e 's/CMAKE_BUILD_TYPE STREQUAL Release/NOT CMAKE_BUILD_TYPE STREQUAL Debug/' \ - CMakeLists.txt || die - # respect gentoo doc dir - sed -i \ - -e "s:share/doc/itpp:share/doc/${PF}:" \ - itpp/CMakeLists.txt || die - - # respect gentoo libdir - sed -i "s#/lib#/$(get_libdir)#" itpp-config.cmake.in || die - sed -i "s#/lib#/$(get_libdir)#" itpp.pc.cmake.in || die - sed -i \ - -e "s#LIBRARY DESTINATION lib#LIBRARY DESTINATION $(get_libdir)#" \ - -e "s#ARCHIVE DESTINATION lib#ARCHIVE DESTINATION $(get_libdir)#" \ - itpp/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DBLA_VENDOR=Generic - -DHTML_DOCS=$(usex doc) - ) - cmake-utils_src_configure -}