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 0E9BF158021 for ; Sat, 15 Oct 2022 20:07:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AA3AE08DD; Sat, 15 Oct 2022 20:07:24 +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 2C444E08DD for ; Sat, 15 Oct 2022 20:07:24 +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 512EA340F1D for ; Sat, 15 Oct 2022 20:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4BD0620 for ; Sat, 15 Oct 2022 20:07:21 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1665864405.360a640ad90ee5a87a5dcaff4e0ca66c472fa053.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/bottlerocket/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild X-VCS-Directories: app-misc/bottlerocket/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 360a640ad90ee5a87a5dcaff4e0ca66c472fa053 X-VCS-Branch: master Date: Sat, 15 Oct 2022 20:07:21 +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: 4be53c36-5d57-45ac-860d-27e00a497bc8 X-Archives-Hash: 4f5031fc45bfd681f1dd53a8070c73f1 commit: 360a640ad90ee5a87a5dcaff4e0ca66c472fa053 Author: Ionen Wolkens gentoo org> AuthorDate: Sat Oct 15 16:51:49 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Oct 15 20:06:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360a640a app-misc/bottlerocket: EAPI7->8, run eautoreconf for clang16 Also use https and respect CPPFLAGS. Closes: https://bugs.gentoo.org/874321 Signed-off-by: Ionen Wolkens gentoo.org> app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild | 28 ++++++++++------------ 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild b/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild index dbc423b04cb7..fef8fe2c07ac 100644 --- a/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild +++ b/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild @@ -1,39 +1,35 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit toolchain-funcs +inherit autotools DESCRIPTION="CLI interface to the X-10 Firecracker Kit" -HOMEPAGE="http://www.linuxha.com/bottlerocket/" -SRC_URI="http://www.linuxha.com/${PN}/${P}.tar.gz" +HOMEPAGE="https://www.linuxha.com/bottlerocket/" +SRC_URI="https://www.linuxha.com/${PN}/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -IUSE="" KEYWORDS="amd64 ~ppc ~sparc x86" src_prepare() { default - # inset LDFLAGS - sed -i Makefile.in \ - -e 's| -O2 ||g' \ - -e '/ -o br /s|${CFLAGS}|& $(LDFLAGS)|g' \ - || die "sed Makefile.in" + + sed -e 's| -O2 ||' \ + -e '/ -o br /s|${CFLAGS}|& $(CPPFLAGS) $(LDFLAGS)|' \ + -i Makefile.in || die + + eautoreconf #874321 } src_configure() { econf --with-x10port=/dev/firecracker } -src_compile() { - emake CC="$(tc-getCC)" -} - src_install() { - dodoc README dobin br + dodoc README } pkg_postinst() {