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 71D8D15803E for ; Sat, 30 Dec 2023 22:50:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 037A12BC026; Sat, 30 Dec 2023 22:50:30 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 85ED72BC021 for ; Sat, 30 Dec 2023 22:50:29 +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 6AB9A33BDE1 for ; Sat, 30 Dec 2023 22:50:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB39B13A0 for ; Sat, 30 Dec 2023 22:50:26 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1703976620.a9810a05d406f7ca728917f98707c09a60b66dfe.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/novnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/novnc/novnc-9999.ebuild X-VCS-Directories: www-apps/novnc/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: a9810a05d406f7ca728917f98707c09a60b66dfe X-VCS-Branch: master Date: Sat, 30 Dec 2023 22:50:26 +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: 931c7da7-6a0f-4403-b1bb-fbcde69e7847 X-Archives-Hash: ee84e15f5bcb07e2e8ea1017f894df50 commit: a9810a05d406f7ca728917f98707c09a60b66dfe Author: Rick Farina gentoo org> AuthorDate: Sat Dec 30 22:43:33 2023 +0000 Commit: Rick Farina gentoo org> CommitDate: Sat Dec 30 22:50:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9810a05 www-apps/novnc: PEP517 build Fix symlink for newer version Closes: https://bugs.gentoo.org/910042 Signed-off-by: Rick Farina gentoo.org> www-apps/novnc/novnc-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www-apps/novnc/novnc-9999.ebuild b/www-apps/novnc/novnc-9999.ebuild index a9673ca0e859..ff11d98a0fd9 100644 --- a/www-apps/novnc/novnc-9999.ebuild +++ b/www-apps/novnc/novnc-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -DISTUTILS_USE_SETUPTOOLS=no +DISTUTILS_USE_PEP517=no PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 @@ -41,5 +41,5 @@ src_install() { insinto /usr/share/novnc doins -r vnc.html vnc_lite.html app/ core/ vendor/ dosym vnc_lite.html /usr/share/novnc/vnc_auto.html # for compat - dosym ../share/novnc/utils/launch.sh /usr/bin/novnc + dosym ../share/novnc/utils/novnc_proxy /usr/bin/novnc }