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 936891581D3 for ; Thu, 16 May 2024 16:27:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D32AE2A27; Thu, 16 May 2024 16:27:23 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 365CEE2A21 for ; Thu, 16 May 2024 16:27:23 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 486EC342FFD for ; Thu, 16 May 2024 16:27:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C819C1AD5 for ; Thu, 16 May 2024 16:27:19 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1715825773.1ea39fbceb8e0f994851bb06b761e05b7f3edaf0.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/octetos-core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild X-VCS-Directories: dev-libs/octetos-core/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 1ea39fbceb8e0f994851bb06b761e05b7f3edaf0 X-VCS-Branch: master Date: Thu, 16 May 2024 16:27:19 +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: a858f610-16bc-459d-a09f-d08cd867cc5f X-Archives-Hash: a8ea67ed34ad3a11cefb8f7ba72950ea commit: 1ea39fbceb8e0f994851bb06b761e05b7f3edaf0 Author: Quincy Fleming protonmail com> AuthorDate: Thu May 16 02:15:22 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Thu May 16 02:16:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1ea39fbc dev-libs/octetos-core: update EAPI 7 -> 8 Signed-off-by: Quincy Fleming protonmail.com> dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild | 14 ++++++++++++-- dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild | 2 -- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild b/dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild index 55a658e6c0..935a7d4e1f 100644 --- a/dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild +++ b/dev-libs/octetos-core/octetos-core-2.32.0_beta.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 MYPV="${PV/_beta/-beta/}" DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation" @@ -19,6 +19,7 @@ S="${WORKDIR}/${PN}-${MYPV}" LICENSE="GPL-3" SLOT="0" +IUSE="static-libs" DEPEND=" dev-libs/libconfig @@ -35,5 +36,14 @@ BDEPEND=" src_prepare() { default - eautoreconf -fi + eautoreconf +} + +src_configure() { + econf $(usex static-libs --enable-static '') +} + +src_install() { + emake prefix="${EPREFIX}/usr" DESTDIR="${D}" install + find "${D}" -type f -iname '*.la' -delete || die } diff --git a/dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild b/dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild index 195767b866..935a7d4e1f 100644 --- a/dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild +++ b/dev-libs/octetos-core/octetos-core-2.62.1_beta.ebuild @@ -3,8 +3,6 @@ EAPI=8 -inherit toolchain-funcs - MYPV="${PV/_beta/-beta/}" DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation" HOMEPAGE="https://github.com/azaeldevel/octetos-core"