diff options
author | James Le Cuirot <chewi@gentoo.org> | 2023-04-23 19:21:25 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2023-04-23 19:21:25 +0100 |
commit | d1428750ac31f7bf428694b1a05266ca21730f58 (patch) | |
tree | bf2522b8914f047861737a5fed26c1b42a4c5e4e /www-apps | |
parent | dev-util/patchelf: Version bump to 0.18.0 (diff) | |
download | gentoo-d1428750ac31f7bf428694b1a05266ca21730f58.tar.gz gentoo-d1428750ac31f7bf428694b1a05266ca21730f58.tar.bz2 gentoo-d1428750ac31f7bf428694b1a05266ca21730f58.zip |
www-apps/xpra-html5: Drop old 5.0
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/xpra-html5/Manifest | 1 | ||||
-rw-r--r-- | www-apps/xpra-html5/xpra-html5-5.0.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/www-apps/xpra-html5/Manifest b/www-apps/xpra-html5/Manifest index 66a0968af5f7..6c4732559314 100644 --- a/www-apps/xpra-html5/Manifest +++ b/www-apps/xpra-html5/Manifest @@ -1,2 +1 @@ -DIST xpra-html5-5.0.tar.gz 1570694 BLAKE2B aef7b818aa618c143701993627e629884b5e696c7334e6b75701a20028f18aced5e3249505ac031d6cd0a08d79ca2b9728afdb2e90712fcbe45d43d02598f608 SHA512 8318c6dd8f8f53d0a132272c2bb8c69e8ba928f2f267679aee48cec4598faa828788a219dfa342162e1fcf8159bf46b44d50db57180f1aa972edd67fa43e9cd5 DIST xpra-html5-6.1.tar.gz 1416380 BLAKE2B ba0e2bdcae91b30a1f46655dc505f5338cd8c516414f55871c6bc01b6bdcd81d351d66c575c6a7a219cb0c29e7da17e8db558b928dc89067b5ad3289520005f2 SHA512 3539c235f38a66f0a8eaea679df4b4bb4a1ef778ab31baf705acc29b0d4b3998ae84081eeac085db973d170afaa1ee0f167124efc3e48266145fdbef255a6bf5 diff --git a/www-apps/xpra-html5/xpra-html5-5.0.ebuild b/www-apps/xpra-html5/xpra-html5-5.0.ebuild deleted file mode 100644 index f92edde1dfe4..000000000000 --- a/www-apps/xpra-html5/xpra-html5-5.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{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( - root="${D}", - install_dir="${EPREFIX}/usr/share/xpra/www/", - config_dir="${EPREFIX}/etc/xpra/html5-client", - minifier="$(usex minify uglifyjs copy)", - gzip=$(usex gzip True False), - brotli=$(usex brotli True False), -) -EOF -} |