Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/novnc/
Date: Mon, 31 May 2021 21:07:27
Message-Id: 1622495160.e75383a9d8d91f0ad30680a8f569438e427e4be2.mgorny@gentoo
1 commit: e75383a9d8d91f0ad30680a8f569438e427e4be2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 21:06:00 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 21:06:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75383a9
7
8 www-apps/novnc: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 www-apps/novnc/Manifest | 1 -
13 www-apps/novnc/novnc-1.1.0.ebuild | 47 ---------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/www-apps/novnc/Manifest b/www-apps/novnc/Manifest
17 index 59b37cfc0f5..ac5edf9e002 100644
18 --- a/www-apps/novnc/Manifest
19 +++ b/www-apps/novnc/Manifest
20 @@ -1,2 +1 @@
21 -DIST novnc-1.1.0.tar.gz 1034997 BLAKE2B 0cb920cac99c3567cbf1c6a58e12649d4bca211d552a472a73ac1089d7c8a18d9478dcfeb558b6302c0c74d321b62575c35a492b02717dc4721b6a9b42f54415 SHA512 9c736912f5a3051027efe779fc64b182f523b9378ff412d78202e52665772678846d97fe3cc5ac18f5c29dd83d5ff2a2dd915e5eadf9af3573fe871db2e7821e
22 DIST novnc-1.2.0.tar.gz 1356408 BLAKE2B a84b767afcdaa641a21943d19ac93c9200074c24c83c899fe2452a82eef526ecd74de92da47b3caa85abe9d51f2fb8d5078f3bf66c0868a241218d22a9088239 SHA512 461490da7bb983e9c94b8ce39f8455ee6609b5a9df8d88254bcc37ebaa5153f5ee9db6afbd88b51762d6d55661bc5cde6fbe70616597583bfce1203e337adf75
23
24 diff --git a/www-apps/novnc/novnc-1.1.0.ebuild b/www-apps/novnc/novnc-1.1.0.ebuild
25 deleted file mode 100644
26 index 18ca4ed3985..00000000000
27 --- a/www-apps/novnc/novnc-1.1.0.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_7 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="noVNC is a VNC client implemented using HTML5 technologies"
40 -HOMEPAGE="https://kanaka.github.com/noVNC/"
41 -
42 -if [[ ${PV} == 9999 ]] ; then
43 - inherit git-r3
44 - EGIT_REPO_URI="https://github.com/kanaka/noVNC.git"
45 -else
46 - SRC_URI="https://github.com/kanaka/noVNC/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 - KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
48 - S="${WORKDIR}/noVNC-${PV}"
49 -fi
50 -
51 -LICENSE="LGPL-3"
52 -SLOT="0"
53 -IUSE=""
54 -
55 -DEPEND=""
56 -RDEPEND="${DEPEND}
57 - dev-python/websockify[${PYTHON_USEDEP}]
58 - dev-python/numpy[${PYTHON_USEDEP}]"
59 -
60 -python_compile() {
61 - :
62 -}
63 -
64 -src_install() {
65 - exeinto /usr/share/novnc/utils
66 - for f in utils/*; do
67 - [[ ! f = utils/README.md ]] && doexe $f
68 - done
69 -
70 - dodoc README.md LICENSE.txt
71 -
72 - insinto /usr/share/novnc
73 - doins -r vnc.html vnc_lite.html app/ core/ vendor/
74 - dosym vnc_lite.html /usr/share/novnc/vnc_auto.html # for compat
75 - dosym ../share/novnc/utils/launch.sh /usr/bin/novnc
76 -}