From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 7E9271580EB for ; Sun, 25 May 2025 07:33:54 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6A1353430B3 for ; Sun, 25 May 2025 07:33:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 21F67110480; Sun, 25 May 2025 07:33:46 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 1D7A8110480 for ; Sun, 25 May 2025 07:33:46 +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 CC409343068 for ; Sun, 25 May 2025 07:33:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18B8A281D for ; Sun, 25 May 2025 07:33:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1748158344.65fb2afe51b0155d41756a80e05f9ed24c8e1ce3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/6tunnel/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/6tunnel/6tunnel-0.13.ebuild X-VCS-Directories: net-vpn/6tunnel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65fb2afe51b0155d41756a80e05f9ed24c8e1ce3 X-VCS-Branch: master Date: Sun, 25 May 2025 07:33:44 +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: b911dada-6214-42a8-9102-92c89bf672f5 X-Archives-Hash: f47810d658ad534c553204ac6424ea83 commit: 65fb2afe51b0155d41756a80e05f9ed24c8e1ce3 Author: Sam James gentoo org> AuthorDate: Sun May 25 06:45:57 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 25 07:32:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65fb2afe net-vpn/6tunnel: update EAPI 7 -> 8, py3.13, py3.14, fix pkg_setup w/o tests Closes: https://bugs.gentoo.org/943850 Closes: https://bugs.gentoo.org/952633 Signed-off-by: Sam James gentoo.org> net-vpn/6tunnel/6tunnel-0.13.ebuild | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/net-vpn/6tunnel/6tunnel-0.13.ebuild b/net-vpn/6tunnel/6tunnel-0.13.ebuild index d596a0a12817..fec315a3ed76 100644 --- a/net-vpn/6tunnel/6tunnel-0.13.ebuild +++ b/net-vpn/6tunnel/6tunnel-0.13.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) -inherit python-any-r1 +PYTHON_COMPAT=( python3_{11..14} ) +inherit flag-o-matic python-any-r1 DESCRIPTION="TCP proxy for applications that don't speak IPv6" HOMEPAGE="https://github.com/wojtekka/6tunnel" @@ -19,3 +19,14 @@ RESTRICT="!test? ( test )" BDEPEND="test? ( ${PYTHON_DEPS} )" PATCHES=( "${FILESDIR}"/${P}-test.patch ) + +pkg_setup() { + use test && python-any-r1_pkg_setup +} + +src_configure() { + # bug #943850 + append-cflags -std=gnu17 + + default +}