Diff novnc-1.2.0 with a novnc-9999
/usr/portage/www-apps/novnc/novnc-9999.ebuild 2023-10-09 14:52:35.880368511 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
DISTUTILS_USE_SETUPTOOLS=no |
7 | 7 |
PYTHON_COMPAT=( python3_{9..11} ) |
8 | 8 |
inherit distutils-r1 |
9 | 9 | |
10 | 10 |
DESCRIPTION="noVNC is a VNC client implemented using HTML5 technologies" |
11 |
HOMEPAGE="https://github.com/novnc/noVNC" |
|
11 |
HOMEPAGE="https://kanaka.github.io/noVNC/" |
|
12 | 12 | |
13 | 13 |
if [[ ${PV} == *9999 ]] ; then |
14 | 14 |
inherit git-r3 |
15 |
EGIT_REPO_URI="https://github.com/kanaka/noVNC.git" |
|
15 |
EGIT_REPO_URI="https://github.com/novnc/noVNC" |
|
16 | 16 |
else |
17 | 17 |
SRC_URI="https://github.com/kanaka/noVNC/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
18 |
KEYWORDS="amd64 ~arm64 ~riscv x86 ~amd64-linux ~x86-linux" |
|
18 |
KEYWORDS="~amd64 ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" |
|
19 | 19 |
S="${WORKDIR}/noVNC-${PV}" |
20 | 20 |
fi |
21 | 21 |