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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0CAB1382C5 for ; Fri, 15 Jan 2021 17:00:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E33FE0871; Fri, 15 Jan 2021 17:00:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25C17E0871 for ; Fri, 15 Jan 2021 17:00:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3060D340D3C for ; Fri, 15 Jan 2021 17:00:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FE27476 for ; Fri, 15 Jan 2021 17:00:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1610729710.449398c093bd0b29bc46b66eddbe5b7156d35cf6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/office-ext-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 449398c093bd0b29bc46b66eddbe5b7156d35cf6 X-VCS-Branch: master Date: Fri, 15 Jan 2021 17:00:55 +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: 2dec19c8-7685-49c4-8832-f655ad2c02a7 X-Archives-Hash: 7d9007ac2dfd90354746063248fee96e commit: 449398c093bd0b29bc46b66eddbe5b7156d35cf6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jan 8 23:50:32 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jan 15 16:55:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449398c0 office-ext-r1.eclass: Drop EAPI-6 support Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/office-ext-r1.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/office-ext-r1.eclass b/eclass/office-ext-r1.eclass index 298f958a13a..7f39a535920 100644 --- a/eclass/office-ext-r1.eclass +++ b/eclass/office-ext-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: office-ext-r1.eclass @@ -6,13 +6,13 @@ # The office team # @AUTHOR: # Tomáš Chvátal -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 7 # @BLURB: Eclass for installing libreoffice/openoffice extensions # @DESCRIPTION: # Eclass for easing maintenance of libreoffice/openoffice extensions. case "${EAPI:-0}" in - 5|6) inherit multilib ;; + 5) inherit multilib ;; 7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac