public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-dev@lists.gentoo.org
Cc: "Michał Górny" <mgorny@gentoo.org>
Subject: [gentoo-dev] [PATCH 21/28] python-r1.eclass: Enable EAPI 8
Date: Sun, 20 Jun 2021 11:55:45 +0200	[thread overview]
Message-ID: <20210620095552.625633-22-mgorny@gentoo.org> (raw)
In-Reply-To: <20210620095552.625633-1-mgorny@gentoo.org>

Signed-off-by: Michał Górny <mgorny@gentoo.org>
---
 eclass/python-r1.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 77709bfe7591..372b4d671fc9 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.eclass
@@ -7,7 +7,7 @@
 # @AUTHOR:
 # Author: Michał Górny <mgorny@gentoo.org>
 # Based on work of: Krzysztof Pawlik <nelchael@gentoo.org>
-# @SUPPORTED_EAPIS: 6 7
+# @SUPPORTED_EAPIS: 6 7 8
 # @BLURB: A common, simple eclass for Python packages.
 # @DESCRIPTION:
 # A common eclass providing helper functions to build and install
@@ -33,7 +33,7 @@ case "${EAPI:-0}" in
 	[0-5])
 		die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
 		;;
-	[6-7])
+	[6-8])
 		;;
 	*)
 		die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"
-- 
2.32.0



  parent reply	other threads:[~2021-06-20 10:03 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-20  9:55 [gentoo-dev] [PATCH 00/28] python-r1 suite EAPI 8 support/cleanup Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 01/28] python-utils-r1.eclass: Ban private API in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 02/28] python-utils-r1.eclass: Use 'dosym -r' " Michał Górny
2021-06-20 12:48   ` Ulrich Mueller
2021-06-20 13:01     ` Michał Górny
2021-06-20 13:21   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 03/28] python-utils-r1.eclass: Remove python_optimize support for py<3.5 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 04/28] python-utils-r1.eclass: Rename *into vars to use underscores Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 05/28] python-utils-r1.eclass: Eliminate local python_is_python3 uses Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 06/28] python-utils-r1.eclass: Ban py2 deps in python_gen* in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 07/28] python-utils-r1.eclass: Deprecated and EAPI8-ban python_is_python3 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 08/28] python-utils-r1.eclass: Fix python_fix_shebang for py3.10+ Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 09/28] python-utils-r1.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 10/28] python-any-r1.eclass: Remove obsolete eselect-python use Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 11/28] python-any-r1.eclass: Remove obsolete PYTHON_USEDEP single-r1 hack Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 12/28] python-any-r1.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 13/28] python-single-r1.eclass: Update doc for -2/-3 arg removal Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 14/28] python-single-r1.eclass: Ban PYTHON_MULTI_USEDEP in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 15/28] python-single-r1.eclass: Enable " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 16/28] python-r1.eclass: Update doc for -2/-3 arg removal Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 17/28] multibuild.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 18/28] python-r1.eclass: Remove obsolete QA hack for PYTHON_USEDEP Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 19/28] python-r1.eclass: Ban python_gen_usedep in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 20/28] python-r1.eclass: Use 'dosym -r' " Michał Górny
2021-06-20 13:22   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` Michał Górny [this message]
2021-06-20  9:55 ` [gentoo-dev] [PATCH 22/28] distutils-r1.eclass: Refactor --install-scripts rewriting logic Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 23/28] distutils-r1.eclass: Replace mydistutilsargs with DISTUTILS_ARGS Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 24/28] distutils-r1.eclass: Require >=pyproject2setuppy-15 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 25/28] distutils-r1.eclass: Ban dift --via-home in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 26/28] distutils-r1.eclass: Remove old FreeBSD compat hack Michał Górny
2021-06-20 13:15   ` Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 27/28] distutils-r1.eclass: Use 'dosym -r' in EAPI 8 Michał Górny
2021-06-20 13:23   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 28/28] distutils-r1.eclass: Enable " Michał Górny
2021-06-20 13:24 ` [gentoo-dev] [PATCH v2 28/29] python-utils-r1.eclass: Remove _python_ln_rel Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210620095552.625633-22-mgorny@gentoo.org \
    --to=mgorny@gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox