summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2022-06-11 11:51:09 +0100
committerJames Le Cuirot <chewi@gentoo.org>2022-06-11 11:51:09 +0100
commitd74a3e29eb4b72735a69922633d76e6ab548c149 (patch)
tree11e9210d2a015b87436c2704384efc30e27880bb /www-apps
parentdev-util/uglifyjs: Bump to 3.16.0, drop old 3.15.5 (diff)
downloadgentoo-d74a3e29eb4b72735a69922633d76e6ab548c149.tar.gz
gentoo-d74a3e29eb4b72735a69922633d76e6ab548c149.tar.bz2
gentoo-d74a3e29eb4b72735a69922633d76e6ab548c149.zip
www-apps/xpra-html5: Drop old 4.5.2
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/xpra-html5/Manifest1
-rw-r--r--www-apps/xpra-html5/xpra-html5-4.5.2.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest
index 98ddc7760a0b..c4f6b2920012 100644
--- a/www-apps/xpra-html5/Manifest
+++ b/www-apps/xpra-html5/Manifest
@@ -1,2 +1 @@
-DIST xpra-html5-4.5.2.tar.gz 1492651 BLAKE2B 1e0fb2f554f4e2c4bb4bbf3b937b33408dc56b7a2aaba1a0459e28bea4c87b5f96195abbd2de0e8461964e43dace5f40badfdb9dfe3a4db5f7c3c9eddc6eaa68 SHA512 a1f73889ad3797ca25d232d3d11e1753dc10944cb8f07c1d6dbacfbf5273b22a0d3696af4e88cd5b75ed4a0970533e340a41253842c3766ab6fe650dc5fb0d0b
DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5
diff --git a/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild b/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
deleted file mode 100644
index 43135d172c20..000000000000
--- a/www-apps/xpra-html5/xpra-html5-4.5.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-inherit python-any-r1
-
-DESCRIPTION="HTML5 client to connect to any xpra server"
-HOMEPAGE="https://xpra.org/"
-SRC_URI="https://github.com/Xpra-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="brotli +gzip minify"
-
-BDEPEND="
- ${PYTHON_DEPS}
- brotli? ( app-arch/brotli )
- minify? ( dev-util/uglifyjs )
-"
-
-src_configure() {
- cat <<EOF > vcs-info || die
-BRANCH=gentoo
-REVISION=${PR#r}
-LOCAL_MODIFICATIONS=0
-EOF
-}
-
-src_install() {
- "${PYTHON}" <<EOF || die
-import setup
-setup.set_version("${PV}")
-setup.install_html5(
- "${ED}/usr/share/xpra/www",
- "$(usex minify uglifyjs copy)",
- gzip=$(usex gzip True False),
- brotli=$(usex brotli True False),
- configuration_files=["default-settings.txt"]
-)
-EOF
-
- insinto /etc/xpra/html5-client
- doins html5/default-settings.txt
- dosym ../../../../etc/xpra/html5-client/default-settings.txt /usr/share/xpra/www/default-settings.txt
-}