From 69e5462d258be1b60107cd07671fb9016aa6ca04 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Thu, 12 Jan 2023 00:01:21 -0500 Subject: [PATCH] app-office/beancount: disable py3.8, py3.9 Signed-off-by: Julien Roy --- app-office/beancount/beancount-2.3.5.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-office/beancount/beancount-2.3.5.ebuild b/app-office/beancount/beancount-2.3.5.ebuild index f92273fb28..2c0f06f5dc 100644 --- a/app-office/beancount/beancount-2.3.5.ebuild +++ b/app-office/beancount/beancount-2.3.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_10 ) DITUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 @@ -52,7 +52,8 @@ python_compile() { distutils-r1_python_compile # keep in sync with hashsrc.py, otherwise expect test failures - cp beancount/parser/{lexer.l,grammar.y,decimal.h,decimal.c,macros.h,parser.h,parser.c,tokens.h} "${BUILD_DIR}"/lib/${PN}/parser || die + cp beancount/parser/{lexer.l,grammar.y,decimal.h,decimal.c,macros.h,parser.h,parser.c,tokens.h} \ + "${BUILD_DIR}"/lib/${PN}/parser || die } python_test(){