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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3AF04158041 for ; Mon, 11 Mar 2024 14:24:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1297FE2A36; Mon, 11 Mar 2024 14:24:14 +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 pigeon.gentoo.org (Postfix) with ESMTPS id E431CE2A36 for ; Mon, 11 Mar 2024 14:24:13 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C2A4343008 for ; Mon, 11 Mar 2024 14:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7EB01521 for ; Mon, 11 Mar 2024 14:24:09 +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: <1710166968.86f1f76c68a4d8aaf3246038f64fc66f36cd7129.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsearpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsearpc/libsearpc-3.3.0-r1.ebuild net-libs/libsearpc/libsearpc-3.3.0-r2.ebuild X-VCS-Directories: net-libs/libsearpc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 86f1f76c68a4d8aaf3246038f64fc66f36cd7129 X-VCS-Branch: master Date: Mon, 11 Mar 2024 14:24:09 +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: fac66088-0a9b-4ec3-a678-2fbe420a2eb9 X-Archives-Hash: ae12f31890e51d6c82998db883188eed commit: 86f1f76c68a4d8aaf3246038f64fc66f36cd7129 Author: Eli Schwartz gmail com> AuthorDate: Mon Mar 11 01:33:33 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 11 14:22:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f1f76c net-libs/libsearpc: remove useless dependency on simplejson This module is effectively just the stdlib "json" module, but in very very old versions of python it was not yet in the stdlib. As in, older than python 2.6. Since 2014, libsearpc hasn't actually used simplejson at all, just the stdlib: https://github.com/haiwen/libsearpc/commit/80b73555924bc780b69da8b5974338fff1441829 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> .../{libsearpc-3.3.0-r1.ebuild => libsearpc-3.3.0-r2.ebuild} | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/net-libs/libsearpc/libsearpc-3.3.0-r1.ebuild b/net-libs/libsearpc/libsearpc-3.3.0-r2.ebuild similarity index 88% rename from net-libs/libsearpc/libsearpc-3.3.0-r1.ebuild rename to net-libs/libsearpc/libsearpc-3.3.0-r2.ebuild index 9df86b3f3be3..799b52ac7a0b 100644 --- a/net-libs/libsearpc/libsearpc-3.3.0-r1.ebuild +++ b/net-libs/libsearpc/libsearpc-3.3.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,10 +22,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="${PYTHON_DEPS} >=dev-libs/glib-2.26.0 >=dev-libs/jansson-2.2.1:=" -RDEPEND="${DEPEND} - $(python_gen_cond_dep ' - dev-python/simplejson[${PYTHON_USEDEP}] - ')" +RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}-${RELEASE_COMMIT}"