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 6BD9D15808C for ; Thu, 10 Feb 2022 07:50:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 557D7E0942; Thu, 10 Feb 2022 07:50:26 +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 ECA3FE0920 for ; Thu, 10 Feb 2022 07:50:25 +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 7A9513430A7 for ; Thu, 10 Feb 2022 07:50:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C634B2B8 for ; Thu, 10 Feb 2022 07:50:22 +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: <1644479410.3a1b40fad7075f2180c95f807cdf66c93d84d954.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: 3a1b40fad7075f2180c95f807cdf66c93d84d954 X-VCS-Branch: master Date: Thu, 10 Feb 2022 07:50:22 +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: 39445a0b-fd4f-452d-9ca1-f70f5b41e7b4 X-Archives-Hash: 1e03c0491fba8ed2eeedbd41a678cab4 commit: 3a1b40fad7075f2180c95f807cdf66c93d84d954 Author: Sam James gentoo org> AuthorDate: Thu Feb 10 07:02:53 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 10 07:50:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1b40fa dev-cpp/elfio: add 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 insertions(+) diff --git a/dev-cpp/elfio/Manifest b/dev-cpp/elfio/Manifest index 0f9656cf99df..8207c887f2a5 100644 --- a/dev-cpp/elfio/Manifest +++ b/dev-cpp/elfio/Manifest @@ -1 +1,2 @@ +DIST elfio-3.10.tar.gz 4243841 BLAKE2B a4cd5e7cb8b2f13cd7341adacb623b996e07e8ac761cd0f1e8eb20a87770fa936bf97ad79a0ff8d700ac41278bae7c5dd00d277f4c2d47e73340aaf607b7ee49 SHA512 f609fe5162d1609d1d65f441dbf01011ca5ae36195d8b3a74dec2b72891e9f8f90d3fdbc9bf893f7186494071606e898e5519fda18665fc88ae9781c504cd4a9 DIST elfio-3.9.tar.gz 4265086 BLAKE2B 3f2f40930ad82b9bd4f53f14c117e71e5c8ba39f0952555c51f196ca03b187702347c80db30ecf6ad9d19bc4edfae18d1b3f04d4cd09e2b85f9bba9736e0a78a SHA512 479c4132ac3575940bd1e8190ba5253e54ae57f38319d7bca75ea85ee2f744f5d5b460d2d4ceb17eca0d0561c6e281673f050bbdab2f5ff526c031c220876bf1 diff --git a/dev-cpp/elfio/elfio-3.10.ebuild b/dev-cpp/elfio/elfio-3.10.ebuild new file mode 100644 index 000000000000..18f8232d6cfc --- /dev/null +++ b/dev-cpp/elfio/elfio-3.10.ebuild @@ -0,0 +1,27 @@ +# 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 +}