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 534BD158020 for ; Sat, 10 Dec 2022 04:36:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EF19E0825; Sat, 10 Dec 2022 04:36:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12C8EE0826 for ; Sat, 10 Dec 2022 04:36:02 +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 1F37F341006 for ; Sat, 10 Dec 2022 04:36:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E91F77A for ; Sat, 10 Dec 2022 04:35:59 +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: <1670646904.347692703dd09a0e5552b2f1d902bebeda5e1db3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/elfio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/elfio/Manifest dev-cpp/elfio/elfio-3.10.ebuild X-VCS-Directories: dev-cpp/elfio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 347692703dd09a0e5552b2f1d902bebeda5e1db3 X-VCS-Branch: master Date: Sat, 10 Dec 2022 04:35:59 +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: d68823f0-4231-4668-ad4e-af7281ab2b1d X-Archives-Hash: 46dd0830e6c68c1958ffa0f38eb1cbd2 commit: 347692703dd09a0e5552b2f1d902bebeda5e1db3 Author: Sam James gentoo org> AuthorDate: Sat Dec 10 04:27:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 10 04:35:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34769270 dev-cpp/elfio: drop 3.10 Signed-off-by: Sam James gentoo.org> dev-cpp/elfio/Manifest | 1 - dev-cpp/elfio/elfio-3.10.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/dev-cpp/elfio/Manifest b/dev-cpp/elfio/Manifest index 3293acb2df14..8ca0d701be55 100644 --- a/dev-cpp/elfio/Manifest +++ b/dev-cpp/elfio/Manifest @@ -1,2 +1 @@ -DIST elfio-3.10.tar.gz 4243841 BLAKE2B a4cd5e7cb8b2f13cd7341adacb623b996e07e8ac761cd0f1e8eb20a87770fa936bf97ad79a0ff8d700ac41278bae7c5dd00d277f4c2d47e73340aaf607b7ee49 SHA512 f609fe5162d1609d1d65f441dbf01011ca5ae36195d8b3a74dec2b72891e9f8f90d3fdbc9bf893f7186494071606e898e5519fda18665fc88ae9781c504cd4a9 DIST elfio-3.11.tar.gz 4150700 BLAKE2B 2e0270384f1fdbc8f8374c1a42b5bd0c6ba6faa8c8a7125063b682cd9808fbb3f330e2a0fa4646c8828f6d276ad8f92e36b69ab7916c3bd2b1b2ecad6708fcc1 SHA512 3a254aad62e707f2809e2997998aab6a9794d70791dc535a6de90bad3e9de3cbcc4f8e7787067ca7cd47ce2dc71cf52809747267bc36cfb08369b49a6b92cf5e diff --git a/dev-cpp/elfio/elfio-3.10.ebuild b/dev-cpp/elfio/elfio-3.10.ebuild deleted file mode 100644 index 18f8232d6cfc..000000000000 --- a/dev-cpp/elfio/elfio-3.10.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="ELF reader/producer header-only C++ library" -HOMEPAGE="https://github.com/serge1/ELFIO" -SRC_URI="https://github.com/serge1/${PN}/archive/Release_${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/${PN^^}-Release_${PV} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="test? ( dev-libs/boost )" - -src_configure() { - local mycmakeargs=( - -DELFIO_BUILD_TESTS=$(usex test) - ) - - cmake_src_configure -}