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 C547C15ACFC for ; Wed, 3 May 2023 09:17:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F04F2E08D0; Wed, 3 May 2023 09:17:38 +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 D5D4DE08D0 for ; Wed, 3 May 2023 09:17:38 +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 E75ED3416B6 for ; Wed, 3 May 2023 09:17:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 825078AC for ; Wed, 3 May 2023 09:17:36 +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: <1683105449.0f016579324f87d60297badd355a7eb9978e1209.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/protonvpn-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r1.ebuild net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r2.ebuild X-VCS-Directories: net-vpn/protonvpn-cli/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0f016579324f87d60297badd355a7eb9978e1209 X-VCS-Branch: master Date: Wed, 3 May 2023 09:17:36 +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: 1e915710-63c8-4b92-a973-2c03ef11bb8f X-Archives-Hash: cd3a132c1f799ebc2a5ebf7922f64803 commit: 0f016579324f87d60297badd355a7eb9978e1209 Author: Sam James gentoo org> AuthorDate: Wed May 3 09:17:22 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 3 09:17:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f016579 net-vpn/protonvpn-cli: add missing jinja2 dep Reported by cihancan on IRC. Signed-off-by: Sam James gentoo.org> ...-cli-2.2.11-r1.ebuild => protonvpn-cli-2.2.11-r2.ebuild} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r1.ebuild b/net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r2.ebuild similarity index 87% rename from net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r1.ebuild rename to net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r2.ebuild index 5a538c301506..14149fe874e3 100644 --- a/net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r1.ebuild +++ b/net-vpn/protonvpn-cli/protonvpn-cli-2.2.11-r2.ebuild @@ -13,14 +13,17 @@ HOMEPAGE="https://protonvpn.com https://github.com/ProtonVPN/protonvpn-cli-ng" SRC_URI="https://github.com/ProtonVPN/linux-cli-community/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" -KEYWORDS="~amd64 ~riscv" SLOT="0" +KEYWORDS="~amd64 ~riscv" -RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/pythondialog:0[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/docopt[${PYTHON_USEDEP}] dev-python/distro[${PYTHON_USEDEP}] - net-vpn/openvpn" + dev-python/pythondialog:0[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + net-vpn/openvpn +" DEPEND="${RDEPEND}" S="${WORKDIR}/linux-cli-community-${PV}"