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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 492BE15800F for ; Fri, 13 Jan 2023 03:14:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E21FE0952; Fri, 13 Jan 2023 03:14:35 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0FA5AE0952 for ; Fri, 13 Jan 2023 03:14:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB6E0340952 for ; Fri, 13 Jan 2023 03:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F8FF82C for ; Fri, 13 Jan 2023 03:14:32 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1673579512.69e5462d258be1b60107cd07671fb9016aa6ca04.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-office/beancount/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-office/beancount/beancount-2.3.5.ebuild X-VCS-Directories: app-office/beancount/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 69e5462d258be1b60107cd07671fb9016aa6ca04 X-VCS-Branch: dev Date: Fri, 13 Jan 2023 03:14:32 +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: bedc9fb3-5b8f-4ad0-82bf-858b606e38a2 X-Archives-Hash: 7c292f5097080e0ffeb0bb4e35b25ea7 commit: 69e5462d258be1b60107cd07671fb9016aa6ca04 Author: Julien Roy jroy ca> AuthorDate: Thu Jan 12 05:01:21 2023 +0000 Commit: Julien Roy jroy ca> CommitDate: Fri Jan 13 03:11:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69e5462d app-office/beancount: disable py3.8, py3.9 Signed-off-by: Julien Roy jroy.ca> 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 f92273fb2..2c0f06f5d 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(){