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 0348B15808A for ; Sun, 03 Aug 2025 19:31:16 +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 DD8AB340CCD for ; Sun, 03 Aug 2025 19:31:15 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3F14F11036D; Sun, 03 Aug 2025 19:31: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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3181B11036D for ; Sun, 03 Aug 2025 19:31:14 +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 D1B7A340CC4 for ; Sun, 03 Aug 2025 19:31:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44AD83234 for ; Sun, 03 Aug 2025 19:31:12 +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: <1754249442.abc99db979c6e65f92addd423f47d939732e2d3f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/duplicity/duplicity-3.0.5.ebuild X-VCS-Directories: app-backup/duplicity/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: abc99db979c6e65f92addd423f47d939732e2d3f X-VCS-Branch: master Date: Sun, 03 Aug 2025 19:31:12 +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: 878c04f4-495c-4753-a4fb-14c200863853 X-Archives-Hash: 188af2d0f75e16c825bb6aceb4d48260 commit: abc99db979c6e65f92addd423f47d939732e2d3f Author: Sam James gentoo org> AuthorDate: Sun Aug 3 19:12:31 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 3 19:30:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc99db9 app-backup/duplicity: avoid CDEPEND It's a semi-reserved name, use the more common (at least these days) COMMON_DEPEND. Signed-off-by: Sam James gentoo.org> app-backup/duplicity/duplicity-3.0.5.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-backup/duplicity/duplicity-3.0.5.ebuild b/app-backup/duplicity/duplicity-3.0.5.ebuild index bf150ebbcff4..b68ee205798e 100644 --- a/app-backup/duplicity/duplicity-3.0.5.ebuild +++ b/app-backup/duplicity/duplicity-3.0.5.ebuild @@ -19,12 +19,13 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="s3 test" -CDEPEND=" +COMMON_DEPEND=" net-libs/librsync app-crypt/gnupg dev-python/fasteners[${PYTHON_USEDEP}] " -DEPEND="${CDEPEND} +DEPEND=" + ${COMMON_DEPEND} dev-python/setuptools[${PYTHON_USEDEP}] dev-python/setuptools-scm[${PYTHON_USEDEP}] test? ( @@ -32,7 +33,8 @@ DEPEND="${CDEPEND} dev-python/pexpect[${PYTHON_USEDEP}] ) " -RDEPEND="${CDEPEND} +RDEPEND=" + ${COMMON_DEPEND} dev-python/paramiko[${PYTHON_USEDEP}] s3? ( dev-python/boto3[${PYTHON_USEDEP}] ) "