diff --git a/net-im/riot-web/Manifest b/net-im/riot-web/Manifest index 1124e2ac6..9f5433d10 100644 --- a/net-im/riot-web/Manifest +++ b/net-im/riot-web/Manifest @@ -1,2 +1 @@ -DIST riot-web-1.0.8.tar.gz 1479259 BLAKE2B b0fbd1197bf41fb08229a7a232272890b51e96f3ce5eff89eb6d0ab7ad7e7d8ce5fa28adbd9baf76adadf2c8a274a3148d0f740d4d258bea32869e93d10a18d6 SHA512 da142f97f517dfdf3c473e3650ade2922a5b9d3c2389e5339e12fe732209f9d2570de487b40e5572e9b9a460ea667b994fb583a6b1ae5c859461138d5864d222 DIST riot-web-1.1.2.tar.gz 1482895 BLAKE2B a77eb156588e9f9fdecc76b542e597969ef64cd65673c478ce039253e5975caa2d5a49a5cafcf26cd0c055680dd82f2afe81ca0e7b9b071255f4da268fe24344 SHA512 eb35fb85e6b888cabc71d68df1c7fc90d325df9a8ac9badcd79b3440773c23a284185000cf641be9f9c56fab5b69b341e8fceefbd44f10a3c8b48b003f402efc diff --git a/net-im/riot-web/riot-web-1.0.8.ebuild b/net-im/riot-web/riot-web-1.0.8.ebuild deleted file mode 100644 index d38ebb17f..000000000 --- a/net-im/riot-web/riot-web-1.0.8.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A glossy Matrix collaboration client for the web" -HOMEPAGE="https://riot.im" - -inherit eutils gnome2-utils - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - - SRC_URI="" - EGIT_REPO_URI="https://github.com/vector-im/riot-web.git" - EGIT_BRANCH="develop" -else - SRC_URI="https://github.com/vector-im/riot-web/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="abi_x86_32 abi_x86_64" -REQUIRED_USE="abi_x86_32? ( !abi_x86_64 ) - abi_x86_64? ( !abi_x86_32 )" - -DEPEND="sys-devel/binutils:* - net-libs/nodejs - sys-apps/yarn - x11-libs/libXScrnSaver - net-print/cups - dev-libs/nss - gnome-base/gconf" -RDEPEND="${DEPEND}" - -QA_PREBUILT=" - opt/Riot/libffmpeg.so - opt/Riot/libnode.so - opt/Riot/riot-web" - -DESTINATION="/" # We build and unpack a Debian installer, which already has everything in the proper directories {usr,opt}, so we just set the destination to "/" - -src_prepare() { - default - - if [[ ${PV} == "9999" ]]; then - "${S}"/scripts/fetch-develop.deps.sh - fi - - yarn install || die "Yarn module installation failed" - - cp "${S}"/config.sample.json "${S}"/config.json -} - -src_compile() { - yarn run build || die "Build failed" - - if use abi_x86_32; then - "${S}"/node_modules/.bin/build --linux --ia32 || die "Bundling failed" - elif use abi_x86_64; then - "${S}"/node_modules/.bin/build --linux --x64 || die "Bundling failed" - fi -} - -src_install() { - ar x "${S}"/electron_app/dist/riot-web*.deb - tar xvf data.tar.xz - - mv usr/share/doc/${PN} usr/share/doc/${PF} - gunzip usr/share/doc/${PF}/changelog.gz - insinto ${DESTINATION} - doins -r usr - doins -r opt - fperms +x /opt/Riot/${PN} - dosym ${DESTINATION}/opt/Riot/${PN} ${DESTINATION}/usr/bin/${PN} -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}