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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C12551584AD for ; Fri, 02 May 2025 23:42:23 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id ABBF83430B5 for ; Fri, 02 May 2025 23:42:23 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A3EF6110287; Fri, 02 May 2025 23:42:22 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 9833B110287 for ; Fri, 02 May 2025 23:42:22 +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 4C3113430AE for ; Fri, 02 May 2025 23:42:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B48D11E87 for ; Fri, 02 May 2025 23:42:20 +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: <1746229020.2ce4163ddc90da0d25b604dc0ecc5c954daf29e3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/serf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/serf/serf-1.3.10.ebuild X-VCS-Directories: net-libs/serf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2ce4163ddc90da0d25b604dc0ecc5c954daf29e3 X-VCS-Branch: master Date: Fri, 02 May 2025 23:42:20 +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: 8f51b45f-9dc9-48a2-a909-499f35ec168f X-Archives-Hash: 8e1e7e0c166d8ce7fee749f8944625dc commit: 2ce4163ddc90da0d25b604dc0ecc5c954daf29e3 Author: Sam James gentoo org> AuthorDate: Fri May 2 23:37:00 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 2 23:37:00 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce4163d net-libs/serf: update SRC_URI, enable py3.13 Closes: https://bugs.gentoo.org/952599 Signed-off-by: Sam James gentoo.org> net-libs/serf/serf-1.3.10.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/net-libs/serf/serf-1.3.10.ebuild b/net-libs/serf/serf-1.3.10.ebuild index 465727784a20..1d97d19ba29a 100644 --- a/net-libs/serf/serf-1.3.10.ebuild +++ b/net-libs/serf/serf-1.3.10.ebuild @@ -3,13 +3,15 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) - +PYTHON_COMPAT=( python3_{10..13} ) inherit flag-o-matic python-any-r1 scons-utils toolchain-funcs DESCRIPTION="HTTP client library" HOMEPAGE="https://serf.apache.org/" -SRC_URI="mirror://apache/${PN}/${P}.tar.bz2" +SRC_URI=" + mirror://apache/${PN}/${P}.tar.bz2 + https://archive.apache.org/dist/serf/${P}.tar.bz2 +" LICENSE="Apache-2.0" SLOT="1" @@ -21,9 +23,10 @@ RESTRICT="test" RDEPEND=" dev-libs/apr:1= dev-libs/apr-util:1= - dev-libs/openssl:0= - sys-libs/zlib:0= - kerberos? ( virtual/krb5 )" + dev-libs/openssl:= + sys-libs/zlib + kerberos? ( virtual/krb5 ) +" DEPEND="${RDEPEND}" BDEPEND=">=dev-build/scons-2.3.0"