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 F38C815800A for ; Mon, 14 Aug 2023 21:15:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 444722BC023; Mon, 14 Aug 2023 21:15: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 171CF2BC023 for ; Mon, 14 Aug 2023 21:15: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 25C3233FD24 for ; Mon, 14 Aug 2023 21:15:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68E32BE8 for ; Mon, 14 Aug 2023 21:15:21 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1692047650.187edbb4abe395cda4a01817f11b78d2c70a0dc1.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/netsurf.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 187edbb4abe395cda4a01817f11b78d2c70a0dc1 X-VCS-Branch: master Date: Mon, 14 Aug 2023 21:15: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: c536cb2e-f3b5-4923-8216-51edb226552e X-Archives-Hash: 259c3f9bbdd65819ebc75904bfa48ee5 commit: 187edbb4abe395cda4a01817f11b78d2c70a0dc1 Author: Michael Orlitzky gentoo org> AuthorDate: Mon Aug 14 18:40:57 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Mon Aug 14 21:14:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187edbb4 netsurf.eclass: support EAPI=8 This eclass provides one function that sets some environment variables, nothing to worry about. Signed-off-by: Michael Orlitzky gentoo.org> eclass/netsurf.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/netsurf.eclass b/eclass/netsurf.eclass index f027b88b4965..b69c93d87ca3 100644 --- a/eclass/netsurf.eclass +++ b/eclass/netsurf.eclass @@ -4,13 +4,13 @@ # @ECLASS: netsurf.eclass # @MAINTAINER: # mjo@gentoo.org -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Handle buildsystem of www.netsurf-browser.org components # @DESCRIPTION: # Handle settings build environment for netsurf build system case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac